use strict; use warnings; use 5.010; ...
Perl On Restructuring Perl Sitemap ...
by draegtun,
March 15, 2010 10:34
my $end = do {
my $month_ago = DateTime->now->subtract( months => 1 );
sprintf '%02d%02d', substr( $month_ago->year, -2 ), $month_ago->month;
...
sub parse_decimal {
...
Perl On Handling both dots and comm...
by draegtun,
October 09, 2009 21:13
And here are some other exa...
use strict; use warnings; use Test::More; ...
Perl On Handling both dots and comm...
by draegtun,
October 09, 2009 21:08
I'm not going to refactor y...
use MooseX::Declare;
class Keyboard with MooseX::Getopt {
...
Perl On A Dvorak keyboard layout cy...
by draegtun,
August 13, 2009 13:09
If u're happy with it just ...
%zip = (
'0812' => [ 'ex090130.log' ],
'0901' => [ 'ex081205.log', 'ex081206.log', 'ex081207.log' ],
...
Have a look at the Perl5 wi...