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

Build a web API client in Go, Part 3: Define our client
go2020-04-20
Andy HaskellAndy Haskell

Build a web API client in Go, Part 3: Define our client

In part 1 of this tutorial, we saw how send requests to an API using the Go net/http client, and in p...

Using Go as a scripting language in Linux
go2020-04-18
Ignat KorchaginIgnat Korchagin

Using Go as a scripting language in Linux

This is a repost of my post from the Cloudflare Blog At Cloudflare we like Go. We use it in many in-...

Profiling Golang applications using pprof
go2020-04-20
Elton MinettoElton Minetto

Profiling Golang applications using pprof

In the last few weeks, Codenation has been experiencing very significant growth. Confirming the...

Build a web API client in Go, Part 2: Deserializing the data
go2020-04-20
Andy HaskellAndy Haskell

Build a web API client in Go, Part 2: Deserializing the data

In part 1 of this tutorial, we got an API key for the ClimaCell API, used it to connect to ClimaCell...

How to manage Go channels using range and close
go2020-04-20
Abhishek GuptaAbhishek Gupta

How to manage Go channels using range and close

This blog will go over how to use range to read data from a channel and close to shut it down. To...

How to install Golang in FreeBSD in 5 minutes
beginners2020-04-18
Jeremy MorganJeremy Morgan

How to install Golang in FreeBSD in 5 minutes

How to manually install the latest version of Go in FreeBSD 12

Learn a New Language: Ruby or Go?
discuss2020-04-09
Marc NevinMarc Nevin

Learn a New Language: Ruby or Go?

I'm lucky enough that I can take my time on lockdown to build some backlogged projects, draft some po...

gosli: a little attempt to bring a bit of LINQ to Golang
go2020-04-17
Dmitry BogomolovDmitry Bogomolov

gosli: a little attempt to bring a bit of LINQ to Golang

This post was originally posted on Medium: https://medium.com/@dmitrybogomolov/gosli-a-little-attempt...

Using lists in go with structs
beginners2020-04-17
Carlos Alarcon BCarlos Alarcon B

Using lists in go with structs

This is a basic example in go using container/list and structs. package main import "fmt" impor...

[Shortcut] Run function test in Golang and VsCode
go2020-04-16
Melvin SMelvin S

[Shortcut] Run function test in Golang and VsCode

No intro. I'm tired of always clicking the Run Test above the function test. So I thought, there m...

🌈 Merge Sort & Quick Sort in 5 Languages
computerscience2020-04-15
Sahil BondreSahil Bondre

🌈 Merge Sort & Quick Sort in 5 Languages

I am starting this new series wherein I analyse the code for algorithms in 5 languages: C++, Dart, Go...

A Simple JWT Go Package
go2020-04-14
Jose PalmaJose Palma

A Simple JWT Go Package

I just recently finished my second open source project. It is a simple Go package for creating, signi...

API Rest con Go (Golang) y PostgreSQL Parte 1
go2020-04-14
Orlando MonteverdeOrlando Monteverde

API Rest con Go (Golang) y PostgreSQL Parte 1

Desarrollo de una API Rest sencilla con Go y el motor de base de datos PostgreSQL. Requisit...

Go. A Frontend Developer Review.
go2020-04-12
Eduard Pochtar 👨‍💻Eduard Pochtar 👨‍💻

Go. A Frontend Developer Review.

Go review from frontend development point of view.

Evitando requisições duplicadas com singleflight 🇧🇷
go2020-04-12
Renato SueroRenato Suero

Evitando requisições duplicadas com singleflight 🇧🇷

Este pacote vai te ajudar quando estiver fazendo algo computacionalmente caro ou lento por tráfego de rede.

Managing Shared Components in Go Microservices with Fx
go2020-04-12
Preslav MihaylovPreslav Mihaylov

Managing Shared Components in Go Microservices with Fx

How to effectively manage shared code across your services