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

James EasthamHow to use Amazon SQS and SNS for inter-service communication - Part 2
In my last article in the Design.Build.Deploy series I configured my first application event handler...

bluepaperbirdsExit in Golang
Go is a popular programming language, that at first glance seems a bit like C/Java. The famous hello...

Sawit TrisirisatayawongBuilding a Simple REST API with Go
After recently joining Central Tech, I was given my first project: implement a new product creation a...

Antonio SánchezCORS and OPTIONS problems with Go and Angular
How to quickly solve the CORS and OPTIONS problems working with Go and Angular

Athul Cyriac From 0 to Go, Building a CLI for Postwoman
"All power is within you. You can do anything and everything. Believe in that" - Swami Vivekananda...

Jesse PhillipsAnonymous Class
An anonymous class is a way to provide a structured type which has no name making it optimal for sing...

maxwellhertzA Go Microservices Demo using Go kit And API Gateway Pattern
Go kit is a popular Go microservices framework. I've found it quite interesting but lacking clear and...

Ben ChurchWriting a Reverse Proxy in just one line with Go
Leave your programming language hang ups at the door and come admire the best standard library I’ve e...

Example Golang with GraphQl
Hello friends! I'm glad to present a small project, which has the following...

bluepaperbirdsExponents in Golang
You can use exponents in Golang (Exponents are shorthand for repeated multiplication of the same thin...

Alex RiosHow to use your private Go lib in Github Actions
In this tutorial I'll use the fictional private repository called github.com/alexrios/superlib at the...

Arpit MohanMaking Python programs fast & why Go’s tooling is an undervalued tech
TL;DR notes from articles I read today. Making Python programs blazingly fast Find what...

bluepaperbirdsSorting in Golang
Sorting numbers in Golang is nothing like C. If you don't know about the C language, it makes you wri...

HMReplace json values using a mapping json
Problem statement Given an input JSON like this { "results": [ {...

Roelof Jan ElsingaWhat I learned from publishing my first Golang package
Box icon made by Freepik from www.flaticon.com What I learned from publishing my first...

bluepaperbirdsGolang loops
A loop lets you repeat code. There are different types of loops, one of them is a for loop. For loops...