Hello, World
Welcome to the blog. This is where I write about things I find interesting: systems programming, infrastructure, and the occasional deep dive into tooling.
Why Another Blog?
Writing helps me think. I kept losing notes across Notion, Bear, and random markdown files scattered across my filesystem. Having a single, static, version-controlled place feels right.
What to Expect
Posts will be technical and opinionated. I’ll write about:
- Infrastructure — Kubernetes, containers, GitOps
- Languages — Go, Rust, occasionally Python when I must
- Tools — whatever’s currently on my
$PATHthat I find interesting
The Stack
This blog is built with Astro, deployed to GKE via a Docker image served by nginx. Source is in Git. Posts are Markdown. That’s it.
docker build -t blog .
docker push us-central1-docker.pkg.dev/my-project/blog/blog:latest
kubectl rollout restart deployment/blog
Simple is good.