Skip to main content
← Writing
2026-03-28Career3 min read

Why I Finally Started a Blog

After years of building things and not writing about them, here's why I decided to change that.

The Hesitation

For years I told myself I'd start writing once I had something "important enough" to say. That bar kept moving. Meanwhile, I was solving real problems, shipping real features, and learning things that took me hours to figure out — none of which I documented.

The irony is that the posts I've found most useful throughout my career weren't written by experts with perfect answers. They were written by developers who were one step ahead of me, sharing exactly what they just learned.

What You'll Find Here

This blog is where I'll write about:

The Format

Short posts when the idea is small. Long posts when it earns it. No filler.

Code will look like this:

// A function I've rewritten about a hundred times
function clamp(value: number, min: number, max: number): number {
  return Math.min(Math.max(value, min), max);
}

That's it. Let's build something.