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

Implementing Golang's chan in TypeScript with @harnyk/chan
go2024-07-18
if err != nil {if err != nil {

Implementing Golang's chan in TypeScript with @harnyk/chan

Introduction Asynchronous programming in TypeScript can be challenging, especially when...

Suggestions for Contributing to Open Source
opensource2024-06-27
D10D10

Suggestions for Contributing to Open Source

Hi! I'm looking for an Open Source Project to contribute to and the search has been daunting. I was...

Sick of managing docker objects? This tool is for you...
docker2024-07-17
Ajay D.Ajay D.

Sick of managing docker objects? This tool is for you...

Consider this scenario, you are working on a project with your team and you use docker for...

Testcontainers + Golang: Melhorando seus testes com Docker
docker2024-07-17
Rafael PaziniRafael Pazini

Testcontainers + Golang: Melhorando seus testes com Docker

No desenvolvimento de software, testar aplicativos que dependem de serviços externos, como bancos de...

HTMX + Go : Build a CRUD App with Golang and HTMX
htmx2024-07-15
Fikayo AdepojuFikayo Adepoju

HTMX + Go : Build a CRUD App with Golang and HTMX

In this article, you will learn how to perform CRUD operations using HTMX and Go

Calling All Developers! Contribute to golly: Empower the Go Community Together 🚀
opensource2024-07-16
AdityaAditya

Calling All Developers! Contribute to golly: Empower the Go Community Together 🚀

Introduction: Hey there, Dev.to community! Are you passionate about Go programming and looking for a...

Golang: get package from own gitlab private repository with SSH
go2024-07-16
Agik SetiawanAgik Setiawan

Golang: get package from own gitlab private repository with SSH

Step 1 : Generate SSH token RSA in local computer with ssh-keygen Step 2 : Add ssh token to...

Making a HTTP server in Go
go2024-07-15
Enzo EnricoEnzo Enrico

Making a HTTP server in Go

I've stumbled upon Codecrafters a while ago, and the idea really caught my attention. Making real...

Dealing with Race Conditions: A Practical Example
concurrency2024-07-13
Christian SekiChristian Seki

Dealing with Race Conditions: A Practical Example

In your career, you'll encounter Schrödinger's cat problems, situations that sometimes work and...

🚀 Announcing the Ultimate Repository for Data Structures in Multiple Languages! 🚀
javascript2024-07-15
Harris AhmadHarris Ahmad

🚀 Announcing the Ultimate Repository for Data Structures in Multiple Languages! 🚀

I am excited to share my latest project, a comprehensive collection of data structures implemented in...

"Introducing FoodBuddy: My First Go Project! 🚀🍽️ Looking for Feedback to Improve! #GoLang"
go2024-07-03
Liju ThomasLiju Thomas

"Introducing FoodBuddy: My First Go Project! 🚀🍽️ Looking for Feedback to Improve! #GoLang"

🚀 Beginner here! A few weeks into Go with no prior web development experience, I built FoodBuddy, a...

Golang WebRTC. Como usar Pion 🌐LibreRemotePlay
webdev2024-07-14
PiterDevPiterDev

Golang WebRTC. Como usar Pion 🌐LibreRemotePlay

¿ Porqué debería elegir Go para crear una aplicación WebRTC 🤷‍♂️? WebRTC y Go es una...

Golang File Paths | Portable Path Operations
go2024-07-14
LabbyLabby

Golang File Paths | Portable Path Operations

In this lab, you will explore the usage of the `filepath` package in Go to perform various operations on file paths, including constructing portable paths, splitting paths into directory and file components, checking path absoluteness, finding file extensions, and determining relative paths between two paths.

Go and MongoDB: Building a CRUD API from Scratch
go2024-07-07
Mohd AquibMohd Aquib

Go and MongoDB: Building a CRUD API from Scratch

Want to create a dynamic web application with a robust backend? Look no further than Go and MongoDB!...

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