RUN!

Practical Codes

A collection of practical code snippets and commands

2
Total Code Snippets
1
Languages
5
Tags

All Code Snippets

2 snippets

Github SSH Connection

bash

Generate 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

bash

Creating a venv environment

bash
python -m venv venv
source venv/bin/activate

# exit
deactivate
#python #venv
March 8, 2026
Profile Image of the Author
Alp
A non-professional blog. Personal documentation and a graveyard of personal thoughts.