Hello, world — why I'm writing here
A short note on starting this blog, and what I plan to write about.
I've wanted a place of my own on the internet for a long time — somewhere that isn't a feed, isn't an algorithm, and isn't optimized for anything except thinking clearly. So here it is.
What this is
This is where I write about the things I'm building and the ideas I'm chewing on. Mostly software and AI, occasionally the messier stuff around them — taste, focus, and why some tools feel alive while others feel like furniture.
I'm not trying to be comprehensive. I'm trying to be honest about what I actually learned, including the parts where I was wrong.
How I think about writing
Writing is nature's way of letting you know how sloppy your thinking is.
A few principles I'm holding myself to:
- Ship the rough version. A published draft beats a perfect outline.
- One idea per post. If I can't say it in a sentence, I don't understand it yet.
- Show the work. Code, screenshots, dead-ends — all of it.
// the whole CMS behind this blog is basically this
type Post = {
slug: string;
title: string;
content: string; // markdown
published: boolean;
};
That's the plan. If any of this resonates, the best place to follow along is the links in the footer.
More soon.