Feb 04
Get errors like this?

Warning: dl(): Unable to load dynamic library 'libwebpayclient.so' - libssl.so.4: cannot open shared object file:
Not sure which package to install? Run the code below to find out!
 sudo apt-get install apt-file
 sudo apt-file update
 apt-file search libssl.so

Mar 31

I use thing to find where an error message came from or to check if I left behind any debuging/testing the code.

grep -R "string to search for" ./*

more info at grep man page

Mar 14
du -ks ./* | sort -n -r