Essential Programming Tools - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T10:05:54Zhttp://stackoverflow.com/feeds/question/2187http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/2187/essential-programming-tools79Essential Programming ToolsMat2008-08-05T12:36:44Z2009-07-16T07:09:19Z
<p>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.</p>
<p>However, in each area there is usually a <strong>set</strong> 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.</p>
<p>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?</p>
<p>I'll edit together the answers as a list of <strong>highly recommended</strong> tools in each area. Please don't start discussing which is the best ;)</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/2190#219045Answer by GateKiller for Essential Programming ToolsGateKiller2008-08-05T12:38:18Z2009-02-13T01:06:25Z<p><strong><a href="http://stackoverflow.com" rel="nofollow">Stack Overflow</a></strong></p>
http://stackoverflow.com/questions/2187/essential-programming-tools/2192#21926Answer by Adhip Gupta for Essential Programming ToolsAdhip Gupta2008-08-05T12:39:32Z2008-08-05T12:39:32Z<p><a href="http://www.nunit.org/index.php" rel="nofollow">NUnit</a> for .NET Unit Test Cases.
<a href="http://nant.sourceforge.net/" rel="nofollow">NAnt</a> for .NET automated builds.</p>
<p>Will update the post as soon as I can think of other required tools!</p>http://stackoverflow.com/questions/2187/essential-programming-tools/2193#219315Answer by John Downey for Essential Programming ToolsJohn Downey2008-08-05T12:39:35Z2008-08-05T12:39:35Z<p>I could probably not live without <a href="http://winmerge.org/" rel="nofollow">WinMerge</a> 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.</p>http://stackoverflow.com/questions/2187/essential-programming-tools/2200#220024Answer by Karl Seguin for Essential Programming ToolsKarl Seguin2008-08-05T12:43:27Z2008-12-18T17:26:01Z<p>Generally:</p>
<ol>
<li>Subversion or Git, Tortoise</li>
<li>Mantis</li>
<li>3SqlLite (I use it almost exclusively for prototypes and demos)</li>
<li>MySQL - For the price, it's stupidly amazing</li>
</ol>
<p>For me (keeping in mind that I mostly do .NET):</p>
<ol>
<li>VS.NET is far beyond any other editor</li>
<li>Resharper is a must-have add-in for .NET programmers</li>
<li>Reflector to look inside dlls</li>
<li>SnippetCompiler</li>
<li>My text editor of choice is EditPadPro</li>
<li>IntelliJ for my Java (Resharper and Intellij are so alike it's easy to switch between the two)</li>
<li>Red-Gate SQL [Data] Compare</li>
<li>DotTrace .NET profiler</li>
<li>jProbe Java profiler</li>
<li>Reflector (.NET decompiler)</li>
<li>Cavaj (Java decompiler)</li>
<li>NAnt/Ant, Cruisecontrol</li>
</ol>
http://stackoverflow.com/questions/2187/essential-programming-tools/2202#220260Answer by chopeen for Essential Programming Toolschopeen2008-08-05T12:45:21Z2008-08-05T12:45:21Z<p>The <a href="http://www.hanselman.com/blog/ScottHanselmans2007UltimateDeveloperAndPowerUsersToolListForWindows.aspx" rel="nofollow">Scott Hanselman's 2007 Ultimate Developer and Power Users Tool List for Windows</a> may give you some ideas.</p>http://stackoverflow.com/questions/2187/essential-programming-tools/2204#22045Answer by Lasse V. Karlsen for Essential Programming ToolsLasse V. Karlsen2008-08-05T12:45:35Z2008-08-05T12:45:35Z<p>These are the ones I use every day, on Windows:</p>
<p>Source Control: <a href="http://subversion.tigris.org" rel="nofollow">Subversion</a>, <a href="http://tortoisesvn.tigris.org" rel="nofollow">TortoiseSVN</a>, <a href="http://www.visualsvn.com" rel="nofollow">VisualSVN</a> <br>
Command Prompt Replacement: <a href="http://www.jpsoft.com" rel="nofollow">Take Command</a> <br>
Build Control: <a href="http://www.finalbuilder.com/" rel="nofollow">FinalBuilder</a> <br>
Text Editor: <a href="http://notepad-plus.sourceforge.net/uk/site.htm" rel="nofollow">Notepad++</a> <br>
File/Folder Comparison Tool: <a href="http://www.scootersoftware.com/" rel="nofollow">Beyond Compare 3</a> <br>
IDE: <a href="http://msdn.microsoft.com/en-us/vstudio/default.aspx" rel="nofollow">Visual Studio 2005/2008</a> <br>
Scripting: <a href="http://www.python.org/" rel="nofollow">Python</a>, <a href="http://activestate.com/Products/komodo_ide/index.mhtml" rel="nofollow">Komodo</a> </p>http://stackoverflow.com/questions/2187/essential-programming-tools/2205#22050Answer by saniul for Essential Programming Toolssaniul2008-08-05T12:45:49Z2008-08-05T12:45:49Z<p><a href="http://en.wikipedia.org/wiki/Bash" rel="nofollow">Bash</a>, <a href="http://en.wikipedia.org/wiki/Sed" rel="nofollow">sed</a>, <a href="http://en.wikipedia.org/wiki/Awk" rel="nofollow">awk</a> for little shell scripting</p>
<ul>
<li>Visual Studio + Expression Studio - .NET development and design on Windows</li>
<li>Monodevelop - .NET on Linux</li>
<li>Eclipse - Java, Crossplatform</li>
</ul>http://stackoverflow.com/questions/2187/essential-programming-tools/2206#220694Answer by maclema for Essential Programming Toolsmaclema2008-08-05T12:46:06Z2008-10-07T23:32:48Z<p>If you're doing a lot of Javascript, the FireBug plugin for Firefox is a must!</p>
<p><a href="http://getfirebug.com/" rel="nofollow">http://getfirebug.com/</a></p>
http://stackoverflow.com/questions/2187/essential-programming-tools/2208#22080Answer by Ronnie for Essential Programming ToolsRonnie2008-08-05T12:46:41Z2008-08-05T12:46:41Z<P>Beyond Compare is essential for comparisons of files, folders local or remote (ftp). It is awesome!</P>
<P>Check it out at <A href="http://www.scootersoftware.com/" rel="nofollow">http://www.scootersoftware.com/</A></P>http://stackoverflow.com/questions/2187/essential-programming-tools/2215#22152Answer by Dan Herbert for Essential Programming ToolsDan Herbert2008-08-05T12:50:50Z2008-08-05T12:50:50Z<p>Personally, I prefer the following tools, depending on the language I'm developing for:</p>
<ul>
<li>Eclipse for development in PHP, Java, or other popular more open languages. There are lots of great plugins and configurations you can set to make it just right for your liking.</li>
<li>Git as a Source Control Management (SCM) tool. I like it because it is a decentralized system that is very standalone. I can use it for solo projects and my entire repository is stored with my code with no need for an extra database or server to set up. It also can work well with groups of people. There is a plugin that allows it to work with a subversion server or client so that you can operate with existing SCM systems. The downside to Git is that it can be tough for a beginner to understand at first (higher initial learning curve)</li>
<li>Winmerge for File diffs. I find this tool to be one of the best Open Source apps I've ever used. It's very well polished and makes it easy to view differences on files.</li>
<li>Notepad2 for just simple file editing on Windows. I find it to be a good replacement for Notepad that comes with Windows. It includes syntax highlighting for many languages, along with other neat features that make it great for a lightweight text editor.</li>
</ul>http://stackoverflow.com/questions/2187/essential-programming-tools/2226#22262Answer by Nick Berardi for Essential Programming ToolsNick Berardi2008-08-05T12:53:58Z2008-08-05T12:53:58Z<p>I have actually put together a list of my favorite tools on my blog:</p>
<p><a href="http://www.coderjournal.com/essential-software/" rel="nofollow">http://www.coderjournal.com/essential-software/</a></p>
<p>Then there is always Scott's list, which is way more complete than mine:</p>
<p><a href="http://www.hanselman.com/tools/" rel="nofollow">http://www.hanselman.com/tools/</a></p>http://stackoverflow.com/questions/2187/essential-programming-tools/2234#22343Answer by Antonio Haley for Essential Programming ToolsAntonio Haley2008-08-05T12:57:55Z2008-08-05T12:57:55Z<p>To help with traversing through code in a command line environment ctags and cscope make life a lot easier.</p>http://stackoverflow.com/questions/2187/essential-programming-tools/2237#22378Answer by UberAlex for Essential Programming ToolsUberAlex2008-08-05T12:59:10Z2008-08-05T12:59:10Z<p>For Java, there are loads of great tools for development. </p>
<p>A lot of people are still holdouts and use text editors like <a href="http://www.vim.org" rel="nofollow">Vim. Anecdotally, they are power users who use things like search/replace and the macro tools to do tasks transparently.</p>
<p>There are two great IDEs for Java: <a href="http://www.eclipse.org" rel="nofollow">Eclipse</a>, and Sun's <a href="http://www.netbeans.org" rel="nofollow">NetBeans</a>. Both tools are particularly hot for doing J2EE development, since they can set up and run your tomcat and glassfish servers and manage deployment.</p>
<p>I'v never managed to get TDD going for myself, but I think a lot of people will like <a href="http://junit.sourceforge.net" rel="nofollow">JUnit</a>.</p>
<p>One thing I don't like in most IDEs is their XML support. For that I use the <a href="http://www.freexmleditor.com" rel="nofollow">Exchanger</a> XML editor. It's a pity it hasn't been updated in a while.</p>
<p>There is, imo, no excuse for not having some sort of version management. Currently, I use Subversion. On OSX, I really like <a href="http://www.versionsapp.com/" rel="nofollow">Version</a>, and windows has unparalleled integration with <a href="http://tortoisesvn.tigris.org" rel="nofollow">TortoiseSVN</a>.</p>
<p>I think the future is probably in Distributed Version control, so something like Git might be worth reading up on <a href="http://www-cs-students.stanford.edu/%7Eblynn/gitmagic/index.html" rel="nofollow">(guide here)</a></p>
<p>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 <a href="http://www.xen.org" rel="nofollow">Xen</a> for our servers, and I am trying <a href="http://www.virtualbox.org" rel="nofollow">Virtualbox</a> for local testing on my mac. </p>
<p>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 <a href="http://www.cygwin.com/" rel="nofollow">cygwin</a> or the windows powershell</a> to try and get them if you're in windows.</p>http://stackoverflow.com/questions/2187/essential-programming-tools/2238#22387Answer by happyappa for Essential Programming Toolshappyappa2008-08-05T13:01:05Z2008-08-26T14:22:20Z<ul>
<li><p><strong>Source Control:</strong> <a href="http://subversion.tigris.org/" rel="nofollow">Subversion</a> </p></li>
<li><p><strong>Source Control GUI:</strong> <a href="http://tortoisesvn.tigris.org/" rel="nofollow">TortoiseSVN</a> </p></li>
<li><p><strong>Text Editor:</strong> <a href="http://www.ultraedit.com/" rel="nofollow">UltraEdit</a> </p></li>
<li><p><strong>IDE:</strong> <a href="http://www.eclipse.org/" rel="nofollow">Eclipse</a>, <a href="http://www.oracle.com/technology/products/jdev" rel="nofollow">JDeveloper</a> </p></li>
<li><p><strong>Oracle Development:</strong> <a href="http://www.allroundautomations.nl/plsqldev.html" rel="nofollow">PLSQL Developer</a>, <a href="http://www.toadsoft.com/" rel="nofollow">TOAD</a></p></li>
<li><p><strong>SFTP/SSH:</strong> <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/" rel="nofollow">PuTTY</a>, <a href="http://www.attachmate.com/Products/Host+Connectivity/PC+X+Server/rsx/" rel="nofollow">Reflection X Suite</a>, <a href="http://filezilla-project.org/" rel="nofollow">FileZilla</a></p></li>
<li><p><strong>RSS:</strong> Google RSS Reader</p></li>
<li><p><strong>Web Debugging Proxy:</strong> <a href="http://www.fiddler2.com/fiddler2/" rel="nofollow">Fiddler</a></p></li>
<li><p><strong>Local Development Apache Web Server and MySQL DB:</strong> <a href="http://www.apachefriends.org/en/xampp.html" rel="nofollow">XAMPP</a></p></li>
</ul>
http://stackoverflow.com/questions/2187/essential-programming-tools/2240#22405Answer by Matthew Schinckel for Essential Programming ToolsMatthew Schinckel2008-08-05T13:01:13Z2008-08-05T13:01:13Z<p>MacOS X.</p>
<ul>
<li>Xcode - Editor/IDE (Objective C, C, Java)</li>
<li>SubEthaEdit - Editor (bash, python, prolog)</li>
<li>Changes - Diff/merge program</li>
<li>Mercurial - SCM</li>
<li>Trac - Ticket management</li>
<li>Fluid - SingleSiteBrowser (Trac lives in it's own application!)</li>
</ul>http://stackoverflow.com/questions/2187/essential-programming-tools/2241#22419Answer by Brett Veenstra for Essential Programming ToolsBrett Veenstra2008-08-05T13:02:19Z2008-08-05T13:02:19Z<p>.NET Dev:</p>
<ul>
<li>Visual Studio 2008 (can target .NET 2.0 - 3.5)</li>
<li>Resharper</li>
<li>MbUnit (backwards compatible with NUnit)</li>
<li>FogBugz for work tracking</li>
<li>Subversion for source control</li>
<li>Red Gate SQL Toolkit</li>
<li>Google</li>
<li>Rhino Mocks</li>
<li>Nant</li>
<li>KDiff for diff/merging</li>
<li>MS SQL Express (or go Developer Edition if you have MSDN)</li>
</ul>http://stackoverflow.com/questions/2187/essential-programming-tools/2243#22437Answer by PabloG for Essential Programming ToolsPabloG2008-08-05T13:03:33Z2008-08-05T13:03:33Z<p><a href="http://clipx.org" rel="nofollow">ClipX</a> for multiple clipboard support in any program, not only inside Visual Studio</p>
<p><a href="http://www.bayden.com/SlickRun/" rel="nofollow">SlickRun</a> for quick command execution</p>
<p><a href="http://www.donationcoder.com/Software/Mouser/findrun/index.html" rel="nofollow">Find and Run Robot</a> for fast desktop/start menu search or filesystem search with Locate32 plugin</p>
<p><a href="http://www.autohotkey.com/" rel="nofollow">AutoHotkey</a> for keyboard remappings, with my own keyboard mappings, </p><p>
F4+F4 To close any window</p><p>
Alt+Alt To open Find and Run Robot process list (similar to Alt+Tab but with filters)</p><p>
Alt+1 Send active window to half up screen (useful for comparisons in one monitor)</p><p>
Alt+2 Send active window to half down screen</p><p>
Alt+0 Switch active window to monitor 1-2</p><p>
...</p><p></p>
<p><a href="http://www.autohotkey.com/docs/scripts/MouseGestures.htm" rel="nofollow">MouseGestures</a> (AutoHotkey script) to enable mouse gestures across applications</p>http://stackoverflow.com/questions/2187/essential-programming-tools/2248#22489Answer by Mat for Essential Programming ToolsMat2008-08-05T13:04:58Z2009-04-16T16:23:44Z<p><strong>IDEs and Text Editors</strong></p>
<p>Visual Studio<br />
Eclipse<br />
EditPadPro<br />
EditPlus<br />
Notepad++<br />
Notepad2<br />
SlickEdit<br />
FireBug </p>
<p><strong>Diff/Merge</strong></p>
<p>BeyondCompare<br />
WinMerge </p>
<p><strong>Source Control</strong></p>
<p>Subversion<br />
Git<br />
Bazaar<br />
Mercurial<br />
SVK<br />
TortoiseSVN </p>
<p><strong>Build</strong></p>
<p>FinalBuilder<br />
NAnt</p>
<p><strong>Bug/Issue Tracking</strong></p>
<p>Mantis<br />
FogBugz<br />
Trac </p>
<p><strong>Learning/Research</strong></p>
<p>Not going to list a ton of sites but just going to go with the suggestion of <strong>The Internet</strong>. And, really, that one applies to most things in modern life and not just software development.</p>
<p>(Going to have trouble keeping up! Will do linking later.)</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/2252#22520Answer by Bernard for Essential Programming ToolsBernard2008-08-05T13:08:57Z2008-08-05T13:08:57Z<p>I personally just bought a copy of <a href="http://www.slickedit.com/" rel="nofollow">SlickEdit</a>. Great editor (vim emulation + integrated IDE features = yes please!), expensive, can be kinda clunky. <a href="http://www.scootersoftware.com/" rel="nofollow">Beyond Compare</a> is a great diff tool. As far as version control, I like <a href="http://git.or.cz/" rel="nofollow">Git</a>, but <a href="http://subversion.tigris.org/" rel="nofollow">SVN</a> is great and widespread. I need a good shell, and <a href="http://www.fishshell.org/" rel="nofollow">fish</a> is my favourite. </p>http://stackoverflow.com/questions/2187/essential-programming-tools/2274#22741Answer by Kevin for Essential Programming ToolsKevin2008-08-05T13:21:22Z2008-08-05T13:21:22Z<ol>
<li><a href="http://bluemars.org/clipx/" rel="nofollow">ClipX</a></li>
<li><a href="http://crimsoneditor.com/" rel="nofollow">Crimson Editor</a></li>
<li><a href="http://www.cs.toronto.edu/%7Eiheckman/allsnap/" rel="nofollow">allSnap</a></li>
<li><a href="http://filezilla-project.org/" rel="nofollow">FileZilla</a></li>
<li>Firebug</li>
<li>Photoshop</li>
<li><a href="http://www.freedownloadscenter.com/Web_Authoring/HTML_Color_Pickers/Colour_Spy.html" rel="nofollow">Colour Spy</a></li>
</ol>http://stackoverflow.com/questions/2187/essential-programming-tools/2276#22761Answer by Mat for Essential Programming ToolsMat2008-08-05T13:22:18Z2008-08-05T13:22:18Z<p>I figured that since there are lots of good answers here that I would make my own answer, mark it as The Answer, and edit it up with everyones suggestions. All fine except I can't accept my own answer... Not really sure what to do about that.</p>http://stackoverflow.com/questions/2187/essential-programming-tools/3402#34022Answer by Zack Peterson for Essential Programming ToolsZack Peterson2008-08-06T13:56:04Z2008-08-06T13:56:04Z<p>Similar question: <a href="http://beta.stackoverflow.com/questions/3376" rel="nofollow">What are your must-have tools?</a></p>http://stackoverflow.com/questions/2187/essential-programming-tools/3414#34140Answer by unknown (yahoo) for Essential Programming Toolsunknown (yahoo)2008-08-06T14:01:09Z2008-08-06T14:01:09Z<p>File/Folder comparison: <a href="http://www.scootersoftware.com/" rel="nofollow">Beyond Compare</a> (not free). I used WinMerge years ago but it didn't have folder comparisons at the time.</p>http://stackoverflow.com/questions/2187/essential-programming-tools/3420#34200Answer by Dan for Essential Programming ToolsDan2008-08-06T14:03:33Z2008-08-06T14:03:33Z<p>If you are using Visual studio, you have to get <strong>Reshaper</strong></p>
<p>Visual studio is essentially an incomplete product without it. I cannont stess this enough.</p>
<p><a href="http://www.jetbrains.com/resharper/" rel="nofollow">http://www.jetbrains.com/resharper/</a></p>http://stackoverflow.com/questions/2187/essential-programming-tools/3429#34290Answer by graham.reeds for Essential Programming Toolsgraham.reeds2008-08-06T14:10:38Z2008-08-06T14:10:38Z<p>Want:
Visual Studio 2005
Subversion
NSIS</p>
<p>Have:
Visual C++ 6
PVCS 5
InstallShield 5.5</p>
<p>Yes, the average age of my development tools is 14 years...</p>http://stackoverflow.com/questions/2187/essential-programming-tools/3450#34500Answer by Matthew Ruston for Essential Programming ToolsMatthew Ruston2008-08-06T14:22:58Z2008-08-06T14:22:58Z<p>IDE: <a href="http://www.oracle.com/technology/products/jdev/index.html" rel="nofollow">Oracle JDeveloper</a> </p>
<p>It was essentially forced upon me by my job, but now I adore it. It's my first stop for Java/JSP/JSF work (it can also do PHP with a plugin). The zero-configuration embedded application server is also quite awesome.</p>
<p>Also, another vote for <a href="http://www.scootersoftware.com/" rel="nofollow">Beyond Compare</a>. I just discovered it a few weeks ago when Jeff Atwood blogged about it.</p>http://stackoverflow.com/questions/2187/essential-programming-tools/6872#68720Answer by DrZaius for Essential Programming ToolsDrZaius2008-08-09T18:47:20Z2008-08-09T18:47:20Z<p><a href="http://winmerge.org/" rel="nofollow">WinMerge</a> for diff/merge and <a href="http://tortoisesvn.tigris.org/" rel="nofollow">TortoiseSVN</a> for CM are the first things I install after Eclipse.</p>http://stackoverflow.com/questions/2187/essential-programming-tools/11577#115777Answer by Wilka for Essential Programming ToolsWilka2008-08-14T19:33:53Z2008-08-14T19:33:53Z<p>I find <a href="http://www.testdriven.net/" rel="nofollow" title="excanvas">TestDriven.NET</a> 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 "<a href="http://www.testdriven.net/images/content_vs2.png" rel="nofollow">Test with -> debugger</a>".</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/11608#116080Answer by mabwi for Essential Programming Toolsmabwi2008-08-14T19:49:36Z2008-08-14T19:49:36Z<p>MySQL Workbench is pretty amazing. It's a way to set up your tables/and stuff visually, produce pretty charts to tape to your wall, and it has a nice export tool, for full create scripts, and will also read previous exports to create an ALTER script based on Diffs.</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/11622#1162256Answer by farmerchris for Essential Programming Toolsfarmerchris2008-08-14T19:55:34Z2008-08-14T19:55:34Z<p>Another one-up for SysInternals. You can mount their tool repository as a shared drive: </p>
<pre><code>\\live.sysinternals.com\Tools
</code></pre>
<p>I just copy over all the files into C:\Program Files\Bin, then add that to my PATH.</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/11628#116281Answer by Patrik for Essential Programming ToolsPatrik2008-08-14T19:57:19Z2008-08-14T19:57:19Z<p>These are the tools I use every day.</p>
<ol>
<li>Visual Studio 2008</li>
<li>Visual Studio Team System 2008 Team Explorer</li>
<li>SQL Server 2005</li>
<li>WIX</li>
<li>Sandcastle</li>
<li>Notepad++</li>
<li>"The Internets"</li>
</ol>
http://stackoverflow.com/questions/2187/essential-programming-tools/11651#116512Answer by Leonardo for Essential Programming ToolsLeonardo2008-08-14T20:09:56Z2008-08-14T20:09:56Z<p>My list of daily used applications:</p>
<ul>
<li><a href="http://www.sourcegear.com/diffmerge/" rel="nofollow" title="excanvas">SourceGear's DiffMerge</a> for, well, diff and merge ;)</li>
<li><a href="http://www.editpadpro.com/" rel="nofollow">JGsoft's EditPad Pro</a> as THE text editor</li>
<li><a href="http://filezilla-project.org/" rel="nofollow">FileZilla Client</a> for FTP </li>
<li><a href="http://www.x1.com/" rel="nofollow">X1 Enterprise Client</a> (file indexing)</li>
<li><a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/" rel="nofollow">Putty</a> (telnet and ssh client)</li>
<li><a href="http://www.skype.com/intl/en/" rel="nofollow">Skype</a> (VoIP and chat)</li>
</ul>
<p>They are not necessarily the best in their fields, but as they say: "pick one tool, take the time to learn it, and squeeze it". </p>
<p>Ok, nobody says that.</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/11691#116914Answer by Pascal for Essential Programming ToolsPascal2008-08-14T20:51:38Z2008-08-14T20:51:38Z<p>For Regular Expressions:<br></p>
<ul>
<li><a href="http://www.fileformat.info/tool/regex.htm" rel="nofollow">Testing Regular Expressions</a></li>
<li><a href="http://txt2re.com/" rel="nofollow">Regular Expression generator</a> which generates regular expressions from any text you type in.</li>
</ul>
http://stackoverflow.com/questions/2187/essential-programming-tools/13734#137341Answer by Robin Robinson for Essential Programming ToolsRobin Robinson2008-08-17T17:15:16Z2008-08-17T17:15:16Z<ul>
<li>Resharper - must!!!</li>
<li>Just started using VisualSVN. (Seems to make some of Resharper's refactorings a lot easier when using Subversion.)</li>
<li>We actually use <a href="http://www.unfuddle.com" rel="nofollow" title="InfoQ">www.unfuddle.com</a> for our subversion reposity. We are a small team working from 2 different locations.</li>
<li>GhostDoc for VS 2008</li>
</ul>
http://stackoverflow.com/questions/2187/essential-programming-tools/15052#150529Answer by Steven Dick for Essential Programming ToolsSteven Dick2008-08-18T18:35:08Z2008-08-18T18:35:08Z<p>Continuous build: <a href="https://hudson.dev.java.net/" rel="nofollow">Hudson</a></p>
<p>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.</p>
<p>The web interface is great with good feedback through the use of AJAX.</p>
<p>This thing puts a smile on developers' faces when I show it to them. It's that good.</p>
<p>Issue tracking: <a href="http://www.atlassian.com/software/jira/" rel="nofollow">Jira</a></p>
<p>The best issue tracking tool I've used in 15 years. Developers and managers like it. Web-based with a clean interface.</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/31159#311590Answer by John Channing for Essential Programming ToolsJohn Channing2008-08-27T20:21:17Z2008-08-27T20:21:17Z<p>I am a huge fan of <a href="http://www.microsoft.com/windowsserver2003/technologies/management/powershell/default.mspx" rel="nofollow">Powershell</a>. Don't be fooled by the administrator tools credentials, if you do development in .Net or want a OO scripting language on your Windows box that puts the UNIX equivalents to shame, this is it. I also use <a href="http://www.vim.org/" rel="nofollow">GVim</a> and <a href="http://notepad-plus.sourceforge.net/uk/site.htm" rel="nofollow">Notepad++</a> on a daily basis.</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/31184#311845Answer by Doug for Essential Programming ToolsDoug2008-08-27T20:28:59Z2008-08-27T20:28:59Z<p>Linux (Gnome):<br>
<strong><a href="http://meld.sourceforge.net/" rel="nofollow">Meld</a></strong> is a great tool that I've been enjoying recently. </p>
<p>From their homepage:<br>
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. </p>
http://stackoverflow.com/questions/2187/essential-programming-tools/32174#321741Answer by Craig for Essential Programming ToolsCraig2008-08-28T13:03:23Z2008-08-28T13:03:23Z<ul>
<li>SQL Prompt from Red-Gate. Man I
love that thing. </li>
<li>Fiddler 2. A must for web development. </li>
<li>ReSharper. Just pure sweetness.</li>
</ul>
http://stackoverflow.com/questions/2187/essential-programming-tools/32182#321823Answer by KiwiBastard for Essential Programming ToolsKiwiBastard2008-08-28T13:05:08Z2008-08-28T13:05:08Z<p>.NET related:</p>
<ul>
<li>Resharper </li>
<li>Agent Smith Plugin for R#</li>
</ul>
<p>Delphi related:</p>
<ul>
<li>Model Maker code Explorer</li>
</ul>
<p>Xcode related:</p>
<ul>
<li>Instruments is my favourite programming tool!</li>
</ul>
<p>Javascript:</p>
<ul>
<li>Aptana IDE</li>
</ul>
<p>Misc:</p>
<ul>
<li>big fan of Netbeans for Java and Rails coding</li>
</ul>
http://stackoverflow.com/questions/2187/essential-programming-tools/32185#321851Answer by jinsungy for Essential Programming Toolsjinsungy2008-08-28T13:05:29Z2008-08-28T13:05:29Z<p>Two apps I use frequently are..</p>
<p>-SQL Prompt from Red-Gate software (Intellisense for SQL)</p>
<p>-Notepad++</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/32186#321861Answer by MKP for Essential Programming ToolsMKP2008-08-28T13:05:59Z2008-08-28T13:05:59Z<p>MZ Tools and Smart Indenter for Excel development...even if it's not a "proper" language it's nice to write nice code in it!</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/32187#321870Answer by Thomas Owens for Essential Programming ToolsThomas Owens2008-08-28T13:06:07Z2008-08-28T13:06:07Z<p>Environments: Eclipse (C/C++, Java, PHP, Ruby, Rails), EiffelStudio (Eiffel), Visual Studio (.NET), Expression Studio (.NET design)</p>
<p>Text Editors: jEdit</p>
<p>Shells: Cygwin, PowerShell, Unix command line tools for Windows</p>
<p>Compilers: MinGW (Windows, C/C++)</p>
<p>Version Control: TortoiseSVN (SVN), TortoiseCVS (CVS)</p>
<p>Mathematics: R (statistics), Octave, Maxima, Singular CAS (still comparing the functionality of the last 3...I'll probably choose 1)</p>
<p>Art: GIMP, Inkscape (Scalable Vector Graphics)</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/32188#321881Answer by Niyaz for Essential Programming ToolsNiyaz2008-08-28T13:06:13Z2008-08-28T13:06:13Z<p><strong>It depends.</strong></p>
<p>You should consider answering the following questions:</p>
<ol>
<li>What development do you do?</li>
<li>What kind of projects are you working on?</li>
<li>Do you need some design tools?</li>
<li>What is your budget?</li>
<li>What is your system configuration?</li>
</ol>
http://stackoverflow.com/questions/2187/essential-programming-tools/32190#321901Answer by Rob Cooper for Essential Programming ToolsRob Cooper2008-08-28T13:06:31Z2008-08-28T13:06:31Z<ul>
<li>A good launcher - I use <a href="http://www.launchy.net/" rel="nofollow">Launchy</a> Make sure you get the Weby plugin as well.</li>
<li>Code snippet editor for VS (obv if you dev in VS) I use <a href="http://www.codeplex.com/snippy" rel="nofollow">Snippy</a>.</li>
<li>Good notepad, I personally use <a href="http://editra.org/index.php" rel="nofollow">Editra</a>.</li>
<li><a href="http://www.getpaint.net/" rel="nofollow">Paint.NET</a> - Its awesome, donate if you like it!</li>
<li>A Sync tool for all the odd files that you like to keep with you (supporting shortcuts for Launchy etc.. I actually use <a href="https://www.mesh.com/Welcome/Welcome.aspx" rel="nofollow">Live Mesh</a>.</li>
</ul>
http://stackoverflow.com/questions/2187/essential-programming-tools/32205#322052Answer by aku for Essential Programming Toolsaku2008-08-28T13:10:22Z2008-08-28T13:27:51Z<p>I like these free utilities: </p>
<ul>
<li><a href="http://bluemars.org/clipx/" rel="nofollow">ClipX</a> - very nice clipboard manager</li>
<li><a href="http://ccollomb.free.fr/unlocker" rel="nofollow">Unlocker</a> - must have Explorer extension.</li>
<li><a href="http://www.sliver.com/dotnet/SnippetCompiler" rel="nofollow">Snippet Compiler</a> - compile your .NET snippets without loading MSVS</li>
<li><a href="http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx" rel="nofollow">Process Explorer</a> - great replacement for Task Manager</li>
<li><a href="http://www.microsoft.com/windows/products/winfamily/desktopsearch/default.mspx" rel="nofollow">Windows Desktop Search</a> - instantly find documents, e-mail, attachments, etc. Plus nice quick launch functionality (like in standalone program launchers)</li>
</ul>
http://stackoverflow.com/questions/2187/essential-programming-tools/32214#322144Answer by Mark Biek for Essential Programming ToolsMark Biek2008-08-28T13:13:23Z2008-08-28T13:13:23Z<p><a href="http://beta.stackoverflow.com/questions/2187/essential-programming-tools" rel="nofollow">essential-programming-tools</a></p>
http://stackoverflow.com/questions/2187/essential-programming-tools/32271#322710Answer by Adam Haile for Essential Programming ToolsAdam Haile2008-08-28T13:32:18Z2008-08-28T13:32:18Z<p><a href="http://www.slickedit.com/content/view/441" rel="nofollow">Slick Edit Gadgets</a> are a great addon to VS...I particularly like the line count. And they are free! The full versions I nice too, but may not be worth the cost for everyone.</p>
<p><a href="http://www.codeplex.com/VSWindowManager" rel="nofollow">VSWindowManager</a> is a great tool for keeping window "Profiles" in Visual Studio. I use it all the time for switching between full window text editing and the usual window with Solution Explorer, Errors, Output, etc.</p>
<p><a href="http://wwww.visualsvn.com" rel="nofollow">VisualSVN</a> For VS Subversion integration...if you use VS <em>and</em> work in a subversion environment, this is hands down the best $50 you can spend. The time and sanity saved is worth every penny. I even bought it for work myself because they were too cheap to get it for me...I like it that much.</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/32299#322994Answer by Joseph Pecoraro for Essential Programming ToolsJoseph Pecoraro2008-08-28T13:40:18Z2008-08-28T13:48:08Z<p>Some Mac Applications for Web Development.</p>
<p>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.</p>
<p>Local Server:</p>
<ul>
<li><a href="http://www.mamp.info/en/index.php" rel="nofollow">MAMP</a> - contains Apache, MySQL, SQLite, PHP, and phpMyAdmin</li>
<li><a href="http://sourceforge.net/projects/locomotive" rel="nofollow">Locomotive</a> - contains a Ruby on Rails stack</li>
<li><a href="http://bitnami.org/stack/rubystack" rel="nofollow">Ruby Stack</a> - contains a Ruby on Rails stack</li>
</ul>
<p>Editors:</p>
<ul>
<li><a href="http://macromates.com/" rel="nofollow">TextMate</a> - €39</li>
<li><a href="http://www.barebones.com/" rel="nofollow">BBEdit</a> - $49+</li>
<li><a href="http://smultron.sourceforge.net/" rel="nofollow">Smultron</a></li>
<li><a href="http://www.barebones.com/products/textwrangler/index.shtml" rel="nofollow">TextWrangler</a></li>
</ul>
<p>IDEs:</p>
<ul>
<li><a href="http://www.panic.com/coda/" rel="nofollow">Coda</a> - $99</li>
</ul>
<p>FTP:</p>
<ul>
<li><a href="http://extendmac.com/flow/" rel="nofollow">Flow</a> - $29</li>
<li><a href="http://www.panic.com/transmit/" rel="nofollow">Transmit</a> - $29 </li>
<li><a href="http://cyberduck.ch/" rel="nofollow">Cyberduck</a></li>
</ul>
<p>Graphics:</p>
<ul>
<li><a href="http://www.pixelmator.com/" rel="nofollow">Pixelmator</a> - $59</li>
</ul>
<p>Styles:</p>
<ul>
<li><a href="http://macrabbit.com/cssedit/" rel="nofollow">CSSEdit</a> - €30</li>
<li><a href="http://www.culturedcode.com/xyle/" rel="nofollow">Xyle Scope</a> - $30</li>
<li><a href="http://www.omnidea.it/en/software/rulers/index.html" rel="nofollow">Rulers</a></li>
</ul>
<p>General Development Tools:</p>
<ul>
<li>Terminal - Lets face it, the terminal rocks</li>
<li><a href="http://ditchnet.org/aquapath/" rel="nofollow">AquaPath</a> - XPath testing</li>
<li><a href="http://ditchnet.org/xslpalette/" rel="nofollow">XSLPalette</a> - XSL testing</li>
<li><a href="http://www.mozilla.com/en-US/firefox/?from=getfirefox" rel="nofollow">Firefox</a> with <a href="http://getfirebug.com/" rel="nofollow">Firebug</a> - great debugging</li>
<li><a href="http://ktd.club.fr/programmation/latexit_en.php" rel="nofollow">LaTeXiT</a> - when LaTeX is needed, this is awesome</li>
</ul>
<p>Source Control:</p>
<ul>
<li>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.</li>
<li><a href="http://git.or.cz/" rel="nofollow">git</a> and <a href="https://github.com/" rel="nofollow">github</a></li>
<li>svn (builtin) and <a href="http://www.versionsapp.com/" rel="nofollow">Versions</a> or <a href="http://www.lachoseinteractive.net/en/community/subversion/svnx/features/?sid=5b77041c88bfadb684348d7f139dd7f1" rel="nofollow">SVNx</a></li>
</ul>
<p>Browsers:</p>
<ul>
<li>As a web Developer you should be able to test with all the popular browsers.</li>
<li><a href="http://webkit.org/" rel="nofollow">Safari/WebKit</a></li>
<li><a href="http://www.mozilla.com/en-US/firefox/?from=getfirefox" rel="nofollow">Firefox</a></li>
<li><a href="http://www.opera.com/" rel="nofollow">Opera</a></li>
</ul>
<p>Windows Emulators: <em>(you should get these for cheaper almost always)</em></p>
<ul>
<li><a href="http://www.vmware.com/products/fusion/" rel="nofollow">VMWare Fusion</a> - $80 - Windows apps right next to your OS X apps</li>
<li><a href="http://www.parallels.com/en/products/desktop/" rel="nofollow">Parallels</a> - $80 - Another popular emulator</li>
</ul>
<p>Utilities: <em>(for everyday things to improve productivity)</em></p>
<ul>
<li><a href="http://www.blacktree.com/" rel="nofollow">QuickSilver</a> - Application Launcher, Shortcuts, Hotkeys, an <em>absolute must have</em></li>
<li><a href="http://www.obdev.at/products/launchbar/index.html" rel="nofollow">LaunchBar</a> - $20 - Alternative app launcher</li>
<li><a href="http://smileonmymac.com/TextExpander/" rel="nofollow">TextExpander</a> - Word Expansion anywhere (typing "nname" => "Joseph Pecoraro")</li>
</ul>
<p>Gosh, I know I missed a bunch but I think this is a good foundation for listing <em>applications</em>. To go along with this you really need links to documentation websites, etc. but that is really outside the bounds of the question.</p>
<p>I hope you bought a mac!</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/32373#323730Answer by JosephStyons for Essential Programming ToolsJosephStyons2008-08-28T14:20:29Z2008-08-28T14:20:29Z<p>There are many, but there are some that I find myself installing before I even get started:</p>
<p>I have found <a href="http://www.copernic.com/en/products/agent/download.html" rel="nofollow">Copernic</a> to be much better than Windows Live Search, even under Vista.</p>
<p>If you have > 1 monitor, then <a href="http://www.realtimesoft.com/ultramon/download.asp" rel="nofollow">Ultramon</a> is indispensable.</p>
<p>In Firefox, <a href="http://www.mousegestures.org/index.html" rel="nofollow">Mouse Gestures</a>.</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/32382#323820Answer by JosephStyons for Essential Programming ToolsJosephStyons2008-08-28T14:22:06Z2008-08-28T14:22:06Z<p>There are many, but there are some that I find myself installing before I even get started:</p>
<p>I have found <a href="http://www.copernic.com/en/products/agent/download.html" rel="nofollow">Copernic</a> to be much better than Windows Live Search, even under Vista.</p>
<p>If you have > 1 monitor, then <a href="http://www.realtimesoft.com/ultramon/download.asp" rel="nofollow">Ultramon</a> is indispensable.</p>
<p>In Firefox, <a href="http://www.mousegestures.org/index.html" rel="nofollow">Mouse Gestures</a>.</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/34032#340321Answer by Jim Robert for Essential Programming ToolsJim Robert2008-08-29T05:58:41Z2008-08-29T05:58:41Z<p>now we know that stack overflow needs a merge feature ;)</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/36783#3678321Answer by Matthew Watson for Essential Programming ToolsMatthew Watson2008-08-31T11:30:26Z2008-08-31T11:30:26Z<p>The only <strong>must have</strong> 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.</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/36998#369985Answer by Steve Steiner for Essential Programming ToolsSteve Steiner2008-08-31T17:59:08Z2009-01-04T18:52:11Z<p><a href="http://technet.microsoft.com/en-us/sysinternals/bb545027.aspx" rel="nofollow"><strong>Procexp</strong> and <strong>Procmon</strong></a> 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.</p>
<p><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=9aeaa970-f281-4fb0-aba1-d59d7ed09772&DisplayLang=en" rel="nofollow"><strong>Fxcop</strong></a> for managed code and <a href="http://www.microsoft.com/whdc/devtools/tools/prefast.mspx" rel="nofollow"><strong>Prefast</strong></a> 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.</p>
<p><strong>VMware</strong> and <strong>Hyper-V</strong> are incredibly useful for setting up and isolating difficult bugs.</p>
<p>Obviously the <strong>VS debugger</strong> (disclosure .. I worked on the vs debugger). With the VS debugger there are <strong>data visualizers</strong> that can be incredibly helpful for specifc tasks. Josh Smith's <a href="http://www.codeproject.com/KB/macros/MoleForVisualStudioEdit.aspx" rel="nofollow"><strong>"Mole"</strong></a> 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.</p>
<p>For deep debugging of the clr you need to use <a href="http://msdn.microsoft.com/en-us/library/bb190764.aspx" rel="nofollow"><strong>SOS</strong></a>, which has support in VS, but is often used from windbg.</p>
<p>For trapping production problems and debugging offline you should implement <a href="http://msdn.microsoft.com/en-us/library/ms680369.aspx" rel="nofollow"><strong>minidump support</strong></a> in your app.</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/37003#370031Answer by Roddy for Essential Programming ToolsRoddy2008-08-31T18:12:30Z2008-08-31T18:12:30Z<p>Well, I know that this is unlikely to be believed, but that's fine by me:-</p>
<p>The C++Builder IDE from <a href="http://www.codegear.com" rel="nofollow">Codegear</a> gives me such a great head-start on developing Windows GUI applications that I'm almost unwilling to recommend it in case my competitors catch on. </p>
<p>It's not perfect, but the combination of C++, two-way visual RAD design, a well tried and tested application framework (VCL) and slews of third-party components (basically, all Delphi components since ~1995) hit a sweet spot for me.</p>
<p>Otherwise, +1 for for the usual suspects: SVN, TortoiseSVN, Fogbugz, Winmerge.</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/39854#398543Answer by Gronk for Essential Programming ToolsGronk2008-09-02T15:49:33Z2008-09-02T15:49:33Z<p>Even when working all day long in Visual Studio, emacs is a must-have, if for no other reason than its macros. </p>
http://stackoverflow.com/questions/2187/essential-programming-tools/42981#429810Answer by Frank for Essential Programming ToolsFrank2008-09-04T01:17:49Z2008-09-04T01:17:49Z<p>I am a big fan of <a href="http://www.zabkat.com/" rel="nofollow">xplorer2</a>, it makes navigating the file system more programmer friendly. I am sure everyone will agree that using the search capability in Windows XP is infuriating; Xplorer2 allows you to search across directories and inside files, although not quite grep it is very useful. It comes with a nice lightweight replacement of notepad.</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/47996#479960Answer by Thomas Kohl for Essential Programming ToolsThomas Kohl2008-09-07T01:00:03Z2008-09-07T01:00:03Z<p>Eclipse PDT for PHP development on Linux.</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/48036#480360Answer by Robert for Essential Programming ToolsRobert2008-09-07T02:03:07Z2008-09-07T02:03:07Z<p>Of the tools I have seen on the list that haven't been mentioned one of my favorites is "Dave's Quick Search Deskbar" which can be found at <a href="http://dqsd.net/" rel="nofollow">http://dqsd.net/</a> it's ability to use switched shortcuts for things like MSDN and the MS Knowledgebase Q articles are outstanding. There are probably 30 of the shortcuts I use constantly when programming and well over 200 odd searches ranging from FedEx Tracking number search.</p>
<p>For quick and dirty UI prototypes I have found I am using the Pencil Firefox add on which is a handy SVG Image editor. There are enough stock UI widgets built in I can make an interface in 3 or 4 minutes to send off as a .PNG for a decent approximation. Pencil can be found at <a href="http://www.evolus.vn/Pencil/" rel="nofollow">Pencil Homepage</a></p>
http://stackoverflow.com/questions/2187/essential-programming-tools/49231#492310Answer by Geir-Tore Lindsve for Essential Programming ToolsGeir-Tore Lindsve2008-09-08T06:24:30Z2008-09-08T06:24:30Z<p>In addition to many of the above, I'm a big fan of <a href="http://www.maxivista.com/" rel="nofollow" title="MaxiVista">MaxiVista</a>. I use it with two laptops each with an external monitor, and uses it in two scenarios:
1. Extending the screen so that I can use four monitors simultaneously, or
2. Control the secondary computer with the same keyboard/mouse as I use on my primary computer just by moving the cursor over to the next monitor.</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/49238#492380Answer by Sara Chipps for Essential Programming ToolsSara Chipps2008-09-08T06:37:53Z2008-09-08T06:37:53Z<p>REsharper
Paint.NET
Fiddler
Notepad++</p>
<p>are my main goto's</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/51929#519290Answer by Stradas for Essential Programming ToolsStradas2008-09-09T13:48:23Z2008-09-09T13:48:23Z<p>While programming I use <strong>snagit</strong> and <strong>evernote</strong>. </p>
<p><a href="http://www.techsmith.com/" rel="nofollow">Snagit</a> is great for screen prints. You can set it up to hot-key captures into a stack of screen captures with a name that counts up. I like to use them to keep a chronology of runs of some of my output. (Techsmith also makes Camtasia studio. A must have for demos.) </p>
<p><a href="http://www.evernote.com" rel="nofollow">Evernote</a> is a great notepad program that creates a continuous tape of just about anything. I paste code into it all the time. It has a nice little search filter. It is pretty cool to grab a copy of the website you are developing each time you change it. Great way to show changes without much work.</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/51940#519400Answer by Nick Fortescue for Essential Programming ToolsNick Fortescue2008-09-09T13:54:55Z2008-09-09T13:54:55Z<p>I'd second IntelliJ IDEA as a Java IDE. I keep on trying others but going back to IDEA. Built in refactoring, almost psychic code completion, good debugging, good integration with almost every popular tool, and usability which has clearly been thought about.</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/55598#555980Answer by stevechol for Essential Programming Toolsstevechol2008-09-11T01:04:31Z2008-09-11T01:04:31Z<p>For the Mac:</p>
<p>Textmate</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/55626#556260Answer by sherbang for Essential Programming Toolssherbang2008-09-11T01:21:00Z2008-09-11T01:21:00Z<p><a href="http://www.vim.org/" rel="nofollow">GVim</a> - I've tried to use other editors and larger IDEs and such, and keep coming back to good old gvim.</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/55630#556300Answer by sherbang for Essential Programming Toolssherbang2008-09-11T01:22:33Z2008-09-11T01:22:33Z<p><a href="http://git.or.cz" rel="nofollow">Git</a> for version control. Works great by itself, or as a svn client with git-svn.</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/55640#556401Answer by sherbang for Essential Programming Toolssherbang2008-09-11T01:30:23Z2008-09-11T01:30:23Z<p>A good <a href="http://en.wikipedia.org/wiki/REPL" rel="nofollow">REPL</a>:<br />
When programming in python I <em>live</em> in <a href="http://ipython.scipy.org/moin/" rel="nofollow">ipython</a> and am constantly testing things out next to my editor.<br />
When programming in Java <a href="http://www.beanshell.org/" rel="nofollow">beanshell</a> gets plenty of use.<br />
When I write PHP I miss having an easy shell to work in.<br />
Edit, save, run, debug, edit takes a lot longer.</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/60319#603190Answer by Crippeoblade for Essential Programming ToolsCrippeoblade2008-09-13T04:04:42Z2008-09-13T04:04:42Z<p>rssbandit - rss reader</p>
<p><a href="http://www.teamcti.com/trayit/trayit.htm" rel="nofollow">trayit</a> - for minimizing windows to tray. Hate having too many on taskbar</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/60363#603630Answer by khebbie for Essential Programming Toolskhebbie2008-09-13T06:17:22Z2008-09-13T06:17:22Z<p>For .Net:</p>
<p><a href="http://www.linqpad.net/" rel="nofollow">http://www.linqpad.net/</a></p>
http://stackoverflow.com/questions/2187/essential-programming-tools/60388#603884Answer by Sébastien RoccaSerra for Essential Programming ToolsSébastien RoccaSerra2008-09-13T07:37:52Z2008-09-13T07:37:52Z<p>Here's what I use everyday:</p>
<ul>
<li>Firefox,</li>
<li><a href="http://ourcomments.org/Emacs/EmacsW32.html" rel="nofollow">EmacsW32</a> (with Vi emulation),</li>
<li><a href="http://www.jetbrains.com/idea/" rel="nofollow">IntelliJ</a> for Java,</li>
<li><a href="http://orgmode.org/" rel="nofollow">Org Mode</a> for project planning</li>
<li><a href="http://www.ghisler.com/index.htm" rel="nofollow">TotalCommander</a> (NortonCommander-like file manager)</li>
<li><a href="http://www.perforce.com/" rel="nofollow">Perforce</a> & Subversion (integrated in Emacs & IntelliJ)</li>
<li><a href="http://play.typeracer.com/" rel="nofollow">TypeRacer</a> & <a href="http://www.goodtyping.com/" rel="nofollow">GoodTyping</a> to inmprove my bad typing</li>
<li><a href="http://www.miranda-im.org/" rel="nofollow">Miranda IM</a> to hear what others have to say</li>
<li>A <a href="http://en.wikipedia.org/wiki/Pencil" rel="nofollow">pencil</a> and a <a href="http://en.wikipedia.org/wiki/Notebook" rel="nofollow">notebook</a> to carry around and write things down</li>
</ul>
<p>Here's what I use often:</p>
<ul>
<li><a href="http://www.oracle.com/technology/products/database/sql_developer/index.html" rel="nofollow">SQL Developer</a> to probe the DB</li>
<li><a href="http://www.squeak.org" rel="nofollow">Squeak</a> with the <a href="http://wiki.squeak.org/squeak/227" rel="nofollow">RefactoringBrowser</a> to do some quick & testable class design</li>
<li><a href="http://www.cygwin.com/" rel="nofollow">Cygwin</a> to automate some tasks</li>
</ul>
<p>There is probably better out there, but that's what we use:</p>
<ul>
<li>Bugzilla to track bugs</li>
<li><a href="http://office.microsoft.com/fr-fr/visio/default.aspx" rel="nofollow">Microsoft Visio</a> to review graphic specs</li>
</ul>
http://stackoverflow.com/questions/2187/essential-programming-tools/62889#628891Answer by schwerwolf for Essential Programming Toolsschwerwolf2008-09-15T13:30:54Z2008-09-15T13:30:54Z<p>I write code in Perl and C.</p>
<p>Debugging:<br/>
<strong>gdb</strong> - for C debugging<br/>
<strong>perl</strong> - for perl debugging</p>
<p>Editing:<br/>
<strong>vim</strong> - I try to never use the mouse. Some prefer Emacs. It's a matter of tradition for me. I typically use vim when I want to focus on a task that I'm familiar with. I use Visual Studio when I absolutely need the context-completion and object-browsing.<br/>
<strong>MS VS2005</strong> - Microsoft has the best context-completion and object-browsing I've ever used.<br/>
<strong>Viemu</strong> - Sometimes I want vim in visual studio- this is the only tool I know of that provides this capability. However, I've realized that one of the reasons I use vim is to decrease the amount of screen clutter. Viemu doesn't help with that much.</p>
<p>Diffing:<br/>
<strong>kdiff3</strong> - I don't know how I'd survive without a decent merging and diffing tool. This does the job reasonably well. It's gui-based but you can construct merges using keyboard shortcuts. That's a boon.</p>
<p>Documenting:<br/>
<strong>MediaWiki</strong> - If it's not in the source code, we use a wiki. This is a good solution for non-deliverable document control.</p>
<p>Bug Tracking:<br/>
<strong>Trac</strong> - for small shops, this integrates bug tracking and revision control reasonable well.</p>
<p>Revision Control:<br/>
<strong>Subversion</strong> - Very well supported in the industry. Almost as ubiquitous as CVS. The only feature it's missing is merge-tracking. I understand that's a feature planned for a future version.</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/63339#633390Answer by Cory Engebretson for Essential Programming ToolsCory Engebretson2008-09-15T14:20:25Z2008-09-15T14:32:34Z<p>For a good list of available tools, check out <a href="http://www.hanselman.com/blog/ScottHanselmans2007UltimateDeveloperAndPowerUsersToolListForWindows.aspx" rel="nofollow">Scott Hanselman's recommendations.</a></p>
<p>In practice I don't see how you could really use all of those tools well. Here is a pared down list of what I use in my 2 separate development environments since I split my time roughly in half between C# and Python. About half of these tools are free.</p>
<ul>
<li>SVN (Tortoise, anksvn, subvert for Eclipse. Die StarTeam, die!)</li>
<li>GridMode (cut down on window positioning time, long live the keyboard!)</li>
<li>TaskSwitchXP Pro (no Vista for me)</li>
<li>Cygwin (Used mainly for grep and scp)</li>
<li>ReflectionX</li>
<li>GVIM (yes, I'm a vi guy)</li>
<li>Excel (todo lists, occasional code generation)</li>
<li>Outlook + SpamBayes + Lookout (makes Outlook a little less painful)</li>
<li>Toad for Oracle (Nice tool, but I wish the ER diagrams were more display friendly)</li>
<li><p>Visio (Used for ER diagrams mainly, but I wouldn't recommend it.)</p></li>
<li><p>Eclipse + Pydev + viPlugin (I'm hooked on debugging in an IDE)</p></li>
<li><p>Ant for automated builds and remote deployments</p></li>
<li><p>Visual Studio 2008 + viEmu</p></li>
</ul>
<p>Missing Tools </p>
<ul>
<li>Bug/Issue Tracking DB (I can't currently justify the overhead for myself)</li>
</ul>
http://stackoverflow.com/questions/2187/essential-programming-tools/63526#635260Answer by sleep-er for Essential Programming Toolssleep-er2008-09-15T14:42:34Z2008-09-15T14:42:34Z<p>kdiff3 - works in linux and windows</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/63531#635310Answer by sleep-er for Essential Programming Toolssleep-er2008-09-15T14:43:30Z2008-09-15T14:43:30Z<p>trac - a great way to view your svn tree + wiki + bug tracking</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/63816#638160Answer by calopodius for Essential Programming Toolscalopodius2008-09-15T15:14:45Z2008-09-15T15:14:45Z<p>Windows XP and later:</p>
<p>Programmer's Editor:</p>
<p>On Windows XP and later, I recommend TextPad. It is an excellent low-cost editor, which supports multiple language configurations and good but limited integration with 3rd party tools</p>
<p>I also use UltraEdit-32 from IDM Computer Solutions. It is not as good for multi-language development, but it supports editing files accessible with FTP.</p>
<p>UNIX/Linux remote sessions: puTTY is an excellent free program for this.</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/67508#675081Answer by disabled for Essential Programming Toolsdisabled2008-09-15T22:07:30Z2008-09-15T22:07:30Z<p>On Linux(Ubuntu):</p>
<ul>
<li><a href="http://ultimatepp.org" rel="nofollow">Ultimate++</a>(TheIde) - gui toolkit + IDE</li>
<li><a href="http://www.gnome.org/projects/gedit/" rel="nofollow">gedit</a> - source editor</li>
<li><a href="http://www.vim.org/" rel="nofollow">vim</a> - source editor (when using CLI)</li>
<li><a href="http://subversion.tigris.org" rel="nofollow">Subversion</a></li>
<li><a href="http://sqlite.org" rel="nofollow">SQLite</a></li>
<li><a href="http://gcc.gnu.org/" rel="nofollow">GCC</a></li>
</ul>
<p>On Windows(Vista):</p>
<ul>
<li>Ultimate++(TheIde) - gui toolkit + IDE</li>
<li><a href="http://notepad-plus.sourceforge.net/" rel="nofollow">Notepad++</a> - source editor</li>
<li>Subversion</li>
<li><a href="http://www.codeblocks.org/" rel="nofollow">CodeBlocks</a> (sometimes)</li>
<li><a href="http://mingw.org" rel="nofollow">MinGW</a> and <a href="http://www.microsoft.com/Express/" rel="nofollow">MSC</a> compilers</li>
</ul>
http://stackoverflow.com/questions/2187/essential-programming-tools/69249#692490Answer by Blinky for Essential Programming ToolsBlinky2008-09-16T03:51:06Z2008-09-16T03:51:06Z<p>Cygwin or, if in Vista Ultimate, the Unix Subsystem. Mostly for the purpose of having access to grep.</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/69282#692820Answer by giancarlo for Essential Programming Toolsgiancarlo2008-09-16T03:56:18Z2008-09-16T03:56:18Z<p>VIM, putty, firebug, firefox.</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/80591#805910Answer by Dara Kong for Essential Programming ToolsDara Kong2008-09-17T06:43:56Z2008-09-17T06:43:56Z<p>Here's what I use daily for console development on a windows machine.</p>
<p>Source Control: TortoiseSVN</p>
<p>IDE: Visual Studio 2005</p>
<p>IDE Addin: Visual Assist X</p>
<p>Diff/Merge: Beyond Compare</p>
<p>Wiki: Trac</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/82228#8222815Answer by Epaga for Essential Programming ToolsEpaga2008-09-17T11:37:47Z2008-09-17T11:37:47Z<p>Can't believe I'm seeing Trac (<a href="http://trac.edgewall.com" rel="nofollow">http://trac.edgewall.com</a>) so seldomly, it's such a great tool: combines and integrates Wiki, Bug Tracking, SVN, and Project Planning, plus it has a bazillion plugins: <a href="http://trac-hacks.org" rel="nofollow">http://trac-hacks.org</a></p>
http://stackoverflow.com/questions/2187/essential-programming-tools/82435#824350Answer by kranor for Essential Programming Toolskranor2008-09-17T12:13:48Z2008-09-17T12:13:48Z<p>2 spring to mind for me...<a href="http://www.pspad.com/" rel="nofollow">PSPad</a> for editing and <a href="http://www.gaijin.at/dldevproject.php" rel="nofollow">DevProject Manager</a> for storing code snippets</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/92735#927354Answer by Serhat Özgel for Essential Programming ToolsSerhat Özgel2008-09-18T13:54:51Z2008-09-18T13:54:51Z<p>RockScroll: <a href="http://www.hanselman.com/blog/IntroducingRockScroll.aspx" rel="nofollow">http://www.hanselman.com/blog/IntroducingRockScroll.aspx</a></p>
<p><img src="http://www.hanselman.com/blog/content/binary/WindowsLiveWriter/IntroducingRockScroll_C29C/RockScroll_5.png" alt="alt text" /></p>
http://stackoverflow.com/questions/2187/essential-programming-tools/92741#927417Answer by slicedlime for Essential Programming Toolsslicedlime2008-09-18T13:55:37Z2008-09-18T13:55:37Z<p>If you're coding with Visual Studio, <a href="http://www.wholetomato.com/" rel="nofollow">Visual Assist X</a> is one of the best addons you could ever find.</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/92858#928585Answer by kms for Essential Programming Toolskms2008-09-18T14:09:23Z2008-09-18T14:09:23Z<p>Topics in <a href="http://www.pragprog.com/the-pragmatic-programmer" rel="nofollow">Pragmatic Programmer</a> related to tools:</p>
<ul>
<li>Learn a Text Manipulation Language</li>
<li>Use a Single Editor Well</li>
<li>Don’t Use Manual Procedures</li>
<li>Costly Tools Don’t Produce Better Designs</li>
<li>Write Code That Writes Code</li>
<li>Always Use Source Code Control</li>
<li>Use the Power of Command Shells</li>
</ul>
<p>Grab the book for the details.</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/93102#931020Answer by bergeroy for Essential Programming Toolsbergeroy2008-09-18T14:35:30Z2008-09-18T14:35:30Z<p>For PHP development, I use <a href="http://www.nusphere.com/products/phped.htm" rel="nofollow">NuSphere PhpED</a>.</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/93157#931570Answer by Steve Moyer for Essential Programming ToolsSteve Moyer2008-09-18T14:40:43Z2008-09-18T14:40:43Z<p>An automated build and test environment ... For Java, I use</p>
<ul>
<li>Subversion</li>
<li>Maven</li>
<li>Continuum</li>
<li>Archiva</li>
<li>JUnit</li>
<li>JWebUnit</li>
<li>JUnitPerf</li>
</ul>
<p>Everything is built, deployed and tested upon every checkin!</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/107158#1071580Answer by Andy Lester for Essential Programming ToolsAndy Lester2008-09-20T04:56:07Z2008-09-20T04:56:07Z<ul>
<li><a href="http://www.vim.org" rel="nofollow">vim</a> and my .vimrc</li>
<li><a href="http://petdance.com/ack/" rel="nofollow">ack</a>, a better grep for programmers</li>
<li>Subversion, although we're using Bazaar on Drizzle and I like it plenty</li>
<li>A well-stocked <a href="http://www.aim.com/" rel="nofollow">AIM</a> buddy list</li>
</ul>
http://stackoverflow.com/questions/2187/essential-programming-tools/107185#1071851Answer by Terhorst for Essential Programming ToolsTerhorst2008-09-20T05:07:21Z2008-09-20T05:31:29Z<p>My recommendations aren't specifically programming tools, but they help organize my workspace while I'm getting things done.</p>
<p><a href="http://www.winsplit-revolution.com/" rel="nofollow">WinSplit Revolution</a> -- I like to be able to quickly maximize, tile, and organize my windows with a quick keystroke or two. I threw together a little script to do the same thing in Linux because I could find nothing like it. I can't stand working for long on computers that don't have something like this now.</p>
<p><a href="http://virtuawin.sourceforge.net/" rel="nofollow">VirtuaWin</a> -- Virtual desktops for Windows that actually work half-decently. Not an incredibly slow piece of junk like Microsoft's official powertoy. </p>
<p><a href="http://launchy.net/" rel="nofollow">Launchy</a> -- Launch programs via keyboard. I use <a href="http://do.davebsd.com/" rel="nofollow">Gnome Do</a> on Linux, but it's not as good.</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/112749#1127490Answer by Sam Stokes for Essential Programming ToolsSam Stokes2008-09-22T01:12:24Z2008-09-22T01:12:24Z<ul>
<li>multiple (aka virtual) desktops - truly indispensable for me. I like to keep a lot of windows open, and find it much easier to spatially organise them than have to Alt-Tab through fifteen things to get to a particular window. Most *nix WMs do these; for Windows, others have pointed out <a href="http://virtuawin.sourceforge.net/" rel="nofollow">VirtuaWin</a>, which is lightweight, configurable and works pretty well.</li>
<li>vim/gvim</li>
<li>bash - achieve useful tasks that no GUI can do with a (mildly cryptic) one-line shell script</li>
<li>sed, awk, grep, find et al - be as expressive in my programming environment as I want to be in my programs</li>
</ul>
http://stackoverflow.com/questions/2187/essential-programming-tools/126657#1266572Answer by Odilon Redo for Essential Programming ToolsOdilon Redo2008-09-24T11:45:03Z2008-09-24T11:45:03Z<p>First, find a good <strong>multi-file text editor / IDE</strong> and stick with it, learn all you can about it and extend it to your needs. Choose carefully because moving is tough once you've become familiar with one. Key features to look for:</p>
<ul>
<li>regular expression find/replace</li>
<li>user macros</li>
<li>unicode support</li>
<li>inbuilt multi-file search</li>
<li>multi-language syntax highlighting</li>
<li>community / continued support from developers</li>
<li>tools support (i.e. customizable launching of other programs like diffs etc)</li>
</ul>
<p>As my main <strong>text editor</strong>, I love <a href="http://www.textpad.com/" rel="nofollow">TextPad</a> but it costs a little and doesn't have proper Unicode support. Notepad++ is a good and portable alternative. I use <a href="http://www.portablefreeware.com/?id=649" rel="nofollow">Notepad2</a> to open single text files because it's very fast and Unicode-smart. </p>
<p><a href="http://www.aptana.com/" rel="nofollow">Aptana</a> is quite wonderful for all your <strong>web development</strong> needs - and is available on Linux too. Especially good if you find code auto-completion useful or are used to Eclipse.</p>
<p>Use Firefox and learn to use <a href="http://getfirebug.com/" rel="nofollow">Firebug</a>. It will make your web development life so much easier. Oh, and don't forget to get <a href="http://getfirebug.com/lite.html" rel="nofollow">Firebug Lite</a> as a bookmarklet for getting some of those features with IE, Opera, etc. Install the <a href="https://addons.mozilla.org/en-US/firefox/addon/60" rel="nofollow">Web Developer</a> extension too which has useful "view cookies", "CSS off", "images off" features etc.</p>
<p>To <strong>manage</strong> your own development, I like <a href="http://www.portablefreeware.com/?id=1273" rel="nofollow">DevProject Manager</a>. Others have covered source control in detail elsewhere on this page, but I like <a href="http://subversion.tigris.org/" rel="nofollow">Subversion</a>.</p>
<p>A good <strong>diff</strong> utility is vital, especially for managing releases across servers. <a href="http://portableapps.com/apps/utilities/winmerge_portable" rel="nofollow">WinMerge</a> is great and is available as a Portable App. The best thing about it is that you can navigate directories for changes (like Windows Explorer with diffs visible for all the files - changed/same/new).</p>
<p><a href="http://portableapps.com/apps/internet/filezilla_portable" rel="nofollow">Filezilla</a> is a good and portable <strong>FTP client</strong>, or you could try the <a href="http://fireftp.mozdev.org/" rel="nofollow">FireFTP</a> Firefox extension.</p>
<p>I'd also recommend the following handy utilities:</p>
<ul>
<li><a href="http://www.albert.nu/Programs/Renamer/" rel="nofollow">Renamer</a> (useful Explorer-integrated <strong>file renamer</strong>)</li>
<li><a href="http://www.mythicsoft.com/agentransack/" rel="nofollow">Agent Ransack</a> (a wonderful <strong>file-searching</strong> utility)</li>
<li><a href="http://www.slysoft.com/en/virtual-clonedrive.html" rel="nofollow">Virtual CloneDrive</a> (mount ISO disk images as <strong>virtual drives</strong>)</li>
</ul>
<p>Certain little tools make everything that little bit easier (all these are XP/Vista): </p>
<ul>
<li><a href="http://www.stevemiller.net/puretext/" rel="nofollow">PureText</a> (paste text without fonts or other formatting via "Windows key+V")</li>
<li><a href="http://jgpaiva.donationcoders.com/gridmove.html" rel="nofollow">GridMove</a> (break your screen space into parts like having several mini-monitors)</li>
<li><a href="http://www.xneat.com/" rel="nofollow">XNeat</a> (move taskbar items around,change process priorities, transparencies)</li>
</ul>
http://stackoverflow.com/questions/2187/essential-programming-tools/130206#1302060Answer by torial for Essential Programming Toolstorial2008-09-24T21:54:53Z2008-09-24T21:54:53Z<p>Agent Ransack is a tool I use for searching many files for contents in Windows. It is fast, and powerful.</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/132762#1327620Answer by Keltia for Essential Programming ToolsKeltia2008-09-25T11:40:34Z2008-09-25T12:15:54Z<p>I'm mostly developing on FreeBSD but use Mac OS X as my main desktop so I use <a href="http://macromates.com/" rel="nofollow" title="TextMate">TextMate</a> for text editing and various UNIX utilities coming from <a href="http://macports.org" rel="nofollow" title="MacPorts">MacPorts</a>. I use <a href="http://www.vmware.com/products/fusion/" rel="nofollow" title="Fusion">Fusion</a> for creating & managing FreeBSD VMs. My version control system of choice is <a href="http://selenic.com/mercurial/" rel="nofollow" title="Mercurial">Mercurial</a>, a decentralized vcs. Scripting is done in <a href="http://ruby-lang.org/" rel="nofollow" title="Ruby">Ruby</a>.</p>
<p>Being a Ruby fan, I'd recommend <a href="http://redmine.org/" rel="nofollow" title="Redmine">Redmine</a> for bug tracking/releasing/forge. It is evolving quite rapidly and has the same feature set as Trac.</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/132965#1329650Answer by Dror Helper for Essential Programming ToolsDror Helper2008-09-25T12:22:03Z2008-09-25T12:22:03Z<p>When Developing software for Linux I discovered something shocking: There is no such thing as "Essential" tool. you can write code using simple text editor and debug the program by writing logs. And your understanding of the program would probably increase.</p>
<p>However since most of use need to maximize our output in order to create value to our companies every tool that its cost is less then the time it saves should be considered <em>essential</em>.</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/133253#1332531Answer by heisen for Essential Programming Toolsheisen2008-09-25T13:16:36Z2008-09-25T13:16:36Z<p>On Linux, C, C++, Java</p>
<ul>
<li>Editor : emacs with mode/plugin like ECB (code browser), Cedet (ide), JDEE (Java specific ide), modes for Verilog, VHDL, you name it </li>
<li>Debugger : gdb with ddd</li>
<li>Compiler tool : gcc</li>
<li>Repository : TkSVN, TkCVS, SVN, CVS</li>
<li>Memory : Rational Purify, Valgrind</li>
<li>Code coverage : Rational PureCoverage, gcov</li>
<li>Profiler : Rational Quantify, gprof</li>
<li>Unit test : CppUnit</li>
<li>Code Review : ReviewBoard</li>
<li>Compare codes : Tkdiff, diff</li>
<li>Help at your finger tips - man</li>
<li>Roll your own : Shell Scripting, Perl, Tcl, Python</li>
</ul>
http://stackoverflow.com/questions/2187/essential-programming-tools/133854#1338540Answer by FrankS for Essential Programming ToolsFrankS2008-09-25T15:03:15Z2008-09-25T15:03:15Z<p>Best Regular Expression Editor I know for Windows is <a href="http://www.ultrapico.com/Expresso.htm" rel="nofollow">Expresso</a>.
It has a designer and even more important, an automated analyzer, that can easily be used for documentation of complex regexp snytax.</p>
<p>For merging I also use <a href="http://www.sourcegear.com/diffmerge/" rel="nofollow">SourceGear DiffMerge</a>. And the rest of the tools includes a good Text Editor and a good IDE.</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/140470#1404700Answer by Brian Scott for Essential Programming ToolsBrian Scott2008-09-26T16:15:04Z2008-09-26T16:15:04Z<p>Expresso is good but RegexBuddy is much more usable.</p>
<p><a href="http://www.regexbuddy.com/" rel="nofollow">Regex Buddy Link</a></p>
http://stackoverflow.com/questions/2187/essential-programming-tools/140528#1405280Answer by Marcin for Essential Programming ToolsMarcin2008-09-26T16:23:31Z2008-09-26T16:23:31Z<p>As I do all my programming these days as just noodling around, I only use Squeak for stuff, and if I need to achieve anything it will usually involve cygwin commandline tools or Xemacs for text processing.</p>
<p>A sensible alternative for all of those might be something like bigloo + xemacs.</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/151834#1518342Answer by Mark A. Nicolosi for Essential Programming ToolsMark A. Nicolosi2008-09-30T05:08:57Z2008-12-15T02:46:46Z<p>From a Gnome user's perspective...</p>
<ul>
<li>App Launcher: <a href="http://do.davebsd.com/" rel="nofollow">Gnome Do</a></li>
<li>Text Editor: <a href="http://www.vim.org/" rel="nofollow">Vim/GVim</a></li>
<li>Notes: <a href="http://www.gnome.org/projects/tomboy/" rel="nofollow">Tomboy</a></li>
<li>Todo: <a href="http://www.pimlico-project.org/tasks.html" rel="nofollow">Tasks</a></li>
<li>Language: C#/.NET with <a href="http://www.mono-project.com/Main_Page" rel="nofollow">Mono</a></li>
<li>Unit Testing: <a href="http://www.nunit.org/index.php" rel="nofollow">NUnit</a></li>
<li>Build: <a href="http://en.wikipedia.org/wiki/GNU_build_system" rel="nofollow">Autotools</a> (out of tradition)</li>
<li>VCS: <a href="http://git.or.cz/" rel="nofollow">Git</a></li>
<li>Browser: <a href="http://www.gnome.org/projects/epiphany/" rel="nofollow">Epiphany</a> (if I were a web developer, I'd probably use Firefox with Firebug)</li>
<li>Shell: <a href="http://www.gnu.org/software/bash/" rel="nofollow">Bash</a> (I'd like to try out <a href="http://www.zsh.org/" rel="nofollow">Zsh</a>, though)</li>
<li>IM: <a href="http://www.pidgin.im/" rel="nofollow">Pidgin</a> (<a href="http://live.gnome.org/Empathy" rel="nofollow">Empathy</a> looks cool, but last time I tried it, it was missing some features)</li>
<li>Drawings/Mockups: <a href="http://www.inkscape.org/" rel="nofollow">Inkscape</a></li>
<li>Music: <a href="http://www.gnome.org/projects/rhythmbox/" rel="nofollow">Rhythmbox</a></li>
<li>Email: <a href="http://mail.google.com/" rel="nofollow">GMail</a></li>
<li>RSS: <a href="http://www.google.com/reader" rel="nofollow">Google Reader</a></li>
</ul>
http://stackoverflow.com/questions/2187/essential-programming-tools/174079#1740790Answer by Caroline Orr for Essential Programming ToolsCaroline Orr2008-10-06T12:30:42Z2008-10-06T12:30:42Z<p>I'm very happy with Subversion + Trac for integrated source code control, repository browser, issue tracker and wiki. I run it on an Apache web server which also provides the authentication mechanism. Trac is very easy to set up and use.</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/180794#1807941Answer by AtliB for Essential Programming ToolsAtliB2008-10-07T23:14:08Z2008-10-07T23:14:08Z<p>Some of my favorites:</p>
<ul>
<li>SlickRun (launcher - a must!)</li>
<li>Directory Opus (Explorer replacement on steroids)</li>
<li>Compare It! from grigsoft.com (for file comparison)</li>
<li>TortoiseSVN (GUI client on top of Subversion)</li>
<li>SnagIt (screenshots)</li>
<li>Notepad++</li>
</ul>
http://stackoverflow.com/questions/2187/essential-programming-tools/191045#1910450Answer by thijs for Essential Programming Toolsthijs2008-10-10T12:33:45Z2008-10-10T12:33:45Z<p>I'd say something like VMWare or Virtual PC would be a good start. Although it isn't as fast as raw hardware you'll gain time when you want to start clean or when you want to try out something new.
Also switching between projects with different tools (versions of visual studio, source control, frameworks, factories & generators) is much faster!</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/233104#2331041Answer by yeradis for Essential Programming Toolsyeradis2008-10-24T11:09:15Z2008-10-24T11:09:15Z<p>Hello and good day for everyone</p>
<p>If you plan to play with XML i recommend the use of XMLSpy Enterprise Edition<br>
If you plan to play with databases i recommend the use o AquaFold Aqua Data Studio<br>
if you plan to play with UML i recommend you to use Enterprise Architect<br>
If you plan to play with java i recommend you the use Netbeans<br>
If you plan to play with OS compatibility a i recommend you to use VirtualBox<br>
If you plan to play with php i recommend you to use Delphi for php<br>
if you plan to play with the web i recommend you to use Google Chrome<br>
If you plan to play with .NET framework i recommend you to use Sharpdevelop , Visual Studio better <br></p>
<p>Thats all
With no more....
bye bye</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/328452#3284520Answer by Software Monkey for Essential Programming ToolsSoftware Monkey2008-11-30T04:52:24Z2008-12-15T02:12:13Z<p>Shameless self plug: I also find my own <a href="http://www.SoftwareMonkey.org/Program" rel="nofollow">RefactorBuddy</a> invaluable.</p>
<p>And without reservation, <a href="http://proguard.sourceforge.net" rel="nofollow">ProGuard</a> Java code obfuscator/shrinker.</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/348119#3481191Answer by kushin for Essential Programming Toolskushin2008-12-07T21:35:08Z2008-12-07T21:35:08Z<p>Thanks, a lot of nice tools listed here. Time to try some of them. Here are what I use currently. </p>
<ul>
<li>Text Editing: Ultra-edit </li>
<li>Browser: Chromium </li>
<li>Note Management: Evernote</li>
<li>IDE: VS 2008 </li>
<li>Compare/Diff: Beyond compare </li>
<li>Remote Server Manager: RoyalTS</li>
<li>JS Debugging: Firebug</li>
<li>Python: Wing IDE</li>
</ul>
http://stackoverflow.com/questions/2187/essential-programming-tools/348198#3481981Answer by nzpcmad for Essential Programming Toolsnzpcmad2008-12-07T22:16:49Z2008-12-07T22:16:49Z<p>For .Net, look <a href="http://stackoverflow.com/questions/180939/net-must-have-development-tools">here in SO</a>:</p>
<p>Summary:</p>
<ul>
<li><a href="http://www.red-gate.com/products/reflector/" rel="nofollow">Reflector</a> 12</li>
<li><a href="http://www.jetbrains.com/resharper/" rel="nofollow">Resharper</a> 9</li>
<li><a href="http://www.nunit.org/index.php" rel="nofollow">NUnit</a> + TestDriven.Net 7</li>
<li><a href="http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx" rel="nofollow">Process Explorer</a> (other Sysinternals) 3</li>
<li><a href="http://devexpress.com/Products/Visual_Studio_Add-in/Refactoring/" rel="nofollow">Refactor Pro</a> 3</li>
<li><a href="http://msdn.microsoft.com/en-us/library/default.aspx" rel="nofollow">MSDN Library</a> 2</li>
<li><a href="http://www.linqpad.net/" rel="nofollow">LinqPad</a> 2</li>
<li><a href="http://confluence.public.thoughtworks.org/display/CCNET/Welcome+to+CruiseControl.NET" rel="nofollow">Cruisecontrol.net</a> 2</li>
<li><a href="http://www.sliver.com/dotnet/SnippetCompiler/" rel="nofollow">SnippetCompiler</a> 2</li>
<li><a href="http://info.vmware.com" rel="nofollow">VMWare</a> 2</li>
<li><a href="http://ayende.com/projects/rhino-mocks.aspx" rel="nofollow">RhinoMocks</a> 2</li>
<li><a href="http://www.devexpress.com/Products/Visual_Studio_Add-in/Coding_Assistance/" rel="nofollow">CodeRush</a> 2</li>
<li><a href="http://www.fiddlertool.com/fiddler/" rel="nofollow">Fiddler</a> 2</li>
<li>PowerCommands for VS 2008 1</li>
<li>Sandcastle 1</li>
<li>SQL Profiler 1</li>
<li>Redgate ANTS profiler 1</li>
<li>NCover 1</li>
<li>VisualSVN 1</li>
<li>Rubber Ducky 1</li>
<li>WinMerge 1</li>
<li>NAnt 1</li>
<li>ViEmu 1</li>
<li>AnkhSVN 1</li>
<li>dotTrace Profiler 1</li>
<li>BeyondCompare 1</li>
<li>DPack VS Plugin 1</li>
<li>PowerShell 1</li>
<li>WCF Trace Viewer (SDK) 1 </li>
<li>xUnit.net 1</li>
<li>SourceGear DiffMerge 1</li>
<li>Ghostdoc 1</li>
<li>Expression Studio 1 </li>
<li>XAML Pad 1 </li>
<li>KaXaml 1 </li>
<li>Blender for 3D modeling 1 </li>
<li>Snoop a WPF tool 1 </li>
<li>DiffMerge 1</li>
<li>DPack 1</li>
</ul>
<p>For .Java, look <a href="http://stackoverflow.com/questions/210755/java-must-have-development-tools">here in SO</a>:</p>
<p>Summary:</p>
<ul>
<li><a href="http://www.jetbrains.com/idea/" rel="nofollow">IntelliJ IDEA</a> 3</li>
<li><a href="https://hudson.dev.java.net/" rel="nofollow">Hudson</a> 3</li>
<li><a href="http://www.atlassian.com/software/jira/" rel="nofollow">JIRA</a> 3</li>
<li><a href="http://www.ej-technologies.com/products/jprofiler/overview.html" rel="nofollow">JProfiler</a> 2</li>
<li><a href="http://cobertura.sourceforge.net/" rel="nofollow">Cobertura</a> 2</li>
<li><a href="http://maven.apache.org/" rel="nofollow">Maven</a> 2</li>
<li><a href="http://www.junit.org/" rel="nofollow">JUnit</a>, preferably along with a mocking framework (e.g. Mockito, EasyMock) 2</li>
<li><a href="http://ant.apache.org/" rel="nofollow">ANT</a> + CI server 2 </li>
<li><a href="http://www.yourkit.com/" rel="nofollow">yourkit</a> profiler 2</li>
<li><a href="http://profiler.netbeans.org/" rel="nofollow">NetBeans profiler</a> 1</li>
<li><a href="http://findbugs.sourcefohttp://stackoverflow.com/questions/2187/essential-programming-tools/367370#3673700Answer by MikeC for Essential Programming ToolsMikeC2008-12-15T02:54:59Z2008-12-15T02:54:59Z<p>UltraEdit for ASCII editing</p>
<p>MyEclipseIDE, VS2005</p>
<p>JUnit, Ant, Subversion & TortoiseSVN</p>
<p>Sun Glassfish Server</p>
<p>MySQL</p>
<p>PuTTY, FileZilla</p>
<p>Newsgator for RSS reeds</p>
<p>Fiddler for HTTP debugging</p>
<p>I also use Sun's VirtualBox for having different developer setups (java, .NET) without cramming everything into one.</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/378489#3784890Answer by Patrick Smacchia for Essential Programming ToolsPatrick Smacchia2008-12-18T16:59:49Z2008-12-18T16:59:49Z<p><a href="http://www.NDepend.com" rel="nofollow">NDepend</a>: It is a static code analyzer that will let you explore your code base, and write quality and design rules.</p>
<p>See all feature of NDepend here <a href="http://www.ndepend.com/Features.aspx" rel="nofollow">http://www.ndepend.com/Features.aspx</a>:
<br> - Code Query Language (CQL)
<br> - Compare Builds
<br> - 82 code metrics
<br> - Manage Complexity and Dependencies
<br> - Detect Dependency Cycles
<br> - Harness Test Coverage Data
<br> - Enforce Immutability and Purity
<br> - Warnings about the health of your Build Process
<br> - Generate custom report from your Build Process
<br> - Diagrams
<br> - Facilities to cope with real-world environment</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/378541#3785410Answer by Steve S for Essential Programming ToolsSteve S2008-12-18T17:20:19Z2008-12-18T17:20:19Z<p>One tool that I always miss on Windows is a good window manager. I suppose this is one reason why Windows (and Mac) developers tend to like IDEs better than old Unix folks.</p>
<p>On Linux I prefer Blackbox -- it's features fit my work style, and it tends to stay out of my way.</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/441994#4419940Answer by bo for Essential Programming Toolsbo2009-01-14T05:18:55Z2009-01-14T05:18:55Z<p>Beyondcompare<br />
EditPlus<br />
Firefox<br />
Miranda IM<br />
MyBase<br />
EverNote </p>
http://stackoverflow.com/questions/2187/essential-programming-tools/446193#4461930Answer by Sam_Cogan for Essential Programming ToolsSam_Cogan2009-01-15T09:49:08Z2009-01-15T09:49:08Z<p>My current development tool list:
<li>Visual studio 2008</li>
<li>Resharper</li>
<li>Powershell</li>
<li>SQL 2005 </li>
<li>MYSQL</li>
<li>Firefox + Firebug</li>
<li>Google</li></p>
http://stackoverflow.com/questions/2187/essential-programming-tools/446234#4462341Answer by bowsie for Essential Programming Toolsbowsie2009-01-15T10:12:05Z2009-01-15T10:12:05Z<p>For development process tools we use some of the Atlassian products (FishEye repository browsing, Crucible peer reviewing tool, Confluence wiki) and Hudson - which (echoing sentiments above) is on of the greatest development aids I have ever used.</p>
<p>JIRA is the best issue management tool I have ever used, but am still a fan of XPlanner in certain cases.</p>
<p>The more they integrate the better.</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/446237#4462370Answer by Guillaume for Essential Programming ToolsGuillaume2009-01-15T10:12:30Z2009-01-15T10:12:30Z<p>A brain, paper and pen</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/446278#446278-1Answer by Adam Hawes for Essential Programming ToolsAdam Hawes2009-01-15T10:28:32Z2009-01-15T10:28:32Z<ul>
<li>Vim - no matter how many IDEs companies make me try and use I still wind up cutting all the code in Vim and only using the IDE to manage the compilation. Vim is very nice, very scriptable and a charm to use remotely.</li>
<li>iTerm on Mac, Gnome-Terminal on Linux Any terminal with tabs that lets me configure shift-left and shift-right to be next and previous tab. The number of times that's helped me rapidly switch back and forward between two pieces of code or code and output to diagnose problems. I am still looking for a decent Windows terminal app.</li>
<li>Emacs - I used to be an Emacs boy but changed to Vim recently. Matter of preference but all the same pros as Vim, different syntax and keyboard shortcuts. Good to know both editors in case you get stuck with one of them.</li>
<li>Redmine (<a href="http://redmine.org" rel="nofollow">http://redmine.org</a>) - I love this tool. SVN/GIT/Bazzar/Mercurial integration, ticket tracker, wiki, workflow all rolled into one pretty tight tool.</li>
<li>Decent Diff/Merge tool. I was spoiled by the tool in ClearCase when for code review/merge. I haven't found a tool quite as useable (or as ugly) since.</li>
<li>Vim - can't stress it enough</li>
<li>Good reference book for your language(s) of choice - no matter how many online resources there are I can guarantee that the Net will be down at 10 minutes to crunch time and you need to look up some obscure language feature in a hurry.</li>
</ul>
http://stackoverflow.com/questions/2187/essential-programming-tools/500413#5004130Answer by unigogo for Essential Programming Toolsunigogo2009-02-01T08:02:31Z2009-02-01T08:02:31Z<p>The 1st step to design the web page is to design layout. The <a href="http://www.pagecolumn.com/" rel="nofollow">layout generators</a> will save your time.</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/526464#5264640Answer by tbone for Essential Programming Toolstbone2009-02-08T21:40:42Z2009-02-08T21:40:42Z<p>LLBLGen for code generation, it is brilliant.</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/1008337#10083370Answer by Kevin Horgan for Essential Programming ToolsKevin Horgan2009-06-17T16:59:11Z2009-06-17T16:59:11Z<p>Source Control : Subversion</p>
<p>Bug tracking : FogBugz</p>
<p>Text Editing : Ultra Edit and vi </p>
<p>SQL Editor : Aqua Data Studio</p>
<p>Cocoa/ Objective C : XCode</p>
<p>FTP : FileZilla</p>
<p>Browser : Safari / Opera</p>
<p>...and a decent spreadsheet package (Excel) to match and concatenate delimited
lists of data together and parse as SQL commands...:)</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/1022806#10228061Answer by opensas for Essential Programming Toolsopensas2009-06-20T23:37:11Z2009-06-20T23:37:11Z<p>ide: visual studio / netbeans (zip file!, almost portable)</p>
<p>editor: notepad++ (portable)</p>
<p>file comparison: winmerge (portable)</p>
<p>source control: subversion, tortoise</p>
<p>ticket control: redmine</p>
<p>file manager: free commander (portable)</p>
<p>explorer: IE, FF (portable), chrome (portable)</p>
<p>FF plugins: firebug, web developer, xmarks</p>
<p>sites: STACKOVERFLOW!!!, gotapi</p>
<p>miscelaneous: launchy (can't live without it!)</p>
<p>virtualization: virtual box (I have a machine image for every environment)</p>
<p>office: openoffice (portable)</p>
<p>lamp stack: xammp (portable!)</p>
<p>disk usage: windirstat (portable), scanner (portable)</p>
<p>pdf viewer: foxit (portable), sumatrapdf (portable)</p>
<p>uncompressor: 7-zip portable</p>
<p>M$ sql comparison tool: sql delta</p>
<p>M$ sql management: visual studio sql manager</p>
<p>mysql</p>
<p>mysql management: phpmyadmin, manager provided with mysql</p>
<p>as you may have noticed, I have a special predilection for portable applications...</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/1022831#10228310Answer by indyK1ng for Essential Programming ToolsindyK1ng2009-06-20T23:52:25Z2009-06-20T23:52:25Z<p>I use the Eclipse IDE for Java development with the Subclipse plug-in for revision control of group projects and SVN as the actual revision control program. For C/C++ and python development on Linux I prefer to use gedit. For Ruby development on any platform and C/C++ and Python development on Windows, I prefer to use Scite.</p>
http://stackoverflow.com/questions/2187/essential-programming-tools/1135888#11358880Answer by zeroDivisible for Essential Programming ToolszeroDivisible2009-07-16T07:09:19Z2009-07-16T07:09:19Z<p>When I am learning algorithms / data structures / programming there are two tools, which are invaluable to me - <strong>Microsoft Excel</strong> and <strong>Idle</strong> (Python GUI). </p>
<p>You may laugh - but proving simple things in Excel and using Idle as <em>pimped</em> calculator really speeds my learning process.</p>