vote up 96 vote down star
86

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

1 2 3 4 5 next
vote up 218 vote down

A second monitor. One to hold the programming environment, the other to hold either the documentation or to hold the program under testing.

link|flag
6  
A third monitor. To do email and database stuff. – tvanfosson Oct 15 '08 at 2:16
4  
A bigger desk for all my monitors... – JesperE Oct 15 '08 at 13:20
4  
A bigger office for my big desk – Vinko Vrsalovic Oct 15 '08 at 22:16
29  
An 8th monitor for viewing that amazing background pic you spent 3 hours of work time searching the internet for. – steveth45 Oct 17 '08 at 23:22
3  
Two monitors allows your to compare things more easily. You can look at your code and the documentation at the same time. So I can write the code while still reading the documentation. There are other advantages too. – acrosman Feb 19 at 15:56
show 19 more comments
vote up 121 vote down

Vacations. Evenings. Weekends. It can be fun to pull all-night sessions and code really cool programs, but in the end family time is what counts.

link|flag
vote up 92 vote down

The Internet.

The amount of information at my fingertips is mind boggling.

link|flag
5  
I've been programming a lot longer than the Internet has been around. – BoltBait Oct 21 '08 at 0:51
1  
Back in 1995, I didn't know why I should pay for Internet access when I could dial up a dozen BBS systems for free. – aardvark Nov 3 '08 at 19:41
1  
@MarkJ: they are people like me who have been using computers since before you were born. – BoltBait Jun 15 at 17:45
show 3 more comments
vote up 80 vote down

A profiler. A good one will tell you more about what is going on inside your code, than you could have ever dreamed.

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

Learn to say NO.

link|flag
9  
N... N... N... New features! That's not right... – Bernard Oct 16 '08 at 11:37
show 2 more comments
vote up 77 vote down

An IDE!

Seriously some people still just dont know "why" they should use one...

