HackerLangs
TopNewTrendsCommentsPastAskShowJobs

progval

5,748 karmajoined قبل 11 سنة
[ 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·الشهر الماضي·6 comments

SFC vs. VIZIO: who can enforce the GPL?

lwn.net
2 points·by progval·قبل 6 أشهر·0 comments

AWS and Microsoft are selling more than cloud services

berthub.eu
3 points·by progval·قبل 6 أشهر·0 comments

WireGuard packet relay for NAT traversal

github.com
2 points·by progval·قبل 6 أشهر·2 comments

How to Ruin All of Package Management

nesbitt.io
4 points·by progval·قبل 6 أشهر·0 comments

comments

progval
·قبل ساعة واحدة·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
·قبل 14 ساعة·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
·أول أمس·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 أيام·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 أيام·discuss
I can't find information about this except in a Reddit thread. Is it documented somewhere?
progval
·قبل 7 أيام·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 أيام·discuss
They probably meant 74000m², not 74km².
progval
·قبل 9 أيام·discuss
But it's not even a first draft. There are only pictures and markdown files.
progval
·قبل 11 يومًا·discuss
A Mastodon instance used it: https://www.theverge.com/2024/2/12/24071036/queer-af-mastodo...
progval
·قبل 13 يومًا·discuss
What does it mean for a DNS resolver to be "integrated with CDNs"? And why does that affect streaming speed negatively?
progval
·قبل 21 يومًا·discuss
https://www.scientificamerican.com/article/google-engineer-c...

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

SASL support in IRC predates IRCv3.
progval
·قبل 27 يومًا·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 يومًا·discuss
This is Pyodide, not Python.
progval
·قبل 28 يومًا·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
·الشهر الماضي·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
·الشهر الماضي·discuss
The paper (https://hannesweissteiner.com/pdfs/frost.pdf) cites two earlier papers (from 2014 and 2017) that did the same for HDDs.
progval
·الشهر الماضي·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.