User mdxi - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T09:23:45Zhttp://stackoverflow.com/feeds/user/11164http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/71864/delete-all-but-the-4-newest-directories/72115#721150Answer by mdxi for Delete all but the 4 newest directories mdxi2008-09-16T13:24:35Z2008-09-16T13:24:35Z<p>Another, BSD-safe, way to do it, with arrays (why not?)</p>
<pre><code>#!/bin/bash
ARRAY=( `ls -td */` )
ELEMENTS=${#ARRAY[@]}
COUNTER=4
while [ $COUNTER -lt $ELEMENTS ]; do
echo ${ARRAY[${COUNTER}]}
let COUNTER=COUNTER+1
done
</code></pre>
http://stackoverflow.com/questions/71163/combined-svn-ftp-system/71210#712101Answer by mdxi for Combined SVN FTP system?mdxi2008-09-16T10:58:52Z2008-09-16T10:58:52Z<p>Yes, post_commit hook is what you want.</p>
<p>What to hook <em>to</em>? I'd recommend rsync (if your site instance isn't a svn working copy) or ssh with key auth calling a script which does 'cd WEBDIR && svn up' (if it is).</p>
http://stackoverflow.com/questions/70846/developers-bill-of-rights/70918#709181Answer by mdxi for Developers' Bill Of Rightsmdxi2008-09-16T10:09:13Z2008-09-16T10:09:13Z<p>If the number of monitors connected to the machine in front of you is your biggest problem, then you don't have any problems.</p>
http://stackoverflow.com/questions/45485/conventions-for-perl-testmore-module/70902#709020Answer by mdxi for Conventions for Perl Test::More modulemdxi2008-09-16T10:06:24Z2008-09-16T10:06:24Z<p>Perl testing scripts aren't special or magic in any way. As such, they can contain the exact same things that any other Perl script can.</p>
<p>You can name routines anything you want, and call them before, after, and intertwingled with, your tests.</p>
<p>You can have any amount of initialization code before any tests, any amount of cleanup code after tests, and any amount of any other code mixed in with tests.</p>
<p>This all assumes that you're talking about CPAN-style t/*.t test scripts. I think you are, but I can manage to read your question as one about extending test harnesses, if I squint just right. </p>
http://stackoverflow.com/questions/70614/gnu-screen-survival-guide/70805#708054Answer by mdxi for GNU Screen Survival Guidemdxi2008-09-16T09:46:13Z2008-09-16T09:46:13Z<p>I wrote <a href="http://mdxi.collapsar.net/docs/screen/" rel="nofollow">this guide</a> at my last job. The first section is a must-know crash course, and subsequent sections are more in-depth looks at some major features of the program. For everything else, there's the manpage :)</p>
http://stackoverflow.com/questions/70573/whats-the-best-online-source-to-learn-perl/70733#707331Answer by mdxi for What's the best online source to learn Perl?mdxi2008-09-16T09:32:17Z2008-09-16T09:32:17Z<p>Perl is in a state of (comparatively) rapid change, and has gotten into the position where the best documentation beyond a basic introduction to Perl 5 -- the current major version -- is the electronic documentation which comes with the language itself.</p>
<p>Read 'perldoc perlintro', then look to 'perldoc perl' for the rest of the <strong>core</strong> language documentation. Note that on Debian systems, you'll need to 'apt-get install perl-doc' to get this documentation.</p>
<p>Once you've got a handle on things, check out 'perldoc perldelta' to see what's new in the version of Perl installed on your system (which should be 5.8.8 or 5.10 these days -- much cool stuff in 5.10!). If the perldelta page isn't making any sense (and believe me, I remember how that feels), just come back to it later.</p>
<p>Finally, freenode #perl for questions you can't find answers to in the docs.</p>
http://stackoverflow.com/questions/66330/perl-aids-for-regression-testing/69684#696842Answer by mdxi for Perl aids for regression testingmdxi2008-09-16T05:56:09Z2008-09-16T05:56:09Z<p>The community standard workhorses are Test::Simple (for getting started with testing) and Test::More (for once you want more than Test::Simple can do for you). Both are built around the concept of expected versus actual output, and both will show you differences when they occur. The perldoc for these modules will get you on your way.</p>
<p>You might also want to check out the <a href="http://perl-qa.hexten.net/wiki/index.php/Main_Page" rel="nofollow">Perl QA wiki</a>, and if you're really interested in perl testing, the perl-qa mailing list might be worth looking into -- though it's generally more about creation of testing systems for Perl than using those systems within the language.</p>
<p>Finally, using the module-starter tool (from Module::Starter) will give you a really nice "CPAN standard" layout for new work -- or for dropping existing code into -- including a readymade test harness setup.</p>