Catch up on stories from the past week (and beyond) at the Slashdot story archive

 



Forgot your password?
typodupeerror

Comment Not even close to AGI (Score 1) 140

The idea that LLMs or any of the current AI tech is anywhere near AGI is laughable.

We're not even in the ballpark of the right technology. We have prediction engines, input consumption systems with internal feedback loops and models.

This is like saying now that we've built bicycles for travel, the next step is to ride those bicycles to the moon.

Comment Re:Is it a Rust attitude? (Score 1) 86

I'm not part of the kernel development world, but I did read the entire thread that sparked this all off.

There was a patch sent up for some rust code.

One of the maintainers decided to use that patch to take a hard stance on the Linux kernel being C only, not a specific dig on Rust.

The person who submitted the patch tried very professionally to find a solution and address any technical objections on the thread.

Some other people also chimed in, very professionally.

There were some strong words (not directed at any person), but it was mostly professional, even if it was somewhat of a political standoff.

Hector seemed to come flying in off the turnbuckle and go off on a rant that was, at best, tangentially related.

Comment I actually went and read the patch email thread. (Score 0) 170

It really seems like Hellwig is ideologically against any language other than C in the kernel and is pushing back on that principle alone.

There's no technical argument against the patch. Hellwig isn't being asked to maintain or work on any Rust code.

It doesn't even seem to be against Rust as a language.

It's basically a hard line of not allowing anything other than C in the kernel.

Agree or disagree about that position, but that really seems like what it is.

Comment Re:check your work (Score 2) 68

You're right, if the goal was to emulate a fly in real time. I don't think we're anywhere near that stage.

We absolutely could do this emulation, and I suspect that will be on the table soon. Yes it would be slow. How slow would depend on how much hardware we wanted to throw at the problem. We're not limited to a single computer, even a single supercomputer. The only thing really standing in the way is money.

BTW, the BIOS and OS are the mapped neurons and connections. There's not something more to it.

Comment Re:Why Buy a New Car? (Score 1) 71

Because you are doing what many people do, and what the politically right leaning have purposefully done. Confuse capitalism with well regulated free markets.

Well regulated free markets provide incentive for new products, fulfilling customer demand, efficiently allocating resources.

Capitalism is an economic system the funnels money towards the rich.

Comment Re: Damned if they do, damned if they don't (Score 1) 71

The master key doesn't even need to be a key. It would probably be better as an OBD2 plug.

Make the master key an OBD2 plug. You plug it in, authorize on the touchscreen/radio, then you have X amount of time before the auth times out. You could even implement 2FA with that. Need the plug, plus a pin.

Comment It's the volume that kills it. (Score 1) 303

If the story was that one single time, an alien craft made it to earth and crashed, that would be plausible.

Right now, with our current technology, we could put together a ship and make a one way voyage to another star. It would take the kind of focus we haven't seen since the space race, and it would have to be sustained for a bit. We'd have to be okay with people going on a one way trip and not knowing anything that happened until years later. But we could do it. If we could do it, a nearby, similarly situated species could end up here.

An event like that could potentially be kept under wraps enough to be plausibly deniable.

The idea that some alien species has the technology to have dozens to hundreds of craft buzzing around Earth, never publicly announcing themselves, and constantly crashing is laughable.

Although it would be the kind of stories I would spread if I were trying to hid the one time an alien craft did show up... hehe.

Comment Re:Maybe but... (Score 2) 185

The advantages Rust has over C++ basically boil down to eliminating categories of bugs mostly related to memory problems. No null, no accessing uninitialized memory, no forgetting to dealloc. Bunch of stuff like that. The kind of bugs that account for "70% of security bugs" (you can search that). Also has a very strong type system and the compiler can basically force you to think about all possible paths. It's a common trope among Rust developers that if it compiles, it usually runs correctly.
The costs include (more or less) understanding the memory model. While the compiler errors are extremely well done, you still have to understand that you can't have a mutate after a borrow. Rust is not something where you can slap together a quick and dirty script. That trope of 'if it compiles, it usually runs correctly' cuts both ways. If you forget something, it's not going to compile. You have to understand Rc, Box, etc... and various tools to deal with the single owner aspects of the memory model. There are numerous blog posts our there about "How I learned to stop fighting the borrow checker". Compile times are significantly higher.

Comment You want to lock in the current big players? (Score 1) 259

That's what will happen if 230 is repealed. Facebook (et al.) have deep pockets. They can afford to develop and setup systems that meet any legal standards developed by the repeal of section 230. They can afford the army of lawyers to defend themselves. Hell, they'll probably let Facebook write most of the rules.
You know who can't? Any small forum. Any little startup trying to compete with the big boys. Any site for any reason that wants to have a comment section open.
No small startup site will be able to afford the risk of allowing any kind of user generated content. You've now locked in monopolies for the foreseeable future.

Comment Re:Today (Score 1) 800

How I imagine a conversation with you...

Hi, my names John.
"Fuck you I'll call you Micheal. That's what your parents named you and that's the only thing I'll call you".
But I had my name legally changed to John. I don't like the name Micheal, I prefer to be called John.
"My uncles name was Micheal and you changing your name to John is an insult to everything I believe! Fuck you Micheal."

Slashdot Top Deals

FORTUNE'S FUN FACTS TO KNOW AND TELL: A giant panda bear is really a member of the racoon family.

Working...