DEVELOPER NEWS STREAM
Direct logs, engine updates, and framework notifications parsed from curated RSS feeds and announcements, updated hourly.

Hercules Lemke MerscherWhen <nil> is not <nil>
You might have already heard that the null reference is the billion-dollar mistake in programming...

Allison PiovaniWhy doesn't Go have Ternary?
One things I miss most about Go is Ternary, coming from PHP and Node where the ternary is already...

Neeraj KumarConcurrency in Go-2(Go Channels)
The channel acts as a pipe by which we send typed values from one Goroutine to another. It guarantees...

Juan VegaConfigure 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...

Tonghe WangGo GUI: Trying out Fyne
The idea of building a piece of software once and run it everywhere is certainly charming. And Go...

Alkesh GhorpadeLeetCode - Longest Common Subsequence
LeetCode - return the length of their longest common subsequence in C++, Golang, and Javascript.

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

Winni NeessenSending 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...

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

Kuldeep SinghAdvantages 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...

Juan C. MullerQuick 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...

Kuldeep SinghImportant Rules of Go
Golang has strict coding rules that are there to help developers avoid silly errors and bugs in...

Jonatan EzronBuild own Kubernetes - Pods creation
I have been working on a new 'version' where the code is less coupled and more like Kubernetes where...

Jonatan EzronBuild 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...

TypeNaN00-Go สารบัญ
01-Go install

Gealber MoralesTransactional outbox. Part I.
This pattern also known as application events, try to solves the following problem. ...