A personal reference library of reusable scripts, Docker compose stacks, cheat sheets, and templates — organized by why you opened the repo, not what tool the file happens to be about.
| Directory | You're here because you want to... | Examples |
|---|---|---|
| cheatsheets/ | recall commands for a tool | git.md, psql.md, kubectl.md |
| snippets/ | paste working code into a project | python/redis/redis_client.py, shell/aliases.sh |
| stacks/ | spin up infra locally | postgres/compose.yml, k8s-manifests/ |
| templates/ | scaffold a new project | pyproject.toml, Makefile |
| reference/ | understand a concept | system-design/caching.md, cs-fundamentals/big-o.md |
See CONVENTIONS.md for naming rules and how to contribute.
./search.sh— fuzzy-find any file by name, copy path or contents to clipboard../search.sh -g "<query>"— grep file contents, pick a match infzf, copy path or contents.- INDEX.md — auto-generated topic -> file map, regenerate with
bash gen-index.sh.
.
├── cheatsheets
├── reference
│ ├── cs-fundamentals
│ └── system-design
├── snippets
│ ├── locust
│ ├── python
│ └── shell
├── stacks
│ ├── elasticsearch-kibana
│ ├── k8s-manifests
│ ├── kafka
│ ├── milvus
│ ├── minio
│ ├── pgvector
│ ├── postgres
│ ├── prometheus-grafana
│ ├── redis
│ ├── temporal
│ └── vllm
└── templates
└── workflows
23 directories