Welcome to my blog. I write about software, systems, and the things I learn while building them.

This site is bilingual — every article is available in English and Portuguese (pt-BR). Use the language switch in the header to change.

The plan: technical articles about whatever I’m working on, with full markdown support — syntax-highlighted code, math with KaTeX, and diagrams with Mermaid.

1
2
3
4
5
6
7
package main

import "fmt"

func main() {
    fmt.Println("First post, hello!")
}

A diagram to prove the pipeline:

flowchart LR
    A[Write markdown] --> B[Hugo build] --> C[GitHub Pages]