User farmerchris - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T12:21:25Z http://stackoverflow.com/feeds/user/1317 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/11598/what-is-the-worst-interviewee-answer/11637#11637 157 Answer by farmerchris for What is the worst interviewee answer? farmerchris 2008-08-14T20:02:23Z 2009-06-14T04:48:38Z <p>"Will you write out a little function for me on the whiteboard here?" </p> <p>"No."</p> http://stackoverflow.com/questions/12647/how-do-i-tell-if-a-variable-has-a-numeric-value-in-perl/12654#12654 1 Answer by farmerchris for How do I tell if a variable has a numeric value in Perl? farmerchris 2008-08-15T19:49:44Z 2008-08-15T19:49:44Z <p>Not perfect, but you can use a regex:</p> <pre><code>sub isnumber { shift =~ /^-?\d+\.?\d*$/; } </code></pre> http://stackoverflow.com/questions/2187/essential-programming-tools/11622#11622 56 Answer by farmerchris for Essential Programming Tools farmerchris 2008-08-14T19:55:34Z 2008-08-14T19:55:34Z <p>Another one-up for SysInternals. You can mount their tool repository as a shared drive: </p> <pre><code>\\live.sysinternals.com\Tools </code></pre> <p>I just copy over all the files into C:\Program Files\Bin, then add that to my PATH.</p> http://stackoverflow.com/questions/11462/sharepoint-wikis/11588#11588 7 Answer by farmerchris for Sharepoint Wikis farmerchris 2008-08-14T19:42:02Z 2008-08-14T19:42:02Z <p>Here are some caveats I came across that will vanish if you use a wiki other than Sharepoint.</p> <p>Sharepoint lets you create tons of separate wikis, but I'd recommend having one big wiki for everything. My company made a bunch of little wikis for each project/feature, but only admins can create the individual wikis, so if I want to write about something that isn't doesn't match one of the predefined categories, I have to find a manager to create the wiki first. </p> <p>Secondly, if you use Sharepoint make sure everyone on your staff only uses IE, since Firefox doesn't support the WYSIWIG editor. This is a <em>good</em> thing for most wikis, but makes collaborating difficult in Sharepoint. Imagine editing auto-generated HTML in a tiny little box all day.</p> <p>Third, try to write up your project documentation in the wiki and resist the temptation to upload Word docs to the Sharepoint library. No point in writing up all your docs twice and watching things get more and more out of sync.</p> <p>Finally, image support in Sharepoint wikis is terrible. You have to add a file to a document library somewhere and type in the URL. My images were forever getting deleted because they don't seem to make much sense out of context.</p> http://stackoverflow.com/questions/11246/best-resources-to-learn-javascript/11268#11268 1 Answer by farmerchris for Best resources to learn JavaScript farmerchris 2008-08-14T16:15:46Z 2008-08-14T16:15:46Z <p>I'd start with the <a href="http://www.w3schools.com/JS/default.asp" rel="nofollow" title="excanvas">JavaScript tutorial</a> at w3schools. When looking something up in Google, I often tack "w3schools" onto the search string for a quick overview. </p> http://stackoverflow.com/questions/11070/indispensable-books/11078#11078 5 Answer by farmerchris for Indispensable Books farmerchris 2008-08-14T14:06:57Z 2008-08-14T14:06:57Z <p><em>The Art of Computer Programming</em> by Don Knuth. Of course I'd probably need to be on a desert island to find time to absorb them all.</p>