use strict;
use warnings;
use 5.010;
...

Perl On Restructuring Perl Sitemap ...

by draegtun, March 15, 2010 10:34

Have a look at the Perl5 wi...

29cb106071d163d703484e63839d89cb Talk
my $end = do {
    my $month_ago = DateTime->now->subtract( months => 1 );
    sprintf '%02d%02d', substr( $month_ago->year, -2 ), $month_ago->month;
...

Perl On Processing files by date.

by draegtun, January 12, 2010 14:55

No probs trirnoth. It wa...

29cb106071d163d703484e63839d89cb Talk
sub parse_decimal {
...

Perl On Handling both dots and comm...

by draegtun, October 09, 2009 21:13

And here are some other exa...

29cb106071d163d703484e63839d89cb Talk
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...

29cb106071d163d703484e63839d89cb Talk
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 ...

29cb106071d163d703484e63839d89cb Talk
%zip = (
    '0812' => [  'ex090130.log' ],
    '0901' => [  'ex081205.log', 'ex081206.log', 'ex081207.log' ],
...

Perl On Processing files by date.

by draegtun, March 04, 2009 11:03

Cool it worked this time ;-...

29cb106071d163d703484e63839d89cb Talk
use strict;
use warnings;
use DateTime;
...

Perl On Processing files by date.

by draegtun, March 04, 2009 10:56

OK here goes again :-(

29cb106071d163d703484e63839d89cb Talk

Perl On Processing files by date.

by draegtun, March 02, 2009 11:50

Hmmm... I did post a refact...

29cb106071d163d703484e63839d89cb Talk