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

Picking up from other languages
python2019-08-12
Ignacio Vergara KauselIgnacio Vergara Kausel

Picking up from other languages

After many years of doing Python, first as a hobbyist and then in a professional setting, I’ve had to...

Browser-side PDF processing with Go and WebAssembly
go2019-08-10
wcchoiwcchoi

Browser-side PDF processing with Go and WebAssembly

TLDR: This page demonstrates how to use WebAssembly (compiled from a tool called pdfcpu with Go v1.12...

My Journey of Go (Goroutines, Channels)
go2019-08-09
K-SatoK-Sato

My Journey of Go (Goroutines, Channels)

What are Goroutines? A goroutine is a lightweight thread managed by the Go runtime. ...

Using Golang as a scripting language
go2019-08-09
Elton MinettoElton Minetto

Using Golang as a scripting language

Using Golang as a scripting language

Stream a remote (Linux) screen with WebRTC
go2019-08-09
Rafael ViscarraRafael Viscarra

Stream a remote (Linux) screen with WebRTC

Recently I partcipated in a project that involved some server-side GPU rendering, due to the nature...

Go for SonarQube
go2019-08-08
Jan StamerJan Stamer

Go for SonarQube

Static code analysis is a great and easy way to discover bugs, race conditions, code smells or to...

My Journey of Go (Interfaces)
go2019-08-07
K-SatoK-Sato

My Journey of Go (Interfaces)

Interfaces in Go In Go, an interface is a set of method signatures. A variable of...

Speeding up Go Modules for Docker and CI
go2019-08-05
Sergey PonomarevSergey Ponomarev

Speeding up Go Modules for Docker and CI

Finally, the Golang world has a built-in, conventional dependency manager in the ecosystem: Go Module...

Access Docker Using Rest API
docker2019-08-05
DavinderDavinder

Access Docker Using Rest API

Most of the time we use Docker CLI to manage Docker Objects such as containers, images, volumes, and...

My Journey of Go (Maps, Ranges)
go2019-08-05
K-SatoK-Sato

My Journey of Go (Maps, Ranges)

Maps A map is an unordered collection of key-value pairs, where each key is unique. ...

My Journey of Go (Arrays, Slices)
go2019-08-04
K-SatoK-Sato

My Journey of Go (Arrays, Slices)

Arrays In Go, an array is a numbered sequence of elements of a single type with a fixed...

How to write a URL Shortener in Go
go2019-08-03
Nick NeisenNick Neisen

How to write a URL Shortener in Go

Exercise 2 of Gophercises was to create a URL shortener. The framework for this code was given and t...

My Journey of Go (Pointers, Structures)
go2019-08-03
K-SatoK-Sato

My Journey of Go (Pointers, Structures)

Pointers How to declare a pointer In brief, a pointer is a value which points...

How to build https servers with certificate lazy loading in Go
webdev2019-08-02
Amir KeshavarzAmir Keshavarz

How to build https servers with certificate lazy loading in Go

Go has become extremely popular between server programmers in recent years and as this rising...

Learn Go with "Hello, world" programs
helloworld2019-08-01
Rahul UpakareRahul Upakare

Learn Go with "Hello, world" programs

A "hello, world" program is a program which outputs or displays "hello, world" message. It often il...

My Journey of Go (Loops, Conditions)
go2019-08-01
K-SatoK-Sato

My Journey of Go (Loops, Conditions)

For For is Go's only looping construct. Basic for loop consists of three parts that are...