Alex
Alex
@cloudseeker.bsky.social
Reposted by Alex
Package managers keep using git as a database, it never works out.

https://nesbitt.io/2025/12/24/package-managers-keep-using-git-as-a-database.html
Package managers keep using git as a database, it never works out
Using git as a database is a seductive idea. You get version history for free. Pull requests give you a review workflow. It’s distributed by design. GitHub will host it for free. Everyone already knows how to use it. Package managers keep falling for this. And it keeps not working out. ## Cargo The crates.io index started as a git repository. Every Cargo client cloned it. This worked fine when the registry was small, but the index kept growing. Users would see progress bars like “Resolving deltas: 74.01%, (64415/95919)” hanging for ages, the visible symptom of Cargo’s libgit2 library grinding through delta resolution on a repository with thousands of historic commits. The problem was worst in CI. Stateless environments would download the full index, use a tiny fraction of it, and throw it away. Every build, every time. RFC 2789 introduced a sparse HTTP protocol. Instead of cloning the whole index, Cargo now fetches files directly over HTTPS, downloading only the metadata for dependencies your project actually uses. (This is the “full index replication vs on-demand queries” tradeoff in action.) By April 2025, 99% of crates.io requests came from Cargo versions where sparse is the default. The git index still exists, still growing by thousands of commits per day, but most users never touch it. ## Homebrew GitHub explicitly asked Homebrew to stop using shallow clones. Updating them was “an extremely expensive operation” due to the tree layout and traffic of homebrew-core and homebrew-cask. Users were downloading 331MB just to unshallow homebrew-core. The .git folder approached 1GB on some machines. Every `brew update` meant waiting for git to grind through delta resolution. Homebrew 4.0.0 in February 2023 switched to JSON downloads for tap updates. The reasoning was blunt: “they are expensive to git fetch and git clone and GitHub would rather we didn’t do that… they are slow to git fetch and git clone and this provides a bad experience to end users.” Auto-updates now run every 24 hours instead of every 5 minutes, and they’re much faster because there’s no git fetch involved. ## CocoaPods CocoaPods is the package manager for iOS and macOS development. It hit the limits hard. The Specs repo grew to hundreds of thousands of podspecs across a deeply nested directory structure. Cloning took minutes. Updating took minutes. CI time vanished into git operations. GitHub imposed CPU rate limits. The culprit was shallow clones, which force GitHub’s servers to compute which objects the client already has. The team tried various band-aids: stopping auto-fetch on `pod install`, converting shallow clones to full clones, sharding the repository. The CocoaPods blog captured it well: “Git was invented at a time when ‘slow network’ and ‘no backups’ were legitimate design concerns. Running endless builds as part of continuous integration wasn’t commonplace.” CocoaPods 1.8 gave up on git entirely for most users. A CDN became the default, serving podspec files directly over HTTP. The migration saved users about a gigabyte of disk space and made `pod install` nearly instant for new setups. ## Go modules Grab’s engineering team went from 18 minutes for `go get` to 12 seconds after deploying a module proxy. That’s not a typo. Eighteen minutes down to twelve seconds. The problem was that `go get` needed to fetch each dependency’s source code just to read its go.mod file and resolve transitive dependencies. Cloning entire repositories to get a single file. Go had security concerns too. The original design wanted to remove version control tools entirely because “these fragment the ecosystem: packages developed using Bazaar or Fossil, for example, are effectively unavailable to users who cannot or choose not to install these tools.” Beyond fragmentation, the Go team worried about security bugs in version control systems becoming security bugs in `go get`. You’re not just importing code; you’re importing the attack surface of every VCS tool on the developer’s machine. GOPROXY became the default in Go 1.13. The proxy serves source archives and go.mod files independently over HTTP. Go also introduced a checksum database (sumdb) that records cryptographic hashes of module contents. This protects against force pushes silently changing tagged releases, and ensures modules remain available even if the original repository is deleted. ## Beyond package managers The same pattern shows up wherever developers try to use git as a database. Git-based wikis like Gollum (used by GitHub and GitLab) become “somewhat too slow to be usable” at scale. Browsing directory structure takes seconds per click. Loading pages takes longer. GitLab plans to move away from Gollum entirely. Git-based CMS platforms like Decap hit GitHub’s API rate limits. A Decap project on GitHub scales to about 10,000 entries if you have a lot of collection relations. A new user with an empty cache makes a request per entry to populate it, burning through the 5,000 request limit quickly. If your site has lots of content or updates frequently, use a database instead. Even GitOps tools that embrace git as a source of truth have to work around its limitations. ArgoCD’s repo server can run out of disk space cloning repositories. A single commit invalidates the cache for all applications in that repo. Large monorepos need special scaling considerations. ## The pattern The hosting problems are symptoms. The underlying issue is that git inherits filesystem limitations, and filesystems make terrible databases. **Directory limits.** Directories with too many files become slow. CocoaPods had 16,000 pod directories in a single Specs folder, requiring huge tree objects and expensive computation. Their fix was hash-based sharding: split directories by the first few characters of a hashed name, so no single directory has too many entries. Git itself does this internally with its objects folder, splitting into 256 subdirectories. You’re reinventing B-trees, badly. **Case sensitivity.** Git is case-sensitive, but macOS and Windows filesystems typically aren’t. Check out a repo containing both `File.txt` and `file.txt` on Windows, and the second overwrites the first. Azure DevOps had to add server-side enforcement to block pushes with case-conflicting paths. **Path length limits.** Windows restricts paths to 260 characters, a constraint dating back to DOS. Git supports longer paths, but Git for Windows inherits the OS limitation. This is painful with deeply nested node_modules directories, where `git status` fails with “Filename too long” errors. **Missing database features.** Databases have CHECK constraints and UNIQUE constraints; git has nothing, so every package manager builds its own validation layer. Databases have locking; git doesn’t. Databases have indexes for queries like “all packages depending on X”; with git you either traverse every file or build your own index. Databases have migrations for schema changes; git has “rewrite history and force everyone to re-clone.” The progression is predictable. Start with a flat directory of files. Hit filesystem limits. Implement sharding. Hit cross-platform issues. Build server-side enforcement. Build custom indexes. Eventually give up and use HTTP or an actual database. You’ve built a worse version of what databases already provide, spread across git hooks, CI pipelines, and bespoke tooling. None of this means git is bad. Git excels at what it was designed for: distributed collaboration on source code, with branching, merging, and offline work. The problem is using it for something else entirely. Package registries need fast point queries for metadata. Git gives you a full-document sync protocol when you need a key-value lookup. If you’re building a package manager and git-as-index seems appealing, look at Cargo, Homebrew, CocoaPods, Go. They all had to build workarounds as they grew, causing pain for users and maintainers. The pull request workflow is nice. The version history is nice. You will hit the same walls they did.
nesbitt.io
December 24, 2025 at 4:49 PM
Reposted by Alex
I'm continuously impressed with how just how good the Rust ecosystem is. Whenever I look for a crate or a CLI utility that does what I want, 95% of the time I find it.

