User nayfnu - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T16:15:22Zhttp://stackoverflow.com/feeds/user/37337http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/297037/what-tricks-do-you-use-to-get-yourself-in-the-zone/298226#2982264Answer by nayfnu for What tricks do you use to get yourself "in the zone"?nayfnu2008-11-18T09:17:38Z2008-11-18T09:17:38Z<p>I've found this <a href="http://www.abstractspoon.com/tdl_resources.html" rel="nofollow">ToDoList</a> program very helpful for getting myself in the zone. I break down any task I have into myriad tiny tasks, estimate how long it will take then set the timer running. It's easy to concentrate when the task is small and you're competing against the clock. <a href="http://www.fogcreek.com/FogBugz/learnmore.html?section=PredictShipDates#hist_Timesheets" rel="nofollow">FogBugz</a> does the same thing much more excitingly, of course, but then it costs money and I'm incredibly tight-fisted.</p>
http://stackoverflow.com/questions/208193/why-should-i-use-an-ide/288684#2886841Answer by nayfnu for Why should I use an IDE?nayfnu2008-11-13T23:00:57Z2008-11-13T23:00:57Z<p>In addition to the other answers, I love combining the <em>developing</em> power of an IDE with the <em>editing</em> power of vim using something like the <a href="http://www.satokar.com/viplugin/" rel="nofollow">ViPlugin</a> for Eclipse.</p>
http://stackoverflow.com/questions/95072/what-are-your-favorite-vim-tricks/288679#2886793Answer by nayfnu for What are your favorite Vim tricks?nayfnu2008-11-13T22:58:27Z2008-11-13T22:58:27Z<p>Knowing that the Windows clipboard buffer can be accessed with:</p>
<pre><code>"*
</code></pre>
<p>has saved me lots of boring entering-insert-mode shenanigans. Also copy/pasting between vi sessions can be done with:</p>
<pre><code>"+
</code></pre>
http://stackoverflow.com/questions/286587/are-you-really-using-unit-tests/286997#2869975Answer by nayfnu for Are you really using unit tests?nayfnu2008-11-13T14:05:30Z2008-11-13T14:05:30Z<p>I'm a big fan of unit testing, mainly because it's completely addicitive - the "code-test-see horrible red bar-fix-test-see lovely green bar" cycle in JUnit seriously gets the endorphins pumping.</p>