2026-08-17
Hello, world
Why this site exists and what to expect here.
This site is where I write about building software: the products we ship at Four Lights, the integrations that glue systems together, and the infrastructure that keeps it all running.
Expect short, practical posts. Things I wish I had found when I was searching.
What lives here
- Writing — notes on TypeScript, React, Strapi, containers and self-hosted infrastructure.
- Projects — the open source tools we maintain, like Strapi plugins and small ops utilities.
A first real post is in the works. In the meantime, here is proof the code highlighting works:
type Light = { on: boolean }
const lights: Light[] = Array.from({ length: 4 }, () => ({ on: true }))
console.log(`${lights.filter((l) => l.on).length} lights on`)
See you soon.