Web Development Articles

Blog

Total Posts 12
Latest 2026-03-01 20:05:07

Exploring web development, system design, and open source. I write about technologies I use, lessons I learn, and challenges I overcome while building scalable applications.

From frontend architectures to backend optimizations, these articles document my journey through full-stack development. Each post is crafted to be both technically deep and accessible to developers of all levels.

Latest Articles

Git & GitHub Tutorial: Solo & Team Beginner Workflows General
2026-02-15 08:25:20

Git & GitHub Tutorial: Solo & Team Beginner Workflows

Clone repo, pull main, branch off (git checkout -b feature/login). Code, commit, push branch, open GitHub PR. Team reviews/merges—sync with git checkout main && git pull! (141 chars)

Build High-Perf Lightweight DBs from Scratch General
2026-02-12 12:03:49

Build High-Perf Lightweight DBs from Scratch

Build lightweight DBs from scratch: Memory/CPU hierarchy, storage I/O, hash/B+-trees/LSM engines. KV/doc/rel/graph/spatial/vector/search types w/ ACID, queries, scaling. Ultimate perf blueprint!