Willow quantum chip demonstrates verifiable quantum advantage on hardware
blog.google
JMAP for Calendars, Contacts and Files Now in Stalwart
stalw.art
The Body Keeps the Score Is Bullshit
josepheverettwil.substack.com
Scripts I wrote that I use all the time
evanhahn.com
Mass Assignment Vulnerability Exposes Max Verstappen Passport and F1 Drivers PII
ian.sh
Meta is axing 600 roles across its AI division
theverge.com
Cryptographic Issues in Cloudflare's Circl FourQ Implementation (CVE-2025-8556)
botanica.software
Introducing Galaxy XR, the first Android XR headset
blog.google
Linux Capabilities Revisited
dfir.ch
Bild AI (YC W25) Is Hiring a Founding AI Engineer
ycombinator.com
MinIO stops distributing free Docker images
github.com
André Gorz, the Theorist Who Predicted the Revolt Against Meaningless Work (2023)
znetwork.org
Designing software for things that rot
drobinin.com
AI assistants misrepresent news content 45% of the time
bbc.co.uk
Show HN: Create interactive diagrams with pop-up content
vexlio.com
SourceFS: A 2h+ Android build becomes a 15m task with a virtual filesystem
source.dev
Cyborgs vs. rooms, two visions for the future of computing
interconnected.org
ROG Xbox Ally runs better on Linux than Windows it ships with – up to 32% faster
tomshardware.com
Internet's biggest annoyance: Cookie laws should target browsers, not websites
nednex.com
Die shots of as many CPUs and other interesting chips as possible
commons.wikimedia.org
The paper[0] is actually about their logarithmic number system. Deep learning is given as an example, and their reference implementation is in PyTorch, but it is far from the only application.
Anything involving a large number of multiplications that produce extremely small or extremely large numbers could make use of their number representation.
It builds on existing complex number implementations, making it fairly easy to implement in software and relatively efficient. They provide implementations of a number of common operations, including dot product (building on PyTorch's preexisting, numerically stabilized by experts, log-sum-of-exponentials) and matrix multiplication.
The main downside is that this is a very specialized number system: if you care about things other than chains of multiplications (say... addition?), then you should probably use classical floating-point numbers.
[0]: https://arxiv.org/abs/2510.03426