Using go fix to modernize Go code

Go 1.26 includes a new implementation of go fix that can help you use more modern features of Go.

How GoReleaser strengthened security through GitHub's Secure Open Source Fund

GoReleaser builds and ships release artifacts for thousands of projects, making it a high-value supply-chain target. That’s why we were thrilled to be selected for the third session of the GitHub Secure Open Source Fund.

Range-Over Functions in Go

Iteration has long been one of the more fragmented areas of Go, with developers relying on ad hoc patterns to traverse custom data structures. This article explores the range-over-functions experiment, a proposed evolution of the language that introduces a standardized iterator m...

Rust vs Go: ¿cuál elegir?

Un resumen de Rust y Go que destaca sus ventajas, señala lo que comparten y aclara sus diferencias clave. ¿Cuál deberías elegir?

Go 1.26.0-1 Microsoft build now available

A new release of the Microsoft build of Go is now available for download. The post Go 1.26.0-1 Microsoft build now available appeared first on Microsoft for Go Developers.

Go 1.26 brings Green Tea GC, SIMD operations, and secret mode

#​589 — February 13, 2026 Read the Web Version Go Weekly Go 1.26 Released Finally, the day we've all been waiting for! Go 1.26 has been released. It packs in a variety of syntax, runtime, and performance changes and improvements, with these be...

Rust vs Go

Which is a better choice, Rust or Go? Which language should you choose for your next project, and why? How do the two compare in areas like performance, simplicity, safety, features, scale, and concurrency?

Query Database Using Plain English

Introduction In this post you’ll see how you can create a system that allows users to query a relational database using plain English. This allows users not familiar with SQL or business intelligence systems to get insights from data. Setting Up If you want to follow along,...

Go 1.26 is released

Go 1.26 adds a new garbage collector, cgo overhead reduction, experimental simd/archsimd package, experimental runtime/secret package, and more.

The Bootstrap

When you write Go, a lot happens behind the scenes. Goroutines are lightweight, channels just work, memory is managed for you, and you never think about thread pools. All of that is powered by the Go runtime—a sophisticated piece of infrastructure that gets compiled into every...