d2jsp
Log InRegister
d2jsp Forums > Off-Topic > Computers & IT > Programming & Development > A Pet Project
Prev12
Add Reply New Topic New Poll
Member
Posts: 23,862
Joined: Aug 16 2006
Gold: 20.00
Apr 4 2015 10:27pm
Quote (carteblanche @ Apr 3 2015 05:33pm)
wanna work on my todo list?

i'm using titanium appcelerator at work. the mvc model requires certain convention.

eg:
controller file goes in app/controllers/name.js
view file goes in app/views/name.xml

to refer to it in code:
require('name');

unfortunately, moving/renaming it isn't easy. 1) i have to move both files separately. IDE won't do it for me for whatever reason. 2) all my require statements have to be updated to include the path (after app/controllers)

eg:
controller file goes in app/controllers/inventory/name.js
view file goes in app/views/inventory/name.xml

to refer to it in code:
require('inventory/name');


wanna write me a plugin for titanium appcelerator (aptana or eclipse based) so i can right click -> refactor -> move/rename and it handles all that for me? i've got a python script i call from the terminal to move files, and i used a wrapper around require(..) to get around it. but it would be handy. i've never written a plugin before, but hey i'm sure you can do it.


Sounds kind of cool.

I am thinking more of maybe trying to build a bigger compiler than the one we did in college.

I was originally thinking of doing a LISP, but I'd rather do a language similar to C. Maybe higher level.
Go Back To Programming & Development Topic List
Prev12
Add Reply New Topic New Poll