Why a blog

After years of keeping notes in scattered files, I decided to put everything in one public place. The idea is simple: write about what I’m learning, mostly around software development.

Writing forces you to organize your thinking. When you have to explain something to someone else, you quickly find the holes in your own understanding.

What to expect

Some topics that should show up here:

  • Day-to-day software development
  • Tools and automations that save me time
  • Study notes — the classic “future me will thank present me”

How this blog was built

The site is static, generated with Hugo and the PaperMod theme, hosted on GitHub Pages. Deployment happens automatically on every push to the main branch.

A code block example, just to see how it looks:

1
2
3
4
5
6
7
package main

import "fmt"

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

That’s it. See you in the next one.