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

Authentication with gin-gonic && gah for golang
go2020-01-10
Yaşar İÇLİYaşar İÇLİ

Authentication with gin-gonic && gah for golang

Let's do a simple authentication using gah.

Distributed Tracing with OpenTelemetry in Go
tracing2020-01-09
Yuri GrinshteynYuri Grinshteyn

Distributed Tracing with OpenTelemetry in Go

Toward the end of last year, I had the good fortune of publishing a reference guide on using OpenCens...

How to bufferize data in Go channels and act upon it
go2020-01-09
chrischris

How to bufferize data in Go channels and act upon it

This small tutorial will look into how to use Go channels as buffers and how to write code that will...

List files in a directory using Golang
go2020-01-09
Manigandan DharmalingamManigandan Dharmalingam

List files in a directory using Golang

We can get a list of files inside a folder on the file system using various Golang standard library f...

BitBanged SPI in Go, An Explanation
go2020-01-09
Lane WagnerLane Wagner

BitBanged SPI in Go, An Explanation

I’m going to focus mostly on some design decisions and how I went about writing an SPI interface...

How To Add Subnets To a VPC In AWS Using Pulumi And Golang
go2020-01-09
Leon StigterLeon Stigter

How To Add Subnets To a VPC In AWS Using Pulumi And Golang

In the previous post, I looked at Pulumi to create a VPC. In this post, I’ll go over the steps to add...

Go channels in JS (Bonus 1): nil channel
javascript2020-01-08
Nicolas LepageNicolas Lepage

Go channels in JS (Bonus 1): nil channel

This is a bonus post in the "Go channels in JS" series about how I wrote in JavaScript the equivalent...

Escape analysis in Go Part-2
go2020-01-08
HMHM

Escape analysis in Go Part-2

Escape analysis in Go Part-2 In this post we will see how Go slices are assigned to heap o...

Get daily earthquake data from the USGS using Go
go2020-01-07
Christopher KonopkaChristopher Konopka

Get daily earthquake data from the USGS using Go

Use the USGS earthquake API endpoint to get a list of daily earthquake locations and magnitudes.

Escape analysis in Go Part-1
go2020-01-08
HMHM

Escape analysis in Go Part-1

Although there are a few great articles on escape-analysis for go, this post is my attempt to demyst...

What is async?
explainlikeimfive2020-01-07
Swastik BaranwalSwastik Baranwal

What is async?

What is async and when and why to use it? How async of Python is different from Go one? I am new to...

Logging for Gophers – Idiomatic Log Strategies in Go (Golang)
go2020-01-07
Lane WagnerLane Wagner

Logging for Gophers – Idiomatic Log Strategies in Go (Golang)

In this article, I’m going to cover some rules of thumb for logging in go, as well as some...

How to create a CLI in golang with cobra
go2020-01-07
Shubham ChadokarShubham Chadokar

How to create a CLI in golang with cobra

Ever wanted to create your own cli. Check out my article published on Medium. Article Link Shubham...

How I setup golang on docker and deploy it to Heroku
go2020-01-06
Boluwatife FakoredeBoluwatife Fakorede

How I setup golang on docker and deploy it to Heroku

Hello dear reader, This post came as a result of my recent pain point which was figuring out how to...

How To Create a VPC In AWS Using Pulumi And Golang
go2020-01-07
Leon StigterLeon Stigter

How To Create a VPC In AWS Using Pulumi And Golang

The source code you write as a developer is important, but it is only one part of the entire...

Go AWS Notes: KMS - Decryption
aws2020-01-06
Roberto GuerraRoberto Guerra

Go AWS Notes: KMS - Decryption

I use KMS for serverless apps when I want to put some secrets as an environment variable (Yes, I know...