lectures

module
v0.0.0-...-79d043b Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 18, 2024 License: CC-BY-SA-4.0

README

Lectures

This repository contains lecture slides for Course Go.

Content

  1. Course [slides]
    • Introduction
    • Requirements
    • Overview
  2. Introduction [slides | exercise]
    • Introduction to Go
    • IDEs & Editors
    • Installing Go
    • Running Go
  3. Fundamentals #1 [slides | exercise]
    • Packages & Visibility
    • Variables
    • Keywords
    • Data types
    • Control flow
    • Functions
    • Pointers
    • Structures
  4. Fundamentals #2 [slides | exercise]
    • Interfaces
    • Errors
    • Arrays
    • Slices
    • Maps
    • Range
  5. Concurrency & parallelism [slides | exercise]
    • Goroutines
    • Runtime
    • Channels
    • Select
    • Related packages
  6. Advanced #1 [slides | exercise]
    • Generics
    • Packages
    • Testing
  7. Advanced #2 [slides | exercise]
    • Benchmarks
    • Optimizations
    • CGo
    • Unsafe & Reflect
  8. REST APIs [slides | exercise]
    • JSON
    • HTTP
    • REST API
    • HTTP package
    • Routers & Web frameworks
    • OpenAPI
    • Templating
  9. Containers [slides | exercise]
    • Containerization
    • Docker
    • Kubernetes
  10. Databases [slides | exercise]
    • SQL
    • RDBMSs
    • Migrations
    • sql
    • sqlx
    • sqlc
    • GORM
  11. Infrastructure [slides | exercise]
    • CI/CD
    • Infrastructure
    • GCP
  12. Observability [slides | exercise]
    • Health
    • Metrics
    • Logs
    • Traces
    • OpenTelemetry

Running the slides

The slides are made using the go present syntax which has its own tooling.

The project maintains an up-to-date deployed version of the slides on lectures.course-go.dev.

The only disadvantage is that this version does not allow you to run the Go code presented on the slides for security reasons. To run the Go code, you must run the slides locally.

Running locally
Using Docker

You can use an already pre-built container image with lecture slides.

docker run -p "3999:3999" \
    ghcr.io/course-go/lectures:latest \
    present -http=:3999
Using present directly

Or you can run the slides locally using the Go present CLI.

Clone the repository
git clone git@github.com:course-go/lectures.git
Installation

Install Go if you do not have it yet.

Install the CLI present tool using Go install:

go install golang.org/x/tools/cmd/present@latest

This installs the present executable into your $GOPATH/bin directory if GOPATH is set or the $HOME/go/bin directory otherwise.

Usage

Make sure that the directory with the present executable is in your $PATH.

After that, running the present tool is simple:

present

Alternatively, you can specify on which address the server should listen:

present http=:8080

A webserver is run on the specified address. You can now preview the slides using your favourite web browser.

Attribution

Some of the lecture slides are based on the GoCourse project developed under Red Hat. The GoCourse is licensed under CC BY-SA 4.0 DEED license, which this repository respects and therefore shares.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL