HackerTrans
TopNewTrendsCommentsPastAskShowJobs

progval

5,752 karmajoined 11 jaar geleden
[ my public key: https://keybase.io/progval; my proof: https://keybase.io/progval/sigs/iJkfMTZcmOHP3IcHyhl94KHqYHNLDk5z-JbHXnZgvUQ ]

email: [email protected]

Submissions

The Infosec Phrasebook

nesbitt.io
45 points·by progval·vorige maand·6 comments

SFC vs. VIZIO: who can enforce the GPL?

lwn.net
2 points·by progval·6 maanden geleden·0 comments

AWS and Microsoft are selling more than cloud services

berthub.eu
3 points·by progval·6 maanden geleden·0 comments

WireGuard packet relay for NAT traversal

github.com
2 points·by progval·6 maanden geleden·2 comments

How to Ruin All of Package Management

nesbitt.io
4 points·by progval·6 maanden geleden·0 comments

comments

progval
·11 uur geleden·discuss
Depending on where you live, your employer may be legally required to accommodate your disabilities. Here in France, HR are usually dutiful about it.
progval
·gisteren·discuss
It's because the page you posted contains this incorrect tag:

    <link rel="canonical" href="https://ec.europa.eu/commission/presscorner/home/en">
progval
·3 dagen geleden·discuss
There is a third-party API now: https://doc.fnar.net/ , which collects data through a browser extension that scraps the traffic. This kind of extension is blessed by the devs as long as it does not automate actions.
progval
·3 dagen geleden·discuss
They most definitely did not solve real time translation yet. The French in the video is barely understandable, both the translation and the pronunciation are the quality of an American who hasn't used French since high-school.
progval
·3 dagen geleden·discuss
I can't find information about this except in a Reddit thread. Is it documented somewhere?
progval
·7 dagen geleden·discuss
I don't think power use is the issue. I have this cheap CO2 sensor: https://www.domadoo.fr/en/devices/5882-heiman-zigbee-air-qua... which draws 0.5W. This includes thermometer and humidity sensor, Zigbee transmission, and acting as a Zigbee router, but it gives us an upper bound. It also measures continuously (picks up someone breathing on it within 10s), which is overkill. A phone could measure CO2 levels once every 10 minutes which would average under 0.01W, so that would work.

However, this assumes the sensor would fit in a smartphone, which is not a given. And these things need air flow. And they also wouldn't work while the phone is in a bag or a pocket.
progval
·9 dagen geleden·discuss
They probably meant 74000m², not 74km².
progval
·9 dagen geleden·discuss
But it's not even a first draft. There are only pictures and markdown files.
progval
·12 dagen geleden·discuss
A Mastodon instance used it: https://www.theverge.com/2024/2/12/24071036/queer-af-mastodo...
progval
·13 dagen geleden·discuss
What does it mean for a DNS resolver to be "integrated with CDNs"? And why does that affect streaming speed negatively?
progval
·22 dagen geleden·discuss
https://www.scientificamerican.com/article/google-engineer-c...

it was before ChatGPT
progval
·24 dagen geleden·discuss
There is some recent progress on https://github.com/rust-lang/crates.io/issues/326
progval
·24 dagen geleden·discuss
It also means Diffusion in the context of images and videos.
progval
·27 dagen geleden·discuss
> The IRCv3 WG was convened near the end of 2016, so 9 or so.

SASL support in IRC predates IRCv3.
progval
·27 dagen geleden·discuss
> Replacing the server-to-server protocol sounds a lot like it's not really IRC protocol any more

There hasn't been a standard server-to-server protocol in like three decades. Even RFC 2813 only specifies one of the protocols in use at the time (IRCnet's). Each implementation has its own (some of them forked from the original)

> The chathistory link says "This specification may change at any time and we do not recommend implementing it in a production environment."

True. Ratification of the final spec is stuck on some details, unfortunately.
progval
·27 dagen geleden·discuss
This is Pyodide, not Python.
progval
·28 dagen geleden·discuss
> Netsplits

It's not inherent to the protocol. https://ergo.chat/ does not have netsplits (from having a single server) and https://github.com/Libera-Chat/sable replaces the server-to-server protocol to eliminate netsplits as well.

And even when not eliminated entirely, they are infrequent and barely visible on well-managed networks like Libera.Chat. Many chat platforms have more (and longer) outages than Libera has netsplits.

> missed messages

Solved by most server implementations using https://ircv3.net/specs/extensions/chathistory

> bot wars over channel and nick ownership

Solved decades ago thanks to NickServ and ChanServ (though I'll admit they are ad-hoc additions on top of the protocol). And ~15 years ago we got native support for authentication (https://ircv3.net/specs/extensions/sasl-3.1)
progval
·vorige maand·discuss
Fun, but there is a mistake in https://docs.rs/misfortunate/latest/misfortunate/struct.Maxw... which claims: "yet violates the social contract of these two combined. A Maxwell is not equal to anything (even itself) but all Maxwells hash the same"

but that's not a violation of the contract, it's just a hash collision. Hash collisions are expected to happen, so HashMap and HashSet won't "misbehave seriously", they'll just be slow (linear-time lookup) and unable to remove entries.

The contract of Hash is that if two values are equal, then they hash to the same value. Which would be violated by doing the opposite of Maxwell: all values equal each other, but their hash differs (you can even make it random so it changes across calls on the same value!)
progval
·vorige maand·discuss
The paper (https://hannesweissteiner.com/pdfs/frost.pdf) cites two earlier papers (from 2014 and 2017) that did the same for HDDs.
progval
·vorige maand·discuss
The random times don't have to be uniformly distributed. Though it's enough for attackers to know the distribution to de-noisify it.