This blog tells you how AI was used
This is a placeholder post. It exists to show the design working β the badge above, the code blocks below, the type. Delete it and write your own.
Every post here carries a small badge at the top saying how AI was involved:
- βοΈ Written by hand β no AI, every word is mine.
- ποΈ Spoken, AI-transcribed β I dictated it; AI only turned speech to text.
- π€ AI-assisted β I directed and edited it; AI helped draft.
Itβs set with one line of frontmatter, so it can never drift from the truth:
---title: 'A post about something real'description: 'One honest line.'pubDate: '2026-07-07'aiUsage: 'handwritten'---Code looks the way it does in your editor
Fenced code is rendered with Expressive Code β the same Shiki highlighter VS Code uses. You get titles, line highlighting, and a copy button for free:
const BASE = 'https://api.cloudflare.com/client/v4';
async function cf(method: string, path: string, token: string) { const res = await fetch(BASE + path, { method, headers: { Authorization: `Bearer ${token}` }, }); if (!res.ok) throw new Error(`Cloudflare ${res.status}`); return res.json();}Images work too β drop a file in src/assets/ and reference it, or set a
heroImage in the frontmatter. Thatβs the whole system: write Markdown, pick
how honest youβre being about the robot, ship.