Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror

Comment Re:Dumping (Score 1) 109

It may be the case that some independent operators refuse to load some random EV into a container with inadequate means of monitoring it. That doesn't mean they can't be shipped en masse with appropriate safety procedures. The likes of BYD operate their own fleets of ships and will ship them to wherever there is demand.

Comment Re:Dumping (Score 1) 109

Well Venezuela's administration is evil but that doesn't justify the sabre rattling the US is doing right now which clearly has ulterior motives. In fact, if you were to replace the word "Venezuela" with "Ukraine", the rhetoric wouldn't be far removed from what Russia was saying prior to invading that country.

Comment Re:The US is diverging from *everywhere* else (Score 1) 109

It's not just auto manufacturing but industry in general. China has stolen an insurmountable lead on renewables, EVs, battery tech, robots and other forms of manufacturing & the resources needed to make them.

Meanwhile America, instead of innovating or competing has decided to go protectionist, using tariffs to stop domestic manufacturers getting kicked to the curb because they suck so hard. That can only work for so long, but after that?

Comment Re:Programming language o programmer? (Score 1) 32

I don't think its savviness, simply that Rust's compiler is way more stricter and the language itself strongly avoids things that plague C/C++ programming like NULL, raw pointers, pointer arithmetic, dangling references, memory alloc/free, data races, and so on.

I think there is a learning / unlearning curve since the language can be very frustrating for people used to throwing around pointers or references without regard to their lifetimes but once you're over that it becomes a lot simpler. I think also, making people think about lifetimes also makes them better C/C++ programmers at the same time.

Comment Hardly surprising (Score 2) 32

I've written lots of Rust and I've encountered exactly one hard crash - when I was calling an unsafe function in OpenSSL and messed up the parameters. When it happened I searched the code for "unsafe", found the culprit quickly, fixed the problem and was on my way.

The compiler has certainly kicked my ass plenty of times for doing things I shouldn't but if it compiles I'm pretty confident that any bugs there are caused by application logic issues, not language issues. Rust will not help if I meant to spin the motor clockwise and sent it spinning anti-clockwise, or if I forgot to check if someone was permitted to do the thing before doing the thing. For that I need to do testing but fortunately I can also write unit tests with the code it's testing which also cuts down on issues later.

So all in all I'm not surprised developers report higher quality code which goes out the door and doesn't come back because it's broken.

Comment Not really but... (Score 1) 128

... I really liked the Lenovo Duet which is a tablet with a keyboard cover running ChromeOS. You can run Android apps on that but still have a decent tablet experience, and a desktop experience when you attach the cover. But Android on ChromeOS is a super kludge and doesn't even run properly for a lot of apps.

Google shouldn't have even bothered with ChromeOS and instead focussed on making Android tablet & desktop e.g. resizable windows, printers, proper mouse & keyboard support as an alternative or addition to touchscreen, desktop aware versions of apps etc.). But they didn't. While there are Android tablets and some aren't bad to use, they all seem to use some half assed proprietary way of supporting tablet / desktop modes that isn't standard and none of the apps on the store bother to support it.

Comment Re:I hope PS5 Linux sees the light of day (Score 1) 35

Even supposing you could hack one to run Linux or FreeBSD, the performance would probably be very mediocre because it's unlikely there is support for the bespoke CPU & graphics functionality it contains as well as other drivers you'd need to make it work properly.

I doubt Sony are subsidizing them at this point in the console's life. Sony are known for iterating through consoles through revisions that cut costs so maybe the first revision is subsidized but subsequent ones aren't. Models like the digital version & pro might have their own margins built in too.

Comment Re:Not at all creepy (Score 2) 140

You can homeschool with no income. What I was saying is that many rich people over millennia hired tutors to teach their kids. And therefore the reasoning of Zuckerberg to teach more kids may derive from that. I speculated it could have expanded as a means of providing his kids with companionship, or it could have been some fucked up Will Smith style "school". I have no idea without more information.

Comment Re:Not at all creepy (Score 1) 140

I'm sure he could afford private tutors and "home school" them just like many rich families did in the long past. It doesn't explain why other kids would be taught there though. Maybe it's all benevolent, e.g. Zuck thinks, "hey I'm paying for tutors so they can teach some other kids at the same time and my kids can get some peer bonding going". Or maybe it's some weird shit going on, some fucked up discredited teaching method like Jaden Smith received. Who knows. But it's no longer home schooling at that point.

Slashdot Top Deals

"It is hard to overstate the debt that we owe to men and women of genius." -- Robert G. Ingersoll

Working...