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

Ahmed AshrafTwitter @ShareAsPic app with Go & Chromedp
This blog is a translation of its Arabic version on my website. As a Facebook user when I see any te...

Asim AslamRuby is for Rails, Spring is for Java, Micro is for Go
Micro is a framework for Go based microservices development

Josh MichielsenSeparate Your Tests with Build Tags
Have you ever wanted to separate your unit tests from your integration or smoke tests? Go has a built...

Kassim Damilola ACommand-Line Flags with Go-Lang
Command-line flags are a common way to specify options for command-line exercutables or programs. Go provides a flag package supporting basic command-line flag parsing.

Joshua GillessFighting FUD
Fear, Uncertainty and Doubt creep in to our lives all over the place, we see it in real life everywhere, and programming often. What is it and how do we fight it?

Richard TaylorBuilding a BBC Sounds status bar app for macOS
Background I listen to the radio a lot while developing and after trying the available app...

Shiraaz MoollatjieIntroducing devtogo: A wrapper for the dev.to api written in Go
Introducing devtogo: A wrapper for the dev.to api written in Go ...

briansoleWaarom Golang? (Dutch)
Go is een algemene programmeertaal. Dit betekent dat je het kunt gebruiken voor wat je maar wilt (Why...

Arpit MohanCommon Go mistakes; making CD work; & zero-trust architecture
TL;DR style notes from articles I read today. I share these every weekday in my newsletter. You can s...

Andrew HealeyCloning Memcached with Go
My first program in Go was Conway's Game of Life. This time I made an in-memory HTTP caching server w...

Kix PanganibanGet Started with Uptime Monitoring using Bantay
One of the key metrics in DevOps is availability, that is: measuring how much, over a given period, y...

Patrick DeVivoManaging tickets and todos within your codebase - does it make sense? Looking for feedback
Hey everyone - I've begun working on a side project called tickgit, which I'm hoping is something tha...

Alex LeonhardtEnums in Go - why and how?
Go doesn't (yet) have enums as such, but it seems common to use constants with iota for this instead....

Domenico LucianiGo-ofile
The first phase in security assessment is focused on collecting as much information as possible about...
![[Go] Slices which point to the same array may cause side effect](https://media2.dev.to/dynamic/image/width=1000,height=420,fit=cover,gravity=auto,format=auto/https%3A%2F%2Fthepracticaldev.s3.amazonaws.com%2Fi%2Fw18m8l562k365o6llz0i.png)
Julian-Chu[Go] Slices which point to the same array may cause side effect
Relationship between slice and array A slice isn't an array, it's a struct which consists...
![A [Very] Simple Approach to Pointers in Go](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/3otvb2z646ytpt1hl2rv.jpg)
Ben McNichollA [Very] Simple Approach to Pointers in Go
This is in no way an all encompassing view on pointers, and there are one or two areas where the expl...