User nayfnu - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T16:15:22Z http://stackoverflow.com/feeds/user/37337 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/297037/what-tricks-do-you-use-to-get-yourself-in-the-zone/298226#298226 4 Answer by nayfnu for What tricks do you use to get yourself "in the zone"? nayfnu 2008-11-18T09:17:38Z 2008-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#288684 1 Answer by nayfnu for Why should I use an IDE? nayfnu 2008-11-13T23:00:57Z 2008-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#288679 3 Answer by nayfnu for What are your favorite Vim tricks? nayfnu 2008-11-13T22:58:27Z 2008-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#286997 5 Answer by nayfnu for Are you really using unit tests? nayfnu 2008-11-13T14:05:30Z 2008-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>