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

Mutex Lock in Golang
go2022-03-04
Sonu Kumar SawSonu Kumar Saw

Mutex Lock in Golang

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

Golang's migration package for better database state management
go2022-03-04
Emil BuszyłoEmil Buszyło

Golang's migration package for better database state management

Table of Contents Introduction Create a migrator package Prepare AWS...

Go EventSourcing and CQRS microservice using EventStoreDB 👋⚡️💫
go2022-02-28
AlexanderAlexander

Go EventSourcing and CQRS microservice using EventStoreDB 👋⚡️💫

In this article let's try to create closer to real world Event Sourcing CQRS microservice using:...

How to Base64 encode and decode data in Golang
go2022-03-03
Kiran KrishnanKiran Krishnan

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

Crafting Middlewares In Go
go2022-03-03
salem ododasalem ododa

Crafting Middlewares In Go

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

CONNECT TO A POSTGRESQL DATABASE, CREATE TABLES, INSERT DATA, AND USE A FILE FROM A GITHUB PROJECT WITH GO
go2022-03-03
Thomas SüdbröckerThomas Südbröcker

CONNECT 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/).

DEBUG A KUBERNETES OPERATOR WRITTEN IN GO
go2022-03-03
Thomas SüdbröckerThomas Südbröcker

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

Golang: go get package from your private repo in Gitlab
go2022-03-02
BCBC

Golang: 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...

Golang: version your module
go2022-03-02
BCBC

Golang: version your module

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

Golang Oracle DB Example
go2022-03-02
Captain CorgiCaptain Corgi

Golang Oracle DB Example

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

Concurrency in modern programming languages: Rust vs Go vs Java vs Node.js vs Deno vs .NET 6
rust2022-02-04
Deepu K SasidharanDeepu K Sasidharan

Concurrency 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

Early Perspectives on Go Generics
go2022-03-01
Matt DaleMatt Dale

Early Perspectives on Go Generics

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

Golang Unit Test
tutorial2022-03-01
Corey LaiCorey Lai

Golang Unit Test

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

Make an HTTP GET request in Go
go2022-03-01
Kiran KrishnanKiran Krishnan

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

How to send an email with Go using SMTP
go2022-02-28
Kiran KrishnanKiran Krishnan

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

How to send an SMS with Go using Vonage SMS API
go2022-02-28
Kiran KrishnanKiran Krishnan

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