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

Cody PotterThe case for `self` receivers in Go
Ok ok, hear me out. I know you're already lighting torches and sharpening your pitchforks (Side note:...

Damien SedgwickDay 2: I Was Told There Would Be No Math (Part 1)
It is time for another Advent of Code 2015 walkthrough and today we are looking at day 2, part 1, "I...

vinayLinked list golang and python
class Node: def __init__(self,value): self.value = value self.adress=None #...

Cody PotterLayered Architectures in Go
Motivation There is a need to implement consistent architectural language in large Go...

Pallat Anchaleechamaikornอธิบาย package fmt เบื้องต้นในภาษา Go
สำหรับคนที่เพิ่งเริ่มต้นเขียนภาษา Go ใหม่ๆ อาจจะยังไม่คุ้นชินกับการใช้ package fmt...

Clavin JuneWays to Define Custom Command-Line Flags in Golang
Introduction If you're familiar with command-line interfaces, you might have seen flags...

Chiranjeevi TirunagariGo - Arrays and Slices
Introduction Welcome back to the Part 5 of Go lang series. In Part 2:...

MELVIN GEORGEHow to get a part or section of an array in Go or Golang?
Originally posted here! To get a part or section of an array, you have to use the concept of Slices...

MELVIN GEORGEHow to add values or elements to a specific index in an array in Go or Golang?
Originally posted here! To add values or elements to a specific index in an array in Go or Golang,...

Accelerate your local development environment with Tilt
Accelerate your local development environment with Tilt
![[TechStory]: Trying to shutdown a gin server... (goroutines and channels tips)](https://media2.dev.to/dynamic/image/width=1000,height=500,fit=cover,gravity=auto,format=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fmp4h409a3sfzk79tb1fa.png)
Mohammad Reza Karimi[TechStory]: Trying to shutdown a gin server... (goroutines and channels tips)
Today, I was trying to gracefully shutdown my gin server and start it again through the application...

Daniel Emod KovacsTaking Go Generics for a Spin
Generics are a part of most major programming language as a way to use types as parameters to...

MELVIN GEORGEHow to create a fixed-size array in Go or Golang?
Originally posted here! To create a fixed-size array in Go or Golang, you need to write the []...

Anastasia PenkovaWorking with Google Fit API using Go package "fitness"
Google Fit API can be a bit confusing in the beginning and during learning its API I faced many...

Michael HabermanHow to Get Started with OpenTelemetry Go
In this guide, you will learn hands-on how to create and visualize traces with OpenTelemetry Go...

Jan StamerGo Integration Tests using Testcontainers
How do you test your Go application is working properly with a real Postgres database? Right, you need to test against a real db. You'll learn how easy it is to write integration tests for your Go application using Testcontainers and Docker.