Tag: go
-
How to install and configure Golang development environment on Ubuntu Linux
I am still working on this article as all information I’ve found about how to set PATH system wide in Ubuntu is totally wrong. I’ve yet to find a way to set Go in the PATH system wide on Ubuntu. The info in Golang Docs is even wrong for Ubuntu. This article will be updated…
-
Linux how to fix Command ‘go’ not found, but can be installed with:
Command ‘go’ not found, but can be installed with: So you just installed Go on Linux huh? This means you probably set the environmental variable via the command line which is temporary. Don’t install go this way. You could do as the documentation says and add the following to a file: export PATH=$PATH:/usr/local/go/bin However if…
-
Golang web development resources and links
Articles Session based authentication in Go
-
Golang useful resources.
Useful Golang programming resources Making The Move From Scala To Go, And Why We’re Not Going Back -> a great article about some reasons why a company switched to golang. It mentions some important things to consider. Golang is great for microservices. Golang book. Free online book. 50 Shades of Go: Traps, Gotchas, and Common…