A piggy bank of commands, fixes, succinct reviews, some mini articles and technical opinions from a (mostly) Perl developer.

Easiest way to find yesterday's date in Perl

my ($year, $month, $day) = (localtime(time + 7 * 24 * 60 * 60))[5,4,3];
$year += 1900;
$month++;