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

 



Forgot your password?
typodupeerror
×

Comment Re:Flawed definition of intelligence (Score 1) 10

Right, because when people think of AI they think of average human intelligence.

"Today we'd like to announce the dawn of a new sentient AI with average human intelligence."
"OMG, what's it doing? Curing cancer? Developing new materials? Extending our vision of the universe?"
"Well, no. Currently its drunk, watching TikTok, looking up pictures of computers with their cases open, and binging The Bachelor.. But we're sure we can get it motivated to do all that tomorrow. Got to go, the AI just discovered QAnon!"

Comment Re:underestimate the intelligence of many creature (Score 1) 45

What are you talking about? There's at least 5 comments here already saying that this was already known, scientists are proving the obvious, the research was all done in the 80s and they didn't even bother reading it, etc etc. These scientists are wasting their time when they could just post to "Ask Slashdot"

Comment Re:Why did people trust MS on Win10/11 upgrade? (Score 1) 149

Do you think you're smarter than MS lawyers? Really? The second you do that, oh, its a magical support update. What's in it? "Fixes bug in Notepad, Theme change in Paint."

Problem solved.

Now what's your next play? Have the judiciary (government) decide what the proper level of support to qualify support is? Why not, they're already forcing open source at gunpoint.

If you want open source software, use, create, and support open source software.

Comment Re: Its just making up stuff (Score 2) 42

Look up what people who restore old or damaged paintings do. At some point its all guesswork, but educated guesswork. As someone above said, for art (assuming its tunable) this is perfectly acceptable. For figuring out who's really under the mask in that old bigfoot footage, not so much.

Comment Re:NeXTSTEP (Score 1) 36

Yes, because in 2023 the pinnacle of computing, the standard by which all other lesser OSes are judged is......printing stuff out? I know I for sure have cursed the lack of display postscript every time my airport boarding pass comes out slightly different than the web page. Not that I'll be showing it to everyone, I have a phone for that of course, or could just use a kiosk, but even backups deserve crisp margins!

Comment Re:Why is type inference important? (Score 1) 321

Take a look at Herb Sutter's C++ Syntax 2 experiment he's been running (https://github.com/hsutter/cppfront). In this case for C++ type inference the "auto" keyword was employed, thus you have lots of code like

auto foo = ...
auto y = ...

Auto everywhere because most types can be inferred in many cases. With CPP2 he's switched, such that its

foo : int = ...

but for everything else its just

x = ...
y = ...

with the auto as the default, and assumed. Much more readable.

The other reason is that grammars are MUCH easier to write for this type of language.

Slashdot Top Deals

For God's sake, stop researching for a while and begin to think!

Working...