Nifty perl trick I learned about today
Context was someone asking why
print "Hello, world!\n" && die;doesn't output anything. Someone replied with a nifty trick to help figure this out:
perl -MO=Deparse -e 'print "Hello, world!\n" && die;'(go ahead and try it in your Dreamhack).