vote up 32 vote down star
18

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
2  
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

1 2 3 next
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
vote up 3 vote down

Recursive function call.

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 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 26 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
3  
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 45 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 30 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 6 vote down

Getting up and walking around, especially in the fresh air, really makes me a much more productive problem-solver. This is when I usually come up with the "Eureka!" solution.

link|flag
show 1 more comment
vote up 9 vote down

That it's important to understand, deep down, how your tools work, and how you can use them to improve your workflow and automate repetitve tasks. Regardless of whether you use Eclipse, Textmate, Visual Studio, Vim, Emacs, Notepad or anything else, take the time to learn their shortcuts and, better, understand how to extend them with custom plugins.

Even further, learn shell scripting if on Unix (or PowerShell on Windows). Repetitive tasks can and should be automated, and pain points can be blunted. Automate your deployments. Automate your builds.

link|flag
vote up 62 vote down

For me it is Intellisense. Things just move so much faster when the information I need right now is right at my fingertips. The savings in keystrokes helps as well.

link|flag
1  
What's Intellisense? – David Mar 16 at 0:16
2  
David, Intellisense is the little window that pops up when you are typing in Visual Studio (or most any other IDE or editor these days) that shows you matching objects (e.g. all objects or methods starting with "a"), methods, parameters, etc. – Mark Brittingham Mar 16 at 14:45
show 4 more comments
vote up 3 vote down

Tab Completion!

To be honest, some of the other answers are nice, but can't always be applied in every situation, especially day-to-day tasks which we perform hundreds of times.
I find tab completion helpful not only because it prevents spelling mistakes, but allows me to save time, every single time I go to the terminal.

link|flag
vote up 7 vote down

Only one answer? I'm going to cheat a little, since my three answers are very closely related. ReSharper, Refactoring, and Test-Driven Development.

link|flag
2  
The secret to TDD is not to cover every test case - it's to not write any code unless you can prove the code is needed - needed to make a failing test pass. If there's no failing test, then you don't need the code. – John Saunders Mar 14 at 11:20
show 1 more comment
vote up 24 vote down

Learn another language. Eg, learning Ruby, and Ruby on Rails, has helped my Asp.Net programming immensely.

link|flag
show 6 more comments
vote up 4 vote down

Templates!

I'll spare you the nasty details, but I've written classes before with seperate (overloaded) functions to do exactly the same thing with a different varible type.

link|flag
vote up 3 vote down

Code generators like CodeSmith to reduce repetitive coding.

link|flag
show 1 more comment
vote up 3 vote down

Due to the types of projects I've recently been working on, OS Virtualisation technologies (Virtual Server 2005) have probably boosted my productivity as a developer by quite a large degree. This is because I can get new development environments for different types of projects (which require 2 to 4 machines to represent a cut down instance of the final production environment) up and running really quickly. To paraphrase from another question I answered about 'How to quickly setup a developer machine?':

I have a couple of different base development environment configurations hosted on virtual machines (Virtual Server 2005). Once I was happy with them I sysprep'd them. Now when I need an environment for a specific project type I clone the VM with the config I require, start it up and and off I go to work. The great thing is that if I wreck the VM all I need to do is start afresh from one of the sysprep images. It's such a timesaver.

link|flag
show 1 more comment
vote up 17 vote down

Lisp. (Why write programs when you can write programs to write programs?)

link|flag
show 2 more comments
vote up 2 vote down

Write an application for someone else, then maintain it as they ask for things which weren't even considered in v1.0. This helps with better design so you don't have to spend so much time re-factoring. Also, having an IDE which can do a lot of the re-factoring for you (e.g. Netbeans) is nice to take care of things quickly.

link|flag
vote up 24 vote down

Debuggers. I remember that learning to use debuggers opened up a whole new world for me.

link|flag
vote up 20 vote down

VIM!!! Nuff said!

link|flag
1  
I'd +2 this if I could. – Kristo Mar 14 at 14:19
2  
@Karl: Because it gets out of your way and just listens to what you tell it do to. You can be the programmer without worrying about fighting the shitty tool (Microsoft, I'm talking about your shitty tools) – Adam Hawes Apr 13 at 6:29
show 2 more comments
vote up 13 vote down

Open source.

link|flag
1  
My ability to work effectively with Django was strongly afflicted by the framework's weak reference docs. Then I started using the source to look up practically everything! – TokenMacGuy Mar 14 at 15:01
vote up 50 vote down

Not sure it's really my #1 but nobody has mentioned this yet: syntax highlighting.

Maybe it's just because I've gotten too used to it but it takes me twice as long to edit a program in nano (black-and-white) as it does in KWrite (color with syntax highlighting)... sometimes I've been outright unable to do it.

link|flag
show 1 more comment
vote up 8 vote down

Learning to break down complex problems into a series of simple tasks boosts productivity and improves the accuracy of your schedule.

link|flag
vote up 2 vote down

If you're doing your own projects as opposed to your employers, taking your own ideas to reality, you are a heck of a lot more motivated and productive than when doing a 9/5. Your project is the first thing you think of when you wake up, and its the last thing you dream of when you fall asleep at the keyboard, waiting for the sun to rise so you can do the same thing again.

link|flag
show 4 more comments
vote up 1 vote down

for me, Linq

link|flag
vote up 1 vote down

When I discovered I could tell the computer what to do, hit a button, and the computer would do what I told it to.

link|flag
show 1 more comment
vote up 4 vote down

I've been around a while so I have several single things over the years and they vary wildly. I really haven't had any productivity discoveries in a while, except for small special purpose tools.

Probably my biggest single discovery is to prototype quickly and get the user/customer looking and touching as fast as possible before wasting time on features that they don't want or will change as soon as they discover that they really don't want it that way. I first realized this the first time I used Visual Basic to prototype the interface of an application I was creating in C++ (late 1992/early 1993).

A bunch of people can sit around a table and discuss for months what they do and do not want, but until they can actually touch it and experience it they really do not know.

link|flag
vote up 15 vote down

A decent pair of sound isolating headphones. It still surprises how much more I get done when I block out all the office chatter. It's not a private office but it's a start.

link|flag
show 2 more comments
vote up 4 vote down

That it is OK to say no to unproductive work.

link|flag
1 2 3 next

Your Answer

Get an OpenID
or

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