Explore >> Select a destination


You are here

dusted.codes
| | www.integralist.co.uk
2.0 parsecs away

Travel
| | Introduction Four ways to skin a cat How does the adapter work? Why is this interesting? Summary/Breakdown Introduction Here is some code that demonstrates the typical 'hello world' for a Go based web server: package main import ( "fmt" "net/http" ) func handler(w http.ResponseWriter, r *http.Request) { fmt.Fprintf(w, "Hello %s", r.URL.Path[1:]) } func main() { http.HandleFunc("/World", handler) http.ListenAndServe(":8080", nil) } Note: http://localhost:8080/World will return Hello World For most people,...
| | schadokar.dev
2.1 parsecs away

Travel
| | Learn how to implement jwt in your api in golang.
| | benhoyt.com
2.7 parsecs away

Travel
| | Simple Lists is a tiny to-do list web application written in Go, with old school server-side rendering and no JavaScript.
| | inphotos.org
23.3 parsecs away

Travel
| How often do we stand still on the street, surrounded by the urban environment, looking at a phone?