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

Jump to

Quick reference

What "Wide character in print" means in Perl (hint: UTF8)

 It means there is a glitch in the matrix - agents are coming!

$ perl -le 'print "\x{2603}"';
Wide character in print at -e line 1.
$ perl -CSDL -le 'print "\x{2603}"';

(further reading)