dustletter

u/dustletter@piefed.blahaj.zone
0 posts · 9 comments

Recent posts

No posts.

Recent comments

On the one hand, sure, models generalize. It's cool they established that.
On the other hand, the copyright argument seems to be that they stole so much data that the contribution of any individual image rounds down to zero, therefore it's not infringing? Wha??

Are they really claiming that one infringement is a a tragedy, but a million infringements is a statistic?

on I can't see bro · c/onehundredninetysix · 4 pts · 171d

You could make a minecraft mod for this, probably? Find the brightest area in the webcam image, get the angle by assuming it's a circle when viewed straight on, do some kind of calibration to map image xy to physical xy. The sensible way would be to use a wiimote but being sensible isn't the point.

The server still has to send its own key, so that part is bigger. They're making up the space by replacing traditional CA signatures and intermediate certificates with merkle tree hash-based signatures.

Raw number of bytes can't be directly compared between cryptography schemes, cryptographic hashes make very efficient use of space and don't have the same quantum weaknesses that old public key cryptography has. The quantum-unsafe RSA signatures being replaced are about 256 bytes, the new ML-DSA signatures are about 2400 bytes, and SHA-256 Merkle tree references are 32 bytes for the same level of security and quantum-proofness.

Skew binary trees. They're an immutable data structure combining the performance characteristics of lists (O(1) non-amortized push/pop) and b-trees (log(N) lookup and updates)
They use a sequence of complete trees, cleverly arranged using skew binary numbers so that adding an element never causes cascading updates.
In practice they're superseded by relaxed radix balanced trees.