gitmyhub

gotraining

Go ★ 12k updated 1mo ago

Go Training Class Material :

Course material from Ardan Labs' professional Go training program for intermediate developers, covering language internals, concurrency, memory, performance, and design guidelines with code exercises and linked conference talks.

Gosetup: easycomplexity 1/5

This repository contains the course material for Ardan Labs' Go training program. Go (sometimes called Golang) is a programming language developed by Google and used widely for building servers, command-line tools, and infrastructure software. The material here accompanies classes that Ardan Labs has taught to developers worldwide since 2014, offered through corporate training events, conferences, and on-demand video.

The training is aimed at intermediate-level developers who already have some experience writing Go code, typically a few months to a few years. The coursework goes deep on how the language actually works: language mechanics (how memory, types, goroutines, and other core constructs behave), design philosophies, and practical guidelines for writing software that is consistent, readable, and straightforward to maintain. A significant portion covers performance topics, including how modern hardware and the Go runtime interact (described as mechanical sympathy), data-oriented design, and techniques for writing code that can be debugged and trusted in production.

The full training has also been recorded and is available as a paid video course through Ardan Labs' education platform for those who cannot attend a live session. A companion book called the Ultimate Go Notebook covers the same material in written form.

The primary instructor is William Kennedy, a managing partner at Ardan Labs and co-author of the book "Go in Action." He has given talks at Go conferences around the world, covering topics ranging from concurrency and memory profiling to garbage collection and package design. The repository includes links to many of those recorded conference talks.

Where it fits