vote up 7 vote down star
5

Possible Duplicate:
As a programmer what single discovery has given you the greatest boost in productivity?

I can tick off a number of things which provided dramatic increases in my effectiveness as a programmer: TDD, discovering Resharper, O/RM's...

What have you found to be the greatest effectiveness enhancer as a developer? It can be a tool, a technique, a concept, whatever.

flag

2  
Duplicate: stackoverflow.com/questions/645237/… – gnovice Jun 10 at 22:50
3  
...and if it's not closed, it should be made a wiki. – gnovice Jun 10 at 22:51
1  
Agreed. Should be closed as exact duplicate. I don't have the rep to vote yet :( – Pablo Fernandez Jun 10 at 22:54

closed as exact duplicate by gnovice, Lucas McCoy, Zifre, Jim Puls, Pim Jager Jun 10 at 23:16

23 Answers

vote up 0 vote down

I discovered F12 - Go to definition. Before I was doing that via context menu option.

link|flag
vote up 0 vote down

All great answers so far, and it's largely the same here: TDD, ORM, Code Completion etc.

I think the biggest things for me though has been instrumental music. Odd I know, but I find it blocks out the background hustle and bustle without distracting your mind with lyrics....maybe it's just me though! :)

link|flag
vote up 0 vote down

There are a lot of great answers posted so far. I will add 'Continuous Integration'. I have found CI to be an invaluable approach in developing the systems on which I have worked. This is especially true of the larger and more complex systems with lots of 'moving parts'.

link|flag
vote up 0 vote down

Meditation every day

link|flag
vote up 2 vote down

Automated Continuous Builds

One Click and/or nightly builds automated builds have helped me to be productive on different scale.

It provides opportunity to weave in lot of best practices and automate lot of activities. (Running tests, formating code, running code quality tools, .)

Having automated builds process invoking these had helped me.

link|flag
vote up 1 vote down

Understanding that multitasking is not a possibility, when it comes to human brain. I read the book "Brain Rules" to understand this, but it actually should have been obvious to me, even earlier. Now I have stopped continuously switching from one project/bug to another in the middle - Switch off all external buzzers (like Outlook/Thunderbird/Cellphone), Concentrate on one, finish the task at hand to a 'decent state' and then move on to the next task.

link|flag
vote up 1 vote down

IDE syntax checking. When starting out, debugging failed compilations wasted much time.

link|flag
If your good at the language, you shouldn't really get many syntax errors (although semantic errors are much more common). – Zifre Jun 10 at 23:09
true, but when you are just starting out they can take their toll. that said, debugging these issues helps the newbie develop a deeper understanding of the language. – akf Jun 10 at 23:34
vote up 1 vote down

Relational database theory

link|flag
vote up 0 vote down

this is a very subjective answer, but for me, what did it was switching from php (I wasn't using any framework) to Ruby on Rails. This was 3 years ago, and it was a decision that payed real good..

link|flag
vote up 2 vote down

a Quiet Workspace

The gain of a quiet workspace over a noisy workspace with interuptions is such a massive improvement.

link|flag
vote up 5 vote down

Giving up IDEs and using VIM w/ snipMate. Nothing is more frustrating then an IDE crashing.

link|flag
I hadn't heard of snipMate before, but I just tried it out and it's amazing! – Kevin Ivarsen Jun 10 at 23:40
Excellent tip! I got it working fine, but do you mean by "w/"? – Masi Jul 22 at 10:49
vote up 15 vote down

A second monitor.

link|flag
Yes, I love having my 1440x900 LCD in portrait mode when programming. – Sinan Ünür Jun 10 at 22:45
Yes and no for me, it really helps when programming in Windows, but under Linux I just use Compiz and everything was very fast for me...less use of the mouse. – Topher Fangio Jun 10 at 22:48
2  
A third monitor. – John Pirie Jun 10 at 23:06
vote up 3 vote down

Version control. Virtual machines. Getting adequate sleep.

link|flag
vote up 1 vote down

Perl and CPAN, of course.

Together, they have enabled me to turn what would otherwise have been giant (for me) programming projects into small projects consisting of less than 10 files and 1000 files.

And, I type with only two fingers at a snail's pace (did not improve one bit in the last 25 years ;-)

link|flag
vote up 11 vote down

Unit testing.

alt text

Really, at first you don't understand how much improvement you can gain from a well-written test suite (code with better cohesion and lower coupling, better confidence on your code, instant correction of some bugs, etc.).

link|flag
I don't know why this doesn't get more votes! I can't imagine coding efficiently without some kind of test harness – Pablo Fernandez Jun 10 at 22:53
vote up 1 vote down

Vim/IDE Code Completion. The combination has give me a new appreciation for coding :-)

In specific: viPlugin and Eclipse.

Edit 1: Oooh, and Pandora!

link|flag
vote up 0 vote down

Excellent question Chris. The first productivity booster that comes to mind is keeping very good notes. I put project notes, sample sql code, meeting notes, defect notes, common error messages and their reason, environment and platform notes all into Microsoft OneNote. My coworker and senior developer keeps his notes organized in MS Word files and we share our notes openly as teammates on the same project.

After about a month, I tend to forget a lot of details and my notes are a life saver. I happen to use OneNote because it's fast and I somehow got into the habit. I would suggest to start keeping some detailed notes a few times a day in order to get into the habit.

link|flag
vote up 2 vote down

Getting married and having kids

link|flag
How so? Has it simply helped you stop mucking around and work efficiently? – Larsenal Jun 10 at 22:44
1  
It's made me take more side work and spend less time posting on sites like slashdot and stackoverflow better to get it done and spend time with your family! – Byron Whitlock Jun 10 at 23:27
Oh yeah, they are expensive. – Byron Whitlock Jun 10 at 23:27
vote up 1 vote down

Stackoverflow and Server Fault. Is has helped me find quality answers without having to purge through Google search results.

link|flag
2  
I think for most of us SO decreases productivity more than it helps it. ;) – musicfreak Jun 10 at 22:47
I guess more people feel that way too. I had an upvote, but it was taken away by the user who gave it to me.... – Michael Kniskern Jun 10 at 23:09
vote up 2 vote down

Saying no. Too many people get bogged down and are constantly switching projects. It's from saying yes to every project that comes along.

link|flag
vote up 2 vote down

In somewhat valid order:

  • ORM
  • Unit testing & TDD
  • Resharper
  • Generics
  • using Google to search MSDN ;)
link|flag
vote up 6 vote down

Google.

Also, I'd have to say that version control can also be a productivity enhancer, since it means you can quickly spit out changes and fixes without having to worry about breaking something irreversibly. Granted, you could keep backup copies of older versions without it, but that's a slow and imperfect process in the long run.

link|flag
vote up 15 vote down

Probably IDE code completion. I type at about 300 words per minute if you count Intellisense.

link|flag
1  
Ditto...Coderush is a Godsend. – Webjedi Jun 10 at 22:36

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