in reply to dumping a hash

While I use Dumper most of the time myself, this one liner can also come in handy:
%hash = (this => 'one', that => 'two'); print join(', ', map({ "$_ => $hash{$_}" } sort keys %hash)), "\n";
-- gam3
A picture is worth a thousand words, but takes 200K.