Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

mbtamuli/GoLearnGo

Repository files navigation

GoLearnGo

Resources

https://dave.cheney.net/resources-for-new-go-programmers

I think this is a pretty good enough curation of all the resources one will ever need to "Get Started" with Go.

Progress

  1. I have started with https://tour.golang.org
  2. I am making a client to consume the DigitalOcean API to understand the concepts better. Looking at the source of godo as inspiration.
  3. Done with go-koans
  4. Experimenting with GitHub v4 GraphQL API
  5. Gophercises quiz
  6. Random snippets added

Notes

If using database/sql, you can log sql statements using

import (
	"github.com/luna-duclos/instrumentedsql"
	"modernc.org/sqlite"
)
logger := instrumentedsql.LoggerFunc(func(ctx context.Context, msg string, keyvals ...interface{}) {
	log.Printf("%s %v", msg, keyvals)
})
sql.Register("instrumented-sqlite", instrumentedsql.WrapDriver(&sqlite3.SQLiteDriver{}, instrumentedsql.WithLogger(logger)))
db, err := sql.Open("instrumented-sqlite", dataSourceName)

About

Learning Golang from Scratch

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

AltStyle によって変換されたページ (->オリジナル) /