What things didn't you know you needed but are now very glad you have? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T05:59:19Z http://stackoverflow.com/feeds/question/203286 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have 97 What things didn't you know you needed but are now very glad you have? DrStalker 2008-10-15T00:07:06Z 2009-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#203293 78 Answer by Mark for What things didn't you know you needed but are now very glad you have? Mark 2008-10-15T00:08:42Z 2008-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#203301 34 Answer by Gulzar for What things didn't you know you needed but are now very glad you have? Gulzar 2008-10-15T00:12:06Z 2008-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#203304 31 Answer by Ken Liu for What things didn't you know you needed but are now very glad you have? Ken Liu 2008-10-15T00:14:44Z 2008-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#203314 0 Answer by Dan Dyer for What things didn't you know you needed but are now very glad you have? Dan Dyer 2008-10-15T00:18:42Z 2008-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#203335 68 Answer by Paul Nathan for What things didn't you know you needed but are now very glad you have? Paul Nathan 2008-10-15T00:32:32Z 2008-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#203338 81 Answer by EvilTeach for What things didn't you know you needed but are now very glad you have? EvilTeach 2008-10-15T00:34:08Z 2008-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#203342 2 Answer by moffdub for What things didn't you know you needed but are now very glad you have? moffdub 2008-10-15T00:37:07Z 2008-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#203362 48 Answer by JarrettV for What things didn't you know you needed but are now very glad you have? JarrettV 2008-10-15T00:47:49Z 2008-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#203366 16 Answer by Matt Dillard for What things didn't you know you needed but are now very glad you have? Matt Dillard 2008-10-15T00:51:45Z 2008-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#203370 219 Answer by acrosman for What things didn't you know you needed but are now very glad you have? acrosman 2008-10-15T00:54:50Z 2008-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#203372 5 Answer by TheSoftwareJedi for What things didn't you know you needed but are now very glad you have? TheSoftwareJedi 2008-10-15T00:56:42Z 2008-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#203398 76 Answer by Joel Coehoorn for What things didn't you know you needed but are now very glad you have? Joel Coehoorn 2008-10-15T01:10:22Z 2008-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#203403 2 Answer by aib for What things didn't you know you needed but are now very glad you have? aib 2008-10-15T01:12:15Z 2008-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#203406 4 Answer by bouvard for What things didn't you know you needed but are now very glad you have? bouvard 2008-10-15T01:13:17Z 2008-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#203407 93 Answer by BoltBait for What things didn't you know you needed but are now very glad you have? BoltBait 2008-10-15T01:13:33Z 2008-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#203412 21 Answer by Jay Bazuzi for What things didn't you know you needed but are now very glad you have? Jay Bazuzi 2008-10-15T01:14:32Z 2008-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#203415 37 Answer by Jay Bazuzi for What things didn't you know you needed but are now very glad you have? Jay Bazuzi 2008-10-15T01:15:25Z 2008-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#203417 123 Answer by VirtuosiMedia for What things didn't you know you needed but are now very glad you have? VirtuosiMedia 2008-10-15T01:15:53Z 2008-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#203418 65 Answer by nickf for What things didn't you know you needed but are now very glad you have? nickf 2008-10-15T01:16:08Z 2008-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#203434 2 Answer by Kyle Burton for What things didn't you know you needed but are now very glad you have? Kyle Burton 2008-10-15T01:24:41Z 2008-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#203445 7 Answer by stimpy77 for What things didn't you know you needed but are now very glad you have? stimpy77 2008-10-15T01:32:25Z 2008-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#203449 77 Answer by Hapkido for What things didn't you know you needed but are now very glad you have? Hapkido 2008-10-15T01:36:54Z 2008-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#203458 30 Answer by Kris Erickson for What things didn't you know you needed but are now very glad you have? Kris Erickson 2008-10-15T01:41:50Z 2008-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#203460 54 Answer by Jack for What things didn't you know you needed but are now very glad you have? Jack 2008-10-15T01:42:52Z 2008-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#203463 29 Answer by mcherm for What things didn't you know you needed but are now very glad you have? mcherm 2008-10-15T01:44:13Z 2008-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#203507 18 Answer by Solracnapod for What things didn't you know you needed but are now very glad you have? Solracnapod 2008-10-15T02:15:26Z 2008-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#203526 41 Answer by Gerald for What things didn't you know you needed but are now very glad you have? Gerald 2008-10-15T02:24:12Z 2008-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#203542 0 Answer by Skittles for What things didn't you know you needed but are now very glad you have? Skittles 2008-10-15T02:33:04Z 2008-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#203545 19 Answer by jjacka for What things didn't you know you needed but are now very glad you have? jjacka 2008-10-15T02:35:41Z 2008-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#203546 12 Answer by DrStalker for What things didn't you know you needed but are now very glad you have? DrStalker 2008-10-15T02:35:49Z 2008-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#203568 49 Answer by cole for What things didn't you know you needed but are now very glad you have? cole 2008-10-15T02:47:11Z 2008-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#203592 64 Answer by Uri for What things didn't you know you needed but are now very glad you have? Uri 2008-10-15T03:07:06Z 2008-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#203638 1 Answer by HappyCodeMonkey for What things didn't you know you needed but are now very glad you have? HappyCodeMonkey 2008-10-15T03:33:20Z 2008-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#203673 0 Answer by Nrj for What things didn't you know you needed but are now very glad you have? Nrj 2008-10-15T03:49:16Z 2008-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#203689 3 Answer by smaclell for What things didn't you know you needed but are now very glad you have? smaclell 2008-10-15T04:01:05Z 2008-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#203708 29 Answer by Craig for What things didn't you know you needed but are now very glad you have? Craig 2008-10-15T04:17:45Z 2008-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#203714 4 Answer by DGM for What things didn't you know you needed but are now very glad you have? DGM 2008-10-15T04:23:21Z 2008-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#203723 6 Answer by DGM for What things didn't you know you needed but are now very glad you have? DGM 2008-10-15T04:28:41Z 2008-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#203724 5 Answer by gregf for What things didn't you know you needed but are now very glad you have? gregf 2008-10-15T04:29:34Z 2008-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#203747 2 Answer by naveen.kumar.bangalore for What things didn't you know you needed but are now very glad you have? naveen.kumar.bangalore 2008-10-15T04:48:24Z 2008-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#203764 25 Answer by nullstyle for What things didn't you know you needed but are now very glad you have? nullstyle 2008-10-15T04:57:58Z 2008-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#203776 7 Answer by cbp for What things didn't you know you needed but are now very glad you have? cbp 2008-10-15T05:06:49Z 2008-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#203789 0 Answer by destrado08 for What things didn't you know you needed but are now very glad you have? destrado08 2008-10-15T05:16:40Z 2008-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#203793 1 Answer by vanslly for What things didn't you know you needed but are now very glad you have? vanslly 2008-10-15T05:22:16Z 2008-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#203794 45 Answer by sobbayi for What things didn't you know you needed but are now very glad you have? sobbayi 2008-10-15T05:23:20Z 2008-10-15T11:29:54Z <p>code &amp; 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#203816 27 Answer by RichH for What things didn't you know you needed but are now very glad you have? RichH 2008-10-15T05:44:26Z 2008-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#203843 1 Answer by Chris Blackwell for What things didn't you know you needed but are now very glad you have? Chris Blackwell 2008-10-15T06:12:14Z 2008-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#203885 65 Answer by blindauer for What things didn't you know you needed but are now very glad you have? blindauer 2008-10-15T06:39:58Z 2008-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#203977 0 Answer by Pace for What things didn't you know you needed but are now very glad you have? Pace 2008-10-15T07:58:43Z 2008-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#203982 25 Answer by John Nolan for What things didn't you know you needed but are now very glad you have? John Nolan 2008-10-15T08:03:47Z 2008-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#204038 2 Answer by Eemeli Kantola for What things didn't you know you needed but are now very glad you have? Eemeli Kantola 2008-10-15T08:33:30Z 2008-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#204052 5 Answer by Shane MacLaughlin for What things didn't you know you needed but are now very glad you have? Shane MacLaughlin 2008-10-15T08:39:54Z 2008-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#204145 1 Answer by Peter Miehle for What things didn't you know you needed but are now very glad you have? Peter Miehle 2008-10-15T09:24:05Z 2008-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#204153 0 Answer by Peter Miehle for What things didn't you know you needed but are now very glad you have? Peter Miehle 2008-10-15T09:25:21Z 2008-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#204205 21 Answer by Vaibhav Garg for What things didn't you know you needed but are now very glad you have? Vaibhav Garg 2008-10-15T09:56:55Z 2008-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#204222 3 Answer by ePharaoh for What things didn't you know you needed but are now very glad you have? ePharaoh 2008-10-15T10:07:09Z 2008-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#204550 11 Answer by Zteve for What things didn't you know you needed but are now very glad you have? Zteve 2008-10-15T12:39:01Z 2008-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#204605 8 Answer by Rob Bell for What things didn't you know you needed but are now very glad you have? Rob Bell 2008-10-15T12:58:48Z 2008-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#204625 1 Answer by Kenny for What things didn't you know you needed but are now very glad you have? Kenny 2008-10-15T13:05:16Z 2008-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#204645 0 Answer by Danielle for What things didn't you know you needed but are now very glad you have? Danielle 2008-10-15T13:10:43Z 2008-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#204649 1 Answer by Nicholas for What things didn't you know you needed but are now very glad you have? Nicholas 2008-10-15T13:12:24Z 2008-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#204652 7 Answer by Dana for What things didn't you know you needed but are now very glad you have? Dana 2008-10-15T13:13:02Z 2008-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#204655 1 Answer by Nicholas for What things didn't you know you needed but are now very glad you have? Nicholas 2008-10-15T13:14:52Z 2008-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#204945 10 Answer by DOK for What things didn't you know you needed but are now very glad you have? DOK 2008-10-15T14:32:05Z 2008-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#205110 2 Answer by Jeff Schumacher for What things didn't you know you needed but are now very glad you have? Jeff Schumacher 2008-10-15T15:14:43Z 2008-10-15T15:14:43Z <p>Tools like CodeRush &amp; 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#205255 4 Answer by RoadWarrior for What things didn't you know you needed but are now very glad you have? RoadWarrior 2008-10-15T15:47:19Z 2008-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#205285 6 Answer by JB King for What things didn't you know you needed but are now very glad you have? JB King 2008-10-15T15:55:34Z 2008-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#205647 4 Answer by Maglob for What things didn't you know you needed but are now very glad you have? Maglob 2008-10-15T17:30:36Z 2008-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#206088 4 Answer by md6380 for What things didn't you know you needed but are now very glad you have? md6380 2008-10-15T19:31:28Z 2008-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#206147 1 Answer by da_code_monkey for What things didn't you know you needed but are now very glad you have? da_code_monkey 2008-10-15T19:48:09Z 2008-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#206461 7 Answer by Ben Throop for What things didn't you know you needed but are now very glad you have? Ben Throop 2008-10-15T20:58:30Z 2008-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#206833 4 Answer by Rene Saarsoo for What things didn't you know you needed but are now very glad you have? Rene Saarsoo 2008-10-15T22:53:44Z 2008-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#206854 4 Answer by Even Mien for What things didn't you know you needed but are now very glad you have? Even Mien 2008-10-15T23:02:06Z 2008-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#206864 2 Answer by ejgottl for What things didn't you know you needed but are now very glad you have? ejgottl 2008-10-15T23:11:33Z 2008-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#206920 1 Answer by tunaranch for What things didn't you know you needed but are now very glad you have? tunaranch 2008-10-15T23:37:27Z 2008-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#207139 3 Answer by Ovidiu Pacurar for What things didn't you know you needed but are now very glad you have? Ovidiu Pacurar 2008-10-16T01:35:15Z 2008-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#207170 0 Answer by Kena for What things didn't you know you needed but are now very glad you have? Kena 2008-10-16T01:52:42Z 2008-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#207329 2 Answer by Kent Brewster for What things didn't you know you needed but are now very glad you have? Kent Brewster 2008-10-16T03:20:34Z 2008-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#207355 3 Answer by AleP for What things didn't you know you needed but are now very glad you have? AleP 2008-10-16T03:32:10Z 2008-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#207615 2 Answer by Jerph for What things didn't you know you needed but are now very glad you have? Jerph 2008-10-16T06:51:23Z 2008-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#207671 2 Answer by bob for What things didn't you know you needed but are now very glad you have? bob 2008-10-16T07:21:00Z 2008-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#208064 0 Answer by larssg for What things didn't you know you needed but are now very glad you have? larssg 2008-10-16T10:44:10Z 2008-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#208092 3 Answer by Herman Lintvelt for What things didn't you know you needed but are now very glad you have? Herman Lintvelt 2008-10-16T10:53:15Z 2008-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#208104 5 Answer by Nick for What things didn't you know you needed but are now very glad you have? Nick 2008-10-16T10:57:42Z 2008-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#208126 1 Answer by Nick for What things didn't you know you needed but are now very glad you have? Nick 2008-10-16T11:08:40Z 2008-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#208187 3 Answer by jrutter for What things didn't you know you needed but are now very glad you have? jrutter 2008-10-16T11:40:49Z 2008-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#208211 4 Answer by dubs for What things didn't you know you needed but are now very glad you have? dubs 2008-10-16T11:45:45Z 2008-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#208733 0 Answer by Mère Teresa for What things didn't you know you needed but are now very glad you have? Mère Teresa 2008-10-16T14:13:13Z 2008-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#209124 2 Answer by Shane for What things didn't you know you needed but are now very glad you have? Shane 2008-10-16T15:43:54Z 2008-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#209292 7 Answer by Lepu for What things didn't you know you needed but are now very glad you have? Lepu 2008-10-16T16:19:39Z 2008-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#210866 3 Answer by dicroce for What things didn't you know you needed but are now very glad you have? dicroce 2008-10-17T01:39:04Z 2008-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#210879 3 Answer by k3andme for What things didn't you know you needed but are now very glad you have? k3andme 2008-10-17T01:45:18Z 2008-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#210929 1 Answer by SpongeJim for What things didn't you know you needed but are now very glad you have? SpongeJim 2008-10-17T02:31:33Z 2008-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#211125 2 Answer by Caspin for What things didn't you know you needed but are now very glad you have? Caspin 2008-10-17T05:00:45Z 2008-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#211215 7 Answer by staticsan for What things didn't you know you needed but are now very glad you have? staticsan 2008-10-17T06:21:30Z 2008-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#211220 2 Answer by Oliver for What things didn't you know you needed but are now very glad you have? Oliver 2008-10-17T06:27:32Z 2008-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#211222 6 Answer by TheCodeJunkie for What things didn't you know you needed but are now very glad you have? TheCodeJunkie 2008-10-17T06:28:21Z 2008-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#211519 0 Answer by Cygnes for What things didn't you know you needed but are now very glad you have? Cygnes 2008-10-17T09:13:43Z 2008-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#211953 0 Answer by Stepan Stolyarov for What things didn't you know you needed but are now very glad you have? Stepan Stolyarov 2008-10-17T12:38:05Z 2008-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#212021 7 Answer by Steve Dunn for What things didn't you know you needed but are now very glad you have? Steve Dunn 2008-10-17T13:03:40Z 2008-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#212033 3 Answer by Bas Leijdekkers for What things didn't you know you needed but are now very glad you have? Bas Leijdekkers 2008-10-17T13:08:45Z 2008-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#212192 4 Answer by Dano for What things didn't you know you needed but are now very glad you have? Dano 2008-10-17T13:47:58Z 2008-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#212441 1 Answer by bwknight877 for What things didn't you know you needed but are now very glad you have? bwknight877 2008-10-17T14:43:10Z 2008-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#212504 0 Answer by John Dunagan for What things didn't you know you needed but are now very glad you have? John Dunagan 2008-10-17T14:54:59Z 2008-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#212768 1 Answer by for What things didn't you know you needed but are now very glad you have? 2008-10-17T16:02:23Z 2008-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#212776 3 Answer by for What things didn't you know you needed but are now very glad you have? 2008-10-17T16:04:44Z 2008-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#212859 0 Answer by whatknott for What things didn't you know you needed but are now very glad you have? whatknott 2008-10-17T16:27:12Z 2008-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#213188 2 Answer by David Kemp for What things didn't you know you needed but are now very glad you have? David Kemp 2008-10-17T18:05:57Z 2008-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#213586 0 Answer by dviljoen for What things didn't you know you needed but are now very glad you have? dviljoen 2008-10-17T19:43:10Z 2008-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#213600 1 Answer by Don for What things didn't you know you needed but are now very glad you have? Don 2008-10-17T19:49:36Z 2008-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#213606 12 Answer by Ates Goral for What things didn't you know you needed but are now very glad you have? Ates Goral 2008-10-17T19:51:38Z 2009-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#213618 0 Answer by pkimbrel for What things didn't you know you needed but are now very glad you have? pkimbrel 2008-10-17T19:55:35Z 2008-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#213656 1 Answer by tsilb for What things didn't you know you needed but are now very glad you have? tsilb 2008-10-17T20:06:31Z 2008-10-17T20:06:31Z <p><a href="http://www.realtimesoft.com/multimon/gallery_browse.asp?ID=934&amp;date=desc&amp;nummon=false&amp;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#214000 1 Answer 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:58Z 2008-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#214020 3 Answer by Lex for What things didn't you know you needed but are now very glad you have? Lex 2008-10-17T22:14:49Z 2008-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#214541 2 Answer by Leonard for What things didn't you know you needed but are now very glad you have? Leonard 2008-10-18T03:57:16Z 2008-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#214751 1 Answer by rabashani for What things didn't you know you needed but are now very glad you have? rabashani 2008-10-18T08:25:45Z 2008-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#216064 2 Answer 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:57Z 2008-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#216279 3 Answer by mnour for What things didn't you know you needed but are now very glad you have? mnour 2008-10-19T11:07:26Z 2008-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#216312 3 Answer by porneL for What things didn't you know you needed but are now very glad you have? porneL 2008-10-19T11:43:23Z 2008-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#217349 1 Answer by rupjones for What things didn't you know you needed but are now very glad you have? rupjones 2008-10-20T02:06:07Z 2008-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#218069 8 Answer by eraunatonteria for What things didn't you know you needed but are now very glad you have? eraunatonteria 2008-10-20T11:10:28Z 2008-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#218108 1 Answer by Jon Topper for What things didn't you know you needed but are now very glad you have? Jon Topper 2008-10-20T11:32:36Z 2008-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#218201 1 Answer by Colonel Sponsz for What things didn't you know you needed but are now very glad you have? Colonel Sponsz 2008-10-20T12:06:50Z 2008-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#218320 2 Answer by gpojd for What things didn't you know you needed but are now very glad you have? gpojd 2008-10-20T12:52:09Z 2008-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#221536 1 Answer by ptor for What things didn't you know you needed but are now very glad you have? ptor 2008-10-21T11:38:33Z 2008-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#223493 1 Answer by Paul Fedory for What things didn't you know you needed but are now very glad you have? Paul Fedory 2008-10-21T21:02:34Z 2008-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#229013 2 Answer by Kate for What things didn't you know you needed but are now very glad you have? Kate 2008-10-23T08:54:12Z 2008-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#258058 4 Answer by Rob Howard for What things didn't you know you needed but are now very glad you have? Rob Howard 2008-11-03T07:21:57Z 2008-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#265121 2 Answer by Nappy for What things didn't you know you needed but are now very glad you have? Nappy 2008-11-05T13:26:00Z 2008-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#284260 2 Answer by Mr. Matt for What things didn't you know you needed but are now very glad you have? Mr. Matt 2008-11-12T15:17:00Z 2008-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#380010 1 Answer by plaureano for What things didn't you know you needed but are now very glad you have? plaureano 2008-12-19T03:16:28Z 2008-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#380020 3 Answer by Greg Beech for What things didn't you know you needed but are now very glad you have? Greg Beech 2008-12-19T03:23:51Z 2008-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#439975 1 Answer by hornysax for What things didn't you know you needed but are now very glad you have? hornysax 2009-01-13T17:39:30Z 2009-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#507895 2 Answer by tchalvak for What things didn't you know you needed but are now very glad you have? tchalvak 2009-02-03T16:43:27Z 2009-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#507911 1 Answer by Jonathan Sampson for What things didn't you know you needed but are now very glad you have? Jonathan Sampson 2009-02-03T16:46:49Z 2009-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#560404 0 Answer by Ries for What things didn't you know you needed but are now very glad you have? Ries 2009-02-18T09:42:16Z 2009-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#566783 1 Answer by Fortes for What things didn't you know you needed but are now very glad you have? Fortes 2009-02-19T19:29:23Z 2009-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#661458 3 Answer by Vijay Dev for What things didn't you know you needed but are now very glad you have? Vijay Dev 2009-03-19T08:44:08Z 2009-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#661514 3 Answer by Dave Sanscerveau for What things didn't you know you needed but are now very glad you have? Dave Sanscerveau 2009-03-19T09:14:59Z 2009-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#846093 1 Answer by Timwi for What things didn't you know you needed but are now very glad you have? Timwi 2009-05-10T20:58:09Z 2009-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#848977 0 Answer by e-satis for What things didn't you know you needed but are now very glad you have? e-satis 2009-05-11T16:43:48Z 2009-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#848996 1 Answer by Jian Lin for What things didn't you know you needed but are now very glad you have? Jian Lin 2009-05-11T16:48:28Z 2009-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#853426 1 Answer by Jugglingnutcase for What things didn't you know you needed but are now very glad you have? Jugglingnutcase 2009-05-12T15:39:42Z 2009-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#867055 0 Answer by zonkflut for What things didn't you know you needed but are now very glad you have? zonkflut 2009-05-15T05:11:49Z 2009-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#917511 1 Answer by NotDan for What things didn't you know you needed but are now very glad you have? NotDan 2009-05-27T19:12:06Z 2009-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#1030898 0 Answer 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:07Z 2009-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#1064205 0 Answer by Jim Rush for What things didn't you know you needed but are now very glad you have? Jim Rush 2009-06-30T15:06:19Z 2009-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#1305958 0 Answer by Mark Redman for What things didn't you know you needed but are now very glad you have? Mark Redman 2009-08-20T12:45:51Z 2009-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#1604657 0 Answer by gcb for What things didn't you know you needed but are now very glad you have? gcb 2009-10-22T02:01:03Z 2009-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>