Announcing GoReleaser v2.1

Winter is here (in the South America)! Let’s see whats new! Highlights new: before publish hooks (only on pro) new: cloudsmith publisher (only on pro) new: global metadata (only on pro) new: templated_extra_files support in artifactory and http publishers (only on pro) new:...

Let's get patching

#​514 — July 9, 2024 Unsub  |  Web Version Go Weekly Locally Patching Dependencies in Go — When you want to temporarily modify the code of a dependency (say, with a log statement or small change), go mod makes it super simple. Ther...

I think (GNU) Emacs bankruptcy is inevitable in the longer term

Will write for food

In the final sizzling chapter of my career exposé, we’ll learn how I went from self-unemployment to founding the world’s tiniest publishing empire.

Ep. 2: Mastering LLM Integration with Go and Prediction Guard

Introduction: Welcome to Episode 2 of our Intro to Generative AI series! In this segment, Daniel dives into the practical aspects of working with large language models (LLMs) using the Go programming language and the Prediction Guard API. Accessing LLMs: Learn how to set up and c...

Best Rust books for 2024

There are many Rust books, but these are my favourites—and I think you’ll like them too. Here are my top five “must read” Rust books, reviewed.

Locally patching dependencies in Go

In a previous post I talked about how each Go module is its own self-contained "virtual environment" during development. Among other benefits, this makes the dependencies of a module explicit and simple to tweak. Locally patching a dependency To use a concrete example,...

Go 1.22.5-1 and 1.21.12-1 Microsoft builds now available

The Microsoft builds of the Go security patches released today are now available for download. The post Go 1.22.5-1 and 1.21.12-1 Microsoft builds now available appeared first on Microsoft for Go Developers.

Ep. 8: Enhancing Go Application Security with JWT and OPA

Introduction: In this segment, Bill delves into the fundamental aspects of authentication and authorization, equipping Go developers with essential knowledge and advanced tools to enhance the security of their applications. Through practical examples and detailed explanations, he...

Writing generic collection types

#​513 — July 2, 2024 Unsub  |  Web Version Go Weekly Writing Generic Collection Types: The Missing Documentation — Go 1.18 introduced generics, but the author found practical examples and documentation on creating generic collectio...