In case you missed the memo, the Single Page Application hype period is over, and we’re now back to PHP and jQuery,
I mean rendering HTML on the server. I’m excited! It brings me back to the early 2000s when we were all web developers,
not frontend or backend engineer...
#510 — June 11, 2024
Unsub | Web Version
Go Weekly
An Applied Introduction to eBPF with Go — eBPF is a technology that allows running sandboxed programs within the Linux kernel, enabling a wide range of advanced networking, secu...
Introduction:
In this installment, Bill delves into the concept of load shedding in Go, explaining its importance in managing GoRoutines and ensuring clean shutdowns.
How to manage GoRoutines using a parent-child relationship model to prevent orphan GoRoutines.
The role of lo...
This weekend’s side quest: installing Starlink as my second internet provider.
Here’s how it went.
The Microsoft builds of the Go security patches released today, June 4, are now available for download.
The post Go 1.22.4-1 and 1.21.11-1 Microsoft builds now available appeared first on Microsoft for Go Developers.
#509 — June 4, 2024
Unsub | Web Version
🫣 We took a break last week, but forgot to notify you in advance - sorry! You didn't miss anything, and we're catching up with the past two weeks today :-)__Your editor, Peter Cooper
Go Weekly...
The new major version of GoReleaser is here!
Introduction:
In this detailed discussion, Bill delves into the critical aspects of networking within Kubernetes clusters, emphasizing the necessity of properly defining services to manage internal and external communication effectively.
Learn the critical role of service defin...
I recently needed to process some data from a Google Sheet in a Go program, and
was looking for the most straightforward way to do so on my local machine.
This post lists some approaches that I found to work, with full source code.
To access the Sheets API, you'll …
I've recently been doing some work to commit files directly to a GitHub repository using the API, as part of my work on dependency-management-data.
When you're updating a file with GitHub, you need to specify the sha of the file that you're updating, which can be retrieved in one...