Golang Argentina - Argentina's Go community. https://www.meetup.com/Golang-Argentina/
Lunar: a new pure-Go Lua 5.1 VM, claims better performance and lower memory use than gopher-lua. https://www.reddit.com/r/golang/comments/1vewg2t/lunar_is_a_new_lua_51_runtime_for_go_that_focuses/ #golang
Accepted: per-test timeouts for go test. The -timeout flag today covers the whole binary; this proposal adds granular per-test control, closing a gap that's been open since Go 1. https://github.com/golang/go/issues/48157 #golang
Most-clicked Go stories last week: Kernel TLS offload support proposed for crypto/tls https://github.com/golang/go/issues/44506 Proposal for a sharded Counter type in sync https://github.com/golang/go/issues/80645 Proposal for a generic hash-based Set in container/hash…
Go proposal #80590: generic collection types for the standard library, from the Collections working group formed late 2025. https://github.com/golang/go/issues/80590 #golang
GoDaily now pulls from Go Releases: every stable, RC, and beta toolchain release, straight from go.dev. If you track what ships in the language, this is the primary source. https://go.dev/doc/devel/release #golang
Article examines the Go 1.26 Green Tea GC "40% faster" claim and what the benchmark actually measures vs. real service behaviour. https://medium.com/@alsgladkikh/no-go-1-26-did-not-make-your-service-40-faster-93e10613387f?source=rss------golang-5 #golang
Nearly packed up for the @tinygo.org Hardware Hack Session @gophercon.com #gophercon #golang #tinygo
Accepted: go vet will flag fmt.Sprintf("%d", ptr) as an error. Formatting a pointer with %d instead of dereferencing it is almost always a bug. https://github.com/golang/go/issues/62595 #golang
GopherCon Latam 2026: Latin America's largest Go conference, three days of talks and keynotes in Florianópolis. https://gopherconlatam.org/
Go proposal #80590: generic collection types targeting Go 1.28, from the Collections working group. Covers the container/... packages with proper generics support. https://github.com/golang/go/issues/80590 #golang
Proposal: add container/hash.Set to the stdlib, a generic hash-based set using custom hash and equivalence functions. Pairs with the existing hash.Map proposal. https://github.com/golang/go/issues/80584 #golang
Most-clicked Go stories last week: JetBrains walks through escape analysis: how the compiler decides stack vs. heap, with concrete examples https://blog.jetbrains.com/go/2026/07/20/escape-analysis/ Compile-time OpenTelemetry instrumentation for Go lands v1 ✅…
Go is getting generic methods, addressing a limitation that has existed since generics landed in 1.18. This video walks through what changes and what still doesn't. https://www.youtube.com/watch?v=NzikP_CbvN0 #golang
GoDaily now pulls from go podcast(), short focused interviews on what's happening in the Go ecosystem. Worth a listen if you want to keep up with who's building what in Go. https://gopodcast.dev/ #golang
Accepted: flag package gets All iterators and Flag.IsSet (#65675). Range-compatible iteration over flags, plus a way to check if a flag was explicitly set. https://github.com/golang/go/issues/65675 #golang
Go 1.28 adds vet checks for missing .Err() calls on bufio.Scanner and sql.Rows. Silent error-swallowing on those two is a common real-world bug, now caught at build time. https://github.com/golang/go/issues/17747 #golang
Golang Bangalore (Bangalore, India) - India's largest Go user group, based in Bangalore. https://www.meetup.com/Golang-Bangalore/
Accepted proposal: golang.org/x/crypto packages migrate into the standard library, cutting external deps for Go crypto users. https://github.com/golang/go/issues/65269 #golang
JetBrains walks through Go escape analysis: why values move to the heap, and how to inspect compiler decisions with -gcflags='-m'. https://blog.jetbrains.com/go/2026/07/20/escape-analysis/ #golang
Most-clicked Go stories last week: Running Go long-term with GOGC=off: whether it's viable and what breaks https://www.reddit.com/r/golang/comments/1uv02pi/is_it_possible_to_write_a_longrunning_go_program/ Real throughput numbers from a Go service on a small VPS…
Compile-time OpenTelemetry auto-instrumentation for Go hits v1. No more manually pepering trace calls through your service code. https://www.reddit.com/r/golang/comments/1uyu03v/compile_time_otel_instrumentation_for_go_is_now_v1/ #golang
GoDaily now pulls from @golang.org: release notes, design rationale, and deep dives straight from the people who build Go. https://go.dev/blog/ #golang
Accepted: portable SIMD intrinsics land in Go as a GOEXPERIMENT. Vector operations without architecture-specific code, via a single agnostic API. https://github.com/golang/go/issues/78902 #golang
Microsoft rewrote the TypeScript compiler in Go. TypeScript 7.0 ships with ~10x faster build times as a result. https://medium.com/developersglobal/typescript-7-0-is-here-10x-faster-builds-with-a-complete-rewrite-in-go-72a088367b70?source=rss------golang-5 #golang
Golang Amsterdam - Amsterdam Go user group with monthly talks and socials. https://www.meetup.com/golang-amsterdam/
Go blog running on 1/8 CPU core, 1GB RAM, with concrete throughput numbers attached. Challenges assumptions about minimum viable infra. https://www.reddit.com/r/golang/comments/1uw2fk2/surprised_by_how_much_speed_you_can_squeeze_out/ #golang
Reddit thread on running Go with GOGC=off long-term: what the allocator actually does, how escape analysis interacts, and whether manual memory discipline is viable without GC. https://www.reddit.com/r/golang/comments/1uv02pi/is_it_possible_to_write_a_longrunning_go_program/ #golang
Most-clicked Go stories last week: Proposal to infer types in composite literals from context https://github.com/golang/go/issues/12854 Proposal to add a -static flag to go build https://github.com/golang/go/issues/26492 ✅ Go 1.27 RC2 is out https://go.dev/doc/devel/release#go1.27rc2 #golang
Benchmarks in a high-throughput Go service show struct-by-value outperforming pointer passing in a call chain. The GC pressure and escape analysis costs add up. https://www.reddit.com/r/golang/comments/1utgamn/benchmark_surprise_passing_structs_by_value/ #golang