vote up 78 vote down star
100

We all have different needs due to the platform and/or stack we work with, and simple programmer preference is famous for starting religious wars.

However, in each area there is usually a set of tools that get recommended over and over, even though people might individually prefer one member over the others. Unix text mode code editors, for example, is an extremely contentious issue but no one can deny that most people will choose either vi or emacs.

So, without criticising the alternatives, recommend me developement tools. Text editors for different platforms, version control systems, bug trackers, database engines, templating systems... whatever! What do you enjoy using every day?

I'll edit together the answers as a list of highly recommended tools in each area. Please don't start discussing which is the best ;)

flag
show 1 more comment

118 Answers

1 2 3 4 next
vote up 94 vote down

If you're doing a lot of Javascript, the FireBug plugin for Firefox is a must!

http://getfirebug.com/

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

The Scott Hanselman's 2007 Ultimate Developer and Power Users Tool List for Windows may give you some ideas.

link|flag
vote up 56 vote down

Another one-up for SysInternals. You can mount their tool repository as a shared drive:

\\live.sysinternals.com\Tools

I just copy over all the files into C:\Program Files\Bin, then add that to my PATH.

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

Generally:

  1. Subversion or Git, Tortoise
  2. Mantis
  3. 3SqlLite (I use it almost exclusively for prototypes and demos)
  4. MySQL - For the price, it's stupidly amazing

