codehakase.com

Posts tagged "go"

Parsing, Not Guessing

June 14, 2025
Using ASTs over regex to build a predictable, lightweight, theme-aware Markdown renderer in Go.

import "reflect"

June 10, 2025
An attempt at a concise explanation of Go's reflection library.

Maps Don't Shrink in Go

May 27, 2025
A note on how Go maps handle memory allocation and why they don't shrink automatically.

Notes on building a coding agent

April 25, 2025
My personal reflections on Thorsten's Ampcode article, which reveals how building AI coding agents can be more about leveraging powerful models than complex, custom code.