#​464 — June 13, 2023

Unsub  |  Web Version

✍️ If you're intrigued about domain-driven design (DDD), we've got an interview with Matt Boyle, the author of Domain-Driven Design with Go – it's at the end of today's issue.
__
Your editor, Peter Cooper

Together with  Ardan Labs

Go Weekly

An Update on Go Toolchains — Russ Cox noted that “many people believe the go line in the go.mod file specifies which Go toolchain to use.” Not so.. but from Go 1.21 the go command will use its own bundled toolchain if that toolchain is at least as new as the go or toolchain lines in the module/workspace. If the toolchain is outdated, the newer version will be obtained. The official docs have been significantly extended to explain the situation.

Official Go Site

🎉  Ebitengine's Game Jam to Celebrate Its 10th Birthday — Beginning this Thursday, this game jam is a two-week event encouraging participants to build games with Go's popular Ebitengine 2D game library. Formerly known as Ebiten, Ebitengine has turned 10 years old and supports a variety of platforms including the Nintendo Switch.

Siôn le Roux and Hajime Hoshi

Go! Experts at Your Service — Do you need help filling skill gaps, speeding up development & creating high performing software with Go, Docker, K8s, Terraform and Rust? We’ll help you maximize your architecture, structure, tech-debt and human capital.

Ardan Labs Consulting sponsor

Writing a Go Fuzz Target — The third in a four-part series on random and fuzz-testing. John breaks down a simple, but complete, fuzz test to show the right way to do things, in this case to surface a common kind of Go bug: accidentally mixing up bytes with runes.

John Arundel (Bitfield Consulting)

Caching Go Tests in CI — As the number of tests in their monorepo increased, this team’s test-related CI workflows got slower and slower, but Go’s test caching features helped turn things around getting times down from minutes to seconds in many cases.

Benjamin Yolken

Using Pointers to Reduce Copies is Premature Optimization? — Is using pointers to avoid values being copied onto the stack always a win when dealing with large amounts of data? It’s another “it depends” situation, but it’s not something you should immediately reach for as a default.

Dan the Individual

IN BRIEF:

  • Go 1.20.5 and 1.19.10 were released including three security fixes.

  • Should Go have a built-in zero function to get the zero value of a type? (e.g. "" for strings, false for booleans, 0 for numeric types..) No-one seems very convinced so far.

Scrubbing Sensitive Data at 180MB/Sec/Core — To protect sensitive data, Encore implemented a streaming ‘scrubber’ for JSON data that uses static analysis to determine which fields need to be scrubbed. Their approach is fast even “without any serious optimization effort put in.”

Dominic Black (Encore)

Raspberry Pi Coding in Go: Traffic Lights — As you might expect, this is more about setup and cross-compiling (plus you need some actual lights), but working with Raspberry Pis is always interesting and Go is a reasonable fit here.

Simon Prickett

Troubleshooting Kubernetes Networking Issues — First of a series of blogs on the most common failures we've encountered with Kubernetes across a variety of deployments.

Teleport | goteleport.com sponsor

Process Huge Log Files with Go vs Python — With several gigabytes of logs to process and with Python taking a long time to do it, Madhur gave Go a try and came away pleasantly surprised with the performance difference.

Madhur Ahuja

🛠 Code & Tools

Geziyor: A Web Crawling and Scraping Framework — Boasts being able to crawl at many thousands requests per second and offers JavaScript rendering, caching, concurrency limits, automatic data exporting, proxy management, and more.

Musab Gültekin

Compress: Optimized Compression Packages — Covers a variety of compression standards like zstandard, S2, gzip, snappy, and zip.

Klaus Post

gotestsum 1.10: go test Runner with Optimized Output and Summaries — Adds some niceties over the top of go test with a ‘watch’ mode to re-run tests when files are updated, the ability to run a command after a run (perhaps for an OS notification), and more human friendly test output along with a summary of each run.

Daniel Nephin et al.

Temporal 101 & 102 Courses in Go — Learn Temporal's open source key concepts and best practices with our free self-paced training courses in Go!

Temporal Technologies sponsor

A Repo to Use for Go Interview Prep — Getting ready to apply for a Go position? Matt Boyle has built this repo for you to practice on: “It’s a simple CRUD application but it has lots of smelly code, some security issues and poor design choices. Can you spot them all?”

Matt Boyle

💡 We also feature an interview with Matt on domain driven design, below.

Rapid 1.0: Property-Based Testing Library — Checks that properties you define hold for a large number of automatically generated test cases. If a failure is found, Rapid automatically minimizes the failing test case before presenting it.

Gregory Petrosyan

Spectagular: Spectacular Struct Tag Parsing“In general it’s not very often you need to parse struct tags, but if you do this library is designed to help by automatically converting struct tags to their expected value as well as cache/validate said values.”

Matthew Abrego

Matthew Boyle is an experienced technical leader in the field of distributed systems, specializing in using Go.

Currently an engineering manager at Cloudflare, but with enterprise and startup experience alike, he's the author of Domain-Driven Design with Go (published by Packt and also available from Amazon).

Can you sell Domain-Driven Design to us in a single paragraph?

Domain-Driven Design (DDD) is about ensuring your software matches the real-world problem space you’re designing for. This is powerful as it enables clearer communication with both technical and non-technical colleagues, typically leads to faster software development cycles and makes your software less brittle; meaning you can adapt it to new requirements.

What advice would you give to developers who are new to DDD and want to start incorporating it into their projects?

If there's one thing you take away from my book, it’s that DDD does not need to be "all or nothing" and you can be pragmatic about it. DDD promotes something called “ubiquitous language” which suggests that when specific words are used by your team, there should be no doubt about what they mean. An example of this is the term "user". If I ask marketing what a user is and an engineer what a user is, will they give the same answer?

By creating and publishing a definition for terms such as this that our team agrees on, we can ensure we're aligned. It also will make our code more robust as when we use the term "user", everyone will know exactly what we mean.

Can you share anything about the process of adopting DDD concepts, traditionally associated with OOP, to a more idiomatically Go approach?

I found a lot of the patterns translate fairly easily. For example, adapter patterns and the Open Host Service. Some things like the factory pattern tend to be less widely used in Go. In my book, I did my best to explain each pattern and call out the trade offs that are being made to make it work but I’m certainly open to challenge on it so please get in touch if you think I got it wrong!

In a recent post about writing the book, you expressed apprehension about taking on the responsibility of writing a book. Now it's done, how does it feel?

I had always wanted to write a book and will always be grateful for the opportunity to do so. It has also given me more opportunities since, such as this interview or appearing on the Go Time podcast and enabled me to engage more with folks in the Go community I look up to such as Mat Ryer, Jon Calhoun and Bill Kennedy.

Writing the book is one of the best things I have ever done professionally and I'd encourage others to give it a go!

Matt has been writing Go for production since 2018 and often shares blog posts and fun trivia about Go over on Twitter (@MattJamesBoyle).

ƛ And one for fun..

A Fast Mandelbrot Set Renderer using Goroutines — A little off the usually trodden path but the output looks fantastic, and it’s a cool demonstration of bringing together some math, image creation, and concurrency.

Jonas Weich

Jobs

Join the Gno.land Team — Get to gno us! Sign up for a Q&A with our team to learn about joining Gno.land and building the next-gen smart contract platform.
Gno.land

Find a Job Through Hired — Hired makes job hunting easy-instead of chasing recruiters, companies approach you with salary details up front. Create a free profile now.
Hired