https://github.com/domenez-dev/my-go-learning-journey
This repository is a collection of demos, exercises, and mini-projects from my journey through the "Zero to Mastery Golang" course. It showcases my progress and the skills I'm developing in Go programming. Follow along as I learn and grow, tackling various challenges and building a solid foundation in Go
https://github.com/domenez-dev/my-go-learning-journey
go golang
Last synced: 2 months ago
JSON representation
This repository is a collection of demos, exercises, and mini-projects from my journey through the "Zero to Mastery Golang" course. It showcases my progress and the skills I'm developing in Go programming. Follow along as I learn and grow, tackling various challenges and building a solid foundation in Go
- Host: GitHub
- URL: https://github.com/domenez-dev/my-go-learning-journey
- Owner: Domenez-dev
- License: mit
- Created: 2024-12-28T16:15:22.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-02-11T10:37:05.000Z (4 months ago)
- Last Synced: 2025-02-11T11:33:13.667Z (4 months ago)
- Topics: go, golang
- Language: Go
- Homepage:
- Size: 41 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Zero To Mastery: Golang
This repo contains the source files to accompany the Go language course found at [zerotomastery.io](https://zerotomastery.io/).## Demos / Exercises
To follow along with the demos & work on the exercises, open the `src/lectures` directory in your IDE.
Demo source files are available in `src/lectures/demo` and coding excercises are available in `src/lectures/exercise`.
When your terminal is in the `src/lectures` directory, demos can be ran using `go run ./demo/demo-name` and exercises can be ran using `go run ./exercise/exercise-name`.## Solutions
To view solutions for the exercises and projects, checkout the `solutions` branch using `git checkout solutions` (you may need to commit or stash your changes to switch branches).
The `solutions` branch also includes the code seen in the demos.## Slides
Offline copies of all the slides used in the course are available for download [here](https://cdn.jayson.info/ztm/zerotomastery.io-golang-slides.zip).
File names correspond to the titles of the lectures.## Pixl
To work on the Pixl project, open the `projects/pixl` directory in your IDE.
You can then execute `go run ./pixl` to run the project.### Pixl Prerequisites
The Pixl project requires a working installation of `gcc`.
Installation instructions for various operating systems are covered in the course.
`gcc` is a widely available tool, so if your operating system is _not_ detailed in the course (or if you are having trouble), please ping `Jayson#6730` in Discord for installation assistance or ask in `#golang` or `#helpme`.