Readit News logoReadit News
sparklysoup commented on Ethiopia gets $350M World Bank financing for its digital ID project (2024)   mariblock.com/stories/eth... · Posted by u/tinfoilhatter
csb6 · 11 days ago
Having a single digital ID that is used for everything makes sense from a technical perspective (less duplication, ambiguity, and need to maintain multiple IDs) but from a privacy perspective it is bad. Effectively everything you do online would be tied to a single comprehensive representation of your identity even if the task that uses the ID doesn't require more than knowing "this is a unique person using this service". If user data is leaked then it is easier to tie every digital service being used by a person together since there is a single ID number used everywhere.

IMO fewer things should require ID (e.g. domestic flights) because it opens up the risk of personal data being leaked or misused for often not much benefit.

sparklysoup · 11 days ago
Having a single (government ID) is bad, so instead we hand our personal details over to one of a dozen private companies, none of which has any contract with us, the user, and all of whom happily share it with the (20 or so, in Persona's case) other companies they use to farm out bits and pieces of the identity verification job. Sure this is better.

Meanwhile, I have never had any fraud, scam, identity theft or anything else as a result of, or with any connection to my country's national ID. But I can't avoid also having to hand over my details to private (and foreign to me) companies that only exist because Americans can't get act together.

Srsly.

sparklysoup commented on I reverse-engineered Netflix's 4K restrictions   github.com/Pickle-Pixel/n... · Posted by u/picklepixel
coppsilgold · 2 months ago
> To what extent does this watermarking survive transcoding? Would not transcoding multiple times possibly affect it?

They are designed to survive being recorded by a phone at an angle. The embedding is only 1-bit per segment which can be multiple megabytes.

> Why?

Tardos codes scale as the square of the number of traitors times a constant. For example, a movie would typically have 2000 segments -> 2000 bits of encoding. By my calculation, at around 7 traitors some start to skate by detection. And there are ways to make detection additive across leaked content, so with another 2000 all 7 will get caught. This is because while they may not score highly enough to be reliably accused, they will be under suspicion, and that suspicion can later be enhanced.

To be clear, what the traitors are doing is pooling all the segment versions they have available to them, and adversarially choose a segment at random. This is the best strategy they have, a close second is to choose the segment that the majority have.

Trying to remove the actual 1-bit watermark from the segment isn't typically feasible. Every segment will have a unique adjustment to encode it. The embedding algorithm will take a secret key.

sparklysoup · 2 months ago
> They are designed to survive being recorded by a phone at an angle.

Any idea what this looks like? I assume it's not visible to the human eye, but being able to survive this level of degradation is quite impressive.

sparklysoup commented on Pink Power Ranger takes down white supremacist dating sites   thecanary.co/skwawkbox/20... · Posted by u/ZebusJesus
netsharc · 2 months ago
https://media.ccc.de/v/39c3-the-heartbreak-machine-nazis-in-...

The 40 minutes of the presentation before the hack gives a lot more context: there are 2 journalists in addition to this anonymous pink Power Ranger, and they investigated the Nazi network, which is international. And Martha Root (the pink power ranger) was trolling them by creating an account and using LLM. The LLM didn't work properly, the account was blocked for suspicions of being a bot (and maybe for having "= 1 OR 1" as eg. gender), she talked her way out of it, and incredibly the admin that unblocked her asked if she wanted to meet up with him, and the site's founder. She said yes, didn't show up, but used that opportunity to covertly follow them and uncover the founder's identity - the journalists found that it's a 57-year old lady who's never been known in the scene, who was married to a French banker whose parents survived the holocaust, but in the last decade fell into the rabbit hole of white-victimization-theory.

sparklysoup · 2 months ago
> the journalists found that it's a 57-year old lady who's never been known in the scene, who was married to a French banker whose parents survived the holocaust, but in the last decade fell into the rabbit hole of white-victimization-theory.

Just to clarify, she fell into the rabbit hole, not him. He divorced her. Your comment can easily be read both ways.

sparklysoup commented on Worlds largest electric ship launched by Tasmanian boatbuilder   theguardian.com/australia... · Posted by u/aussieguy1234
trebligdivad · 3 months ago
Does anyone have a feel for how heavy the weight of an equivalent oil(?) driven ship would be? It has the big number for the weight of batteries, but I've got nothing to compare against.
sparklysoup · 3 months ago
700-ish tonnes - it's in the wikipedia article:

"In 2020, Buquebus originally commissioned Incat to deliver a new ship to use dual-fuel propulsion, capable of operating on liquefied natural gas and diesel, with around 400 tonne of main engines, 100 tonne gearboxes, 100 tonne cryogenic fuel tanks and 100 tonne fuel."

https://en.wikipedia.org/wiki/China_Zorrilla_(ship)

sparklysoup commented on Detecting AV1-encoded videos with Python   alexwlchan.net/2025/detec... · Posted by u/surprisetalk
sparklysoup · 3 months ago
There's a python module for this:

https://pypi.org/project/ffmpeg-python/

https://github.com/kkroening/ffmpeg-python

  >>> import ffmpeg
  >>> video_metadata = ffmpeg.probe('test.mp4')
  >>> print(video_metadata['streams'][0]['codec_name'])
  h264

u/sparklysoup

KarmaCake day5December 7, 2025View Original