What things didn't you know you needed but are now very glad you have? - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T05:59:19Zhttp://stackoverflow.com/feeds/question/203286http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have97What things didn't you know you needed but are now very glad you have?DrStalker2008-10-15T00:07:06Z2009-10-22T02:01:03Z
<p>Take a programmer that has never used source control, show them what it does, and their eyes light up... the benefits are obvious but until they actually see it most people had never considered the existence of such a tool. </p>
<p>What other such things exist? Tools or approaches or techniques that aren't obvious before you encounter them, but once seen have obvious value. Things that are likely so ingrained in the way you work that it's hard to think of working without them, things almost embarrassing to bring up because you expect the other person to say "duh, that's obvious!"</p>
<p>No matter how petty something seems there is a chance that other people don't know about it yet; I'd like to get an idea on what things I'm missing simply because I never thought of them.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203293#20329378Answer by Mark for What things didn't you know you needed but are now very glad you have?Mark2008-10-15T00:08:42Z2008-10-15T00:08:42Z<p>An IDE! </p>
<p>Seriously some people still just dont know "why" they should use one...</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203301#20330134Answer by Gulzar for What things didn't you know you needed but are now very glad you have?Gulzar2008-10-15T00:12:06Z2008-10-15T00:12:06Z<p>Another important concept is ORM and using tools like NHibernate..</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203304#20330431Answer by Ken Liu for What things didn't you know you needed but are now very glad you have?Ken Liu2008-10-15T00:14:44Z2008-10-15T00:14:44Z<p>A unit testing framework like <a href="http://www.junit.org/" rel="nofollow">JUnit</a>, and a <a href="http://martinfowler.com/articles/continuousIntegration.html" rel="nofollow">Continuous Integration (CI)</a> server. Also, some kind of build system like make, Ant, or Maven.</p>
<p>Maybe also a team coding standard, to avoid wasting time over arguing with coworkers about tabs vs. spaces and brace styles.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203314#2033140Answer by Dan Dyer for What things didn't you know you needed but are now very glad you have?Dan Dyer2008-10-15T00:18:42Z2008-10-15T00:18:42Z<p>I second the suggestion of a Continuous Integration server. Particularly if you use something like <a href="https://hudson.dev.java.net" rel="nofollow">Hudson</a>, since you can graph all sorts of interesting data (test numbers, code coverage scores, static analysis) over time.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203335#20333568Answer by Paul Nathan for What things didn't you know you needed but are now very glad you have?Paul Nathan2008-10-15T00:32:32Z2008-10-15T00:32:32Z<p><strong>Debugger.</strong> I deal with so many comp sci students who have not really used a good, GUI-driven debugger.</p>
<p>I hold up Visual Studio as a great debugger.(Or at least the best I've ever seen).</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203338#20333881Answer by EvilTeach for What things didn't you know you needed but are now very glad you have?EvilTeach2008-10-15T00:34:08Z2008-10-15T00:34:08Z<p>A profiler. A good one will tell you more about what is going on inside your code, than you could have ever dreamed.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203342#2033422Answer by moffdub for What things didn't you know you needed but are now very glad you have?moffdub2008-10-15T00:37:07Z2008-10-15T00:37:07Z<p>Coding standards checkers like <a href="http://www.parasoft.com/jtest" rel="nofollow">JTest</a> are capable of giving good advice on programming techniques that you might not be aware of, and they can give you something to think about. Also, any unit testing framework that calculates statement coverage is useful to see what you overlooked in your tests.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203362#20336248Answer by JarrettV for What things didn't you know you needed but are now very glad you have?JarrettV2008-10-15T00:47:49Z2008-10-15T00:47:49Z<p><strong>Fiddler</strong> - HTTP debugger, essential for REST development, <a href="http://www.fiddlertool.com/" rel="nofollow">link</a></p>
<p><strong>FireBug</strong> - javascript/css debugging used to be torcher, FireBug + jQuery make AJAX development fun. <a href="https://addons.mozilla.org/firefox/addon/1843" rel="nofollow">link</a></p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203366#20336616Answer by Matt Dillard for What things didn't you know you needed but are now very glad you have?Matt Dillard2008-10-15T00:51:45Z2008-10-15T00:51:45Z<p>A large, widescreen monitor. Being able to see two (or more) files for editing at one time is huge.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203370#203370219Answer by acrosman for What things didn't you know you needed but are now very glad you have?acrosman2008-10-15T00:54:50Z2008-10-15T00:54:50Z<p>A second monitor. One to hold the programming environment, the other to hold either the documentation or to hold the program under testing.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203372#2033725Answer by TheSoftwareJedi for What things didn't you know you needed but are now very glad you have?TheSoftwareJedi2008-10-15T00:56:42Z2008-10-15T00:56:42Z<p>Learning how to take heap dumps of running processes, then using WinDbg + SOS to troubleshoot them for memory leaks and deadlocks. Priceless with large scale web applications!</p>
<p><a href="http://www.eggheadcafe.com/articles/20060114.asp" rel="nofollow">Good article here</a></p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203398#20339876Answer by Joel Coehoorn for What things didn't you know you needed but are now very glad you have?Joel Coehoorn2008-10-15T01:10:22Z2008-10-15T01:10:22Z<p>Something we all take for-granted now, but I remember when I first got a mouse with a scroll wheel, and then had to go back to one without.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203403#2034032Answer by aib for What things didn't you know you needed but are now very glad you have?aib2008-10-15T01:12:15Z2008-10-15T01:12:15Z<blockquote>
<p>Debugger. I deal with so many comp sci students who have not really used a good, GUI-driven debugger.</p>
<p>I hold up Visual Studio as a great debugger.(Or at least the best I've ever seen).</p>
</blockquote>
<p>printf debugging. I've seen so many CS students who have struggled with good GUI-driven debuggers when they could have simply added a few lines to their code and found their mistake.</p>
<p>(Both methods have their moments, I guess)</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203406#2034064Answer by bouvard for What things didn't you know you needed but are now very glad you have?bouvard2008-10-15T01:13:17Z2008-10-15T01:27:35Z<p><a href="http://en.wikipedia.org/wiki/Lint_programming_tool" rel="nofollow">Lint</a>, <a href="http://www.logilab.org/857" rel="nofollow">pylint</a>, <a href="http://www.jslint.com/" rel="nofollow">JSLint</a>, etc. You don't know just how ugly your code is until an automated procedure goes out of its way to badger you about it.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203407#20340793Answer by BoltBait for What things didn't you know you needed but are now very glad you have?BoltBait2008-10-15T01:13:33Z2008-10-15T01:19:49Z<p><strong>The Internet</strong>.</p>
<p>The amount of information at my fingertips is mind boggling.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203412#20341221Answer by Jay Bazuzi for What things didn't you know you needed but are now very glad you have?Jay Bazuzi2008-10-15T01:14:32Z2008-10-15T01:14:32Z<p>A nightly build.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203415#20341537Answer by Jay Bazuzi for What things didn't you know you needed but are now very glad you have?Jay Bazuzi2008-10-15T01:15:25Z2008-10-15T01:15:25Z<p>Automated <strong>refactoring</strong> tools. Mostly Rename, Extract Method, and Introduce Explaining Variable.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203417#203417123Answer by VirtuosiMedia for What things didn't you know you needed but are now very glad you have?VirtuosiMedia2008-10-15T01:15:53Z2008-10-15T01:15:53Z<p>Vacations. Evenings. Weekends. It can be fun to pull all-night sessions and code really cool programs, but in the end family time is what counts.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203418#20341865Answer by nickf for What things didn't you know you needed but are now very glad you have?nickf2008-10-15T01:16:08Z2008-10-15T01:16:08Z<p>stackoverflow.com</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203434#2034342Answer by Kyle Burton for What things didn't you know you needed but are now very glad you have?Kyle Burton2008-10-15T01:24:41Z2008-10-15T12:17:39Z<p>System level debugging and monitoring tools: </p>
<ul>
<li><a href="http://www.ibm.com/developerworks/aix/library/au-unix-perfmonsar.html" rel="nofollow">sar</a> - Solaris, system activity reporter - a system monitoring tool</li>
<li>vmstat - Linux, processes, memory, paging, block IO, traps and cpu activity</li>
<li>lsof - Linux, lists open files, including sockets, shows the owning process</li>
<li>strace - Linux, traces system calls and signals in an already running program</li>
<li>truss - Solaris, system call trace</li>
<li><a href="http://en.wikipedia.org/wiki/DTrace" rel="nofollow">dtrace</a> - Solaris, this tool is amazing</li>
</ul>
<p>Software Development (some were already mentioned): Unit Testing frameworks, JUnit, etc., <strong>especially</strong> when combined with code coverage tools: <a href="http://search.cpan.org/dist/Devel-Cover/lib/Devel/Cover.pm" rel="nofollow">Devel::Cover</a> (Perl), <a href="http://cobertura.sourceforge.net/" rel="nofollow">Cobertura</a> (Java), <a href="http://rubyforge.org/projects/rcov/" rel="nofollow">rcov</a> (Ruby), <a href="http://sbcl.sourceforge.net/manual/sb_002dcover.html" rel="nofollow">sb-cover</a> (SBCL) and <a href="http://search.cpan.org/~timb/Devel-NYTProf-2.05/lib/Devel/NYTProf.pm" rel="nofollow">Devel::NYTProf</a> (Perl).</p>
<p>Profiling tools: Devel::Prof (Perl), Devel::NYTProf (Perl), <a href="http://www.yourkit.com/" rel="nofollow">YourKit</a> (Java) and <a href="http://ruby-prof.rubyforge.org/" rel="nofollow">ruby-prof</a>.</p>
<p>Oracle's <a href="http://www.oracle-base.com/articles/8i/ExplainPlanUsage.php" rel="nofollow">EXPLAIN PLAN</a> for helping to tune SQL.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203445#2034457Answer by stimpy77 for What things didn't you know you needed but are now very glad you have?stimpy772008-10-15T01:32:25Z2008-10-15T01:32:25Z<p>IM and IRC. At this moment there are 207 people in the ##CSharp chat room in FreeNode, always about ten who are active at any time, and always two or three who are willing to help or discuss technical issues and ideas with you about C#.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203449#20344977Answer by Hapkido for What things didn't you know you needed but are now very glad you have?Hapkido2008-10-15T01:36:54Z2008-10-15T01:36:54Z<p>Learn to say NO.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203458#20345830Answer by Kris Erickson for What things didn't you know you needed but are now very glad you have?Kris Erickson2008-10-15T01:41:50Z2008-10-15T01:41:50Z<p>Mastery of a text editor (whether it be VIM, Emacs, etc). At least one that supports replacing with Regular Expressions, macros, and all the shortcuts that allow me to type and edit at the speed my brain sometimes thinks. Learning an editor inside and out is one of the best pieces of advice I ever got from an instructor in Com sci at university.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203460#20346054Answer by Jack for What things didn't you know you needed but are now very glad you have?Jack2008-10-15T01:42:52Z2008-10-16T23:06:35Z<p>A good file comparison application, like BeyondCompare.</p>
<p><a href="http://www.scootersoftware.com/moreinfo.php" rel="nofollow">http://www.scootersoftware.com/moreinfo.php</a></p>
<p>It is the most useful tool in my toolkit and has saved my hide many times.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203463#20346329Answer by mcherm for What things didn't you know you needed but are now very glad you have?mcherm2008-10-15T01:44:13Z2008-10-15T01:44:13Z<p>Here's one that I don't have yet... but I SHOULD. A <strong>reversable debugger</strong>. That is, you just run your program until the error, then tell it to BACK UP one step at a time until you figure out what's going on. I have seen <a href="http://homepages.inf.ed.ac.uk/jcook/bdbj/bdbj-1.2.1/dl.html" rel="nofollow">academic examples</a>, so tell me: why don't I have one built into IntelliJ or Eclipse?</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203507#20350718Answer by Solracnapod for What things didn't you know you needed but are now very glad you have?Solracnapod2008-10-15T02:15:26Z2008-10-15T02:15:26Z<p>On a group level, <strong>continuous integration</strong>. </p>
<p>If an automated build runs per commit, people will no longer freak out when the build breaks because they know exactly which commit broke it. </p>
<p>If the build also runs unit tests, people will smile. </p>
<p>If the build also deploys to test environments and runs acceptance tests, group zen may be on its way. </p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203526#20352641Answer by Gerald for What things didn't you know you needed but are now very glad you have?Gerald2008-10-15T02:24:12Z2008-10-15T02:24:12Z<p>VMWare or other virtualization system. Being able to test cross-platform code on 6 or 7 different OS configurations without having to have a mess of spaghetti cabling and KVM switches is great. </p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203542#2035420Answer by Skittles for What things didn't you know you needed but are now very glad you have?Skittles2008-10-15T02:33:04Z2008-10-15T02:33:04Z<p>FullShot9 for putting screen shots of only the areas on code and forms that I am referring to into my documentation and bug reports. </p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203545#20354519Answer by jjacka for What things didn't you know you needed but are now very glad you have?jjacka2008-10-15T02:35:41Z2008-10-15T02:35:41Z<p>For .Net Lutz Roeder's <a href="http://www.red-gate.com/products/reflector/" rel="nofollow">Reflector</a> for being able dive into the code of some DLL when source code is not available.</p>
<p>Open source Javascript frameworks like <a href="http://www.prototypejs.org" rel="nofollow">Prototype</a> and <a href="http://www.jquery.com" rel="nofollow">JQuery</a> that finally make it easy to get a rich clientside experience.</p>
<p>And <a href="http://tortoisesvn.net" rel="nofollow">Tortoise SVN</a> for saving me from my Visual Source [un]Safe nightmares!</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203546#20354612Answer by DrStalker for What things didn't you know you needed but are now very glad you have?DrStalker2008-10-15T02:35:49Z2008-10-15T02:35:49Z<p><a href="http://www.cygwin.com/" rel="nofollow">Cygwin</a>. All the power of the Linux command prompt and associated tools for your Windows systems. If you know some basic bash commands there are a lot of things you can do with a one-line command that would be a real pain to do manually in the GUI. </p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203568#20356849Answer by cole for What things didn't you know you needed but are now very glad you have?cole2008-10-15T02:47:11Z2008-10-15T02:47:11Z<p>Holding down alt + dragging, in certain text editors, to select not only lines of code but also columns. This has definitely saved me hours of time.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203592#20359264Answer by Uri for What things didn't you know you needed but are now very glad you have?Uri2008-10-15T03:07:06Z2008-10-15T03:07:06Z<p>Source control. I'm amazed at how many people don't use any.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203638#2036381Answer by HappyCodeMonkey for What things didn't you know you needed but are now very glad you have?HappyCodeMonkey2008-10-15T03:33:20Z2008-10-15T03:33:20Z<p>Portable Apps, Linux Live CDs, and classes in C++ have all vastly improved my life. </p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203673#2036730Answer by Nrj for What things didn't you know you needed but are now very glad you have?Nrj2008-10-15T03:49:16Z2008-10-15T03:49:16Z<p>Finger-Print reader for authentication on a notebook ! Wow !!</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203689#2036893Answer by smaclell for What things didn't you know you needed but are now very glad you have?smaclell2008-10-15T04:01:05Z2008-10-15T04:01:05Z<p>Funky things like Dependency Inject or Test Driven Development.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203708#20370829Answer by Craig for What things didn't you know you needed but are now very glad you have?Craig2008-10-15T04:17:45Z2008-10-15T04:17:45Z<p>A family. My baby daughter rocks! And shes a good sleeper too!</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203714#2037144Answer by DGM for What things didn't you know you needed but are now very glad you have?DGM2008-10-15T04:23:21Z2008-10-15T04:23:21Z<p>Backups. Automated, versioned, tested, and useable backups.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203723#2037236Answer by DGM for What things didn't you know you needed but are now very glad you have?DGM2008-10-15T04:28:41Z2008-10-15T04:28:41Z<p>Uninterruptable Power Supply. Your hard drive data thanks you.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203724#2037245Answer by gregf for What things didn't you know you needed but are now very glad you have?gregf2008-10-15T04:29:34Z2008-10-15T04:29:34Z<p>A girlfriend that cooks for me while I am at stackoverflow.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203747#2037472Answer by naveen.kumar.bangalore for What things didn't you know you needed but are now very glad you have?naveen.kumar.bangalore2008-10-15T04:48:24Z2008-10-15T04:48:24Z<p>Teach him Test Driven Development way of developing software.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203764#20376425Answer by nullstyle for What things didn't you know you needed but are now very glad you have?nullstyle2008-10-15T04:57:58Z2008-10-15T04:57:58Z<p><strong>Firebug</strong>: didn't know I needed it, and sometimes wish I didn't need it anymore.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203776#2037767Answer by cbp for What things didn't you know you needed but are now very glad you have?cbp2008-10-15T05:06:49Z2008-10-15T05:06:49Z<p>A coffee grinder</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203789#2037890Answer by destrado08 for What things didn't you know you needed but are now very glad you have?destrado082008-10-15T05:16:40Z2008-10-15T05:16:40Z<p>Textmate bundles. E uses them now too, so I can develop on Mac and PC using relatively light-weight and easy-to-understand IDEs that are very versatile.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203793#2037931Answer by vanslly for What things didn't you know you needed but are now very glad you have?vanslly2008-10-15T05:22:16Z2008-10-15T05:22:16Z<p>A <strong>mocking framework</strong>, like <a href="http://ayende.com/projects/rhino-mocks.aspx" rel="nofollow">Rhino Mocks</a>, which allows you to work with mocked or stubbed instances while testing.</p>
<p>Without it Test First Development just wouldn't be the same.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203794#20379445Answer by sobbayi for What things didn't you know you needed but are now very glad you have?sobbayi2008-10-15T05:23:20Z2008-10-15T11:29:54Z<p>code & syntax highlighting and coloring in modern text editors and IDEs</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203816#20381627Answer by RichH for What things didn't you know you needed but are now very glad you have?RichH2008-10-15T05:44:26Z2008-10-15T05:44:26Z<p>Red squiggly lines under my syntax errors so I don't need to hit compile.</p>
<p>It's saved days of my life.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203843#2038431Answer by Chris Blackwell for What things didn't you know you needed but are now very glad you have?Chris Blackwell2008-10-15T06:12:14Z2008-10-15T06:12:14Z<p>Using a language that supports closures and functions as first class objects, if you've never used anything but a C derivative. These two language features make your code orders of magnitude more elegant. It can take a while to catch on to why they are nice, but much like source control, it's hard to go back once you have them.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203885#20388565Answer by blindauer for What things didn't you know you needed but are now very glad you have?blindauer2008-10-15T06:39:58Z2008-10-15T06:39:58Z<p>Touch typing. </p>
<p>Don't laugh, I've personally known several programmer who "hunted-and-pecked", claiming that they could do so just as quick as a touch typer. I say, BS. If you can't touch-type, you're gimping yourself.</p>
<p>There are some good free online typing programs. An hour a day for a couple weeks can double your typing speed, and nobody has to know you were ever a hunt-and-pecker.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203977#2039770Answer by Pace for What things didn't you know you needed but are now very glad you have?Pace2008-10-15T07:58:43Z2008-10-15T07:58:43Z<p>Third party tools that make your job easier / more productive. </p>
<p>For example I work with sql server a lot and there are some great intelli-sense and comparison tools out there. I can compare and sync schemas and data. When I show these to other developers they often turn green with envy. </p>
<p>The tools alone save me hours upon hours a week. </p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203982#20398225Answer by John Nolan for What things didn't you know you needed but are now very glad you have?John Nolan2008-10-15T08:03:47Z2008-10-15T08:03:47Z<p>Generics - I love you.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/204038#2040382Answer by Eemeli Kantola for What things didn't you know you needed but are now very glad you have?Eemeli Kantola2008-10-15T08:33:30Z2008-10-15T08:33:30Z<p>MacBook's touchpad.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/204052#2040525Answer by Shane MacLaughlin for What things didn't you know you needed but are now very glad you have?Shane MacLaughlin2008-10-15T08:39:54Z2008-10-15T08:39:54Z<p>Automated regression testing, preferably run nightly after the nightly build on the nightly build. Huge time saver and confidence booster.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/204145#2041451Answer by Peter Miehle for What things didn't you know you needed but are now very glad you have?Peter Miehle2008-10-15T09:24:05Z2008-10-15T09:24:05Z<p>Make-file
or now it is Ant-files i will have to learn by heart</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/204153#2041530Answer by Peter Miehle for What things didn't you know you needed but are now very glad you have?Peter Miehle2008-10-15T09:25:21Z2008-10-15T09:25:21Z<p>lex and yacc for skimming through context free data (of any type, be it languages or structured data)</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/204205#20420521Answer by Vaibhav Garg for What things didn't you know you needed but are now very glad you have?Vaibhav Garg2008-10-15T09:56:55Z2008-10-15T09:56:55Z<p>Google<br />
so that all that I need to know is just a URL away</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/204222#2042223Answer by ePharaoh for What things didn't you know you needed but are now very glad you have?ePharaoh2008-10-15T10:07:09Z2008-10-15T10:07:09Z<p><strong>Scripting</strong>
I mean scripting in "scripting" languages. I used to write my scripts in C, and only realised the true power of scripting when a colleague introduced me to Python.</p>
<p>Since, then I have moved on to Scala, but the Python experience was an eye opener.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/204550#20455011Answer by Zteve for What things didn't you know you needed but are now very glad you have?Zteve2008-10-15T12:39:01Z2008-10-15T12:39:01Z<p>Understanding the end user.</p>
<p>There is no substitute for understanding.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/204605#2046058Answer by Rob Bell for What things didn't you know you needed but are now very glad you have?Rob Bell2008-10-15T12:58:48Z2008-10-15T12:58:48Z<p>A memory stick</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/204625#2046251Answer by Kenny for What things didn't you know you needed but are now very glad you have?Kenny2008-10-15T13:05:16Z2008-10-15T13:05:16Z<p>Cell phone.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/204645#2046450Answer by Danielle for What things didn't you know you needed but are now very glad you have?Danielle2008-10-15T13:10:43Z2008-10-15T13:10:43Z<p>By the way, I'm not answering this question per se, but for anyone that doesn't know about source control (as mentioned in the post), here is a great introduction: <a href="http://www.ericsink.com/scm/source_control.html" rel="nofollow">http://www.ericsink.com/scm/source_control.html</a></p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/204649#2046491Answer by Nicholas for What things didn't you know you needed but are now very glad you have?Nicholas2008-10-15T13:12:24Z2008-10-15T13:12:24Z<p>Two tools:</p>
<ol>
<li>Good Database schema compare tool (Great for generating change scripts on legacy dbs)</li>
<li>Tool to generate Insert Scripts (Lets you annihilate your dev environemnt and restore at any time via query analyzer)</li>
</ol>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/204652#2046527Answer by Dana for What things didn't you know you needed but are now very glad you have?Dana2008-10-15T13:13:02Z2008-10-15T13:13:02Z<p>Intellisense</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/204655#2046551Answer by Nicholas for What things didn't you know you needed but are now very glad you have?Nicholas2008-10-15T13:14:52Z2008-10-15T13:14:52Z<p>Reflector!!!!!!!</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/204945#20494510Answer by DOK for What things didn't you know you needed but are now very glad you have?DOK2008-10-15T14:32:05Z2008-10-15T14:32:05Z<p>I keep coding notes. A library of code snippets + text about coding minutiae. </p>
<p>As a senior .Net web developer, I just have too many details to remember in too many languages -- C#, VB, HTML, CSS, SQL, JavaScript and on and on.</p>
<p>I can instantly find the SQL using ROW_NUMBER for paging data, the syntax for applying a regex in JavaScript, or the steps for deploying a web app to IIS, along with my own comments and troubleshooting tips.</p>
<p>Since I've been keeping notes for a decade now, I can find information about older technologies like classic ASP, SQL Server 7, or VB6 -- handy when you're called in to read the old code for an upgrade.</p>
<p>I refer to my own dogpile of notes before going to Google. The particular software I use is InfoSelect (www.miclog.com, I have no affiliation with them). It's like writing everything you know on 3x5 index cards and then being able to search their text. I believe you can also use OneNote for this; no doubt there are many others.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/205110#2051102Answer by Jeff Schumacher for What things didn't you know you needed but are now very glad you have?Jeff Schumacher2008-10-15T15:14:43Z2008-10-15T15:14:43Z<p>Tools like CodeRush & Refactor Pro<br />
Coffee<br />
A comfortable chair (seriously)<br />
Productivity enhancing tools (not programming specific) like Launchy and Ultramon<br />
Someone to bounce questions off of<br />
Silent time<br />
Code Complete 2<br />
Virtual Machines<br />
<br />
just to name a few.. but all of these are very very important to me.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/205255#2052554Answer by RoadWarrior for What things didn't you know you needed but are now very glad you have?RoadWarrior2008-10-15T15:47:19Z2008-10-15T15:47:19Z<p><strong>Assertions</strong>. After I started adding them to my own code during development, I was astonished to find how many times they were triggered. When I started adding them to other people's production code, they were astonished by the number of bugs that the assertions uncovered. It was a tipping point in my software development career.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/205285#2052856Answer by JB King for What things didn't you know you needed but are now very glad you have?JB King2008-10-15T15:55:34Z2008-10-15T15:55:34Z<p>Design patterns</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/205647#2056474Answer by Maglob for What things didn't you know you needed but are now very glad you have?Maglob2008-10-15T17:30:36Z2008-10-15T17:30:36Z<p>wiki - collaboration on the web</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/206088#2060884Answer by md6380 for What things didn't you know you needed but are now very glad you have?md63802008-10-15T19:31:28Z2008-10-15T19:31:28Z<p>A programmers notepad (such as TextPad or Notepad++). Sometimes a full IDE isn't needed and it' nice to have someting light to do quick things.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/206147#2061471Answer by da_code_monkey for What things didn't you know you needed but are now very glad you have?da_code_monkey2008-10-15T19:48:09Z2008-10-15T19:48:09Z<p>Separate compilation. Gone are the days of when I used a BASIC compiler which took several minutes to re-parse a large program after editing one line of code.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/206461#2064617Answer by Ben Throop for What things didn't you know you needed but are now very glad you have?Ben Throop2008-10-15T20:58:30Z2008-10-15T20:58:30Z<p>Coworkers!</p>
<p>I left my job to do a solo software startup project and by far, by a million miles, the thing that I miss most is having smart people around me. This is not only true in the sense that our coworkers make us smarter, but they also help us stay sane. </p>
<p><em>twitch twitch</em></p>
<p>So next time you think you can do it better by yourself, really examine all of the benefits of being surrounded by smart folks. I don't regret my decision, but I can't wait to hire someone!</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/206833#2068334Answer by Rene Saarsoo for What things didn't you know you needed but are now very glad you have?Rene Saarsoo2008-10-15T22:53:44Z2008-10-15T22:53:44Z<p><strong>Emacs</strong> - Before using it I didn't imagine I could so easily automate all those everyday routines. Now I can't imagine my life without it.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/206854#2068544Answer by Even Mien for What things didn't you know you needed but are now very glad you have?Even Mien2008-10-15T23:02:06Z2008-10-15T23:02:06Z<p><strong>Code Complete.</strong> Absolutely the best book on software development.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/206864#2068642Answer by ejgottl for What things didn't you know you needed but are now very glad you have?ejgottl2008-10-15T23:11:33Z2008-10-15T23:11:33Z<p>A "visual" editor. When I first started programming, I learned to use a line editor (think interactive sed... a big step up from punch cards) and got pretty good at working with it. Then some other students started using and bragging about a new "visual" editor (think vi). I tried it, but couldn't see the point; I could edit code faster with the line editor which I had spent a great deal of effort mastering. Finally, after some time, after admitting my stupidity, I switched to the more modern editor and never looked back. Hopefully that experience has made me a better judge of the value of change. In our industry, more often than not the new way of doing things is worse than the old one. But sometimes the new way is in fact an improvement.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/206920#2069201Answer by tunaranch for What things didn't you know you needed but are now very glad you have?tunaranch2008-10-15T23:37:27Z2008-10-15T23:37:27Z<p>Maven. It makes integrating the use of various tools into the build process so easy.</p>
<p>Code Coverage Reports (cobertura).</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/207139#2071393Answer by Ovidiu Pacurar for What things didn't you know you needed but are now very glad you have?Ovidiu Pacurar2008-10-16T01:35:15Z2008-10-16T01:35:15Z<p><strong>Ctrl+F5</strong></p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/207170#2071700Answer by Kena for What things didn't you know you needed but are now very glad you have?Kena2008-10-16T01:52:42Z2008-10-16T01:52:42Z<p>A tool to check memory usage (like valgrind, purify or bounds checker). These have been the key to solving some pretty nasty bugs in the past. Because reading through thousands of lines of code looking for that wretched memory corrupting code is not my idea of fun.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/207329#2073292Answer by Kent Brewster for What things didn't you know you needed but are now very glad you have?Kent Brewster2008-10-16T03:20:34Z2008-10-16T03:20:34Z<p><a href="http://winscp.com" rel="nofollow">WinSCP</a> and <a href="http://textpad.com" rel="nofollow">TextPad</a>.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/207355#2073553Answer by AleP for What things didn't you know you needed but are now very glad you have?AleP2008-10-16T03:32:10Z2008-10-16T03:32:10Z<p>CruiseControl or any continuous integration tool, and lots of Unit Tests. </p>
<p>Good people in Test. </p>
<p>And "eat your own dog food" use your software every day you'll know the problems earlier.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/207615#2076152Answer by Jerph for What things didn't you know you needed but are now very glad you have?Jerph2008-10-16T06:51:23Z2008-10-16T06:51:23Z<p>I've found that having one vertical monitor and one horizontal monitor is very useful. E-books, web browsing and some code (long functions) are better on the vertical one. Mail and wide code are better on the horizontal one.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/207671#2076712Answer by bob for What things didn't you know you needed but are now very glad you have?bob2008-10-16T07:21:00Z2008-11-03T23:26:26Z<p>for me also...</p>
<ol>
<li><a href="http://www.jetbrains.com/" rel="nofollow">JetBrains</a> tools (ReSharper, dotTrace)</li>
<li><a href="http://www.roland-weigelt.de/ghostdoc/" rel="nofollow">GhostDoc</a>, (VS.NET Addin) (the little push I sometimes need)</li>
<li><a href="http://www.ultrapico.com/expresso.htm" rel="nofollow">Expresso</a>, great regex tool</li>
<li><a href="http://www.humanized.com/" rel="nofollow">Enso</a>, program launcher</li>
<li>Google Reader</li>
<li>VirtualPC / VirtualBox</li>
<li>and <a href="http://freemind.sourceforge.net/" rel="nofollow">FreeMind</a>, to keep me organized</li>
</ol>
<p>EDIT</p>
<p>forgot one</p>
<ol>
<li><a href="http://jgpaiva.donationcoders.com/gridmove.html" rel="nofollow">GridMove</a></li>
</ol>
<p>EDIT 2</p>
<p>some tools I place on my USB stick. (<a href="http://portableapps.com/" rel="nofollow">link</a> / <a href="http://portableapps.com/node/10952" rel="nofollow">link</a>)</p>
<p>always my mindmaps with me...</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/208064#2080640Answer by larssg for What things didn't you know you needed but are now very glad you have?larssg2008-10-16T10:44:10Z2008-10-16T10:44:10Z<p><strong>Capistrano</strong>. Knowing that I can run deploy:rollback if anything fails and also forcing tests to run before deployment is extremely useful. It also means no matter how complicated deployment of a project is, anyone is able to do it since it only requires a single command. </p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/208092#2080923Answer by Herman Lintvelt for What things didn't you know you needed but are now very glad you have?Herman Lintvelt2008-10-16T10:53:15Z2008-10-16T10:53:15Z<p><strong>Bazaar</strong>. Definitely the best source-control software I've ever worked with. First you discover source-control, then you discover <a href="http://bazaar-vcs.org/" rel="nofollow">bazaar</a>. </p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/208104#2081045Answer by Nick for What things didn't you know you needed but are now very glad you have?Nick2008-10-16T10:57:42Z2008-10-16T10:57:42Z<p>Agile and SCRUM Methodology changed everything</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/208126#2081261Answer by Nick for What things didn't you know you needed but are now very glad you have?Nick2008-10-16T11:08:40Z2008-10-16T11:08:40Z<p>Domain Driven Design</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/208187#2081873Answer by jrutter for What things didn't you know you needed but are now very glad you have?jrutter2008-10-16T11:40:49Z2008-10-16T11:40:49Z<p>Basecamp Project Management Software because no one really wants to take the role of the project manager, but this helps everyone become more accountable for what they are doing. Especially in small companies, I think most programmers fret at the thought of using such software because they complain it makes more work for them, but when you are working with programmers who are both on-site and remote, things can get messy. Basecamp helps to keep everyone on the same page. For our team, we use it as a calendar, task list and sometimes a wiki for documentation. </p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/208211#2082114Answer by dubs for What things didn't you know you needed but are now very glad you have?dubs2008-10-16T11:45:45Z2008-10-16T11:45:45Z<p>WinMerge for comparing the differences in content of two files similar files</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/208733#2087330Answer by Mère Teresa for What things didn't you know you needed but are now very glad you have?Mère Teresa2008-10-16T14:13:13Z2008-10-16T14:13:13Z<p>A second screen</p>
<p>For developping and testing and read the documentation, plus check e-mails once a while...</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/209124#2091242Answer by Shane for What things didn't you know you needed but are now very glad you have?Shane2008-10-16T15:43:54Z2008-10-16T15:43:54Z<p>Scott Hanselman has put together and maintained an excellent list of tools and utilities, many of which I now find indispensable.</p>
<p>The list is here:</p>
<p><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></p>
<p>My personal favourite: <a href="http://www.bayden.com/SlickRun/" rel="nofollow">slickrun</a>, an indescribably smart and effective utility to launch anything.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/209292#2092927Answer by Lepu for What things didn't you know you needed but are now very glad you have?Lepu2008-10-16T16:19:39Z2008-10-16T16:19:39Z<p>A great revolution for me was the discovery of delicious.com </p>
<p>It has become an every day tool, completely integrated in my browsers as plug-ins, through which I discover and find pertinent techniques, white papers, tutorials, tools for subjects I'm interested in. The fact, that you can also browse bookmarks saved by other people on subjects of your interest is a related amazing technology-watch feature that I discovered by acccident.</p>
<p>I guess you can't really understand the power of this social bookmarking features as implemented by delicious until you start using them. That's why I think delicious is a good candidate as an answer for the current question.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/210866#2108663Answer by dicroce for What things didn't you know you needed but are now very glad you have?dicroce2008-10-17T01:39:04Z2008-10-17T01:39:04Z<p>strace and ltrace on Unix. I have no idea how other programmers get along without them! The output of these tools can take some getting used to, but once you do get used to it, its hard to imagine not having!</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/210879#2108793Answer by k3andme for What things didn't you know you needed but are now very glad you have?k3andme2008-10-17T01:45:18Z2008-10-17T01:45:18Z<p>Synergy, without a doubt. 3 seperate OS's all controlled by one mouse and one keyboard? Magic.</p>
<p>(java) In the last few days, I've also discovered the joys of Spring Workflow. There are other frameworks out there but this is the one I discovered. Re-implementing our core Webservices has not only been a joy, but maintenance and performance have been hugely improved.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/210929#2109291Answer by SpongeJim for What things didn't you know you needed but are now very glad you have?SpongeJim2008-10-17T02:31:33Z2008-10-17T02:31:33Z<p>Going backwards in time:</p>
<p>CruiseControl.NET... Resharper... NUnit... Reflector... Intellisense... Struts... Debuggable JSP's... Java... an IDE... Windows... XWindows...</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/211125#2111252Answer by Caspin for What things didn't you know you needed but are now very glad you have?Caspin2008-10-17T05:00:45Z2008-10-17T05:00:45Z<p><a href="http://www.boost.org" rel="nofollow">Boost</a></p>
<p>C++ is as bad as all the Java programmers claim without it.</p>
<ul>
<li><a href="http://www.boost.org/doc/libs/1_36_0/libs/smart_ptr" rel="nofollow">boost::shared_ptr</a></li>
<li><a href="http://www.boost.org/doc/libs/1_36_0/libs/bind/bind.html" rel="nofollow">boost::bind</a></li>
<li><a href="http://www.boost.org/doc/libs/1_36_0/doc/html/function.html" rel="nofollow">boost::function</a></li>
<li><a href="http://www.boost.org/doc/libs/1_36_0/libs/tuple/doc/tuple_users_guide.html" rel="nofollow">boost::tuple</a></li>
<li><a href="http://www.boost.org/doc/libs/1_36_0/doc/html/thread.html" rel="nofollow">boost::thread</a></li>
<li><a href="http://www.boost.org/doc/libs/1_36_0/doc/html/boost_staticassert.html" rel="nofollow">BOOST_STATIC_ASSERT</a></li>
</ul>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/211215#2112157Answer by staticsan for What things didn't you know you needed but are now very glad you have?staticsan2008-10-17T06:21:30Z2008-10-17T06:21:30Z<p>Learning about advanced algorithms.</p>
<p>For example, spending the time to read about all the different ways data can be sorted teaches you a lot about manipulating data. Even if you never do anything but call the library's QuickSort. Ditto about how compilers work. Or how to store tree-oriented data in a relational database.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/211220#2112202Answer by Oliver for What things didn't you know you needed but are now very glad you have?Oliver2008-10-17T06:27:32Z2008-10-17T06:27:32Z<p>ClipX - A Clipboard extender that lets you access your 20 most recent "Ctrl-C copies". How many times you whished, you had that "second-to-last" copy handy.</p>
<p>Set the shortcut to Ctrl+Alt-V, and you will get used to it quickly.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/211222#2112226Answer by TheCodeJunkie for What things didn't you know you needed but are now very glad you have?TheCodeJunkie2008-10-17T06:28:21Z2008-10-17T06:28:21Z<p>My wife and son :-)</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/211519#2115190Answer by Cygnes for What things didn't you know you needed but are now very glad you have?Cygnes2008-10-17T09:13:43Z2008-10-17T09:13:43Z<p>Continious integration...CC.NET</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/211953#2119530Answer by Stepan Stolyarov for What things didn't you know you needed but are now very glad you have?Stepan Stolyarov2008-10-17T12:38:05Z2008-10-17T12:38:05Z<p><a href="http://en.wikipedia.org/wiki/Design_Patterns" rel="nofollow">GoF</a> book and the concept of design patterns as such. I think I never really understood OOP until I read this book. Patterns helped me to take a broader look at my programs.</p>
<p>When you start programming, you think of your code in terms of really low-level things, such as vars and loops. Then you learn functions and start using them (I can remember times when I was about 10 and was eager to write my next BASIC program with subroutine). Even later you meet the classes — and at first it seemes to be the highest level of abstraction. And then you meet the patterns.</p>
<p>For me it was like driving to the top of the hill — when you reach it thinking the road is just over, you suddenly see the whole world ahead.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/212021#2120217Answer by Steve Dunn for What things didn't you know you needed but are now very glad you have?Steve Dunn2008-10-17T13:03:40Z2008-10-17T13:03:40Z<p>Learn the keyboard short-cuts of your IDE and ditch the mouse whenever possible. It'll not only make you faster, but also force you think more of keyboard oriented users in your own apps!</p>
<p>Oh, and <a href="http://jetbrains.com" rel="nofollow">ReSharper</a> of course! :)</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/212033#2120333Answer by Bas Leijdekkers for What things didn't you know you needed but are now very glad you have?Bas Leijdekkers2008-10-17T13:08:45Z2008-10-17T13:08:45Z<p>Static source code analysis in the editor. </p>
<p>This has already caught many silly mistakes I made after I got distracted by a phone call or something. For example I seem to often create a while loop with a condition that does a variable != null check, but then forget to update the variable inside the loop (thus creating an infinite loop). IntelliJ IDEA warns me about this before I try and run the code.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/212192#2121924Answer by Dano for What things didn't you know you needed but are now very glad you have?Dano2008-10-17T13:47:58Z2008-10-17T13:47:58Z<p>A Laptop! Finally I don't have to walk 5 minutes to a warehouse, then back to my desk, then back to the warehouse......</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/212441#2124411Answer by bwknight877 for What things didn't you know you needed but are now very glad you have?bwknight8772008-10-17T14:43:10Z2008-10-17T14:43:10Z<p>Automated nightly build system, saved us the time of a 6+ hour manual build process down to a 15min automated build</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/212504#2125040Answer by John Dunagan for What things didn't you know you needed but are now very glad you have?John Dunagan2008-10-17T14:54:59Z2008-10-17T14:54:59Z<p>A laptop, Intellisense, dual monitors, teammates, my local developer community, Resharper, Firebug, WinMerge, Subversion, Google, ice cream, and beer.</p>
<p>And the minute I can't add to this list is the minute I've lost the will to live.</p>
<p>Great question.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/212768#2127681Answer by for What things didn't you know you needed but are now very glad you have?2008-10-17T16:02:23Z2008-10-17T16:02:23Z<p>two monitors. definitely two monitors. </p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/212776#2127763Answer by for What things didn't you know you needed but are now very glad you have?2008-10-17T16:04:44Z2008-10-17T16:04:44Z<p>No interruptions would also be high up my list. Often hard to achieve but makes the world of difference</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/212859#2128590Answer by whatknott for What things didn't you know you needed but are now very glad you have?whatknott2008-10-17T16:27:12Z2008-10-17T16:27:12Z<p>For anyone with multiple monitors or widescreens, a window management program is a must. Try <a href="http://www.winsplit-revolution.com/" rel="nofollow">WinSplit Revolution</a> for starters.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/213188#2131882Answer by David Kemp for What things didn't you know you needed but are now very glad you have?David Kemp2008-10-17T18:05:57Z2008-10-17T18:05:57Z<p>Google.</p>
<p>Before trying to solve any problem, use Google to see if (and how) any one has done it first.*</p>
<p>*Although the answer to who's done it first might well be Google.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/213586#2135860Answer by dviljoen for What things didn't you know you needed but are now very glad you have?dviljoen2008-10-17T19:43:10Z2008-10-17T19:52:26Z<ul>
<li>SysInternals</li>
<li>Reflector</li>
<li>Managed Stack Explorer</li>
<li>Ghostdoc</li>
<li>Notepad++</li>
</ul>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/213600#2136001Answer by Don for What things didn't you know you needed but are now very glad you have?Don2008-10-17T19:49:36Z2008-10-17T19:49:36Z<p>stackoverflow :)</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/213606#21360612Answer by Ates Goral for What things didn't you know you needed but are now very glad you have?Ates Goral2008-10-17T19:51:38Z2009-05-11T18:08:53Z<p><a href="http://www.launchy.net/" rel="nofollow">Launchy</a>: The Open Source Keystroke Launcher</p>
<p>I can never go back to using the Start menu again...</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/213618#2136180Answer by pkimbrel for What things didn't you know you needed but are now very glad you have?pkimbrel2008-10-17T19:55:35Z2008-10-17T19:55:35Z<p>EJB3...</p>
<p>Death to deployment descriptors! Long live annotations!</p>
<p>Oh, and Java annotations, too. Never saw the need until EJB3 showed me the light. Of course, having done EJB3 annotations for a while, I still see the need for deployment descriptors (don't put host names in source code - that's bad 'um kay?). But the annotations sure makes ORM constructs easier to deal with.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/213656#2136561Answer by tsilb for What things didn't you know you needed but are now very glad you have?tsilb2008-10-17T20:06:31Z2008-10-17T20:06:31Z<p><a href="http://www.realtimesoft.com/multimon/gallery_browse.asp?ID=934&date=desc&nummon=false&mon=desc" rel="nofollow">my six monitors</a>, .NET, Edit and Continue, unit tests, and a STOP button that actually stops the page loading (Thanks, IE8!).</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/214000#2140001Answer by J.J. for What things didn't you know you needed but are now very glad you have?J.J.2008-10-17T22:06:58Z2008-10-17T22:06:58Z<p>Switching to the Dvorak keyboard layout. It increased my typing speed, and decreased my fatigue.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/214020#2140203Answer by Lex for What things didn't you know you needed but are now very glad you have?Lex2008-10-17T22:14:49Z2008-10-17T22:14:49Z<p>Test driven development</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/214541#2145412Answer by Leonard for What things didn't you know you needed but are now very glad you have?Leonard2008-10-18T03:57:16Z2008-10-18T03:57:16Z<p>If you haven't really "got" the object oriented paradigm, your eyes will light up when you finally grasp it. OO is a way to think about the "middle chunks" of a complex system and lets you make progress even when you don't understand the whole solution yet.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/214751#2147511Answer by rabashani for What things didn't you know you needed but are now very glad you have?rabashani2008-10-18T08:25:45Z2008-10-18T08:25:45Z<p><strong>Google</strong>, absolutely that best thing ever happened.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/216064#2160642Answer by Yes Fish... for What things didn't you know you needed but are now very glad you have?Yes Fish...2008-10-19T05:45:57Z2008-10-19T05:45:57Z<p>Reflection. Definately reflection. There is just no way I could do my current work without it.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/216279#2162793Answer by mnour for What things didn't you know you needed but are now very glad you have?mnour2008-10-19T11:07:26Z2008-10-19T11:07:26Z<p>Issue/Bug tracking systems like Fogbugz and Bugzilla.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/216312#2163123Answer by porneL for What things didn't you know you needed but are now very glad you have?porneL2008-10-19T11:43:23Z2008-10-19T11:43:23Z<p>Unix CLI tools like <code>find</code>, <code>awk</code>, <code>sed</code>, <code>make</code>. They come handy in all kinds of situations.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/217349#2173491Answer by rupjones for What things didn't you know you needed but are now very glad you have?rupjones2008-10-20T02:06:07Z2008-10-20T02:06:07Z<p>Unit Tests and Lean software practices generally.</p>
<p>Knowing I have comprehensive automated test coverage lets me sleep at night.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/218069#2180698Answer by eraunatonteria for What things didn't you know you needed but are now very glad you have?eraunatonteria2008-10-20T11:10:28Z2008-10-20T11:10:28Z<p>Regular Expressions. Many people doesn't know them.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/218108#2181081Answer by Jon Topper for What things didn't you know you needed but are now very glad you have?Jon Topper2008-10-20T11:32:36Z2008-10-20T11:32:36Z<p>Development, integration and test environments that are <i>identical</i> in software configuration to the live environment to which code will be deploy, as well as a database with a large enough dataset to be representative of the live environnment.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/218201#2182011Answer by Colonel Sponsz for What things didn't you know you needed but are now very glad you have?Colonel Sponsz2008-10-20T12:06:50Z2008-10-20T12:06:50Z<p>Versioning file system. Having worked on a VAX many years ago I'm still somewhat surprised that it's not a standard feature of modern operating systems.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/218320#2183202Answer by gpojd for What things didn't you know you needed but are now very glad you have?gpojd2008-10-20T12:52:09Z2008-10-20T12:52:09Z<p><a href="http://www.gnu.org/software/screen/" rel="nofollow">GNU Screen</a>. I don't know how I worked without it before I found it. It allows me to use all the other suggestions that were made here in one screen session. </p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/221536#2215361Answer by ptor for What things didn't you know you needed but are now very glad you have?ptor2008-10-21T11:38:33Z2008-10-21T11:38:33Z<p>A (dual) monitor that can be rotated by 90deg</p>
<p>No longer scrolling like crazy all over the source code, and can see a reasonable number of lines at a time</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/223493#2234931Answer by Paul Fedory for What things didn't you know you needed but are now very glad you have?Paul Fedory2008-10-21T21:02:34Z2008-10-21T21:02:34Z<p>In <strong>Visual Studio</strong>, I use <strong>code snippets</strong> all the time. For example, typing "mbox" then Tab, will auto-complete a MessageBox.Show() for you. There are several others, and it's easy to create your own.</p>
<p>Also, I use the right-click <strong>"Surround with"</strong> option to surround a block of code in a try-catch block or something similar.</p>
<p>I also use the <strong>"Extract method"</strong> on a block of code to create a private method and enhance the readability of the code.</p>
<p>I know a lot of programmers that aren't aware of them, or are aware of them, but just never used or got used to them. They're a great time-saver!</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/229013#2290132Answer by Kate for What things didn't you know you needed but are now very glad you have?Kate2008-10-23T08:54:12Z2008-10-23T08:54:12Z<p>Without a doubt, it's the Internet. Those who have always known it have no idea what an impact this has made on everything.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/258058#2580584Answer by Rob Howard for What things didn't you know you needed but are now very glad you have?Rob Howard2008-11-03T07:21:57Z2008-11-03T07:21:57Z<p><strong>Virtual Desktops.</strong></p>
<p>Being able to have "groups" of windows (say, a browser window for testing and two code windows on desktop, then a browser window and a PDF viewer for docs on another, and then a group of email/calendaring apps...) is <em>really</em> damn useful.</p>
<p>It's like having an extra dimension; you can alt-tab to switch within the windows on one desktop, and then hit another key combo to switch to another desktop with its own self-contained group of apps.</p>
<ul>
<li><strong>Linux:</strong> Gnome, KDE, XFCE, Fluxbox, Enlightenment, twm... They all have it. :D</li>
<li><strong>Windows:</strong> <a href="http://virtuawin.sourceforge.net/" rel="nofollow">Virtuawin</a> (beats the Windows Powertoys version hands-down.)</li>
<li><strong>Mac:</strong> ... Any suggestions?</li>
</ul>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/265121#2651212Answer by Nappy for What things didn't you know you needed but are now very glad you have?Nappy2008-11-05T13:26:00Z2008-11-05T13:26:00Z<p>Cheat sheets!</p>
<p>Command-line access to cheat sheets using a Ruby gem: <a href="http://cheat.errtheblog.com/" rel="nofollow">http://cheat.errtheblog.com/</a>
Heck, you can even do <code>cheat cheat</code>.</p>
<p>Here are some awesome networking cheat sheets from Packetlife: <a href="http://packetlife.net/cheatsheets/" rel="nofollow">http://packetlife.net/cheatsheets/</a></p>
<p>I'm currently in the process of collecting all the best sheets and printing them into a binder format.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/284260#2842602Answer by Mr. Matt for What things didn't you know you needed but are now very glad you have?Mr. Matt2008-11-12T15:17:00Z2008-11-12T15:17:00Z<p><strong>A Staging Server</strong>: I can't imaging working on a web app then deploying into production without staging it first in the same environment as the production server.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/380010#3800101Answer by plaureano for What things didn't you know you needed but are now very glad you have?plaureano2008-12-19T03:16:28Z2008-12-19T03:16:28Z<p>People skills. Now I can talk my managers out of doing thing(s) that make absolutely no sense without having to write a single line of code, and that saves me a huge amount of time.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/380020#3800203Answer by Greg Beech for What things didn't you know you needed but are now very glad you have?Greg Beech2008-12-19T03:23:51Z2008-12-19T03:23:51Z<p><strong>wget</strong> - is there a better way to download things from the net?</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/439975#4399751Answer by hornysax for What things didn't you know you needed but are now very glad you have?hornysax2009-01-13T17:39:30Z2009-01-13T17:39:30Z<p><code>WinGrep</code> for searching quickly and efficiently through a codebase.</p>
<p><a href="http://www.wingrep.com/download.htm" rel="nofollow">http://www.wingrep.com/download.htm</a></p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/507895#5078952Answer by tchalvak for What things didn't you know you needed but are now very glad you have?tchalvak2009-02-03T16:43:27Z2009-02-03T16:43:27Z<p>GIT. I didn't have any idea how bad svn was until I came to know the powerful ways of git.
(though I think any -distributed- version control system might work).</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/507911#5079111Answer by Jonathan Sampson for What things didn't you know you needed but are now very glad you have?Jonathan Sampson2009-02-03T16:46:49Z2009-02-03T16:46:49Z<p>In all honesty, <strong>DIV-Based CSS Layouts</strong>. I fought tooth-and-nail for years, and continued to tell myself "<em>It's okay, tables work with little effort, nothing wrong with using them.</em>"</p>
<p>I am so thankful I stopped being so apathetic and lazy.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/560404#5604040Answer by Ries for What things didn't you know you needed but are now very glad you have?Ries2009-02-18T09:42:16Z2009-02-18T09:42:16Z<p><strong>ORM tools</strong>. I remember going into a project (early days) thinking I would have to write classes for all entities manually, and then finding out about code generating ORM tools. Needless to say, it saved considerable time and effort.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/566783#5667831Answer by Fortes for What things didn't you know you needed but are now very glad you have?Fortes2009-02-19T19:29:23Z2009-02-19T19:29:23Z<ul>
<li>Firebug </li>
<li>A Macintosh computer instead
of a windows pc </li>
<li>Eclipse ide </li>
<li>SVN, Version control </li>
<li>jAvaScript librarys like Scriptaculous and prototype</li>
<li>a cellphone with internet</li>
<li>a webCam with a motion sensor</li>
</ul>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/661458#6614583Answer by Vijay Dev for What things didn't you know you needed but are now very glad you have?Vijay Dev2009-03-19T08:44:08Z2009-03-19T08:44:08Z<p>vim, find and grep</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/661514#6615143Answer by Dave Sanscerveau for What things didn't you know you needed but are now very glad you have?Dave Sanscerveau2009-03-19T09:14:59Z2009-03-19T09:14:59Z<p>Life, mate. It's short and it's out there, so don't spend yours in front of a monitor (says the wise guy who's mostly done that).</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/846093#8460931Answer by Timwi for What things didn't you know you needed but are now very glad you have?Timwi2009-05-10T20:58:09Z2009-05-10T20:58:09Z<p>IntelliSense, or any similar auto-completion mechanism.</p>
<p>It is absolutely staggering how many IDEs don't have this, even though Visual Studio demonstrates really nicely how useful it is and how much time it can save.</p>
<p>Unfortunately you can't have IntelliSense in a dynamically-typed language.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/848977#8489770Answer by e-satis for What things didn't you know you needed but are now very glad you have?e-satis2009-05-11T16:43:48Z2009-05-11T16:43:48Z<p>A living ornitorynx. I am sure none of you is able to realise the amazing benefit of coding near this incredible gift of god. No ?</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/848996#8489961Answer by Jian Lin for What things didn't you know you needed but are now very glad you have?Jian Lin2009-05-11T16:48:28Z2009-05-11T16:48:28Z<p>a KVM switch for handling 2 computers or more at the same time.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/853426#8534261Answer by Jugglingnutcase for What things didn't you know you needed but are now very glad you have?Jugglingnutcase2009-05-12T15:39:42Z2009-05-12T15:39:42Z<p>That totally happened to me with source control! Why they never taught me that in college is beyond me! Actually they started teaching it the year after me.</p>
<p>Similar to the question, but on a little different plane...</p>
<p>i told my co-worker that i hated the second or two it takes for new tabs to load in IE and that was the biggest reason why i preferred Firefox. He said now that i've said that he's started to notice it and it bugs him too.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/867055#8670550Answer by zonkflut for What things didn't you know you needed but are now very glad you have?zonkflut2009-05-15T05:11:49Z2009-05-15T05:11:49Z<p><a href="http://www.jetbrains.com" rel="nofollow">Resharper</a> Proberbly one of the most useful tools I have ever used.
Makes my coding experience in Visual Studio so much more pleasent.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/917511#9175111Answer by NotDan for What things didn't you know you needed but are now very glad you have?NotDan2009-05-27T19:12:06Z2009-05-27T19:12:06Z<p>A mock object tool. Specificaly Moq for .Net.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/1030898#10308980Answer by unknown (google) for What things didn't you know you needed but are now very glad you have?unknown (google)2009-06-23T06:23:07Z2009-06-23T06:23:07Z<p>Assembler.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/1064205#10642050Answer by Jim Rush for What things didn't you know you needed but are now very glad you have?Jim Rush2009-06-30T15:06:19Z2009-06-30T15:06:19Z<p>A complete continuous integration environment that performs a rich set unit and system tests. </p>
<p>Those 'quick fixes' can cause significant damage if there's only quick testing.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/1305958#13059580Answer by Mark Redman for What things didn't you know you needed but are now very glad you have?Mark Redman2009-08-20T12:45:51Z2009-08-20T12:45:51Z<p>Object Oriented Programming for code reuse!</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/1604657#16046570Answer by gcb for What things didn't you know you needed but are now very glad you have?gcb2009-10-22T02:01:03Z2009-10-22T02:01:03Z<p>in VIm you can apply a regexp or any command based on another regexp.</p>
<p>e.g.</p>
<pre><code>:/head/,/\/head/s/google.com/yahoo.com/
^^^^^^ first regexp. start
^ separator
^^^^^^^^ second regexp, ends here
^ command. substitute.
^^^^^^^^^^^^^^^^^^^^^^ the regexp.
</code></pre>