February 10, 2011
Here’s a handy little way to convert currency using the iGoogle Gadget API. It’s free… until they decide they don’t like it. Enjoy! #!/usr/bin/perl -w use strict; use LWP; my $browser = LWP::UserAgent->new; my @currencies = qw( KWD BHD OMR LVL GBP JOD EUR KYD CHF AUD CAD USD BND SGD NZD TND BGN TRY [...]
Read the full article →
December 1, 2010
I have the secret to detecting disposable emails! I’ll give you a hint: it uses Perl. Ok, Perl’s not really the secret ingredient– it’s the list of disposable email domains contained within my code (below). But I needed to make a tool to detect disposable email addresses, and I just happened to use Perl. If [...]
Read the full article →