This is where I’ll write things I want to keep — notes on agents, finance, and robotics, and whatever else is on my mind.
Posts live in src/content/posts/ as .mdx files. Each one needs a bit of frontmatter:
---
title: "Post title"
date: 2026-08-12
description: "one line, shown in the list"
category: work # or: life
draft: false # true hides it everywhere
---
category splits the blog into two sections — work for engineering and building, life for everything else. That’s the only knob; a new file with the right frontmatter shows up on /blog and on the home page automatically.
Because plain Markdown is fine until you want a chart or an embed, and then you’re stuck. MDX lets me drop in a component when I need one and otherwise stay out of the way.