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

1 2 3 4 5 next
vote up 78 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 14 more comments
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 0 vote down

I second the suggestion of a Continuous Integration server. Particularly if you use something like Hudson, since you can graph all sorts of interesting data (test numbers, code coverage scores, static analysis) over time.

link|flag
show 1 more comment
vote up 68 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 81 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 2 vote down

Coding standards checkers like JTest are capable of giving good advice on programming techniques that you might not be aware of, and they can give you something to think about. Also, any unit testing framework that calculates statement coverage is useful to see what you overlooked in your tests.

link|flag
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 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 7 more comments
vote up 219 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
30  
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 5 vote down

Learning how to take heap dumps of running processes, then using WinDbg + SOS to troubleshoot them for memory leaks and deadlocks. Priceless with large scale web applications!

Good article here

link|flag
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 5 more comments
vote up 2 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).

printf debugging. I've seen so many CS students who have struggled with good GUI-driven debuggers when they could have simply added a few lines to their code and found their mistake.

(Both methods have their moments, I guess)

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

Lint, pylint, JSLint, etc. You don't know just how ugly your code is until an automated procedure goes out of its way to badger you about it.

link|flag
vote up 93 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 21 vote down

A nightly build.

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

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

link|flag
vote up 123 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 65 vote down

stackoverflow.com

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

System level debugging and monitoring tools:

  • sar - Solaris, system activity reporter - a system monitoring tool
  • vmstat - Linux, processes, memory, paging, block IO, traps and cpu activity
  • lsof - Linux, lists open files, including sockets, shows the owning process
  • strace - Linux, traces system calls and signals in an already running program
  • truss - Solaris, system call trace
  • dtrace - Solaris, this tool is amazing

Software Development (some were already mentioned): Unit Testing frameworks, JUnit, etc., especially when combined with code coverage tools: Devel::Cover (Perl), Cobertura (Java), rcov (Ruby), sb-cover (SBCL) and Devel::NYTProf (Perl).

Profiling tools: Devel::Prof (Perl), Devel::NYTProf (Perl), YourKit (Java) and ruby-prof.

Oracle's EXPLAIN PLAN for helping to tune SQL.

link|flag
vote up 7 vote down

IM and IRC. At this moment there are 207 people in the ##CSharp chat room in FreeNode, always about ten who are active at any time, and always two or three who are willing to help or discuss technical issues and ideas with you about C#.

link|flag
show 3 more comments
vote up 77 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 30 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
show 1 more comment
vote up 54 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 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 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 41 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 3 more comments
vote up 0 vote down

FullShot9 for putting screen shots of only the areas on code and forms that I am referring to into my documentation and bug reports.

link|flag
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 12 vote down

Cygwin. All the power of the Linux command prompt and associated tools for your Windows systems. If you know some basic bash commands there are a lot of things you can do with a one-line command that would be a real pain to do manually in the GUI.

link|flag
show 2 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.