Golang drawer
@golang101
178
subscribers
1
photo
5.03K
links
Curated Golang news
Download Telegram
Join
Golang drawer
178 subscribers
Golang drawer
https://bitfieldconsulting.com/posts/rust-vs-go
Bitfield Consulting
Rust vs Go in 2025 — Bitfield Consulting
Which is a better choice, Rust or Go? Which language should you choose for your next project, and why? How do the two compare in areas like performance, simplicity, safety, features, scale, and concurrency?
Golang drawer
https://developers.googleblog.com/en/build-go-applications-project-idx-gemini-api/
Googleblog
Google for Developers Blog - News about Web, Mobile, AI and Cloud
Explore the power of AI-assisted development with Project IDX, as we guide you through building Go applications.
Golang drawer
https://www.youtube.com/watch?v=8mU7KIF6l-k
YouTube
Why CGO is Dangerous
The content of this video is based heavily on the below articles in addition to my experience with CGO!
https://dave.cheney.net/2016/01/18/cgo-is-not-go
https://konradreiche.com/blog/a-cautionary-tale-of-cgo-embedding/
There isn't a whole lot of source…
Golang drawer
https://mattjhall.co.uk/posts/go-is-well-designed-actually.html
mattjhall.co.uk
Go is a Well-Designed Language, Actually - Matt Hall
Why not liking something is not the same as badly designed.
Golang drawer
https://brainbaking.com/post/2024/12/why-go-should-sometimes-be-a-no-go/
Brain Baking
Why Go Should Sometimes Be a No-Go
As I will be switching clients next year, I will also be switching programming languages, from Go …
Golang drawer
https://www.paolomainardi.com/posts/docker-performance-macos-2025/
Paolo Mainardi
Docker on MacOS is still slow?
Info 06/01/2025 Update: Many readers requested the inclusion of OrbStack in the benchmarks. This update introduces OrbStack’s performance data, along with updated insights and comparisons. TLDR Link to heading Two years after my first analysis of Docker performance…
Golang drawer
https://blog.thibaut-rousseau.com/blog/writing-testing-a-paginated-api-iterator/
Thibaut Rousseau's Blog
Writing & Testing a Paginated API Iterator in Go
Writing and unit-testing Go 1.23 iterators can be tricky. This article shows a full-featured example using GitHub's public API.
Golang drawer
https://stuff.narf.zone/posts/unmarshal/
stuff.narf.zone
Write Your Own json.Unmarshal
Deep dive into how we can build something similar to json.Unmarshal in golang using reflection.
Golang drawer
https://github.com/dkorunic/betteralign
GitHub
GitHub - dkorunic/betteralign: Make your Go programs use less memory (maybe)
Make your Go programs use less memory (maybe). Contribute to dkorunic/betteralign development by creating an account on GitHub.
Golang drawer
https://go-fuego.github.io/fuego/
go-fuego.dev
Fuego | Fuego
The framework for busy Go developers
Golang drawer
https://templ.guide/
templ.guide
Introduction | templ docs
templ - build HTML with Go
Golang drawer
https://www.usememos.com/
Memos
Memos - Open Source, Self-hosted, Your Notes, Your Way
A privacy-first, lightweight note-taking solution that allows you to effortlessly capture and share your ideas.
Golang drawer
https://philipotoole.com/how-is-rqlite-tested/
Philipotoole
How rqlite is tested – Vallified
rqlite is a lightweight, open-source, distributed relational database written in Go, and built on SQLite and Raft. With its origins dating back to 2014, its design has always prioritized reliability, and quality. The robustness of rqlite is also a testament…
Golang drawer
https://www.assembled.com/blog/scaling-llms-with-golang-how-we-serve-millions-of-llm-requests
Assembled
Scaling LLMs with Golang: How we serve millions of LLM requests
See why Go is our top choice for production LLM deployments. Learn how its type safety, concurrency, and interfaces power scalable, efficient infrastructure, complemented by Python for rapid ML prototyping.
Golang drawer
https://medium.com/@darshan.na185/modifying-private-variables-of-a-struct-in-go-using-unsafe-and-reflect-5447b3019a80
Medium
Modifying Private Variables of a Struct in Go Using unsafe and reflect
In Go, struct fields can be private (unexported) or public (exported). Unexported fields begin with a lowercase letter and are meant to be…
Golang drawer
https://docs.agentstation.ai/blog/beautiful-api-keys/
Golang drawer
https://www.youtube.com/watch?v=TgftD-xrNeo
YouTube
Coding a "Random Art Algorithm" in Golang
Implementing Random Art algorithm in Go, working with pseudo random number generator, Go image package, trees and generating beautiful images.
Source Code: https://github.com/plutov/packagemain/tree/master/32-random-art-algorithm
Paper: https://users.ec…
Golang drawer
https://www.youtube.com/watch?v=YQnz7L6x068
YouTube
Creator of Ghostty talks Zig over Go
Thanks to the sponsor for today's video - Graphite!
Check out stacked PRs, code review tools and more: http://gt.dev/topshelf
0:00 - Intro
0:52 - CTO to Open Source
7:00 - Graphite Ad
8:10 - Future Of Ghostty
21:30 - How It Started
25:29 - Zig vs Rust
29:53…
Golang drawer
https://www.getconvoy.io/blog/circuit-breaker-in-golang
Convoy
Designing a distributed circuit breaker for disabling webhook endpoints in Golang | The Webhooks Blog
One of the major problems of designing a webhook delivery system is designing around bad/zombie endpoints. Zombie endpoints are dead endpoints that fail continuously and, over time, clog up your queues, create back pressure, and delay event delivery to legitimate…
Golang drawer
https://victoriametrics.com/blog/go-http2/
VictoriaMetrics
How HTTP/2 Works and How to Enable It in Go
HTTP/2 solves head-of-line blocking at the application layer by multiplexing multiple streams over a single TCP connection. While HTTP/1.1 requires requests to be processed sequentially, HTTP/2 allows parallel processing through independent streams, each…