/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

pauladamsmith.com
| | matttproud.com
1.6 parsecs away

Travel
| | Pop quiz, hot shot: what is the behavior of func f (as defined below) when it is called from a bare gRPC method or HTTP handler as go f(ctx) using the context.Context provided to the handler?1 1 2 3 4 5 6 7 8 9 10 11 func f(ctx context.Context) { // Flimsily make it improbable for this function to continue while the // handler is serving. time.Sleep(time.Second) select { case <-time.
| | www.neerajsidhaye.com
1.6 parsecs away

Travel
| | GO middleware as the name suggests, sits between Go webserver( to be precise "router") and application handler and it works like a filters, similar to what we have in J2EE application for pre and/or post processing of request. Let's hands on with Go Middleware...
| | peter.bourgon.org
1.9 parsecs away

Travel
| | Peter Bourgon has a web site, and this is that web site.
| | ewintr.nl
15.7 parsecs away

Travel
| [AI summary] A guide on how to use Golang's built-in httptest library to create a mock server and record outbound HTTP requests for unit testing Go applications without external dependencies.