Quick reference guides for essential programming tools and concepts.
- Python Basics - Variables, control structures, functions, error handling
- Python OOP - Object-oriented programming concepts and patterns
- Linux Terminal - Essential command line operations
- Vim Basics - Text editor fundamentals
- Git & GitHub - Version control and collaboration
mkdir myproject && cd myproject
git init
python3 -m venv venv
source venv/bin/activate
touch main.py .gitignore README.md
git add .
git commit -m "Initial commit"
project/
├── src/
│ ├── __init__.py
│ └── main.py
├── tests/
├── .gitignore
├── README.md
└── requirements.txt
Each file contains links to official documentation and tutorials for deeper learning.