• OPENDEV HUB V1.0• API STATUS: 100% OPERATIONAL• CLIENT ENGINE: LOADED & CACHED• TRENDING TECH: TAILWIND V4, NEXT.JS 16, RUST, GO• ZERO AUTH REQUIRED
OPENDEVHUB

Command Palette

Search for a command to run...

DEVELOPER RELEASES

DEVELOPER NEWS STREAM

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

How to use Amazon SQS and SNS for inter-service communication - Part 2
aws2020-02-02
James EasthamJames Eastham

How 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...

Exit in Golang
go2020-02-02
bluepaperbirdsbluepaperbirds

Exit in Golang

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

Building a Simple REST API with Go
go2020-02-01
Sawit TrisirisatayawongSawit Trisirisatayawong

Building a Simple REST API with Go

After recently joining Central Tech, I was given my first project: implement a new product creation a...

CORS and OPTIONS problems with Go and Angular
go2020-02-01
Antonio SánchezAntonio Sánchez

CORS and OPTIONS problems with Go and Angular

How to quickly solve the CORS and OPTIONS problems working with Go and Angular

From 0 to Go, Building a CLI for Postwoman
go2020-02-01
Athul Cyriac 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...

Anonymous Class
dlang2020-02-01
Jesse PhillipsJesse Phillips

Anonymous Class

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

A Go Microservices Demo using Go kit And API Gateway Pattern
go2020-01-31
maxwellhertzmaxwellhertz

A 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...

Writing a Reverse Proxy in just one line with Go
go2020-01-31
Ben ChurchBen Church

Writing 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
go2020-01-31
Sergey TelpukSergey Telpuk

Example Golang with GraphQl

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

Exponents in Golang
go2020-01-31
bluepaperbirdsbluepaperbirds

Exponents in Golang

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

How to use your private Go lib in Github Actions
go2020-01-30
Alex RiosAlex Rios

How 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...

Making Python programs fast & why Go’s tooling is an undervalued tech
todayilearned2020-01-30
Arpit MohanArpit Mohan

Making 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...

Sorting in Golang
go2020-01-30
bluepaperbirdsbluepaperbirds

Sorting in Golang

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

Replace json values using a mapping json
go2020-01-30
HMHM

Replace json values using a mapping json

Problem statement Given an input JSON like this { "results": [ {...

What I learned from publishing my first Golang package
go2020-01-29
Roelof Jan ElsingaRoelof Jan Elsinga

What I learned from publishing my first Golang package

Box icon made by Freepik from www.flaticon.com What I learned from publishing my first...

Golang loops
go2020-01-29
bluepaperbirdsbluepaperbirds

Golang loops

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