Jimmie Butler
Jimmie's Mostly Tech Blog

Jimmie's Mostly Tech Blog

Follow
homeKubernetesGolangMLTravelContactnewsletter
Tag

Programming Blogs

#programming-blogs

More content

Read more stories on Hashnode


Articles with this tag

Go - Generics powered http handlers

Mar 12, 20224 min read

The Goal Our resulting handler should be: Type safe Easy to understand Support existing middleware and adhere to http.HandlerFunc Be easy to...

Go - Generics powered http handlers

Go Basics: For loop suprise!

Nov 15, 20212 min read

What happens when we run this code? func main() { data := []string{"Hello", "World"} toPrint := []*string{} for _, a := range data { ...

Go Basics: For loop suprise!