Stuff with the Perl Foundation. A couple of patches in the Perl core. A few CPAN modules. That about sums it up.
You know, some days your module names just ain't gonna work. I needed to write a simple utility which would take a string of multiple SQL statements, strip out comments and also split it into individual statements. After struggling to come up with an appropriate module name, I finally started writing my tests. That's when I realized what a very, very bad choice I had made:
#!/usr/bin/perl
use strict;
use warnings;
use Test::More qw<no_plan>;
my $STRIPPER;
BEGIN {
$STRIPPER = 'SQL::Stripper';
use_ok $STRIPPER or die;
}
easy! (Score:2)
Tidy (Score:2)
I know what you mean... (Score:1)
Random, inane comment (Score:2)
It takes two to make a thing go right (Score:1)