Hello, World
Hello, World
Welcome to pynezz.dev - a personal workshop for code, writing, and experiments.
What This Site Is
This site is a browsable catalog of things I've built and written. It's organized by content type:
blog/- long-form writingprojects/- project showcasessnippets/- short code examples
Code Example
Here's the core rendering interface:
type Renderer interface {
CanRender(entry *content.Entry) bool
Render(entry *content.Entry) (template.HTML, error)
}
A Note
This site is built with pure Go - no framework, just net/http and some clever composition.
The design uses a technopunk aesthetic: hard edges, monospace, neon glow on dark surfaces.