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

Sonu Kumar SawMutex Lock in Golang
This article was originally posted at ioscript.org While writing concurrent code in Golang, often...

Emil BuszyłoGolang's migration package for better database state management
Table of Contents Introduction Create a migrator package Prepare AWS...

AlexanderGo EventSourcing and CQRS microservice using EventStoreDB 👋⚡️💫
In this article let's try to create closer to real world Event Sourcing CQRS microservice using:...

Kiran KrishnanHow to Base64 encode and decode data in Golang
In this post, I'll show you Base64 encoding and decoding in Golang. Base64 encoding schemes are...

salem ododaCrafting Middlewares In Go
When you make a request (as a client) to a server, series of processing are carried out on the said...

Thomas SüdbröckerCONNECT TO A POSTGRESQL DATABASE, CREATE TABLES, INSERT DATA, AND USE A FILE FROM A GITHUB PROJECT WITH GO
This blog post covers the topic connect to a [PostgreSQL](https://www.postgresql.org/) database, create tables, insert data and use a file from a GitHub project and do the implementation with [GO](https://go.dev/).

Thomas SüdbröckerDEBUG A KUBERNETES OPERATOR WRITTEN IN GO
In this blog post I want to share how to debug a GO Operator on your local machine on macOS.

BCGolang: go get package from your private repo in Gitlab
We can use go get to install a module from our private repo. Say we have a private repo gomath that...

BCGolang: version your module
Quote the "Learning Golang" book: Go supports two ways for creating the different import...

Captain CorgiGolang Oracle DB Example
This is a small example of connect and use Oracle DB in Golang Check out at:...

Deepu K SasidharanConcurrency in modern programming languages: Rust vs Go vs Java vs Node.js vs Deno vs .NET 6
Building a concurrent web server in Rust, Go, JS, TS, .NET, and Java to compare concurrency performance

Matt DaleEarly Perspectives on Go Generics
Go 1.18 is scheduled for release sometime soon (originally Feb 2022) and will be the first version of...

Corey LaiGolang Unit Test
Golang Unit Test 使用 Go 進行單元測試 package main import "testing" func ...

Kiran KrishnanMake an HTTP GET request in Go
We’ll explore how to make an HTTP GET request in Go. We will fetch the JSON content from an API...

Kiran KrishnanHow to send an email with Go using SMTP
In this article, I'll show you how to send an email with Golang using SMTP. We'll be using the SMTP...

Kiran KrishnanHow to send an SMS with Go using Vonage SMS API
In this article, I'll show you how to send an SMS with Golang using Vonage SMS API Go to Vonage and...