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

vote up 3 vote down

Funky things like Dependency Inject or Test Driven Development.

link|flag
vote up 3 vote down

Scripting I mean scripting in "scripting" languages. I used to write my scripts in C, and only realised the true power of scripting when a colleague introduced me to Python.

Since, then I have moved on to Scala, but the Python experience was an eye opener.

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

Ctrl+F5

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

CruiseControl or any continuous integration tool, and lots of Unit Tests.

Good people in Test.

And "eat your own dog food" use your software every day you'll know the problems earlier.

link|flag
vote up 3 vote down

Bazaar. Definitely the best source-control software I've ever worked with. First you discover source-control, then you discover bazaar.

link|flag
vote up 3 vote down

Basecamp Project Management Software because no one really wants to take the role of the project manager, but this helps everyone become more accountable for what they are doing. Especially in small companies, I think most programmers fret at the thought of using such software because they complain it makes more work for them, but when you are working with programmers who are both on-site and remote, things can get messy. Basecamp helps to keep everyone on the same page. For our team, we use it as a calendar, task list and sometimes a wiki for documentation.

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

Test driven development

link|flag
vote up 3 vote down

Issue/Bug tracking systems like Fogbugz and Bugzilla.

link|flag
show 1 more comment
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

wget - is there a better way to download things from the net?

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

vim, find and grep

link|flag
vote up 3 vote down

Life, mate. It's short and it's out there, so don't spend yours in front of a monitor (says the wise guy who's mostly done that).

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

Teach him Test Driven Development way of developing software.

link|flag
vote up 2 vote down

MacBook's touchpad.

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

Tools like CodeRush & Refactor Pro
Coffee
A comfortable chair (seriously)
Productivity enhancing tools (not programming specific) like Launchy and Ultramon
Someone to bounce questions off of
Silent time
Code Complete 2
Virtual Machines

just to name a few.. but all of these are very very important to me.

link|flag
vote up 2 vote down

A "visual" editor. When I first started programming, I learned to use a line editor (think interactive sed... a big step up from punch cards) and got pretty good at working with it. Then some other students started using and bragging about a new "visual" editor (think vi). I tried it, but couldn't see the point; I could edit code faster with the line editor which I had spent a great deal of effort mastering. Finally, after some time, after admitting my stupidity, I switched to the more modern editor and never looked back. Hopefully that experience has made me a better judge of the value of change. In our industry, more often than not the new way of doing things is worse than the old one. But sometimes the new way is in fact an improvement.

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

WinSCP and TextPad.

link|flag
vote up 2 vote down

I've found that having one vertical monitor and one horizontal monitor is very useful. E-books, web browsing and some code (long functions) are better on the vertical one. Mail and wide code are better on the horizontal one.

link|flag
vote up 2 vote down

Scott Hanselman has put together and maintained an excellent list of tools and utilities, many of which I now find indispensable.

The list is here:

Scott Hanselman's 2007 Ultimate Developer and Power Users Tool List for Windows

My personal favourite: slickrun, an indescribably smart and effective utility to launch anything.

link|flag
vote up 2 vote down

Boost

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

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

Your Answer

Get an OpenID
or

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