Welcome to the blog. This is where I’ll write about software, systems, and whatever I happen to be building.
Why a blog
Writing forces clarity. If I can’t explain a thing simply, I probably don’t understand it well enough yet. So: notes in public.
Code renders nicely
Here’s a quick Go snippet to confirm syntax highlighting and the copy button work:
package main
import "fmt"
func main() {
for i := 0; i < 3; i++ {
fmt.Printf("post %d incoming\n", i)
}
}
And a shell one-liner:
hugo server -D
More soon.