Skip to main content

Hello, world!

Well — here we are.

After years of tinkering, building for others, chasing clarity, and rewriting my own tooling… I finally launched something personal. No bells, no buzzwords, no framework worship. Just a page. A place to think out loud.

This site is built with Hugo, styled thanks to Adrián Moreno Peña, and maintained with just enough automation to stay sane. It reflects how I like to work: minimal, fast, and intentional. And yes, I use great things that others created.

What to expect here? Maybe some thoughts on system design, maybe stories from the trenches of DevOps, or weird philosophical tangents about tooling and purpose. Maybe silence. Maybe code. Maybe you’ll find something useful in the mess.

Or maybe I’m just talking to myself. That’s fine too.

Welcome — if anyone’s reading. If not, I am. And that’s a start.

package main

import (
  _ "michalhodur.com"
  "fmt"
)

func main() {
	fmt.Println("Hello, world!")
}