link|flag
2  
I am one of them (but let's upvote and try again :) I still can't stand with the mess of buttons, icons, tabs, menus, poststamp-size editors, views, tree views, and the like one usually finds in modern IDE's. I sincerely prefer a fair editor and printf debugging. – Federico Ramponi Oct 15 '08 at 9:40
3  
Sure, I haven't worked on any large project, but still the benefits of an IDE doesn't cut it for me. I really enjoy Vim. – David The Man Oct 15 '08 at 13:43
1  
I use eclipse in work and am now transitioning to vim. Well configured vim can do everything I do with eclipse, except in a terminal and more efficiently (IMHO). I love vims keyboard commands, syntax highlighting, autocompletion and ability to script in python. I've come to despise eclipse though... – Dan Nov 21 '08 at 13:12
show 12 more comments
vote up 76 vote down

Something we all take for-granted now, but I remember when I first got a mouse with a scroll wheel, and then had to go back to one without.

link|flag
4  
For some reason my old Visual Basic 6 IDE would continually ignore the mouse wheel. It was excruciating. – Chris Farmer Oct 15 '08 at 3:55
show 4 more comments
vote up 67 vote down

Debugger. I deal with so many comp sci students who have not really used a good, GUI-driven debugger.

I hold up Visual Studio as a great debugger.(Or at least the best I've ever seen).

link|flag
2  
In my experience, CS students overly depend on visual debuggers and have no idea how to debug code when they don't have access to one. I've even seen students doing something they erroneously called "unit tests" where they just stepped through the code and said "that looks right". – rmeador Oct 15 '08 at 17:22
show 8 more comments
vote up 63 vote down

stackoverflow.com

link|flag
1  
What's that? I've never heard of it. – Jacob Oct 15 '08 at 23:44
show 2 more comments
vote up 63 vote down

Source control. I'm amazed at how many people don't use any.

link|flag
1  
this was in the original question, so I think it's assumed already. – DGM Oct 15 '08 at 4:25
show 4 more comments
vote up 62 vote down

Touch typing.

Don't laugh, I've personally known several programmer who "hunted-and-pecked", claiming that they could do so just as quick as a touch typer. I say, BS. If you can't touch-type, you're gimping yourself.

There are some good free online typing programs. An hour a day for a couple weeks can double your typing speed, and nobody has to know you were ever a hunt-and-pecker.

link|flag
show 7 more comments
vote up 52 vote down

A good file comparison application, like BeyondCompare.

http://www.scootersoftware.com/moreinfo.php

It is the most useful tool in my toolkit and has saved my hide many times.

link|flag
1  
I use WinMerge since it was the first thing I found several years ago. – Albert May 11 at 18:18
show 5 more comments
vote up 48 vote down

Fiddler - HTTP debugger, essential for REST development, link

FireBug - javascript/css debugging used to be torcher, FireBug + jQuery make AJAX development fun. link

link|flag
1  
+1 for firebug. It's probably the sole thing that keeps me on firefox, as opposed to switching to safari on the mac or google chrome on windows – Orion Edwards Oct 15 '08 at 1:28
show 6 more comments
vote up 48 vote down

Holding down alt + dragging, in certain text editors, to select not only lines of code but also columns. This has definitely saved me hours of time.

link|flag
1  
This is a great tip! – bouvard Oct 15 '08 at 23:18
2  
@Martin Cote: Ctrl+V :-) – Jasper Bekkers Jun 23 at 6:37
show 10 more comments
vote up 45 vote down

code & syntax highlighting and coloring in modern text editors and IDEs

link|flag
show 3 more comments
vote up 39 vote down

VMWare or other virtualization system. Being able to test cross-platform code on 6 or 7 different OS configurations without having to have a mess of spaghetti cabling and KVM switches is great.

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

Automated refactoring tools. Mostly Rename, Extract Method, and Introduce Explaining Variable.

link|flag
vote up 34 vote down

Another important concept is ORM and using tools like NHibernate..

link|flag
show 3 more comments
vote up 31 vote down

A unit testing framework like JUnit, and a Continuous Integration (CI) server. Also, some kind of build system like make, Ant, or Maven.

Maybe also a team coding standard, to avoid wasting time over arguing with coworkers about tabs vs. spaces and brace styles.

link|flag
vote up 29 vote down

Mastery of a text editor (whether it be VIM, Emacs, etc). At least one that supports replacing with Regular Expressions, macros, and all the shortcuts that allow me to type and edit at the speed my brain sometimes thinks. Learning an editor inside and out is one of the best pieces of advice I ever got from an instructor in Com sci at university.

link|flag
vote up 29 vote down

Here's one that I don't have yet... but I SHOULD. A reversable debugger. That is, you just run your program until the error, then tell it to BACK UP one step at a time until you figure out what's going on. I have seen academic examples, so tell me: why don't I have one built into IntelliJ or Eclipse?

link|flag
1  
Smalltalk environments have had this since the 80's or maybe even before that... Try [Restart] (the current context) in the Squeak debugger to see it in action! – Sébastien RoccaSerra Oct 15 '08 at 11:15
3  
The next version of Visual Studio will have a 'historical debugger' doing exactly what you're asking for. channel9.msdn.com/posts/VisualStudio/… – dungema Oct 15 '08 at 13:10
show 6 more comments
vote up 29 vote down

A family. My baby daughter rocks! And shes a good sleeper too!

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

Red squiggly lines under my syntax errors so I don't need to hit compile.

It's saved days of my life.

link|flag
vote up 25 vote down

Firebug: didn't know I needed it, and sometimes wish I didn't need it anymore.

link|flag
vote up 25 vote down

Generics - I love you.

link|flag
show 3 more comments
vote up 21 vote down

A nightly build.

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

Google
so that all that I need to know is just a URL away

link|flag
3  
"Google - making people on the Internet appear smarter since 1998" – Steven A. Lowe Oct 16 '08 at 3:35
vote up 19 vote down

For .Net Lutz Roeder's Reflector for being able dive into the code of some DLL when source code is not available.

Open source Javascript frameworks like Prototype and JQuery that finally make it easy to get a rich clientside experience.

And Tortoise SVN for saving me from my Visual Source [un]Safe nightmares!

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

On a group level, continuous integration.

If an automated build runs per commit, people will no longer freak out when the build breaks because they know exactly which commit broke it.

If the build also runs unit tests, people will smile.

If the build also deploys to test environments and runs acceptance tests, group zen may be on its way.

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

A large, widescreen monitor. Being able to see two (or more) files for editing at one time is huge.

link|flag
2  
I think I'm alone in this but I find one massive monitor (24inch + with multiple desktops) to be much more comfortable than multiple monitors. – Ali Jul 23 at 11:37
show 6 more comments
1 2 3 4 5 next

Your Answer

Get an OpenID
or

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