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

Mini Resource List for Golang
go2022-07-13
Kasia HilborneKasia Hilborne

Mini Resource List for Golang

This post includes a mini list with links to handy Golang resources. Golang...

Using Go Generics for cleaner code
go2022-07-14
Gonçalo RodriguesGonçalo Rodrigues

Using Go Generics for cleaner code

Go has been surviving for years without generics. The latest major version update (Go 1.18) finally...

Simple Golang HTTP server example
go2022-07-14
OnelinerhubOnelinerhub

Simple Golang HTTP server example

Creating HTTP server in Go is as simple as: package main import ( "fmt"; "net/http" ) func hi(w...

Printing formatted things in Go with Printf()
go2022-07-14
OnelinerhubOnelinerhub

Printing formatted things in Go with Printf()

Go allows formatting things and printing them using Printf() function (as well as most of other...

Open Source backend in just 1 File
go2022-07-12
muneebbugmuneebbug

Open Source backend in just 1 File

Hi, I'm Muneeb, Freelance Front-end Developer. I will keep the post short and to the point. So I came...

Write your Kubernetes Infrastructure as Go code - Getting started with cdk8s
kubernetes2022-07-14
Abhishek GuptaAbhishek Gupta

Write your Kubernetes Infrastructure as Go code - Getting started with cdk8s

Infrastructure as Code (IaC) is a well established paradigm and refers to the standard practice of...

Go Course: Workspaces
go2022-07-14
Karan Pratap SinghKaran Pratap Singh

Go Course: Workspaces

In this tutorial, we will learn about multi-module workspaces that were introduced in Go...

How To Manage Your Applications Go Environment with Goenv
go2022-07-13
ClivernClivern

How To Manage Your Applications Go Environment with Goenv

Goenv helps you to work with multiple golang versions at the same time whether on mac or linux...

Golang, observabilidade e métricas com SigNoz e OpenTelemetry
go2022-07-13
Vinícius BoscardinVinícius Boscardin

Golang, observabilidade e métricas com SigNoz e OpenTelemetry

Quem nunca passou por um aperto com uma api, endpoit, serviço ou qualquer coisa em produção e...

Go Course: Modules
go2022-07-13
Karan Pratap SinghKaran Pratap Singh

Go Course: Modules

In this tutorial, we will learn about modules. What are modules? Simply defined, A module...

Gerenciando as variáveis de ambiente do seu projeto Golang
go2022-07-13
Joubert RedRatJoubert RedRat

Gerenciando as variáveis de ambiente do seu projeto Golang

Olá pessoas, neste artigo iremos falar sobre uma maneira fácil que eu uso para gerenciar as variáveis...

Using Goroutines is Slower??
go2022-07-11
Jacob KimJacob Kim

Using Goroutines is Slower??

Ah, goroutines. One of the most defining features of the Go programming language. Once you understand...

Go Course: Functions
go2022-07-12
Karan Pratap SinghKaran Pratap Singh

Go Course: Functions

In this tutorial, we will discuss how we work with functions in Go. So, let's start with a simple...

How to elegantly implement a multi-database outbox pattern
programming2022-07-12
yedf2yedf2

How to elegantly implement a multi-database outbox pattern

Introduction to the Outbox pattern A microservice may need to perform two steps, "save...

Netenv Project
go2022-07-11
Itachi UchihaItachi Uchiha

Netenv Project

Hi. I created a project called netenv. It's a simple, network-based environment variable...

Go Course: Flow Control
go2022-07-11
Karan Pratap SinghKaran Pratap Singh

Go Course: Flow Control

Let's talk about flow control, starting with if/else. If/Else This works pretty much the...