vote up 31 vote down star
17

This question has been inspired by my recent discovery/adoption of distributed version control. I started using it (mercurial) just because I liked the idea of still being able to make commits at times when I couldn't connect to the central server. I never expected it would give me a large boost in general productivity, but a pleasant side effect I discovered was that making a new clone every time I started a new task and giving that clone a descriptive folder name is extremely effective at keeping me on task resulting is a noticeable productivity increase.

So as a programmer what single discovery has given you the greatest boost in productivity?

Extra respect for answers which involve tools or practices that aren't so obvious from the outside!

flag
1  
I agree that SO shouldn't be a forum for helping people figure out where the "On" switch is for their iMac or questions about Pizza. But this is clearly a programmer's question. Indeed, I like questions like this as long as they are community wikis and no one earns reputation points. – Mark Brittingham Mar 14 at 15:44
1  
Another perfect example of how messed up these self appointed "Thought Police" are. How this isn't a real question I'll never understand. The examples given as possibly similar are anything but. This question is about productivity and not skill. – bruceatk Mar 15 at 0:57
1  
@Mark Brittingham: "I like questions like this *as long as they are community wikis and no one earns reputation points.*" I think this is an awful attitude. Community wiki has no defined criteria, and I think using it as a way to prevent people from getting rep amounts to a ridiculous of bullying. – Juliet Mar 15 at 1:43
1  
I believe in the democratic process, if a question is crap people will vote it down and it will be ignored, if it's good people will vote it up and answer. I find it annoying that there seems to be a few users dedicated to closing posts before the 'uneducated masses' can start supporting them. – ChrisInCambo Mar 16 at 3:56
1  
I also agree with Chris - I think that the downside of the reputation system is that the first thing some people do when they get to 3000 points is to start looking for ways of exercising their "close" power. This is a shame. If you don't like subjective questions, filter them out. – Mark Brittingham Mar 16 at 17:40
show 16 more comments

67 Answers

prev 1 2 3
vote up 29 vote down

Programming languages with managed memory. It makes coding so very much easier. Also an IDE that has code completion is a must.

link|flag
vote up 44 vote down

Flow. Try to maximize the amount of time that you can spend in Flow. That means: Close your web browser (the one opened to cnn.com), don't listen to distracting music, close your mailbox, close your IM, etc. You get the idea. If you wanted to be very productive in college, you shut out the entire world so that you can focus. There's no reason why work-life is any different.

People who are least productive tend to lose a lot of time to distraction, entertainment, etc. Look at your co-workers. You'll see that I'm right.

link|flag
1  
yeap and i get distracted reading stackoverflow questions too :-D – icelava Jun 25 at 3:03
show 3 more comments
vote up 25 vote down

Surprised no one has posted the obvious smart-ass answer: caffeine!

link|flag
1  
lol Figures that I would get my first Nice Answer badge from this instead of the dozens of other serious answers I've posted. =) – gnovice Mar 17 at 14:06
2  
It's funny that this gets so may up votes, and nobody even suggests "a full night's rest". – Alan Hensel Mar 21 at 14:53
show 5 more comments
vote up 9 vote down

Formal design patterns and unit testing.

We finally retired a legacy VB6 codebase and are in the process of building new frameworks for our business model and there's really no comparison. We're infinitely more productive. (well maybe not infinite, but you get the idea.)

link|flag
vote up 2 vote down

My answer: the promise of dual monitors boosting performance while programming/debugging was a lie.

I now prefer 1 monitor. With two monitors you always have too many things distracting you and also you get stressed due to awkward head and eye movements.

I'll never go back to 2 monitors.

(I also use EMACS so I keep my fingers on the QWERTY row much more than ever before... why stop the flow of typing??)

link|flag
1  
I dunno ... the ability to easily read documentation and write code at the same time, or to run an app and debugger on separate screens has been pretty nice ... – Daniel LeCheminant Mar 14 at 3:04
show 8 more comments
vote up 3 vote down

Recursive function call.

link|flag
vote up 9 vote down
  1. The Internet/WWW! There is often a solution for so much problems. If you want to squeeze knowledge out somewhere or just talk with other IT-People, the www is THE place.

  2. The Libraries for every programming language in the www! I can't live without the Apache Commons, Hibernate, Spring and so on. They make my life so much easier!

  3. High-Level Dialects and Domain Specific Languages, to use the found libraries. Such DSLs can be written in Groovy, JRuby or LISP(Closure) for example. Grails as Groovy DSL for Web (with addons...) has boostet the overall productivity many projects a lot! It's an impressive framework!

  4. Software I've ever used: Things as Subversion/CVS... were ever there since I develop software. Also IDEs like Eclipse and IntelliJ ;) I can't live without them.
link|flag
prev 1 2 3

Your Answer

Get an OpenID
or

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