Skip to main content

Going back to Go: A series

· 2 min read
at15
Software Engineer

Revisit basic of Go (Golang) and new features with runnable examples.

Background

I haven't used Go extensively for a while, and I am not keeping up with recent releases of Go. I think it is a good time to recap frequently used features and explore new features and write some simple projects to practice them.

Plan

NOTE: Subject to change, link to blogs will be updated when they are published (if ever).

Language features

Patterns and Libraries

  • logging, there is a new interface for structured log
  • error handling, error wrapping is the last update I looked into

Network

Database

  • database/sql already forgot it ... don't use it often TBH
  • sqlite? cgo or write a pure go reader

Projects to practice

References