/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

previnder.com
| | bartlomiejmika.com
6.5 parsecs away

Travel
| | The purpose of this post is to provide instructions on how to setup a simple RESTful API server, in Golang, using only the net/http package and not any other third-party web framework. You will learn how to create REST endpoints within your project that can handle POST, GET, PUT and DELETE HTTP requests. This is the first post in a multi-post series.
| | hjr265.me
3.5 parsecs away

Travel
| | Signals are standardized messages that an operating system can send your programs. Take Ctrl+C for example. When running a program from the terminal and you hit Ctrl+C, you expect the program to end immediately. How does that work, though? Ctrl+C is a shortcut for the POSIX signal SIGINT. By default, this signal causes your program to be terminated. But this is one of those signals you can handle: You can intercept it and do whatever you please.
| | gist.github.com
4.2 parsecs away

Travel
| | Simple Implementation of HTTP Server. GitHub Gist: instantly share code, notes, and snippets.
| | blog.meain.io
10.9 parsecs away

Travel
| A look into how the context package in Golang works