And the rest of the time, the components are right there for me to build it.
November 28, 2025 at 3:12 PM
Reposted by Alex
It’s discount season; time to join the privacy revolution with our incredible Black Friday deals.

Check out our website for a range of offers on both individual products and plan upgrades.

https://proton.me/black-friday
November 4, 2025 at 4:07 PM
Reposted by Alex
I think “driveway” and “parkway” are named the wrong way round.
October 10, 2025 at 7:17 AM
Reposted by Alex
Makes a change from seeing a crashed Windows server.
July 25, 2025 at 7:19 AM
Reposted by Alex
A bit of a long shot: the regular audio editor for the "What's New" Rustacean Station episodes is now busy with other life stuff. The last episode I edited myself, but it took ages! Anyone know an editor (ideally familiar with Rust, but not a requirement) who'd take on a regular (paid) editing gig?
Rustacean Station
Come journey with us into the weird, wonderful, and wily world of Rust.
rustacean-station.org
June 14, 2025 at 7:34 AM
Reposted by Alex
Whenever I notice LLMs being "not great" at Rust, it's because they're trying to write, JS or Go, but in Rust. Which is.. the same reason why a lot of humans are having a bad time with Rust 🙃 — writing types first, then stub functions, then tests, then implementation, that's a happier way.
June 13, 2025 at 2:54 PM
Der Bundesrat will Ausweispflicht & Vorratsdaten im Netz – ein Angriff auf digitale Freiheit & KMU wie Threema. Stoppen wir die Überwachungsverordnung! ✍️👇 act.campax.org/petitions/de...
Demokratie statt Überwachungsstaat!
🔍 Der Bundesrat will Schweizer Nutzer*innen im Netz zur Identifikation zwingen – per Ausweiskopie oder Handynummer. Alle Daten sollen 6 Monate gespeichert werden. Ein Angriff auf Privatsphäre und digi...
act.campax.org
May 28, 2025 at 11:25 AM
Reposted by Alex
Wrote up yet another blog on dark mode/light mode on GitHub!

