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 1 vote down

Two tools:

  1. Good Database schema compare tool (Great for generating change scripts on legacy dbs)
  2. Tool to generate Insert Scripts (Lets you annihilate your dev environemnt and restore at any time via query analyzer)
link|flag
vote up 7 vote down

Intellisense

link|flag
vote up 1 vote down

Reflector!!!!!!!

link|flag
vote up 10 vote down

I keep coding notes. A library of code snippets + text about coding minutiae.

As a senior .Net web developer, I just have too many details to remember in too many languages -- C#, VB, HTML, CSS, SQL, JavaScript and on and on.

I can instantly find the SQL using ROW_NUMBER for paging data, the syntax for applying a regex in JavaScript, or the steps for deploying a web app to IIS, along with my own comments and troubleshooting tips.

Since I've been keeping notes for a decade now, I can find information about older technologies like classic ASP, SQL Server 7, or VB6 -- handy when you're called in to read the old code for an upgrade.

I refer to my own dogpile of notes before going to Google. The particular software I use is InfoSelect (www.miclog.com, I have no affiliation with them). It's like writing everything you know on 3x5 index cards and then being able to search their text. I believe you can also use OneNote for this; no doubt there are many others.

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 4 vote down

Assertions. After I started adding them to my own code during development, I was astonished to find how many times they were triggered. When I started adding them to other people's production code, they were astonished by the number of bugs that the assertions uncovered. It was a tipping point in my software development career.

link|flag
vote up 6 vote down

Design patterns

link|flag
vote up 4 vote down

wiki - collaboration on the web

link|flag
vote up 4 vote down

A programmers notepad (such as TextPad or Notepad++). Sometimes a full IDE isn't needed and it' nice to have someting light to do quick things.

link|flag
vote up 1 vote down

Separate compilation. Gone are the days of when I used a BASIC compiler which took several minutes to re-parse a large program after editing one line of code.

link|flag
vote up 7 vote down

Coworkers!

I left my job to do a solo software startup project and by far, by a million miles, the thing that I miss most is having smart people around me. This is not only true in the sense that our coworkers make us smarter, but they also help us stay sane.

twitch twitch

So next time you think you can do it better by yourself, really examine all of the benefits of being surrounded by smart folks. I don't regret my decision, but I can't wait to hire someone!

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

Emacs - Before using it I didn't imagine I could so easily automate all those everyday routines. Now I can't imagine my life without it.

link|flag
vote up 4 vote down

Code Complete. Absolutely the best book on software development.

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 1 vote down

Maven. It makes integrating the use of various tools into the build process so easy.

Code Coverage Reports (cobertura).

link|flag
vote up 3 vote down

Ctrl+F5

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

A tool to check memory usage (like valgrind, purify or bounds checker). These have been the key to solving some pretty nasty bugs in the past. Because reading through thousands of lines of code looking for that wretched memory corrupting code is not my idea of fun.

link|flag
vote up 2 vote down

WinSCP and TextPad.

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

for me also...

  1. JetBrains tools (ReSharper, dotTrace)
  2. GhostDoc, (VS.NET Addin) (the little push I sometimes need)
  3. Expresso, great regex tool
  4. Enso, program launcher
  5. Google Reader
  6. VirtualPC / VirtualBox
  7. and FreeMind, to keep me organized

EDIT

forgot one

  1. GridMove

EDIT 2

some tools I place on my USB stick. (link / link)

always my mindmaps with me...

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

Capistrano. Knowing that I can run deploy:rollback if anything fails and also forcing tests to run before deployment is extremely useful. It also means no matter how complicated deployment of a project is, anyone is able to do it since it only requires a single command.

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
show 1 more comment
vote up 5 vote down

Agile and SCRUM Methodology changed everything

link|flag
vote up 1 vote down

Domain Driven Design

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 4 vote down

WinMerge for comparing the differences in content of two files similar files

link|flag
vote up 0 vote down

A second screen

For developping and testing and read the documentation, plus check e-mails once a while...

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

A great revolution for me was the discovery of delicious.com

It has become an every day tool, completely integrated in my browsers as plug-ins, through which I discover and find pertinent techniques, white papers, tutorials, tools for subjects I'm interested in. The fact, that you can also browse bookmarks saved by other people on subjects of your interest is a related amazing technology-watch feature that I discovered by acccident.

I guess you can't really understand the power of this social bookmarking features as implemented by delicious until you start using them. That's why I think delicious is a good candidate as an answer for the current question.

link|flag

Your Answer

Get an OpenID
or

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