Recent Posts
CSR In One Go
Generate a Certificate Signing Request (CSR) in one command
openssl req -new -newkey rsa:2048 -nodes -out <common name>.csr -keyout <common name>.key -subj "/C=SE/ST=/L=/O=<organization>/CN=<common name>" Send the generated .csr to the issuer Get back an issued certificate from the issuer Use the generated .key for the issued certificate
read more
Undo git add
When you get ahead of yourself and stage a file that you’re not finished with. Undo with
git restore --staged <filename>
read more
Keyboard keys to exit unresponsive SSH sessions
When SSH session is unresponsive and you want to exit Just press:
⮐ ~. This should exit the unresponsive ssh session. Sometimes you need to repeat the steps.
read more