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

Remove Nth from end of linked list
go2024-07-13
J FowlerJ Fowler

Remove Nth from end of linked list

In this post, I explore another linked list algorithm. This one is a bit harder. Create a function...

Detect cycle in linked list in Go
go2024-07-13
J FowlerJ Fowler

Detect cycle in linked list in Go

Another linked list algorithm. Detect a cycle in a linked list. This is actually not that bad....

Go versus Rust in 2024: Measuring the Best with 15 Benchmarks for Everyday Tasks
go2024-07-13
Paul NixerPaul Nixer

Go versus Rust in 2024: Measuring the Best with 15 Benchmarks for Everyday Tasks

This post idea was born in last several public and personal discussions with highlighting a lof of...

harlock v0.5.1 released
go2024-07-13
abatharghabathargh

harlock v0.5.1 released

It is with immense pleasure that I announce that version 0.5.1 off the harlock scripting language is...

Merge 2 sorted lists
go2024-07-13
J FowlerJ Fowler

Merge 2 sorted lists

Today, we look at another linked list task. Create a function to merge 2 sorted linked lists. The...

Unit Tests & Mocking: the Bread and the Butter
go2024-07-12
Ivan PesentiIvan Pesenti

Unit Tests & Mocking: the Bread and the Butter

Premise Welcome back, folks 🤝 After a while, I finally took the time to start this new...

Effortless HTTP Client Testing in Go
go2024-07-11
Calvin McLeanCalvin McLean

Effortless HTTP Client Testing in Go

Explore the benefits of VCR testing in Go with dnaeon/go-vcr

Tricky Golang interview questions - Part 6: NonBlocking Read
go2024-07-10
Harutyun MardirossianHarutyun Mardirossian

Tricky Golang interview questions - Part 6: NonBlocking Read

This problem is more related to code review. It requires knowledge about channels and select cases,...

Reverse a linked list in go
go2024-07-11
J FowlerJ Fowler

Reverse a linked list in go

This is a favorite question to give to new developers. Pretty simple if you have had a decent data...

How to install and configure Golang
go2024-07-11
Henrique LeiteHenrique Leite

How to install and configure Golang

In this article, you will see how to install Golang and configure it to use the private GitHub...

8 Essential Golang Programming Practices You Need to Master
go2024-07-11
LabbyLabby

8 Essential Golang Programming Practices You Need to Master

The article is about 8 essential Golang programming practices that every Golang enthusiast should master. It covers a wide range of topics, including sorting built-in types, error handling, working with Unix epoch time, exploring the `range` keyword, implementing a JSON comment interpreter, using the `goto` statement, reading files in Go, and synchronizing goroutines with channels. The article provides a comprehensive overview of these crucial Golang skills, offering detailed explanations and links to hands-on labs from the LabEx platform. Whether you're a beginner or an experienced Golang developer, this article is a must-read, as it will equip you with the knowledge and tools to take your Golang programming to the next level.

Case (IV) - KisFlow-Golang Stream Real- KisFlow in Message Queue (MQ) Applications
go2024-07-11
AceldAceld

Case (IV) - KisFlow-Golang Stream Real- KisFlow in Message Queue (MQ) Applications

Github: https://github.com/aceld/kis-flow Document:...

From TypeScript to Golang: A Smoother Backend Journey
go2024-07-10
Durgesh PandeyDurgesh Pandey

From TypeScript to Golang: A Smoother Backend Journey

For the past three years, I've been immersed in the world of backend development. During that time,...

The Ultimate Golang Framework for Microservices: GoFr
webdev2024-07-10
Umang MundhraUmang Mundhra

The Ultimate Golang Framework for Microservices: GoFr

Go is a multiparadigm, statically typed, and compiled programming language designed by Google. Many...

Building Ollama Cloud - Scaling Local Inference to the Cloud
cloudcomputing2024-07-08
Samy FodilSamy Fodil

Building Ollama Cloud - Scaling Local Inference to the Cloud

Ollama is primarily a wrapper around llama.cpp, designed for local inference tasks. It's not...

Test-driven API Development in Go
go2024-07-08
Calvin McLeanCalvin McLean

Test-driven API Development in Go

This article explores TDD and provides a step-by-step example for implementing it at the API-level in Go