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

The case for `self` receivers in Go
go2022-09-04
Cody PotterCody Potter

The case for `self` receivers in Go

Ok ok, hear me out. I know you're already lighting torches and sharpening your pitchforks (Side note:...

Day 2: I Was Told There Would Be No Math (Part 1)
go2022-09-05
Damien SedgwickDamien Sedgwick

Day 2: I Was Told There Would Be No Math (Part 1)

It is time for another Advent of Code 2015 walkthrough and today we are looking at day 2, part 1, "I...

Linked list golang and python
go2022-09-05
vinayvinay

Linked list golang and python

class Node: def __init__(self,value): self.value = value self.adress=None #...

Layered Architectures in Go
go2022-09-04
Cody PotterCody Potter

Layered Architectures in Go

Motivation There is a need to implement consistent architectural language in large Go...

อธิบาย package fmt เบื้องต้นในภาษา Go
go2022-09-04
Pallat AnchaleechamaikornPallat Anchaleechamaikorn

อธิบาย package fmt เบื้องต้นในภาษา Go

สำหรับคนที่เพิ่งเริ่มต้นเขียนภาษา Go ใหม่ๆ อาจจะยังไม่คุ้นชินกับการใช้ package fmt...

Ways to Define Custom Command-Line Flags in Golang
go2022-09-03
Clavin JuneClavin June

Ways to Define Custom Command-Line Flags in Golang

Introduction If you're familiar with command-line interfaces, you might have seen flags...

Go - Arrays and Slices
go2022-09-03
Chiranjeevi TirunagariChiranjeevi Tirunagari

Go - Arrays and Slices

Introduction Welcome back to the Part 5 of Go lang series. In Part 2:...

How to get a part or section of an array in Go or Golang?
go2022-09-02
MELVIN GEORGEMELVIN GEORGE

How to get a part or section of an array in Go or Golang?

Originally posted here! To get a part or section of an array, you have to use the concept of Slices...

How to add values or elements to a specific index in an array in Go or Golang?
go2022-09-02
MELVIN GEORGEMELVIN GEORGE

How to add values or elements to a specific index in an array in Go or Golang?

Originally posted here! To add values or elements to a specific index in an array in Go or Golang,...

Accelerate your local development environment with Tilt
go2022-09-01
Elton MinettoElton Minetto

Accelerate your local development environment with Tilt

Accelerate your local development environment with Tilt

[TechStory]: Trying to shutdown a gin server... (goroutines and channels tips)
go2022-09-01
Mohammad Reza KarimiMohammad Reza Karimi

[TechStory]: Trying to shutdown a gin server... (goroutines and channels tips)

Today, I was trying to gracefully shutdown my gin server and start it again through the application...

Taking Go Generics for a Spin
programming2022-09-01
Daniel Emod KovacsDaniel Emod Kovacs

Taking Go Generics for a Spin

Generics are a part of most major programming language as a way to use types as parameters to...

How to create a fixed-size array in Go or Golang?
go2022-08-31
MELVIN GEORGEMELVIN GEORGE

How to create a fixed-size array in Go or Golang?

Originally posted here! To create a fixed-size array in Go or Golang, you need to write the []...

Working with Google Fit API using Go package "fitness"
go2022-08-31
Anastasia PenkovaAnastasia Penkova

Working with Google Fit API using Go package "fitness"

Google Fit API can be a bit confusing in the beginning and during learning its API I faced many...

How to Get Started with OpenTelemetry Go
go2022-08-31
Michael HabermanMichael Haberman

How to Get Started with OpenTelemetry Go

In this guide, you will learn hands-on how to create and visualize traces with OpenTelemetry Go...

Go Integration Tests using Testcontainers
go2022-08-29
Jan StamerJan Stamer

Go Integration Tests using Testcontainers

How do you test your Go application is working properly with a real Postgres database? Right, you need to test against a real db. You'll learn how easy it is to write integration tests for your Go application using Testcontainers and Docker.