Subscribe to my newsletter and never miss my upcoming articles
The Goal Our resulting handler should be: Type safe Easy to understand Support existing middleware and adhere to http.HandlerFunc Be easy to use Short version: Check out the playground What we'll build At the end of this post we'll be able to do t...
What happens when we run this code? func main() { data := []string{"Hello", "World"} toPrint := []*string{} for _, a := range data { toPrint = append(toPrint, &a) } for _, p := range toPrint { fmt.Println(*p) ...
Evolving architecture as part of training
With testing!
And why it might suck
Terraform is a technology for managing infrastructure as code. Many projects would benefit greatly from using it to manage infrastrucutre. GKE is googles kubernetes offering, and has some great features and offerings to make your experience with kub...