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

Perl: Subtract one list from another list

my @difference = grep { not ($_ ~~ \@small_array) } @big_array;


# ~~ is the smart matching operator