CheatSheets SSH generate ssh keysssh-keygen -t rsa -b 4096 -C "your_email@example.com" ssh-keygen -t ed25519 -C "your_email@example.com"
How to change the directory for screenshots on macOS Open Terminal mkdir ~/Screenshots This will create a folder named "Screenshots" in your home directory. Change the Default Location for Screenshots defaults write com.apple.screencapture location ~/Screenshots Apply the Changes killall SystemUIServer If you want to reset it back to the default location defaults write com.apple.
GrapheneOS GrapheneOS: the private and secure mobile OSGrapheneOS is a security and privacy focused mobile OS with Android app compatibility.GrapheneOS Stores F-Droid https://f-droid.org/en/ Aurora Store https://auroraoss.com/ Obtainium https://github.com/ImranR98/Obtainium https://github.com/ImranR98/Obtainium/releases Aptoide https://en.aptoide.com/ APKMirror https:
Git Useful Commands Remove last commit git reset --hard HEAD~1 Remove last commit but keep files git reset --soft HEAD~1 Delete a local branch git branch --delete <branch> git branch -d <branch> # Short version git branch -D <branch> # Force delete un-merged branch Delete a remote