Loading...

gogetsome.dev

Build along. Learn by doing.

Latest Articles

20 min read

UUID Versions

UUID Versions: A Practical Guide of why it matters A Universally Unique Identifier (UUID) is a 128-bit label used to uniquely identify information in computer systems without …...

distributed systems uuid databases
20 min read

Understanding Defer in Go

What is Defer in Go According to “A Tour of Go”, A defer statement defers the execution of a function until the surrounding function returns. It’s basically like saying, “Once …...

Go defer flow-control