Hello, world

  • meta
  • design

I've been meaning to start writing in public for a while. This is the first post on a small corner of the internet I'm carving out for thoughts on design, AI, and craft.

Why a blog

There's a kind of thinking that only happens when you have to write a sentence down. The half-formed idea collapses, or it doesn't, and either way you've learned something. I want more of that.

What to expect

Short notes, mostly. Things I've learned shipping product. Occasional deep dives when something genuinely surprises me.

Writing is the process by which you realize that you do not understand what you are talking about.

— attributed to Shelby Foote, often via Patrick Winston.

A code sample, because of course

type Note = {
  title: string;
  body: string;
};

const first: Note = {
  title: "Hello, world",
  body: "Glad you're here.",
};

More soon.