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

When <nil> is not <nil>
go2022-10-10
Hercules Lemke MerscherHercules Lemke Merscher

When <nil> is not <nil>

You might have already heard that the null reference is the billion-dollar mistake in programming...

Why doesn't Go have Ternary?
go2022-10-09
Allison PiovaniAllison Piovani

Why doesn't Go have Ternary?

One things I miss most about Go is Ternary, coming from PHP and Node where the ternary is already...

Concurrency in Go-2(Go Channels)
go2022-10-10
Neeraj KumarNeeraj Kumar

Concurrency in Go-2(Go Channels)

The channel acts as a pipe by which we send typed values from one Goroutine to another. It guarantees...

Configure the release of your golang module with Github Actions
go2022-10-09
Juan VegaJuan Vega

Configure the release of your golang module with Github Actions

Building and distributing a golang module is relatively easy. You need to create a GitHub repository...

Go GUI: Trying out Fyne
go2022-10-09
Tonghe WangTonghe Wang

Go GUI: Trying out Fyne

The idea of building a piece of software once and run it everywhere is certainly charming. And Go...

LeetCode - Longest Common Subsequence
programming2022-10-09
Alkesh GhorpadeAlkesh Ghorpade

LeetCode - Longest Common Subsequence

LeetCode - return the length of their longest common subsequence in C++, Golang, and Javascript.

Hacktoberfest 2022 with Bytebase
hacktoberfest2022-10-09
Mila WuMila Wu

Hacktoberfest 2022 with Bytebase

It's almost October, the holiday season is almost upon us! 🎃For us hackers, it means that the annual...

Sending mails in Go the easy way
go2022-10-08
Winni NeessenWinni Neessen

Sending mails in Go the easy way

I recently read this article on dev.to about "How to Send Emails in Go". It seems to be a copy from a...

Build my own Kubernetes journey
kubernetes2022-10-07
Jonatan EzronJonatan Ezron

Build my own Kubernetes journey

I have been working on a new 'version' where the code is less coupled and more like Kubernetes where...

Advantages and Disadvantages of Go
go2022-10-08
Kuldeep SinghKuldeep Singh

Advantages and Disadvantages of Go

In this article we are going to learn about , What are the advantages of using go and why it’s so...

Quick and dirty copy embed.FS to another directory
go2022-10-07
Juan C. MullerJuan C. Muller

Quick and dirty copy embed.FS to another directory

// CopyDir copies the contents of an embedded FS in your binary // to some directory on disk. // f...

Important Rules of Go
beginners2022-10-07
Kuldeep SinghKuldeep Singh

Important Rules of Go

Golang has strict coding rules that are there to help developers avoid silly errors and bugs in...

Build own Kubernetes - Pods creation
kubernetes2022-10-07
Jonatan EzronJonatan Ezron

Build own Kubernetes - Pods creation

I have been working on a new 'version' where the code is less coupled and more like Kubernetes where...

Build own Kubernetes - Pods listing and deletion
kubernetes2022-10-07
Jonatan EzronJonatan Ezron

Build own Kubernetes - Pods listing and deletion

I have been working on a new 'version' where the code is less coupled and more like Kubernetes where...

00-Go สารบัญ
go2022-10-07
TypeNaNTypeNaN

00-Go สารบัญ

01-Go install

Transactional outbox. Part I.
microservices2022-10-06
Gealber MoralesGealber Morales

Transactional outbox. Part I.

This pattern also known as application events, try to solves the following problem. ...