vote up 0 vote down star

I'm currently working through some code katas in multiple languages (Ruby, Perl, Python)/frameworks (Rails, Django, Mojo). It seems every time I start a new project from scratch I end up tweaking files to my liking, even after using things like newgem, module-starter, script/generate, startapp, etc.

For those who program in many different languages, do you have some sort of toolset, scripts, etc that generate start code to your liking?

I'm contemplating setting up git repo of all of my start code and some sort of script that pulls/renames/tweaks when starting new projects but I don't want to reinvent too many wheels. I've also considered making a personalized Textmate Bundle that does this and/or has custom snippets/template that have the same shortcut keys/commands across all the languages I use. It seems I'm also wasting brain time on trying to remember which command/snippet-tab combos are valid for the language/bundle I'm working in.

What are other multi-programming language people doing to quickstart development in different languages/tools?

flag

58% accept rate
1  
Should be community wiki. – Sinan Ünür Oct 30 at 2:17
Why ask only the people that work with multiple languages? – Manni Oct 30 at 15:02

3 Answers

vote up 2 vote down

Just use the templating capabilities of your editor.

For vim, check out this example.

Update:

Which editor? The choice of editor is too deeply personal and reliant on individual preference for me to recommend any single editor. Pick a cross platform editor that is powerful enough (like Vim or Emacs), learn to really use it, and use it everywhere. This will improve your productivity beyond the gains templates will give you.

link|flag
Which editor? emacs? vim? VS.Net? TextMate? Eclipse? That's also part of the problem. More than one editor and on different oses. – claco Oct 30 at 3:05
5  
emacs and vim both run on everything. time to standardize. – jrockway Oct 30 at 3:24
standardize away: answers.polldaddy.com/poll/2150554 – ysth Oct 30 at 4:16
Now jrockway, you already know how I feel about emacs and vi/m. :-) – claco Oct 30 at 19:24
Editors aside, it would be useful to have something that worked outside of the confines of an editor, like if I'm one someone elses machine starting a new project with them. – claco Oct 30 at 19:25
vote up 0 vote down

I too find myself using a ragtag set of home grown editor macros, gawk scripts and such to help in this situation. I have to confess however doing much of the relatively "mechanical" changes by hand, as I find it is an opportunity to visit the existing/borrowed codebase and getting familiar with it.

link|flag
vote up 0 vote down

I work with, and code on Windows, OS X and Linux. To save myself the getting used to the environment time, when switching from one to the other, I have bought and installed Komodo on each OS. Alas, while I like Komodo and think it as powerfull tool and the look is similar on all three OSs, the keyboard shortcuts are distinctly different and threaten to drive me insane.

I now code on Windows and scp files around as needed.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.