• 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 debug your Go application in VSCode
go2022-03-23
Hui`s Journal of TechnologyHui`s Journal of Technology

How to debug your Go application in VSCode

I am using VScode as my primary editor of coding, and I feel very excited by the VScode ecosystem....

RSMQ for golang
go2022-03-22
Ersin BuckleyErsin Buckley

RSMQ for golang

RSMQ is the most simple Queue Implementation in the known universe. My own implementation here comes...

Step-by-step to learn and optimize Dockerfile
go2022-03-22
Kevin WanKevin Wan

Step-by-step to learn and optimize Dockerfile

Background I worked around the clock and overtime to develop the simplest Go Hello world...

How to make a simple webserver in GO Lang
go2022-03-22
TawhidTawhid

How to make a simple webserver in GO Lang

Today,In this blog we will build a simple webserver in GO Lang to serve static files. Go is often...

Building microservices in Go with Fiber
go2022-03-22
Matt AngelosantoMatt Angelosanto

Building microservices in Go with Fiber

Written by Subha Chanda✏️ Go, designed by Google engineers Robert Griesemer, Rob Pike, and Ken...

Create Terraform Resource References in Go with hclwrite
go2022-03-22
Scott McAllisterScott McAllister

Create Terraform Resource References in Go with hclwrite

In our last post I introduced the hclwrite library from HashiCorp which allows you to write HashiCorp...

How I Scraped Michelin Guide Using Go
go2022-03-21
Jerry NgJerry Ng

How I Scraped Michelin Guide Using Go

At the beginning of the automobile era, Michelin, a tire company, created a travel guide, including a...

An opinionated way to build and maintain complex YAML documents
go2022-03-21
Luca SepeLuca Sepe

An opinionated way to build and maintain complex YAML documents

dirty - Directory to YAML Create YAML documents from a directory tree. Build a YAML...

How Slices Work in Go
beginners2022-03-21
Jacob KimJacob Kim

How Slices Work in Go

Go provides a way for us to group similar data using slices. I guess it's a rather unfamiliar term....

DevStream Codebase Walkthrough (Open-Source DevOps Tool Manager)
devops2022-03-21
Tiexin GuoTiexin Guo

DevStream Codebase Walkthrough (Open-Source DevOps Tool Manager)

Hello, and welcome to the DevStream blog! I know, the cover image has nothing to do with the content...

Operators in GO
go2022-03-21
ZammaCodeZammaCode

Operators in GO

Operators are used to perform operations on variables and values. Operators allow operands to be...

Building REST APIs in Golang go-gin with persistence database Postgres
go2022-03-20
Ramu MangalarapuRamu Mangalarapu

Building REST APIs in Golang go-gin with persistence database Postgres

Let's build REST APIs in Go using Gin web framework. I will adding authentication, docker image and...

Go from the beginning - using interfaces
go2022-03-20
Chris NoringChris Noring

Go from the beginning - using interfaces

In this part, we interfaces how they can be used to describe behavior you want your code to have

Behind the Scenes of Go Scheduler
go2022-03-19
Sourik GhoshSourik Ghosh

Behind the Scenes of Go Scheduler

what is the Go scheduler? Why do we even care? Well, it is the behind-the-scenes...

How I increased the performance of my database ~2x using an Adaptive Radix Trie
algorithms2022-03-19
FarhanFarhan

How I increased the performance of my database ~2x using an Adaptive Radix Trie

بسملة TLDR, ART increased performance of my database 2x when compared to a skiplist. The code for...

Trying Out Go v1.18 Generics
go2022-03-19
Mohamad HarithMohamad Harith

Trying Out Go v1.18 Generics

Generics allow us to write functions that can be used with arguments of any data type. The latest...