kuro's Avatar

kuro

@io-kurokuro

Software Engineer Gopher X: https://x.com/knkurokuro7

62
Followers
285
Following
21
Posts
17.12.2025
Joined
Posts Following

Latest posts by kuro @io-kurokuro

Preview
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.

Yeah, if it’s Go, govulncheck might be enough
words.filippo.io/dependabot/

#golang

27.02.2026 05:31 πŸ‘ 1 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0
Preview
Go 1.26 Release Party YouTube video by JetBrains

It's great that I can watch it on YouTube. I'll watch it later.
#golang

www.youtube.com/live/MxPjWSs...

20.02.2026 00:01 πŸ‘ 2 πŸ” 1 πŸ’¬ 0 πŸ“Œ 0
Preview
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.

Agreed. The real innovation is the blocking semantics, not time travel.
oblique.security/blog/go-sync...

#golang

18.02.2026 08:15 πŸ‘ 1 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0
Preview
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.

google/jsonschema-go: inference + validation in one package. Perfect for LLM tool validation.
opensource.googleblog.com/2026/01/a-js...

#golang

14.02.2026 14:29 πŸ‘ 0 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0
Redefining Go Functions | pboyd.io

Not production-ready, but a fascinating exploration😁
pboyd.io/posts/redefi...
#golang

13.02.2026 10:00 πŸ‘ 1 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0
Preview
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

Looks good
rednafi.com/go/mocking-l...
#golang

28.01.2026 09:32 πŸ‘ 0 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0
Preview
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…

> fast rejection often beats slow responses
Totally agree.

medium.com/@Realblank/b...

#golang

25.01.2026 01:13 πŸ‘ 0 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0
research!rsc: Floating-Point Printing and Parsing Can Be Simple And Fast (Floating Point Formatting, Part 3)

β€œ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

19.01.2026 22:13 πŸ‘ 75 πŸ” 15 πŸ’¬ 1 πŸ“Œ 2
Preview
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.

InterestingπŸ‘€
madflojo.dev/posts/are-at...

16.01.2026 13:45 πŸ‘ 0 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0
Preview
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

This looks good for practicing coding.
github.com/MedUnes/go-k...
#golang

12.01.2026 14:03 πŸ‘ 3 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0
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.

Nice
davidbacisin.com/writing/gola...

10.01.2026 02:18 πŸ‘ 1 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

Yeah, you're right

09.01.2026 11:06 πŸ‘ 0 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0
An Honest Review of Go - Ben Raz Blog

πŸ˜‚
benraz.dev/blog/golang_...

09.01.2026 10:14 πŸ‘ 2 πŸ” 0 πŸ’¬ 1 πŸ“Œ 0
Preview
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.

There's a real reason behind the go command's speed.
blog.gaborkoos.com/posts/2026-0...
#golang

09.01.2026 05:49 πŸ‘ 2 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0
Two concurrency patterns which avoid goroutine leaks

Nice article
nsrip.com/posts/gorout...

#golang

06.01.2026 14:47 πŸ‘ 2 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0
Preview
Memory Allocation in Go Memory Allocation in Go

This Go memory allocation explanation is seriously awesome😍
nghiant3223.github.io/2025/06/03/m...
#golang

25.12.2025 02:37 πŸ‘ 8 πŸ” 1 πŸ’¬ 0 πŸ“Œ 0
ginbad.md A good software article you should probably read

I wasn’t aware that Gin increases the binary size more than necessary!
eblog.fly.dev/ginbad.html
#golang

24.12.2025 23:57 πŸ‘ 1 πŸ” 1 πŸ’¬ 0 πŸ“Œ 0
Preview
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.

This article really helped me understand how `go.work` worksπŸ‘€
www.glukhov.org/post/2025/12...

24.12.2025 23:36 πŸ‘ 0 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0
Detecting goroutine leaks with DTrace

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...

24.12.2025 04:59 πŸ‘ 0 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0
Preview
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.

Combining scenario tests and contract tests strikes a good balance.πŸ‘€
funnelstory.ai/blog/enginee...

19.12.2025 04:23 πŸ‘ 0 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

Looks good!

17.12.2025 23:50 πŸ‘ 1 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0
Post image

An interesting article about "Why Copying Go Lock Is a Bad Idea"
#golang

ivan-pidikseev.dev/posts/why-c...

17.12.2025 07:13 πŸ‘ 3 πŸ” 1 πŸ’¬ 0 πŸ“Œ 1

Hello, bluesky😁

17.12.2025 09:47 πŸ‘ 2 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0