# Git
.git
.gitignore

# Python cache
__pycache__
*.py[cod]
*$py.class
*.so
.Python

# Build artifacts
build/
dist/
*.egg-info/
.installed.cfg
*.egg

# Virtual environments
venv/
ENV/
env/
.venv/

# IDEs
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store

# C++ build
cmake-build-*/
build/
*.o
*.a

# Node modules (if any)
node_modules/

# Documentation
_docs/
*.md

# Docker
.dockerignore
Dockerfile*

# CI/CD
.github/

# Configuration & secrets
.env
.env.local

# Temporary files
*.tmp
*.bak
*.log
history.txt
notes.txt

# Other
*.drawio
*.ipynb
*.db
*.sqlite
