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

JWT y Golang
go2022-10-01
Tomas Francisco LingottiTomas Francisco Lingotti

JWT y Golang

Bien sabemos lo complicado que es cubrir el 100% de los casos de uso cuando hablamos de registro de...

LeetCode - Evaluate Reverse Polish Notation
programming2022-10-01
Alkesh GhorpadeAlkesh Ghorpade

LeetCode - Evaluate Reverse Polish Notation

LeetCode - evaluate the value of an arithmetic expression in Reverse Polish Notation in C++, Golang, and Javascript.

Listing techproclub to hacktoberfest
hacktoberfest2022-10-01
Ezeana MichealEzeana Micheal

Listing techproclub to hacktoberfest

Introduction. It's that season again when open source projects and communities are at their peak....

[Go] Try PBKDF2 implementation
go2022-09-30
Masui MasanoriMasui Masanori

[Go] Try PBKDF2 implementation

Intro This time, I will try implementing a function for PBKDF2. Last time when I tried...

AWS Lambda in Go, running locally with SAM and Docker
aws2022-09-01
David GeeDavid Gee

AWS Lambda in Go, running locally with SAM and Docker

Serverless is game changing. Nuff said. For the sake of argument, serverless is everything I don’t...

A golang library to retry operations with exponential backoff
showdev2022-09-30
Juan VegaJuan Vega

A golang library to retry operations with exponential backoff

I have created go-again, a small library to retry operations using different timing algorithms. By...

Send Emails with Gmail API
go2022-09-29
Sofia TarhonskaSofia Tarhonska

Send Emails with Gmail API

Gmail is one of the most popular email services so far, and you will very probably want to use it as...

How to Build Golang Barcode QR Code Reader with Dynamsoft C++ Barcode SDK
go2022-09-30
Xiao LingXiao Ling

How to Build Golang Barcode QR Code Reader with Dynamsoft C++ Barcode SDK

In the world of software development, integrating powerful third-party libraries into new or existing...

Ferrum is a NextGen Auth Server (almost)
go2022-09-29
Ushakov MichaelUshakov Michael

Ferrum is a NextGen Auth Server (almost)

Authorization and Why we created Ferrum project Nowadays, almost all distributed, web or...

Go - Defer, Panic and Recover
devops2022-09-28
Chiranjeevi TirunagariChiranjeevi Tirunagari

Go - Defer, Panic and Recover

Introduction With the previous part (6), we finished basics in Go. Most of the topics...

Attempting to Learn Go - Ghost to Hugo 3
go2022-09-28
Steve LaytonSteve Layton

Attempting to Learn Go - Ghost to Hugo 3

Intro We’re back once again to continue our work on the ghost2hugo prototype. So far we...

Go from the beginning - arrays and slices
go2022-09-27
Chris NoringChris Noring

Go from the beginning - arrays and slices

In this article, we'll look at arrays and slices.

Multiple error handling in Go
go2022-09-27
Ryo YamaokaRyo Yamaoka

Multiple error handling in Go

Introducing Go's error handling techniques.

GoLang, Svelte, and Wails 2.0: Cross Platform Desktops just got even easier
go2022-09-27
ToulToul

GoLang, Svelte, and Wails 2.0: Cross Platform Desktops just got even easier

Intro In the past building, a desktop app required you to learn a completely different...

Be careful when working with Slice in Go
go2022-09-26
Ulrich WakeUlrich Wake

Be careful when working with Slice in Go

Go has array and slice data structure. Both of them are used to store sequence element with the same...

Go Series: Variable Declaration Best Practices & Gotchas
go2022-09-26
Arthur ChristophArthur Christoph

Go Series: Variable Declaration Best Practices & Gotchas

Declaring variables To declare a variable in go, you can either: Declare...