Writing.
Notes on software development, frontend architecture, and things I learn along the way.

July 7, 2026
8 min read
38
Go Lang
go
Go Data Structures, Explained Like You're Five (Sort Of)
A beginner-friendly walkthrough of arrays, slices, maps, structs, and pointers in Go — with real code and zero assumed knowledge.

July 7, 2026
2 min read
34
Go Lang
go
Go (Golang)
Go (Golang) was created at Google (2007, released 2009) by Rob Pike, Ken Thompson, and Robert Griesemer. Design goals: simplicity, fast compilation, a...

July 10, 2026
7 min read
20
Go Lang
golang
data-structures
arrays
slices
maps
programming
tutorial
Go Data Structures: A Fun, Practical Tour (From Arrays to Trees)
A friendly, hands-on tour through every data structure Go offers out of the box — arrays, slices, maps, structs, pointers, and channels — plus how to build classic structures like stacks, queues, linked lists, and trees on top of them.