Reverse Function in Go Template

From a python programmer's perspective, these are lessons I've learned from developing a web app using the Go programming language.

After understanding how to structure a go web app and route requests to a view handler, the next logical step was to use a template to render an ...

more ...

Routing for a Go Web Project

From a python programmer's perspective, these are lessons I've learned from developing a web app using Go.

After I've planned my project structure for my go app, I started to look into how I should go about developing the app itself. I read the detailed tutorial from ...

more ...