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

Go: Deep dive into net package learning from TCP server
go2022-01-13
Kazuki HigashiguchiKazuki Higashiguchi

Go: Deep dive into net package learning from TCP server

FYI: A previous title was “How Go handles network and system calls when TCP server”. Key...

How I found a good opener for Wordle
go2022-01-13
manuelmanuel

How I found a good opener for Wordle

How I found a good opener for Wordle

Dabbling with envoy - Part II
reverseproxy2022-01-13
Ishan KhareIshan Khare

Dabbling with envoy - Part II

Exploring the different options that envoy provides and how it forms the basics of service meshes

Golang: a simple echo server
go2022-01-13
BCBC

Golang: a simple echo server

It is really easy to write a TCP Echo server in Go. package main import ( "io" "log" ...

Property-Based Testing In Go
go2022-01-12
Adam Gordon BellAdam Gordon Bell

Property-Based Testing In Go

Have you ever wanted your unit tests written for you? Property based testing is a powerful testing...

Layered Architecture Clarification
go2022-01-12
ChunTing WuChunTing Wu

Layered Architecture Clarification

Layered architecture is a common pattern of an architecture design, and it is very suitable for a...

Como crear imágenes Distroless para Node.js y Go
devops2022-01-11
victorargentovictorargento

Como crear imágenes Distroless para Node.js y Go

¿Qué es una imagen Distroless? Las imágenes distroless están basadas en imágenes Debian,...

Code Your First Rest API in Golang
go2022-01-11
Gaurish SethiaGaurish Sethia

Code Your First Rest API in Golang

This tutorial would explain you about how you're going to code a basic rest api in golang, We'd be...

Go Programming - Redis
go2022-01-11
codebangkokcodebangkok

Go Programming - Redis

Go Programming - Redis Redis is an open source (BSD licensed), in-memory data structure...

Ignoring HTTP_PROXY environment vars in Go
go2022-01-11
Pavel KutáčPavel Kutáč

Ignoring HTTP_PROXY environment vars in Go

Standard HTTP library in Go reads the environment variables HTTP_PROXY, HTTPS_PROXY, and NO_PROXY....

Kickstart Your Journey as a Go Engineer in 4 Easy Steps
go2022-01-09
TalinaTalina

Kickstart Your Journey as a Go Engineer in 4 Easy Steps

A structured approach to learning goes a long way in maximizing your output as a developer. Why...

Context in Go
go2022-01-09
Dmytro KrasunDmytro Krasun

Context in Go

Go is a very pragmatic language. If there is a thing in the Go standard library, there is an actual...

Simple server on Gorilla WebSocket
go2022-01-08
DavidDavid

Simple server on Gorilla WebSocket

In this small tutorial, we'll take a closer look at using Gorilla WebSocket to write our own websocket server, at a more functional level than the [basic example](https://github.com/gorilla/websocket/tree/master/examples/echo) and easier to understand than the [chat example](https://github.com/gorilla/websocket/tree/master/examples/chat).

My first simple rest api using golang
go2022-01-09
Vishal DhapolaVishal Dhapola

My first simple rest api using golang

package main import ( "net/http" "github.com/gin-gonic/gin" ) type album struct { ID ...

Building a Redis client from scratch in Go
go2022-01-07
Maurício LinharesMaurício Linhares

Building a Redis client from scratch in Go

Writing applications that talk to each other over the network is something we do almost daily but we...

How to build a blockchain from scratch with Go
go2022-01-07
Matt AngelosantoMatt Angelosanto

How to build a blockchain from scratch with Go

Written by Solomon Esenyi ✏️ Blockchains are the underlying technology for many decentralized...