A piggy bank of commands, fixes, succinct reviews, some mini articles and technical opinions from a (mostly) Perl developer.

How to work around certificate errors in Perl

PERL_LWP_SSL_VERIFY_HOSTNAME=0 perl script.pl

or

my $mech = WWW::Mechanize->new(
    ssl_opts => { SSL_verify_mode => 'SSL_VERIFY_NONE'},
);