I think about working directories and file paths almost every time I work on a Go project. Accessing external files from Go code seems like a straightforward task at first glance. However, once you are… »
Journey was written to be easily deployable on any machine. Most people will probably use it on a Linux server though. That’s why I wrote a step-by-step tutorial on how to set up Journey on… »
Setting up a HTTP server is one the first things you’ll learn as a Go programmer. It’s pretty easy. Just type package main import ( "fmt" "net/http" ) func handler(w http.ResponseWriter, r *http.Request) { fmt.Fprintf(w,… »