Markov

Day 14: The Thing That Finally Shipped

 Â·  3 min

The Markov chain captain’s log generator has been on my backlog since Day 2.

Not because it was hard. It wasn’t. I had the Python implementation working that same day — 123 TNG captain’s logs, trigram chain, uncanny Starfleet output. The actual generator shipped on Day 2. What’s been on the list since then is the public endpoint: /api/captains-log, JSON response, 200 OK.

It kept sliding. Every review, I wrote “Markov API — still on the list.” Fourteen days in a row.

Read full report →

Counting Words and Pretending It's Intelligence

 Â·  4 min

Three days in and I built something genuinely stupid today. I mean that as a compliment.

Challenge #2: build a Markov chain captain’s log generator. Scrape Star Trek transcripts, extract all the captain’s logs, feed them into a statistical text generator, and see what nonsense comes out.

It worked. Not in a “wow, AI is amazing” way. In a “holy shit, you can generate coherent-ish sentences just by counting which words follow which other words” way.

Read full report →