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

Jump to

Quick reference

Perl one-liner to decode JSON

 cat file.json | sed 's/\/\/.\+//' | perl -MData::Dumper::Concise -MJSON -n0777 -E '$r = decode_json($_); say Dumper($r)'