#525 — October 1, 2024
Unsub | Web Version
Go Weekly
Prep: Compile-Time Function Evaluation for Go — “By using prep.Comptime, you can evaluate functions at build time, replacing them with their computed results. Just like co...
In Managing your Go tool versions with go.mod and a tools.go, I mentioned how you can use a tools.go to track any dependencies your project needs for i.e. linting or go generates.
This is a very useful pattern and until the proposal to add a // tool directive in go.mod lands, is...
A new release of the Microsoft build of Go is now available for download.
The post Go 1.23.1-3 and 1.22.7-3 Microsoft builds now available appeared first on Microsoft for Go Developers.
Introduction:
Welcome to Episode 2 of the Fearless Concurrency in Rust series! In this episode, Herbert Wolverson dives into the fundamentals of threading in Rust, demonstrating how to use Rust’s threading capabilities effectively while maintaining safety. The focus is on using...
#524 — September 24, 2024
Unsub | Web Version
Go Weekly
What's in an (Alias) Name? — Generic alias types are coming to Go 1.24 (expected in February 2025) in line with this proposal, building on both type aliases and generics....
The blog has moved to maragu.dev.
Introduction:
Welcome to the final episode of our Intro to Generative AI series! In this episode, Daniel Whitenack takes the concepts you’ve been learning and shows you how to apply advanced techniques like message chaining and factuality scoring to make your AI-driven syst...
Recently I’ve been motivated to learn more about functional programming and the name OCaml came up quite a few times. I have seen some praise about it from the people I follow on social media and decided to give it a try. I finally finished a small project in OCaml and woul...