1. Sexy, Useful Subs (subs must work under use strict)
    All these have been benchmarked against many other alternatives. These are the fastest.
    1. sub is_anagram{join(0,sort pop=~/./gs)eq join 0,sort pop=~/./gs}
    2. sub array_freq{my %h; $h{$_}++ for @_; %h}
    3. sub max{((sort@_)[$#_])} # note: on a large @_ you may want to use a schwartzian transform
    4. sub min{((sort@_)[0])}
  2. Patterns
    1. perl -e'$}=1|1<<pop;print($"x$},(map$_?$=:$"x2,@;),$/),@;=(1,map$;[$_]^$;[-$_],1..@;)while$}--' 4 # hint: try 4,5,6...
  3. Network Stuff
    1. perl -e'map{$_=`ping -c 1 -w 1 192.168.1.$_`;print if /[^0] packets re/}1..254' #ping ip range, print on success
  4. Generating 'Random' Sequences
    1. perl -e"map{print+(H,T)[rand 2]}a..gr" #flip coin x 200
  5. Files
    1. perl -i.bak -e -p 's/\r\n/\n/' myfile.pl # thanks Hopkins26!
    2. perl -e'/(.*)\.TXT$/, rename($_, "$1.txt") || die $! for <*.TXT>' # rename all .TXT files to .txt
    3. perl -e'printf("%20s: %5d\n",($_,`cat $_ | wc -l`)) for(<./*>)' #how many lines in these files?
    4. perl -n -le'/\s(\S+)$/, $h{int($1)}++; END{printf("%3d:%s %d\n",($_,"#"x sqrt($h{$_}),$h{$_})) for (reverse sort {$a<=>$b} keys %h)}' filename #print dist based on #s by regex
    5. perl -le'$o = $_, s/\b(\w)(\w+)/\U\1\L\2/g, s/Mp3$/mp3/g, print `mv "$o" "$_"` for <*mp3>' # capitalize words
  6. Filter
    1. perl -ne'/(?!.*(.).*\1).{10}/&&print' <file #all lines with 10 consecutive unique chars
  7. Incestuous
    1. perl -le'map{-d && m!/([A-Z].+)$! && print $1 for<$_/*>}@INC' #print out list of available packages
    2. perl -n -e'chop; if(/(#[^\$;\}\{\/\\]*)$/){print STDERR "$1 ?"; s/\s*$1// if(<STDIN>=~/y/i)}print $_,$/' comments.pl > no_comments.pl #strips out comments with a prompt... by no means fool-proof
  8. General
    1. perl -e'printf "%5d:%s\t%s",$_,chr,($_%8<1?$/:"")for 25..127' #printable lower ASCII table
    2. perl -MLWP::Simple -e'getprint "http://parseerror.com/p"' |more
  9. Email
    1. perl -e '`echo "wazaaaaaa" |mail -s "Important Documents" coworker@job.com` for (1..100);'
  10. Completely Useless
    1. perl -MFile::Find -le'1 while find(sub{print $File::Find::name, sleep rand}, "/")'
    2. perl -le'1 while print "*" x rand(65)' #make it look like your comp is busy ;)
    3. perl -e"print '.:|' while 1 " #pretty
    4. perl -e'print chr(7) while 1' #annoying!
    5. perl -e'fork while 1' #do not run!