Place Holder Projects Code
Bash MySQL JavaScript MySQL Quick Reference
Notes Documents Return of the Fed Login

urand -> md5

Use openssl's md5 on 512 bytes of urandom, and then cut input to get just hash

echo $(dd if=/dev/urandom bs=512 count=1 2&> /dev/null) | openssl dgst -md5 | cut -d" " -f2

Makes a nice password!