Learning GO: A new beginning

Learning GO: A new beginning
Learning things is fun so I've decided it's time to learn go and because I enjoy making these little series I thought I'd write about it too.My first step was to Google 'learning Go', which took me to...
0 Read More

Testing Go Test Helpers

If you've spent any time writing Go tests, you've probably encountered the joy of *testing.T. It's the backbone of Go's testing framework  -  powerful, flexible, and ubiquitous. But as your test s...
0 Read More

sqlc: Type-Safe Querying in Go

sqlc: Type-Safe Querying in Go
Leapcell: The Next-Gen Serverless Platform for Golang Hosting Introduction The interfaces provided by the database/sql standard library in the Go language are relatively low-level. This requir...
0 Read More

Monotonic and Wall Clock Time

Monotonic and wall clock time are two ways we measure time.Wall clock time is the time we see on our clocks. It's the time we are all used to and respond with when someone asks "what time it is?". Mon...
0 Read More