Home / Writing / example-post

An example post (delete me)

May 1, 2026 example

This post is here so the styling is visible right away. Delete the file when you publish a real one.

Headings render like this

Body copy uses Inter at 16px on a 1.7 line-height. Long-form reading should feel calm, not cramped. Inline code looks like pg_dump --schema-only.

A subheading

Lists work as you’d expect:

  • Mostly Node + Postgres
  • Increasingly TypeScript
  • Reluctantly Kubernetes
  • Occasionally Rails

Numbered lists too:

  1. Read what’s there.
  2. Change the smallest thing that works.
  3. Ship.

Code blocks

type Result<T, E = Error> =
  | { ok: true; value: T }
  | { ok: false; error: E };

function divide(a: number, b: number): Result<number, "div-by-zero"> {
  if (b === 0) return { ok: false, error: "div-by-zero" };
  return { ok: true, value: a / b };
}
# rebuild and deploy
npm run build && npm run deploy

Quotes

If you don’t already run Kubernetes, do not adopt it for one event. Use Docker Compose on a single beefy box and sleep at night.

This is an external link and this is emphasized text.

Tables

StackWhen I reach for it
PostgresDefault. Almost always.
MongoDBDocument-shaped data with no relational pull.
DynamoDBHot path with known access patterns.

That’s about it. Delete me.

← All writing Home →