2026.06.22·1 min read·#notes
Hello — this is uyar.design
A first field note. The site is live; real writing goes here next.
Reading time is computed from the word count:
const WORDS_PER_MINUTE = 200;
export function readingTimeMinutes(text: string) {
const words = text.trim().split(/\s+/).filter(Boolean).length;
return Math.max(1, Math.ceil(words / WORDS_PER_MINUTE));
}Simple, and it survives contact with a roadmap.
filed under #notes · 1 entry total