Bun adds pnpm-style isolated installation mode (github.com)
2 points by nateb2022 59m ago 0 comments
Shutting Down Clear Linux OS (community.clearlinux.org)
82 points by todsacerdoti 1h ago 54 comments
Fcrand (Go language): drop-in replacement for crypto/rand, up to 10x faster
2 sdrapkin 2 7/18/2025, 10:14:34 PM github.com ↗
If it's faster, fully API compatible, and maintains all the same guarantees, why isn't the implementation being upstreamed to crypto/rand?
Edit: Looked at the code. It's a little read-ahead cache wrapped around crypto/rand. Good idea! I can't help but wonder if this actually does have some security implications, since rand data is going to be sitting around in process memory potentially long before it's actually requested.