TIL of a CLI command to generate a random password. Yes, there are multiple methods to generate random passwords, but I think this one is pretty cool.
dd if=/dev/urandom bs=1 count=N 2>/dev/null | base64 -w 0 | rev | cut -b 2- | rev
Where N is the length of password you want