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

Learning Go by examples: part 1 - Introduction & Installation
go2021-07-15
Aurélie VacheAurélie Vache

Learning Go by examples: part 1 - Introduction & Installation

Serie of article in order to learn Golang language by concrete applications as example

7 GitHub projects to make you a better Go Developer💥
go2021-07-13
Ankit Anand ✨Ankit Anand ✨

7 GitHub projects to make you a better Go Developer💥

Go is a compiled, concurrent, garbage-collected, statically typed language developed at Google. Go...

Developing Inside A Docker Container
docker2021-07-29
James D.James D.

Developing Inside A Docker Container

Now we are going to start getting into the weeds of leveraging docker. I think an easy way to start...

Rust: First Thoughts
rust2021-07-28
Alex PoulosAlex Poulos

Rust: First Thoughts

My third child, Maximus, was born this Spring, and thanks to a generous parental leave policy I’ve...

More Go RPC, using gorilla/rpc/json
go2021-07-28
elesqelesq

More Go RPC, using gorilla/rpc/json

Following on from an earlier post about Go and RPC, this time we're looking at gorilla/rpc and...

Merge several individual ssh configuration files to one single file in Golang
go2021-07-29
manuelmanuel

Merge several individual ssh configuration files to one single file in Golang

The easiest way to achieve this is to write something like cat ~/.ssh/config_* >> ~/.ssh/config...

Custom middleware basics with Go. No frameworks.
go2021-07-27
elesqelesq

Custom middleware basics with Go. No frameworks.

So you want to add some custom middleware to a Go api? There's many elegant and advanced ways to do...

Dockerize your Go app
go2021-07-24
Karan Pratap SinghKaran Pratap Singh

Dockerize your Go app

Go is quickly becoming one of my favorite languages to work with. So, today we'll dockerize our Go...

RPC with Go, what is it?
go2021-07-28
elesqelesq

RPC with Go, what is it?

OK, so we're going to have a look at RPC with Go. So what is RPC? RPC (remote procedure call) is a...

Laravel Octane: Compiling RoadRunner from Source
go2021-07-25
Peter FoxPeter Fox

Laravel Octane: Compiling RoadRunner from Source

Photo by Jean Gerber on Unsplash RoadRunner is one of the two options available for use with Laravel...

Test your Go web apps with httptest
go2021-07-23
Andy HaskellAndy Haskell

Test your Go web apps with httptest

In part 1 of this series, we looked at the basics of writing tests in Go with the testing.T type, and...

Getting the running Go version
go2021-07-24
Kelvin WangonyaKelvin Wangonya

Getting the running Go version

This would mostly be useful for debugging. package main import ( "log" "runtime" ) func...

Building Microservices in Go: Containerization using Docker
go2021-07-22
Mario CarrionMario Carrion

Building Microservices in Go: Containerization using Docker

In the past I covered Docker from different point of views, including creating small docker images,...

Data Constraints: From Imperative to Declarative
go2021-07-22
Kevin BurnsKevin Burns

Data Constraints: From Imperative to Declarative

Sharpening the fuzzy boundary between applications and their data structures

7 subjects (and GitHub repositories) to become a better Go Developer
productivity2021-07-11
Thiago AvelinoThiago Avelino

7 subjects (and GitHub repositories) to become a better Go Developer

With the high adoption of the Go language by developers and large companies, this has led companies...

Building Microservices in Go:  OpenTelemetry
go2021-07-15
Mario CarrionMario Carrion

Building Microservices in Go: OpenTelemetry

Original link What is OpenTelemetry? Source (emphasis mine): OpenTelemetry is a set of...