Hello, world
1 min read
This is the first post on my new site. I wanted a small, fast place to think out loud — no analytics popups, no cookie banners, just text.
Why minimal?
Most of what I want to share is words. A site should get out of the way of that. This one is static, ships almost no JavaScript, and loads instantly.
What to expect
A few themes I keep coming back to:
- Software — the craft of building things that last.
- Product — how good tools earn trust.
- Notes to self — things I learned the hard way.
Here's a quick code sample to make sure syntax highlighting works:
function greet(name: string): string {
return `Hello, ${name}!`;
}
console.log(greet("world"));That's it for now. More soon.