PSA: How to create a random password in the command line (something that also just learned to do today):
```bash
randpass () { echo $(openssl rand -base64 "${1:-12}") }
```
The way this works is that you can type either `randpass`, and you will get a random password of 12 character (among […]