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

Seven days of Go
go2018-03-22
rhymesrhymes

Seven days of Go

Developing an API server in Go

Learn Go by writing tests: Structs, methods, interfaces & table driven tests
go2018-03-24
Chris JamesChris James

Learn Go by writing tests: Structs, methods, interfaces & table driven tests

Learn about structs, methods & interfaces in Go whilst practicing TDD

Using named return variables to capture panics in Go
go2018-03-26
Jon CalhounJon Calhoun

Using named return variables to capture panics in Go

Sometimes you can't help but call a function that might panic. Rather than letting it blow up your code, learn how to use a deferred function and named return variables in order to capture the result as a standard Go error.

Learn Go by writing tests
go2018-03-11
Chris JamesChris James

Learn Go by writing tests

Learn some basics of Go while practicing TDD

Continue goto in Golang
go2018-03-21
Teruo KunihiroTeruo Kunihiro

Continue goto in Golang

Sometimes We need to go out from loops or don't want to execute unnecessary part in the loop. At that...

Learn Go by writing Tests: Arrays and slices
go2018-03-17
Chris JamesChris James

Learn Go by writing Tests: Arrays and slices

Learn about arrays and slices in Go whilst practicing TDD

Driving web browser in Go
go2018-03-09
Yuen Ying KitYuen Ying Kit

Driving web browser in Go

Introduction to Agoutil.

PrxPass - A reverse-proxy self-hosted solution (aka local tunnel)
showdev2018-03-10
Sergey KislyakovSergey Kislyakov

PrxPass - A reverse-proxy self-hosted solution (aka local tunnel)

PrxPass is a reverse-proxy self-hosted server that works like ngrok or localtunnel

Plug & Play Machine Learning Models in GoLang
machinelearning2018-03-12
Michael TaylorMichael Taylor

Plug & Play Machine Learning Models in GoLang

How to use interfaces to make machine learning code more flexible

Securing Cookies in Go
go2018-03-09
Jon CalhounJon Calhoun

Securing Cookies in Go

Learn how to properly secure cookies from tampering, theft, XSS, CSRF, and more in Go.

graceful shutdown server with syg
go2018-03-10
nasa9084nasa9084

graceful shutdown server with syg

originally posted to blob.web-apps.tech Using github.com/nasa9084/syg, you can map signal to...

Video Processing with AWS Lambda + Elastic Transcoder in Golang
aws2018-03-07
mmyojimmyoji

Video Processing with AWS Lambda + Elastic Transcoder in Golang

I'm posting this because I could not find any blog posts with sample code for video processing with...

When Should I Use One Liner if...else Statements in Go?
go2018-03-06
Jon CalhounJon Calhoun

When Should I Use One Liner if...else Statements in Go?

After using Go for a few weeks, chances are you are going to run across a single-line if...else statement. Most often, you will see this with an err (eg if err := doStuff(); err != nil { ... }). This article discusses the situations where a one-liner is appropriate, and ones where it isn't a great fit.

syg: simply signal to callback mapping in Go
go2018-03-07
nasa9084nasa9084

syg: simply signal to callback mapping in Go

listen signals in Go has a little complexity. now you can use `syg` package.

How to let OOP world and dive in golang mindset?
go2018-03-02
Guilherme Soares ValdeviesoGuilherme Soares Valdevieso

How to let OOP world and dive in golang mindset?

Show me the way to do it correctly. :)

How to implement a signal handler in Go
go2018-02-27
syossan27syossan27

How to implement a signal handler in Go

How to implement a signal handler in Go