User metadave - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T23:51:14Z http://stackoverflow.com/feeds/user/7237 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer/72425#72425 9 Answer by metadave for What development book made the most impact on you as a developer? metadave 2008-09-16T13:50:31Z 2009-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#76433 1 Answer by metadave for What is the single most effective thing you did to improve your programming skills? metadave 2008-09-16T20:14:00Z 2008-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#75635 0 Answer by metadave for Trying to convert bunch of jpegs into a movie metadave 2008-09-16T18:47:07Z 2008-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#75625 0 Answer by metadave for What does a company have to offer you for getting you employed? metadave 2008-09-16T18:46:02Z 2008-09-16T18:46:02Z <p>stability smart co-workers flex time</p> http://stackoverflow.com/questions/74928/tool-to-parse-a-file/74942#74942 1 Answer by metadave for Tool to parse a file metadave 2008-09-16T17:41:27Z 2008-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#74768 0 Answer by metadave for Tools to effectively manage the information? metadave 2008-09-16T17:23:10Z 2008-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#73179 0 Answer by metadave for How to see the actual Oracle SQL statement that is being executed metadave 2008-09-16T14:51:45Z 2008-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#72781 0 Answer by metadave for Good book for a C# developer going over to Java? metadave 2008-09-16T14:17:28Z 2008-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#72279 1 Answer by metadave for Recursion or Iteration? metadave 2008-09-16T13:39:16Z 2008-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#72165 2 Answer by metadave for ORA-00933: SQL command not properly ended metadave 2008-09-16T13:29:25Z 2008-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#72041 0 Answer by metadave for How do you evaluate a Software Architect? metadave 2008-09-16T13:14:05Z 2008-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#71857 0 Answer by metadave for What is the best blog for Java development? metadave 2008-09-16T12:50:50Z 2008-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#63450 0 Answer by metadave for Is there a way around coding in Python without the tab, indent & whitespace criteria? metadave 2008-09-15T14:34:34Z 2008-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#63068 1 Answer by metadave for Useful Vim features metadave 2008-09-15T13:52:25Z 2008-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>