Explore >> Select a destination


You are here

www.elastic.co
| | www.integralist.co.uk
17.1 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,...
| | filipnikolovski.com
16.9 parsecs away

Travel
| | A blog about programming, technology and open-source stuff.
| | www.joeshaw.org
18.6 parsecs away

Travel
| | Two great tastes that taste great together
| | www.claudiobernasconi.ch
75.9 parsecs away

Travel
| Building APIs has become simpler with ASP.NET Core 6. Learn a simple way to create integration tests for ASP.NET Core 6 WebAPI applications.