DEVELOPER NEWS STREAM
Direct logs, engine updates, and framework notifications parsed from curated RSS feeds and announcements, updated hourly.

Aurélie VacheLearning Go by examples: part 1 - Introduction & Installation
Serie of article in order to learn Golang language by concrete applications as example

Ankit Anand ✨7 GitHub projects to make you a better Go Developer💥
Go is a compiled, concurrent, garbage-collected, statically typed language developed at Google. Go...

James D.Developing Inside A Docker Container
Now we are going to start getting into the weeds of leveraging docker. I think an easy way to start...

Alex PoulosRust: First Thoughts
My third child, Maximus, was born this Spring, and thanks to a generous parental leave policy I’ve...

elesqMore Go RPC, using gorilla/rpc/json
Following on from an earlier post about Go and RPC, this time we're looking at gorilla/rpc and...

manuelMerge several individual ssh configuration files to one single file in Golang
The easiest way to achieve this is to write something like cat ~/.ssh/config_* >> ~/.ssh/config...

elesqCustom middleware basics with Go. No frameworks.
So you want to add some custom middleware to a Go api? There's many elegant and advanced ways to do...

Karan Pratap SinghDockerize your Go app
Go is quickly becoming one of my favorite languages to work with. So, today we'll dockerize our Go...

elesqRPC with Go, what is it?
OK, so we're going to have a look at RPC with Go. So what is RPC? RPC (remote procedure call) is a...

Peter FoxLaravel Octane: Compiling RoadRunner from Source
Photo by Jean Gerber on Unsplash RoadRunner is one of the two options available for use with Laravel...

Andy HaskellTest your Go web apps with httptest
In part 1 of this series, we looked at the basics of writing tests in Go with the testing.T type, and...

Kelvin WangonyaGetting the running Go version
This would mostly be useful for debugging. package main import ( "log" "runtime" ) func...

Mario CarrionBuilding Microservices in Go: Containerization using Docker
In the past I covered Docker from different point of views, including creating small docker images,...

Kevin BurnsData Constraints: From Imperative to Declarative
Sharpening the fuzzy boundary between applications and their data structures

Thiago Avelino7 subjects (and GitHub repositories) to become a better Go Developer
With the high adoption of the Go language by developers and large companies, this has led companies...

Mario CarrionBuilding Microservices in Go: OpenTelemetry
Original link What is OpenTelemetry? Source (emphasis mine): OpenTelemetry is a set of...