For me (keeping in mind that I mostly do .NET):

  1. VS.NET is far beyond any other editor
  2. Resharper is a must-have add-in for .NET programmers
  3. Reflector to look inside dlls
  4. SnippetCompiler
  5. My text editor of choice is EditPadPro
  6. IntelliJ for my Java (Resharper and Intellij are so alike it's easy to switch between the two)
  7. Red-Gate SQL [Data] Compare
  8. DotTrace .NET profiler
  9. jProbe Java profiler
  10. Reflector (.NET decompiler)
  11. Cavaj (Java decompiler)
  12. NAnt/Ant, Cruisecontrol
link|flag
vote up 20 vote down

The only must have is version control and file backup It doesn't really matter which version control you use as long as you have some way to track what changes have been made to the system.

link|flag
vote up 14 vote down

I could probably not live without WinMerge on Windows. It is a GUI diff/merging program that can generate standard unified diff patches. It also has a couple of cool plugins that let you diff zip files and MS Office documents.

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

Can't believe I'm seeing Trac (http://trac.edgewall.com) so seldomly, it's such a great tool: combines and integrates Wiki, Bug Tracking, SVN, and Project Planning, plus it has a bazillion plugins: http://trac-hacks.org

link|flag
vote up 9 vote down

.NET Dev:

  • Visual Studio 2008 (can target .NET 2.0 - 3.5)
  • Resharper
  • MbUnit (backwards compatible with NUnit)
  • FogBugz for work tracking
  • Subversion for source control
  • Red Gate SQL Toolkit
  • Google
  • Rhino Mocks
  • Nant
  • KDiff for diff/merging
  • MS SQL Express (or go Developer Edition if you have MSDN)
link|flag
vote up 8 vote down

For Java, there are loads of great tools for development.

A lot of people are still holdouts and use text editors like Vim. Anecdotally, they are power users who use things like search/replace and the macro tools to do tasks transparently.

There are two great IDEs for Java: Eclipse, and Sun's NetBeans. Both tools are particularly hot for doing J2EE development, since they can set up and run your tomcat and glassfish servers and manage deployment.

I'v never managed to get TDD going for myself, but I think a lot of people will like JUnit.

One thing I don't like in most IDEs is their XML support. For that I use the Exchanger XML editor. It's a pity it hasn't been updated in a while.

There is, imo, no excuse for not having some sort of version management. Currently, I use Subversion. On OSX, I really like Version, and windows has unparalleled integration with TortoiseSVN.

I think the future is probably in Distributed Version control, so something like Git might be worth reading up on (guide here)

Virtual Machines can make a big difference to testing stuff, since they can let you break things or set up distributed systems locally. We use Xen for our servers, and I am trying Virtualbox for local testing on my mac.

Finally, I'd say that the GNU utils (grep, tail, pipe, sort, etc) are indispensable for diagnosing problems. I'd recommend looking at things like cygwin or the windows powershell to try and get them if you're in windows.

link|flag
vote up 8 vote down

Continuous build: Hudson

Seriously, the guys who put Hudson together did a great job. It's a single WAR (Java Web ARchive) file that contains an embedded web server and allows you to setup a continuous build server with a single command.

The web interface is great with good feedback through the use of AJAX.

This thing puts a smile on developers' faces when I show it to them. It's that good.

Issue tracking: Jira

The best issue tracking tool I've used in 15 years. Developers and managers like it. Web-based with a clean interface.

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

IDEs and Text Editors

Visual Studio
Eclipse
EditPadPro
EditPlus
Notepad++
Notepad2
SlickEdit
FireBug

Diff/Merge

BeyondCompare
WinMerge

Source Control

Subversion
Git
Bazaar
Mercurial
SVK
TortoiseSVN

Build

FinalBuilder
NAnt

Bug/Issue Tracking

Mantis
FogBugz
Trac

Learning/Research

Not going to list a ton of sites but just going to go with the suggestion of The Internet. And, really, that one applies to most things in modern life and not just software development.

(Going to have trouble keeping up! Will do linking later.)

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

ClipX for multiple clipboard support in any program, not only inside Visual Studio

SlickRun for quick command execution

Find and Run Robot for fast desktop/start menu search or filesystem search with Locate32 plugin

AutoHotkey for keyboard remappings, with my own keyboard mappings,

F4+F4 To close any window

Alt+Alt To open Find and Run Robot process list (similar to Alt+Tab but with filters)

Alt+1 Send active window to half up screen (useful for comparisons in one monitor)

Alt+2 Send active window to half down screen

Alt+0 Switch active window to monitor 1-2

...

MouseGestures (AutoHotkey script) to enable mouse gestures across applications

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

I find TestDriven.NET indispensable when unit testing with .NET. It's by far the best test running tool I've used. It's great when you just need to run a single test in the VS debugger. Just right click on the method in the IDE and choose "Test with -> debugger".

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

If you're coding with Visual Studio, Visual Assist X is one of the best addons you could ever find.

link|flag
vote up 6 vote down

NUnit for .NET Unit Test Cases. NAnt for .NET automated builds.

Will update the post as soon as I can think of other required tools!

link|flag
vote up 5 vote down

These are the ones I use every day, on Windows:

Source Control: Subversion, TortoiseSVN, VisualSVN
Command Prompt Replacement: Take Command
Build Control: FinalBuilder
Text Editor: Notepad++
File/Folder Comparison Tool: Beyond Compare 3
IDE: Visual Studio 2005/2008
Scripting: Python, Komodo

link|flag
vote up 5 vote down

MacOS X.

  • Xcode - Editor/IDE (Objective C, C, Java)
  • SubEthaEdit - Editor (bash, python, prolog)
  • Changes - Diff/merge program
  • Mercurial - SCM
  • Trac - Ticket management
  • Fluid - SingleSiteBrowser (Trac lives in it's own application!)
link|flag
vote up 5 vote down

Linux (Gnome):
Meld is a great tool that I've been enjoying recently.

From their homepage:
Meld is a visual diff and merge tool. You can compare two or three files and edit them in place (diffs update dynamically). You can compare two or three folders and launch file comparisons. You can browse and view a working copy from popular version control systems such such as CVS, Subversion, Bazaar-ng and Mercurial.

link|flag
vote up 5 vote down

Procexp and Procmon are critical sysinternals tools for diagnosing tricky configuration problems with assemblies, dlls, registry entries, and the file system. If you are a windows dev and the sysinternal tools are not part of your toolbox and you are cheating yourself.

Fxcop for managed code and Prefast for VC++ code (particularly with SAL annotations) are incredibly helpful for setting a standard code quality bar and keeping it across a team. If your app requires it this can be critical for writing secure code.

VMware and Hyper-V are incredibly useful for setting up and isolating difficult bugs.

Obviously the VS debugger (disclosure .. I worked on the vs debugger). With the VS debugger there are data visualizers that can be incredibly helpful for specifc tasks. Josh Smith's "Mole" for debugging WPF is a good example and I believe there is a 3rd party visualizer for datasets that is much better then the default one.

For deep debugging of the clr you need to use SOS, which has support in VS, but is often used from windbg.

For trapping production problems and debugging offline you should implement minidump support in your app.

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

For Regular Expressions:

link|flag
vote up 4 vote down

essential-programming-tools

link|flag
vote up 4 vote down

Some Mac Applications for Web Development.

If there is no $/€ amount listed assume the application is free. My "must haves" are always the top listed one in the group (with the exception of Coda because I haven't purchased it so I don't know). The rest listed are all other very popular applications used by others.

Local Server:

  • MAMP - contains Apache, MySQL, SQLite, PHP, and phpMyAdmin
  • Locomotive - contains a Ruby on Rails stack
  • Ruby Stack - contains a Ruby on Rails stack

Editors:

IDEs:

FTP:

Graphics:

Styles:

General Development Tools:

Source Control:

  • There are a number of SVN clients but most of the good ones are in beta/pre-release, and the free ones are easy to find. As always you can use the Command Line for any of these.
  • git and github
  • svn (builtin) and Versions or SVNx

Browsers:

Windows Emulators: (you should get these for cheaper almost always)

Utilities: (for everyday things to improve productivity)

  • QuickSilver - Application Launcher, Shortcuts, Hotkeys, an absolute must have
  • LaunchBar - $20 - Alternative app launcher
  • TextExpander - Word Expansion anywhere (typing "nname" => "Joseph Pecoraro")

Gosh, I know I missed a bunch but I think this is a good foundation for listing applications. To go along with this you really need links to documentation websites, etc. but that is really outside the bounds of the question.

I hope you bought a mac!

link|flag
vote up 4 vote down

Here's what I use everyday:

Here's what I use often:

There is probably better out there, but that's what we use:

link|flag
vote up 4 vote down

RockScroll: http://www.hanselman.com/blog/IntroducingRockScroll.aspx

alt text

link|flag
vote up 4 vote down

Topics in Pragmatic Programmer related to tools:

  • Learn a Text Manipulation Language
  • Use a Single Editor Well
  • Don’t Use Manual Procedures
  • Costly Tools Don’t Produce Better Designs
  • Write Code That Writes Code
  • Always Use Source Code Control
  • Use the Power of Command Shells

Grab the book for the details.

link|flag
vote up 3 vote down

To help with traversing through code in a command line environment ctags and cscope make life a lot easier.

link|flag
vote up 3 vote down

.NET related:

  • Resharper
  • Agent Smith Plugin for R#

Delphi related:

  • Model Maker code Explorer

Xcode related:

  • Instruments is my favourite programming tool!

Javascript:

  • Aptana IDE

Misc:

  • big fan of Netbeans for Java and Rails coding
link|flag
vote up 3 vote down

Even when working all day long in Visual Studio, emacs is a must-have, if for no other reason than its macros.

link|flag
show 1 more comment
1 2 3 4 next

Your Answer

Get an OpenID
or

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