User metadave - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T23:51:14Zhttp://stackoverflow.com/feeds/user/7237http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer/72425#724259Answer by metadave for What development book made the most impact on you as a developer?metadave2008-09-16T13:50:31Z2009-11-26T05:31:00Z<p><a href="http://rads.stackoverflow.com/amzn/click/0131429019" rel="nofollow">The Art of Unix Programming</a> by Eric Raymond</p>
http://stackoverflow.com/questions/76364/what-is-the-single-most-effective-thing-you-did-to-improve-your-programming-skill/76433#764331Answer by metadave for What is the single most effective thing you did to improve your programming skills?metadave2008-09-16T20:14:00Z2008-09-16T20:14:00Z<p>I enjoy picking up any language that I can get my hands on. Then I can decide what the language would best be applied to and throw it in my "toolbox". I really like being able to pick the right tool for the job. </p>
http://stackoverflow.com/questions/75508/trying-to-convert-bunch-of-jpegs-into-a-movie/75635#756350Answer by metadave for Trying to convert bunch of jpegs into a moviemetadave2008-09-16T18:47:07Z2008-09-16T18:47:07Z<p>Kinda of an odd answer... but I thought that Blender could construct videos from sequences of images. Just a thought.</p>
http://stackoverflow.com/questions/75565/what-does-a-company-have-to-offer-you-for-getting-you-employed/75625#756250Answer by metadave for What does a company have to offer you for getting you employed?metadave2008-09-16T18:46:02Z2008-09-16T18:46:02Z<p>stability
smart co-workers
flex time</p>
http://stackoverflow.com/questions/74928/tool-to-parse-a-file/74942#749421Answer by metadave for Tool to parse a filemetadave2008-09-16T17:41:27Z2008-09-16T17:41:41Z<p><a href="http://www.antlr.org" rel="nofollow">Antlr</a> would do the trick.</p>
http://stackoverflow.com/questions/74689/tools-to-effectively-manage-the-information/74768#747680Answer by metadave for Tools to effectively manage the information?metadave2008-09-16T17:23:10Z2008-09-16T17:23:10Z<p>I've been using <a href="http://delicious.com" rel="nofollow">Delicious</a> quite a bit over the past 2 years and it's been a great help.</p>
http://stackoverflow.com/questions/55899/how-to-see-the-actual-oracle-sql-statement-that-is-being-executed/73179#731790Answer by metadave for How to see the actual Oracle SQL statement that is being executedmetadave2008-09-16T14:51:45Z2008-09-16T14:51:45Z<p>I had (have) a similar problem in a Java application. I wrote a JDBC driver wrapper around the Oracle driver so all output is sent to a log file. </p>
http://stackoverflow.com/questions/72719/good-book-for-a-c-developer-going-over-to-java/72781#727810Answer by metadave for Good book for a C# developer going over to Java?metadave2008-09-16T14:17:28Z2008-09-16T14:17:28Z<p>I would recommend "Java Cookbook" as it can show you how to do things you may already know in C#.</p>
http://stackoverflow.com/questions/72209/recursion-or-iteration/72279#722791Answer by metadave for Recursion or Iteration?metadave2008-09-16T13:39:16Z2008-09-16T13:39:16Z<p>I would think in (non tail) recursion there would be a performance hit for allocating a new stack etc every time the function is called (dependent on language of course).</p>
http://stackoverflow.com/questions/72151/ora-00933-sql-command-not-properly-ended/72165#721652Answer by metadave for ORA-00933: SQL command not properly endedmetadave2008-09-16T13:29:25Z2008-09-16T13:29:25Z<p>semi colon after the first insert?</p>
http://stackoverflow.com/questions/71681/how-do-you-evaluate-a-software-architect/72041#720410Answer by metadave for How do you evaluate a Software Architect?metadave2008-09-16T13:14:05Z2008-09-16T13:14:05Z<p><strong>A person who will pick the right tool for the job.</strong></p>
http://stackoverflow.com/questions/48701/what-is-the-best-blog-for-java-development/71857#718570Answer by metadave for What is the best blog for Java development?metadave2008-09-16T12:50:50Z2008-09-16T12:50:50Z<p>I really dig <a href="http://www.drunkandretired.com/" rel="nofollow">http://www.drunkandretired.com/</a></p>
http://stackoverflow.com/questions/63086/is-there-a-way-around-coding-in-python-without-the-tab-indent-whitespace-crite/63450#634500Answer by metadave for Is there a way around coding in Python without the tab, indent & whitespace criteria?metadave2008-09-15T14:34:34Z2008-09-15T14:34:34Z<p>I was a bit reluctant to learn Python because of tabbing. However, I almost didn't notice it when I used Vim.</p>
http://stackoverflow.com/questions/20735/useful-vim-features/63068#630681Answer by metadave for Useful Vim featuresmetadave2008-09-15T13:52:25Z2008-09-15T13:52:25Z<p>:r! shellcommand
(replace shellcommand with shell command of your choice).
This will append the results of the shell command to the current buffer.</p>