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

Proper HTTP shutdown in Go
go2023-08-15
Momchil AtanasovMomchil Atanasov

Proper HTTP shutdown in Go

Up to this day, I continue to come across code that has problems with shutting down an HTTP server...

Handling JSON in Go
go2023-08-17
Homayoon AlimohammadiHomayoon Alimohammadi

Handling JSON in Go

In Go, the encoding/json package offers built-in JSON marshaling and unmarshaling capabilities,...

The Golang Saga: A Coder’s Journey There and Back Again. Part 3: The Graphing Conundrum
tutorial2023-08-16
Olga BraginskayaOlga Braginskaya

The Golang Saga: A Coder’s Journey There and Back Again. Part 3: The Graphing Conundrum

Welcome back to the third part of “The Golang Saga: A Coder’s Journey There and Back Again.” In the...

We moved our Cloud operations to a Kubernetes Operator
kubernetes2023-08-15
Steven SklarSteven Sklar

We moved our Cloud operations to a Kubernetes Operator

How QuestDB adopted the Kubernetes Operator pattern to manage our Cloud

Using code coverage to debug large Go application
go2023-08-15
Viacheslav PoturaevViacheslav Poturaev

Using code coverage to debug large Go application

Code coverage is typically used as a code quality metric. One can run go test -coverpkg ./......

GoLang Reverse Engineering & Hacking
reverseengineering2023-08-15
RakeRake

GoLang Reverse Engineering & Hacking

GoLang Reverse Engineering GoLang, a prominent programming language, is not just confined...

Stubbing AWS Service calls in Golang
go2023-08-15
Joris ConijnJoris Conijn

Stubbing AWS Service calls in Golang

I recently switched to Golang for my language of choice. (In my previous blog you can read why.) But...

Build a web scraper with Go
go2023-08-12
ClaudClaud

Build a web scraper with Go

Introduction 👣 In this tutorial, we will walk through the process of building a web...

Wakapi - Open-Source Time Tracking for Devs
showdev2023-08-15
Ferdinand MütschFerdinand Mütsch

Wakapi - Open-Source Time Tracking for Devs

Hi all! I want to share with you an open-source project that I started back during my studies and am...

9. Zinx Connection Management and Property Setting
zinx2023-08-15
AceldAceld

9. Zinx Connection Management and Property Setting

[Zinx] <1.Building Basic Services with Zinx Framework> <2. Zinx-V0.2 Simple...

How to build a URL Shortener with Go
go2023-08-11
Ekemini SamuelEkemini Samuel

How to build a URL Shortener with Go

Say you've created a Google doc or saw a link to a video and want to share it with your friend, but...

How to pretty print json with golang ?
go2023-08-13
Akrem ChabchoubAkrem Chabchoub

How to pretty print json with golang ?

As you know by default in Go you will use fmt to print json data, this is ok but the data will be not...

YAConfigLib - Dynamic Configurations in Go: Introducing Postprocessing Hooks
go2023-08-14
Volker SchukaiVolker Schukai

YAConfigLib - Dynamic Configurations in Go: Introducing Postprocessing Hooks

Hey Gophers! 🚀 Do you struggle with configuration files in different formats like JSON, YAML or TOML...

Understanding the Color type in Go
go2023-08-13
Momchil AtanasovMomchil Atanasov

Understanding the Color type in Go

While working on my personal projects, I have had to deal with Go's image package a number of times....

VOLTA - RabbitMQ`s framework that I`m working on.
go2023-07-10
AlexanderAlexander

VOLTA - RabbitMQ`s framework that I`m working on.

For the last couple of weeks, it has been a constant challenge to work with RabbitMQ in Golang. And...

[go] 使用 mockgen 測試 api
go2023-07-10
maxhumaxhu

[go] 使用 mockgen 測試 api

目的 github: mockgen mockgen 的做法是使用 cli 的方式,參考已建立好的 interface 建立 mock...