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

 



Forgot your password?
typodupeerror
×

Comment Re:I live here (NZ) and... (Score 5, Insightful) 209

> the medicine was worse than the cure.

This is a Trumpesque troll right?

The lockdown was definitely not worse than the disease. The "just get on with life" approach, let's call it "Sweden", kills and sickens a lot of people (not just old people), displaces other sick people from hospitals, and tanks the economy anyway because people are afraid to go out. In contrast, here in NZ after a short shock we have virtually no restrictions and no-one is afraid so normal life resumes.

If and when we have another case, we can reasonably hope for test+trace to contain the outbreak without having to lock down again. We shall see!

Comment Unpopular opinion (Score 0) 145

Asimov was well-known to be a sexually-harrassing creep (see e.g. https://www.gizmodo.com.au/201...). This even made its way into his writing; his dirty-old-man wish-fulfillment stories (e.g. Janov and Bliss in Foundation's Edge, Hari and Dors in Prelude To Foundation) were just embarrassing.

He was also a pretty bad writer IMHO. I enjoyed reading his novels for the plot and ideas, but his characters and language are tissue-thin. There are many much better works by sci-fi writers who can actually write well.

Comment Re:block autoplay videos (Score 1, Funny) 48

Quite hard, actually.

One problem is that there are legitimate needs for autoplaying audio and video, e.g. games, so naive autoplay blocking breaks a lot of sites. Browser autoplay blocking implements complicated heuristics to try to distinguish these legitimate needs from unwanted autoplay. (People suggest, "oh, just ask me every time" but of course that creates an alert-spam problem like the one in the original post here.)

Another problem is that if you block autoplaying video elements, some sites will go to ridiculous lengths to get autoplaying "video" in front of users. For example, sites have been known to implement their own video codecs in JS. Even if JS is disabled, sites have been known to render "slideshow" video using pure CSS to shuffle through a set of images. Those hacks are of course much worse for users, in bandwidth and power, than just letting the site autoplay a proper video. That is why browser autoplay blocking focuses on blocking videos that have audio.

Comment Re:Hopefully, this can be toggled on via config (Score 1) 118

The exact quote is "has no plans to turn on our DoH feature by default in the United Kingdom and will not do so without further engagement with public and private stakeholders".

That is not a "guarantee they'll leave it disabled by default". It just means they won't do it "yet".

Comment Re: Betteridge is right. (Score 4, Informative) 169

Unlike most programming languages, but like C, the Rust standard library is optional. You can write Rust programs that don't use it, and people do.
https://rust-embedded.github.i...
For example people are writing bootloaders in Rust.
https://github.com/rust-osdev/...

The people actually working on writing Rust code for the kernel are implement Rust interfaces to the existing kernel libraries.

Comment Re: Betteridge is right. (Score 3, Insightful) 169

> C isn't more of a challenge than Rust is.

Writing C code that is completely free of memory safety bugs and other exploitable vulnerabilities is a huge challenge. It's about as hard as always writing code that is perfectly bug-free. Basically no-one can do it at scale.

Writing C code that works most of the time and has lots of vulnerabilities is indeed quite easy, and for a long time that was considered good enough. That needs to change.

Slashdot Top Deals

"You need tender loving care once a week - so that I can slap you into shape." - Ellyn Mustard

Working...