golang-resources

https://go.googlesource.com/

https://github.com/golang/go

https://github.com/golang/go/wiki

Blogs

Branding

Community

Contributing

Database

Dependency Management

Go modules

Init

go mod init

Tools: https://github.com/go-modules-by-example/index/blob/master/010_tools/README.md

Makefile
.PHONY: all clean install

all:
	go mod vendor
	go build -mod=vendor ./...

clean:
	go mod tidy

install: all
	go install -mod=vendor ./...

Design

Documentation

godoc regexp | grep -i parse

Generics

History

Humor

IoT

Learning

Layout

Performance

Research Papers

Security

SSL/TLS

Style

Testing

To Investigate

Code Evaluation

Complexity

Data

Dev Tools

Design Patterns

Documentation

Errors

Frameworks

Hardware

Image Processing

Learning

Logging

Mocking

Presenting

Profiling

Projects

Robots!

Testing

Tooling

Verification