/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

fnordig.de
| | antonz.org
6.0 parsecs away

Travel
| | A Redis-compatible Go server/package with a Postgres or SQLite backend.
| | daurnimator.com
6.3 parsecs away

Travel
| | cqueues-pgsql v0.1 released This is a project of mine that has been sitting without a release for a long time now. With luapgsql recently getting the last fixes I was waiting for, I figured it's time...
| | adamdrake.com
5.2 parsecs away

Travel
| | Adam Drake is an advisor to scale-up tech companies. He writes about ML/AI/crypto/data, leadership, and building tech teams.
| | developerlife.com
30.3 parsecs away

Travel
| Moore's Law, the observation that the number of transistors on a chip doubles roughly every 2 years, ended around 2015-2020. This means CPU bound code that runs slowly will run slowly on future CPUs. The traditional approach of Big-O analysis and algorithmic improvements is no longer accurate, since it only accounts for "op-count" and ignores the cost of memory access. Modern CPUs have many cores, but each core isn't getting any faster. So using parallelism is another way to get more performance. Let's explore memory performance and latency in Rust.