Explore >> Select a destination


You are here

www.joeshaw.org
| | blog.owulveryck.info
15.9 parsecs away

Travel
| | This article describes how I use the wardleyToGo SDK to create a plugin in Go for ChatGPT (to display Wardley Maps)
| | matttproud.com
11.0 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.
| | justinas.org
8.3 parsecs away

Travel
| |
| | csharp.christiannagel.com
79.1 parsecs away

Travel
| In a previous version of a Professional C# book I've written a complete chapter on how to create Windows Services with the .NET Framework. Using .NET Core 3.0, it's a lot easier to create Windows Services: just a single line of code is needed to convert a background worker to a Windows Service. See Creating...