Content-Driven. Experiment-Hungry.

A kickass blog foundation for essays, engineering notes, and weird frontend ideas.

This site now runs on Astro, keeps the writing workflow Markdown-first, and leaves plenty of room for React-powered experiments when plain content is not enough.

Built-In Strengths

  • Type-safe content collections instead of hand-rolled HTML generation.
  • Markdown-first authoring with room for MDX when a post needs components.
  • Static pages, sitemap, RSS, and low-JS rendering by default.
  • React islands kept for Three.js, animation, and future experiments.

Recent Writing

Fresh posts from the notebook

Browse archive
Db 2 min read

DynamoDB

It is a key-value store like an object. Primary key It is a unique identifier for a item in a table. It is the "key" of the item. It must contain a partition key and a...

Db
Dsa 1 min read

Backtracking 🤯

https://leetcode.com/problems/subsets/ Given an integer array nums of unique elements, return all possible subsets (the power set). The solution set must not contain d...

DsaBacktracking