User farmerchris - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T12:21:25Zhttp://stackoverflow.com/feeds/user/1317http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/11598/what-is-the-worst-interviewee-answer/11637#11637157Answer by farmerchris for What is the worst interviewee answer?farmerchris2008-08-14T20:02:23Z2009-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#126541Answer by farmerchris for How do I tell if a variable has a numeric value in Perl?farmerchris2008-08-15T19:49:44Z2008-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#1162256Answer by farmerchris for Essential Programming Toolsfarmerchris2008-08-14T19:55:34Z2008-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#115887Answer by farmerchris for Sharepoint Wikisfarmerchris2008-08-14T19:42:02Z2008-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#112681Answer by farmerchris for Best resources to learn JavaScriptfarmerchris2008-08-14T16:15:46Z2008-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#110785Answer by farmerchris for Indispensable Booksfarmerchris2008-08-14T14:06:57Z2008-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>