Go

Go Basics #3 Control Flow — if, for, switch
3 min read

Go Basics #3 Control Flow — if, for, switch

Branching and looping in Go — if with short statements, for as the only loop, switch with no implicit fallthrough.

Go Basics #2 Variables, Types, Constants
3 min read

Go Basics #2 Variables, Types, Constants

Go's basic types, two ways to declare variables, and the const and iota patterns.

Go Basics #1 Getting Started and Your First Program
6 min read

Go Basics #1 Getting Started and Your First Program

Why Go, setting it up, and compiling and running your first program — the starting line of the Go track.

Go GORM 1:N (One To Many) relationship modeling and queries
4 min read

Go GORM 1:N (One To Many) relationship modeling and queries

In this post we'll cover how to model a one-to-many relationship and how to query it using GORM.