Back

Hello, and welcome

2 min read

I have wanted a place of my own to write for a while. Not a feed, not a thread that scrolls away by morning. Somewhere I can think in public and come back to later. This is that place.

A bit about me. I lead product marketing and marketing. I build the function from nothing: the positioning, the launch, the system that runs both. Lately a lot of my work is AI-native, which is a fancy way of saying I have wired up a set of agents that handle the parts of the job that used to take a team. Some of it works well. Some of it I am still figuring out. I plan to write about both.

Here is what you can expect.

What I will write about

  • Go-to-market that actually ships. Positioning, launches, and the unglamorous middle where most plans quietly die.
  • Building with AI as an operator, not a tourist. Real workflows, real failures, what held up under load and what did not.
  • Notes from the work. Short pieces. Things I learned this week that I want to remember next month.

How I write

Plainly. I would rather be clear than clever. If a sentence does not earn its place, it goes. I run everything I publish through a few quality passes first, mostly to catch the tics that creep in when you write a lot, but the thinking is mine and so are the mistakes.

A small example of the kind of thing I keep around, because every developer-adjacent site needs one code block:

// the smallest useful function I write all the time
function pickFirst<T>(items: T[], fallback: T): T {
  return items.length > 0 ? items[0] : fallback
}

That is it for now. This first post exists mostly to prove the room is built and the lights turn on. The real writing starts next.

Thanks for reading. More soon.