vote up 97 vote down star
89

Take a programmer that has never used source control, show them what it does, and their eyes light up... the benefits are obvious but until they actually see it most people had never considered the existence of such a tool.

What other such things exist? Tools or approaches or techniques that aren't obvious before you encounter them, but once seen have obvious value. Things that are likely so ingrained in the way you work that it's hard to think of working without them, things almost embarrassing to bring up because you expect the other person to say "duh, that's obvious!"

No matter how petty something seems there is a chance that other people don't know about it yet; I'd like to get an idea on what things I'm missing simply because I never thought of them.

flag
show 4 more comments

150 Answers

vote up 3 vote down

Unix CLI tools like find, awk, sed, make. They come handy in all kinds of situations.

link|flag
vote up 3 vote down

Issue/Bug tracking systems like Fogbugz and Bugzilla.

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

Reflection. Definately reflection. There is just no way I could do my current work without it.

link|flag
vote up 1 vote down

Google, absolutely that best thing ever happened.

link|flag
vote up 2 vote down

If you haven't really "got" the object oriented paradigm, your eyes will light up when you finally grasp it. OO is a way to think about the "middle chunks" of a complex system and lets you make progress even when you don't understand the whole solution yet.

link|flag
vote up 3 vote down

Test driven development

link|flag
vote up 1 vote down

Switching to the Dvorak keyboard layout. It increased my typing speed, and decreased my fatigue.

link|flag
vote up 1 vote down

my six monitors, .NET, Edit and Continue, unit tests, and a STOP button that actually stops the page loading (Thanks, IE8!).

link|flag
vote up 0 vote down

EJB3...

Death to deployment descriptors! Long live annotations!

Oh, and Java annotations, too. Never saw the need until EJB3 showed me the light. Of course, having done EJB3 annotations for a while, I still see the need for deployment descriptors (don't put host names in source code - that's bad 'um kay?). But the annotations sure makes ORM constructs easier to deal with.

link|flag
vote up 12 vote down

Launchy: The Open Source Keystroke Launcher

I can never go back to using the Start menu again...

link|flag
vote up 1 vote down

stackoverflow :)

link|flag
vote up 0 vote down
  • SysInternals
  • Reflector
  • Managed Stack Explorer
  • Ghostdoc
  • Notepad++
link|flag
vote up 2 vote down

Google.

Before trying to solve any problem, use Google to see if (and how) any one has done it first.*

*Although the answer to who's done it first might well be Google.

link|flag
vote up 0 vote down

For anyone with multiple monitors or widescreens, a window management program is a must. Try WinSplit Revolution for starters.

link|flag
vote up 3 vote down

No interruptions would also be high up my list. Often hard to achieve but makes the world of difference

link|flag
vote up 1 vote down

two monitors. definitely two monitors.

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

A laptop, Intellisense, dual monitors, teammates, my local developer community, Resharper, Firebug, WinMerge, Subversion, Google, ice cream, and beer.

And the minute I can't add to this list is the minute I've lost the will to live.

Great question.

link|flag
vote up 1 vote down

Automated nightly build system, saved us the time of a 6+ hour manual build process down to a 15min automated build

link|flag
vote up 4 vote down

A Laptop! Finally I don't have to walk 5 minutes to a warehouse, then back to my desk, then back to the warehouse......

link|flag
vote up 3 vote down

Static source code analysis in the editor.

This has already caught many silly mistakes I made after I got distracted by a phone call or something. For example I seem to often create a while loop with a condition that does a variable != null check, but then forget to update the variable inside the loop (thus creating an infinite loop). IntelliJ IDEA warns me about this before I try and run the code.

link|flag
vote up 7 vote down

Learn the keyboard short-cuts of your IDE and ditch the mouse whenever possible. It'll not only make you faster, but also force you think more of keyboard oriented users in your own apps!

Oh, and ReSharper of course! :)

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

GoF book and the concept of design patterns as such. I think I never really understood OOP until I read this book. Patterns helped me to take a broader look at my programs.

When you start programming, you think of your code in terms of really low-level things, such as vars and loops. Then you learn functions and start using them (I can remember times when I was about 10 and was eager to write my next BASIC program with subroutine). Even later you meet the classes — and at first it seemes to be the highest level of abstraction. And then you meet the patterns.

For me it was like driving to the top of the hill — when you reach it thinking the road is just over, you suddenly see the whole world ahead.

link|flag
vote up 0 vote down

Continious integration...CC.NET

link|flag
vote up 6 vote down

My wife and son :-)

link|flag
vote up 2 vote down

ClipX - A Clipboard extender that lets you access your 20 most recent "Ctrl-C copies". How many times you whished, you had that "second-to-last" copy handy.

Set the shortcut to Ctrl+Alt-V, and you will get used to it quickly.

link|flag
vote up 7 vote down

Learning about advanced algorithms.

For example, spending the time to read about all the different ways data can be sorted teaches you a lot about manipulating data. Even if you never do anything but call the library's QuickSort. Ditto about how compilers work. Or how to store tree-oriented data in a relational database.

link|flag
vote up 2 vote down

Boost

C++ is as bad as all the Java programmers claim without it.

link|flag
vote up 1 vote down

Going backwards in time:

CruiseControl.NET... Resharper... NUnit... Reflector... Intellisense... Struts... Debuggable JSP's... Java... an IDE... Windows... XWindows...

link|flag
vote up 3 vote down

Synergy, without a doubt. 3 seperate OS's all controlled by one mouse and one keyboard? Magic.

(java) In the last few days, I've also discovered the joys of Spring Workflow. There are other frameworks out there but this is the one I discovered. Re-implementing our core Webservices has not only been a joy, but maintenance and performance have been hugely improved.

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

strace and ltrace on Unix. I have no idea how other programmers get along without them! The output of these tools can take some getting used to, but once you do get used to it, its hard to imagine not having!

link|flag
1  
Also: DTrace on Solaris. Power tool indeed. – tkadlubo Jun 23 at 6:32

Your Answer

Get an OpenID
or

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