惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

B
Blog RSS Feed
量子位
Recent Announcements
Recent Announcements
T
The Blog of Author Tim Ferriss
美团技术团队
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Blog — PlanetScale
Blog — PlanetScale
H
Help Net Security
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - Franky
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
宝玉的分享
宝玉的分享
大猫的无限游戏
大猫的无限游戏
V
Visual Studio Blog
博客园 - 聂微东
aimingoo的专栏
aimingoo的专栏
Microsoft Security Blog
Microsoft Security Blog
U
Unit 42
J
Java Code Geeks
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
IT之家
IT之家
Hugging Face - Blog
Hugging Face - Blog
腾讯CDC
L
LangChain Blog

Golang Weekly

Building cgo code without a C compiler? Go code can now run before your OS does Generic methods land in Go 1.27 A slightly unusual issue, in three acts An interactive tour of Go 1.27 A plan to bring generic collections to Go 1.28 Go can't kill a stuck goroutine Compile-time OpenTelemetry instrumentation for Go How Go makes TypeScript's compiler 10x faster Gin: 12 years, 88K stars, and zero broken APIs Comparing six Go cache designs Go 1.27 Release Candidate 1 Go security issues worth auditing for Go experiments, explained Generic methods are a-go for Go 1.27 pkg.go.dev gets an official API Why Cilium vendors every Go module in 2026 Three new Go proposals Golang Weekly Issue 598: April 24, 2026 What it takes to add new syntax to Go Golang Weekly Issue 596: April 10, 2026 Golang Weekly Issue 595: March 27, 2026 Golang Weekly Issue 594: March 20, 2026 Golang Weekly Issue 593: March 13, 2026
11 security fixes land in Go
2026-05-08 · via Golang Weekly

Go 1.26.3 and Go 1.25.10 Released with 11 Security Fixes — The headline issue is a module-proxy checksum bypass that lets untrusted proxies serve altered modules and Go toolchains, but areas as diverse as net/mail, go bug, net/http and html/template also get fixes. The proxy bug was found by an LLM, and over on Bluesky, Russ Cox apologized for its long-term presence.

Go Security Team

THREE GO PROPOSALS:

Notes From Optimizing CPU-Bound Go Hot Paths — Lessons learned from optimizing CPU-bound hot paths while porting Brotli to pure Go, including how Go’s abstractions can impact performance in hot loops, what does and doesn’t get inlined, and some workarounds.

Andrii Berezhynskyi

📄 Hoisting Wire Plumbing Out of Your Go Handlers – Write your Go handler plumbing once, not once per endpoint. Redowan Delowar

📄 A Gopher Meets a Crab – A Go developer's tale of spending time trying to "fit Rust into a Go-shaped brain." Paul Hinze

Solod v0.1: Go Ergonomics, Practical Stdlib, Native C Interop — For the past few months, Anton has been working on this system-level language with a Go syntax and no runtime. v0.1 has ports of key parts of the stdlib like io, bytes, fmt, os, time, and strings. This post includes benchmarks and examples, including how Solod can interface with SQLite.

Anton Zhiyanov

💡 There are some parallels in the Ruby world, where Ruby's creator, Matz, is working on Spinel, a compiler that similarly compiles a subset of Ruby to C.

Boring: A Single-Binary SSH Tunnel Manager — An SSH tunnel manager that "just works": single binary, TOML config, ssh_config compatibility, automatic reconnects, and a TUI for starting/stopping tunnels on demand.

Florian Becker

mvm: A Fresh Take on an 'Interpreter' for Go — Six years ago we first featured yaegi (Yaegi is Another Elegant Go Interpreter), a Go interpreter suitable for embedding into other apps. mvm, from the creator of yaegi, is a new take on the idea, instead compiling Go to bytecode for a VM to run.

Marc Vertes

💡 There's a web-based playground where you can give mvm a spin.