Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/abdullahnettoor/go-workouts
https://github.com/abdullahnettoor/go-workouts
Last synced: 20 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/abdullahnettoor/go-workouts
- Owner: abdullahnettoor
- License: mit
- Created: 2023-09-16T04:54:58.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-06T03:56:21.000Z (about 1 year ago)
- Last Synced: 2023-10-06T19:08:09.061Z (about 1 year ago)
- Language: Go
- Size: 43 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`.