github.blog/developer-sk...
How to make your images in Markdown on GitHub adjust for dark mode and light mode
When you want your images to look good in Markdown on GitHub, you might have to adjust for the UI around them.
github.blog
April 19, 2025 at 2:55 AM
Reposted by Alex
@nebula.tv I really like the idea behind Nebula but here in Central Europe the website takes quite long to load sometimes. Additionally, videos tend to buffer even on gigabit fiber if I choose 1080p or higher. And I can’t even let it buffer because if I pause the video it pauses streaming as well.
March 14, 2025 at 5:37 PM
Reposted by Alex
March 13, 2025 at 6:39 PM
Reposted by Alex
I'm so ready for a dedicated app and not needing to keep a browser tab open. Godspeed www.theverge.com/news/624926/...
Tweetbot’s developers are making a Bluesky app
Tapbots will still work on Ivory for Mastodon, too.
www.theverge.com
March 6, 2025 at 3:06 PM
Reposted by Alex
With just about every piece of technology up until now, when it's not working correctly that is apparent to the user in some way.

The reason LLMs and today's versions of "AI" scare me is that users think they are working correctly even when they're putting out nonsense.
December 15, 2024 at 7:02 PM
One shortcoming of #SkyBridge: The character limit of a post is not properly exposed and if you attempt to submit a post that's too long, you will get an error and at least in #Ivory have no clue as to why.
#bsky #bluesky
December 13, 2024 at 3:17 PM
Reposted by Alex
If there was ever a need to release a "Snow Leopard" for iOS, it's now. Go under the hood and fix all the little weird bugs that have been neglected for years. Fix the incongruent UX. Make iOS stable anew.

Add zero new features. Fix shoddy crap.

Give us another iOS 12.
December 12, 2024 at 5:19 PM
Reposted by Alex
Xserve needs a comeback!
December 6, 2024 at 2:29 PM
Reposted by Alex
192 cores in a single CPU socket. 128 lanes of PCI Express Gen 5. DDR5 ECC RAM.

I'd say Arm is all grown up. Video on this bonkers AmpereOne server: www.youtube.com/watch?v=t05O...
CPU Cores are the new Megahertz
YouTube video by Jeff Geerling
www.youtube.com
December 5, 2024 at 3:03 PM
Reposted by Alex
Annual Rust survey time!

blog.rust-lang.org/2024/12/05/a...
Launching the 2024 State of Rust Survey | Rust Blog
Empowering everyone to build reliable and efficient software.
blog.rust-lang.org
December 5, 2024 at 10:37 AM
Can you really not turn off notifications for new followers?
#bsky #bluesky
December 4, 2024 at 5:26 PM
Now testing #SkyBridge with #Ivory, maybe *it* can remember my last read post 😄
#bluesky #bsky
December 2, 2024 at 8:39 AM
Is it just me or does the #bsky app not remember which post I last read in my following feed? I feel like ever time I open the app it shows me the latest post first.
#bluesky
December 1, 2024 at 11:33 PM
Reposted by Alex
If you've been following my Christmas light saga... this year's video has made me happier than ever!
youtu.be/qSFNufruSKw
LED Christmas lights which don't hurt the eyes: it finally happened!
YouTube video by Technology Connections
youtu.be
November 30, 2024 at 5:13 PM