← blog

Hello

2026-05-14 · work

This is where I’ll write things I want to keep — notes on agents, finance, and robotics, and whatever else is on my mind.

How this works

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.

Why MDX

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.