/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

rmoff.net
| | lukesingham.com
4.9 parsecs away

Travel
| | These are my summary notes of 'A Tour of Go' - which is meant for people who are familiar with programming to have a quick tour
| | antonz.org
3.0 parsecs away

Travel
| | Limiting the concurrency and waiting for the peers.
| | kubamartin.com
4.6 parsecs away

Travel
| | Practical Golang: Getting started with NATS and related patterns Introduction Microservices... the never disappearing buzzword of our times. They promise a lot, but can be slow or complicated if not implemented correctly. One of the main challenges when developing and using a microservice-based architecture is getting the communication right. Many will ask, why not REST? As I did at some point. Many will actually use it. But the truth is that it leads to tighter coupling, and is synchronous.
| | bartlomiejmika.com
30.7 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.