Support Me ∞ ♡
Practical Codes
A collection of practical code snippets and commands
2
Total Code Snippets
1
Languages
5
Tags
All Code Snippets
2 snippetsGithub SSH Connection
bashGenerate SSH key and connect to GitHub
bash
ssh-keygen -t ed25519 -C "<YOUR_MAIL>"
cat ~/.ssh/id_ed25519.pub
# check
ssh -T git@github.com
#github
#ssh
#git
March 8, 2026
venv Environment
bashCreating a venv environment
bash
python -m venv venv
source venv/bin/activate
# exit
deactivate
#python
#venv
March 8, 2026
No code snippets found. Try a different search term.