https://github.com/blankeos/golang-practice
🔵🐀 Learning Go because it's cool
https://github.com/blankeos/golang-practice
Last synced: 4 months ago
JSON representation
🔵🐀 Learning Go because it's cool
- Host: GitHub
- URL: https://github.com/blankeos/golang-practice
- Owner: Blankeos
- Created: 2023-04-27T13:47:09.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-07-06T00:00:21.000Z (almost 2 years ago)
- Last Synced: 2025-11-22T14:24:57.579Z (7 months ago)
- Language: Go
- Size: 80.3 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Go Practice
Learning Go because it's a cool backend language.
Projects on this repo:
1. salary - estimates salary based on hourly, daily, and monthly rate.
2. simple-webserver - easy app that uses no frameworks to listen to a port and serve static html
3. fiber-crud - Book API with CRUD operations
4. aternos-bot - WIP chromedp app that goes to Aternos and starts the server for you. (NOT DONE)
5. gql-server - Made a Todo GraphQL server based on 99designs/gqlgen tutorial. Extended with best practices like using a database (sqlite), sqlc (SQL Builder and typesafe db queries), and goose (Schema migrations).
**Projects I went through on the Official Go Website:**
6. hello - go basics (i have notes to create project and stuff here)
7. greetings - A custom external module used in hello (with unit tests)
8. workspace - getting used to multiple modules in one workspace.
9. data-access - basics of accessing databases with the standard library.
10. web-service-gin - made an album API using Gin. Extended it further with automatic Swagger Doc generation (swaggo)
### Resources
- [go getting started](https://go.dev/doc/tutorial/getting-started#install