Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror

Comment Re: Zero-Knowledge Identity Proofing, Once Again (Score 1) 25

No, a service like that would require you to submit your name, and thus the site, as well as the government , would know you accessed that site at that time. Exactly what people dont want. Zero knowledge proofs prevent this because your identity doesnt have to be shared.

Comment Re:This is not about the children (Score 1) 25

There are no easy wins to these problems.

You can't both simultaneously allow adults to use explicit chatbots, and also block them from children, without requiring some form of identity verification.

The real problem is the lack of adopted robust standards by the government for age verification that don't require you to disclose your identity.

The technology to do kind of this already exists, it is called zero-knowledge proofing. it has existed for a decade and is widely deployed in other countries like Estonia.

Most countries are so incredibly far behind the 8 ball on this stuff and they let government and big tech to keep eating away at their freedoms instead of electing and bringing competent technologists into the government to solve the problem.

Comment Re: ...And you'll like it (Score 3, Insightful) 206

No one is saying the company is not liable.

If a human kills a kid, they are usually held liable.

Liability and acceptance by society are not the same. 1.9 million people are killed annually in auto accidents. All of those are killed by other humans. We accept this, every day, as a society. It doesn't at all mean that any individual case does not have liability or consequences, it just means we don't shut down the roadways.

Comment Re: Keep rust in rust (Score 2) 86

There is increasing pressure on companies to take responsibility for their software products. This includes preasure to move towards memory safe languages. This exercise is about getting C++ of the governments naughty lists, so that people can continue to use C++ without extra regulatory overhead and too much risk to the company.

Rust is just a working example of a language with similar performance to C++, whise approach could be copied. The committee opted to not do that and go for something that does not make the language memory safe at all, but that catches enough bugs to be close enough (they hope).

We'll see whether that is implementable, practical and enough to satisfy regulators.

Comment Re: Huh? (Score 2) 86

I have hunted my fair share of core dumps in Qt code. Each one is a memory safety fail... it is, just like the rest of C++ not memory safe.

I find it funny that so many C++ devs seem to think using smart pointers means you are memory safe. It does not, there is so much more needed... check what the "safe C++" proposal set out to change, that's what you need tomdo to make C++ memory safe using the approach rust took. It includes fun stuff like new reference semantics, destructive moves and a new standard library.

Comment Re: $7 in Canada (Score 1) 112

Yeah I was always impressed by that in the UK, but also a bit confused on what the incentive is for banks to build out their networks.

The high out-of-network fees in Canada cause the banks to compete on this... banks with more ATMs in an area will get more customers. As a result we have bank ATMs everywhere.

Slashdot Top Deals

Each new user of a new system uncovers a new class of bugs. -- Kernighan

Working...