kuro
@io-kurokuro.bsky.social
📤 65
📥 285
📝 22
Software Engineer Gopher X:
https://x.com/knkurokuro7
Nice
blog.jetbrains.com/go/2026/03/0...
#golang
loading . . .
Best Practices for Secure Error Handling in Go | The GoLand Blog
This is a practical guide to secure error handling in Go applications. Learn how to prevent information leakage, safely log and propagate errors, design secure responses, and apply best practices to k...
https://blog.jetbrains.com/go/2026/03/02/secure-go-error-handling-best-practices/
9 days ago
0
2
1
Yeah, if it’s Go, govulncheck might be enough
words.filippo.io/dependabot/
#golang
loading . . .
Turn Dependabot Off
I recommend turning Dependabot off and replacing it with a pair of scheduled GitHub Actions, one running govulncheck, and the other running CI against the latest version of your dependencies.
https://words.filippo.io/dependabot/
28 days ago
0
1
0
It's great that I can watch it on YouTube. I'll watch it later.
#golang
www.youtube.com/live/MxPjWSs...
loading . . .
Go 1.26 Release Party
YouTube video by JetBrains
https://www.youtube.com/live/MxPjWSsgsiM
about 1 month ago
0
2
1
Agreed. The real innovation is the blocking semantics, not time travel.
oblique.security/blog/go-sync...
#golang
loading . . .
Go’s synctest is amazing | Oblique
We threw Go’s new “testing/synctest” package at a particularly gnarly part of our codebase and were pleasantly surprised by how effective it was.
https://oblique.security/blog/go-synctest/
about 1 month ago
0
1
0
google/jsonschema-go: inference + validation in one package. Perfect for LLM tool validation.
opensource.googleblog.com/2026/01/a-js...
#golang
loading . . .
A JSON schema package for Go
Explore Google's new Go JSON Schema package! Built to strengthen AI ecosystems with easy schema creation, validation, and inference from Go types.
https://opensource.googleblog.com/2026/01/a-json-schema-package-for-go.html
about 1 month ago
0
0
0
Not production-ready, but a fascinating exploration😁
pboyd.io/posts/redefi...
#golang
loading . . .
Redefining Go Functions | pboyd.io
https://pboyd.io/posts/redefining-go-functions/
about 1 month ago
0
1
0
Looks good
rednafi.com/go/mocking-l...
#golang
loading . . .
Your Go tests probably don't need a mocking library
Practical patterns for mocking in Go without external libraries. Learn to mock functions, methods, interfaces, HTTP calls, and time using only the standard library
https://rednafi.com/go/mocking-libraries-bleh/
about 2 months ago
0
0
0
> fast rejection often beats slow responses Totally agree.
medium.com/@Realblank/b...
#golang
loading . . .
Backpressure Patterns in Go: From Channels to Queues to Load Shedding
Your Go service has started to struggle under load. Queues are growing, goroutines multiply, responses slow down. The code works fine, but…
https://medium.com/@Realblank/backpressure-patterns-in-go-from-channels-to-queues-to-load-shedding-0841c9fe5607
2 months ago
0
0
0
reposted by
kuro
Russ Cox
2 months ago
“Floating-Point Printing and Parsing Can Be Simple And Fast” The fastest known floating-point printer and parsing algorithms - fixed-width printing, shortest-width printing, and parsing, all in 400 lines of Go.
research.swtch.com/fp
research.swtch.com/fp-proof
loading . . .
research!rsc: Floating-Point Printing and Parsing Can Be Simple And Fast (Floating Point Formatting, Part 3)
https://research.swtch.com/fp
1
75
17
Interesting👀
madflojo.dev/posts/are-at...
loading . . .
Are Atomic Operations Faster and Better Than a Mutex? It Depends
Exploring the differences between atomic operations and mutexes in Go, including performance benchmarks and use-case trade-offs.
https://madflojo.dev/posts/are-atomic-operations-faster-than-a-mutex/
2 months ago
0
0
0
This looks good for practicing coding.
github.com/MedUnes/go-k...
#golang
loading . . .
GitHub - MedUnes/go-kata: A collection of daily coding challenges designed to help you master idiomatic Go through deliberate, repetitive practice.
A collection of daily coding challenges designed to help you master idiomatic Go through deliberate, repetitive practice. - MedUnes/go-kata
https://github.com/MedUnes/go-kata
2 months ago
0
3
0
Nice
davidbacisin.com/writing/gola...
loading . . .
HTTP Connection Pooling in Go by David Bacisin
A deep dive into HTTP/1.1 and HTTP/2 connection pooling in Go, plus configuration recommendations.
https://davidbacisin.com/writing/golang-http-connection-pools-1
3 months ago
0
1
0
😂
benraz.dev/blog/golang_...
loading . . .
An Honest Review of Go - Ben Raz Blog
https://benraz.dev/blog/golang_review.html
3 months ago
1
2
0
There's a real reason behind the go command's speed.
blog.gaborkoos.com/posts/2026-0...
#golang
loading . . .
The Go Build System: Optimised for Humans and Machines
Go's build system optimized for humans and machines: faster reproducible builds, smart caching, seamless CI/CD, and practical guidance to streamline modern developer workflows.
https://blog.gaborkoos.com/posts/2026-01-08-The-Go-Build-System-Optimised-for-Humans-and-Machines/
3 months ago
0
2
0
Nice article
nsrip.com/posts/gorout...
#golang
loading . . .
Two concurrency patterns which avoid goroutine leaks
https://nsrip.com/posts/goroutineleak.html
3 months ago
0
2
0
This Go memory allocation explanation is seriously awesome😍
nghiant3223.github.io/2025/06/03/m...
#golang
loading . . .
Memory Allocation in Go
Memory Allocation in Go
https://nghiant3223.github.io/2025/06/03/memory_allocation_in_go.html
3 months ago
0
8
1
I wasn’t aware that Gin increases the binary size more than necessary!
eblog.fly.dev/ginbad.html
#golang
loading . . .
ginbad.md
A good software article you should probably read
https://eblog.fly.dev/ginbad.html
3 months ago
0
1
1
This article really helped me understand how `go.work` works👀
www.glukhov.org/post/2025/12...
loading . . .
Go Workspace Structure: From GOPATH to go.work
Master Go workspace management with go.work files, multi-module development, and modern alternatives to GOPATH. Learn best practices for organizing multiple projects.
https://www.glukhov.org/post/2025/12/go-workplace-structure/
3 months ago
0
0
0
Great article on detecting goroutine leaks with DTrace! Love how it tracks `runtime.gopark` to distinguish real leaks from legitimate waiting.
gaultier.github.io/blog/detecti...
loading . . .
Detecting goroutine leaks with DTrace
https://gaultier.github.io/blog/detecting_goroutine_leaks_with_dtrace.html
3 months ago
0
0
0
Combining scenario tests and contract tests strikes a good balance.👀
funnelstory.ai/blog/enginee...
loading . . .
Scaling Go Testing with Contract and Scenario Mocks
Mocks aren't the enemy; bad tests are. We scale Go testing using "Tactical Pairs": Contract Tests for truth, Scenario Mocks for logic.
https://funnelstory.ai/blog/engineering/scaling-go-testing-with-contract-and-scenario-mocks
3 months ago
0
0
0
Looks good!
add a skeleton here at some point
3 months ago
0
1
0
reposted by
kuro
Golang Articles, News, Packages
3 months ago
An interesting article about "Why Copying Go Lock Is a Bad Idea"
#golang
ivan-pidikseev.dev/posts/why-c...
0
3
2
Hello, bluesky😁
3 months ago
0
2
0
you reached the end!!
feeds!
log in