Forgot your password?
typodupeerror

Comment Re:TSG (The SCO Group), not SCO (Score 1) 69

They were not in any way the same company

This is, of course, capitalism-worshiping nonsense. Corporations are legal fictions. Having bought one, you have become the owner of the entire fiction, including the name. They are SCO now in every sense that matters, and I say that as someone who used to run SCO software and who knows several former SCO employees. That SCO is dead, hopefully this SCO can also die soon, but they are legally the same SCO.

Comment Re:It was never intended to end (Score 1) 68

today Microsoft is one of the world's largest users of Linux. It has no current motivation to harm Linux and every reason to defend it.

False. As a hosting provider Microsoft doesn't care what OS people are using, they just have to host it. But as an OS provider, Linux is still competition, so they still have a reason to attack it.

Comment Re:So that was why Nvidia dislikes Gamers Nexus... (Score 1) 6

There's also just the general fact that they don't softball shit. If something is anti-consumer they say so. It just so happens that everything Nvidia does these days is anti-consumer. Remember when they were the underdog? Those were good days because they were trying hard.

Comment Re:I bet he does it for 2 reasons (Score 1) 75

More like he’s lazy and his talent was being at the right place at the right time

Assuming for the sake of argument that what Dre does is creative and that he is talented, very little of making great music is about the mechanical process of executing on the generation and recording of sound. That's important, but there are a lot more people who can do that than create something that is new, and good.

Creation (in any medium) is about the ideas, and about the ability to recognize what works well and what doesn't. Given that, I could completely see AI being a useful tool for a creative, talented artist. They have to supply the ideas, in the form of prompts, and they have to recognize whether the results are good. The AI is just a time-saving device for the middle step of generating representations of the ideas.

Comment Re:My job is now reviewing AI code (Score 1) 97

Seriously, I think politicians on the left are dropping this nonsense, and DEI everywhere, and Pro-pal lunacy. We reached peek woke.

We reached peak woke four years ago. DEI is dead. The corpse is still twitching in a few corners of academia, but that's about it.

I wonder if that is the end of it, and the center left move back to somewhere near the center again, or are they just keeping it quiet until elected because they know normal people realize how STUPID it all is?

I don't think the center left ever moved. The center left just didn't push back against the far left because why alienate them? I mean, the far left is perfectly capable of just deciding to sit out the elections. A non-trivial number did exactly that in 2024 because they were mad that Biden didn't take a hard line with Israel. And given that the GOP has turned insane...

IMO, the center left does need to push back against the far left. But I don't think the mainstream Democrats are going to get that message until they get smacked in the face with just how out of step a lot of those far left positions are. It's not going to be DEI/woke crap now, it's going to be the full on socialists.

But the only way for the voters to deliver that much-needed smack is by handing them a severe electoral loss. Which also isn't going to happen because the GOP has gone insane.

Likewise, the GOP needs to be smacked in the face with a solid loss to bring them back to reality. But that's not going to happen because DSA...

I think for the next cycle or three, we're going to be stuck with two increasingly-extremist, increasingly out-of-touch parties, and neither is going to get the kind of big loss needed to wake them up.

And in, say 10 years time, will the people who fell for it look back on these demented times and realize how gullible they were?

People don't do that. Even if they come to their senses the vast majority will just not want to talk about it... or else they're revise history and say they never actually supported what they support.

Comment Re: It's not the language it's the management (Score 1) 60

Some parts of C are easy to learn but pointers, particularly double and beyond , plus pointers vs arrays, tends to trip up the no hopers.

They'll have the same problem with Rust, which also uses pointers all over the place (though it calls them references). The difference is that the no hopers will be unable to get the Rust code to compile, while with C they can get it to build... and then hope that valgrind can find the ways it's broken -- because it is broken. They might be able to get the Rust to compile by eschewing pointers and cloning every damned thing so the borrow checker will shut up, making their code so inefficient that they might as well just write Javascript, or else by using raw pointers in unsafe blocks -- but unsafe Rust is actually more unsafe than C, with a lot more rules you have to follow and things you have to be careful about, so their code will be far less likely to work than it would in C, even.

(For those who haven't looked into it, the rules the borrow checker enforces don't go away just because you're using raw pointers in an unsafe block. The borrow checker stops enforcing the rules but the compiler absolutely continues assuming they're properly followed. In other words, in unsafe blocks you have to be the borrow checker. C intentionally gives up some performance to be more forgiving. Rust. Does. Not.

For one example: The C compiler assumes that any pointer may be aliased and so generates extra instructions to read and write through pointers when if it could know that the pointer was the only thing in the system referencing that memory it could optimize those away. The Rust compiler assumes that if you have a non-const pointer to some memory, that pointer is the only way in the program to modify that memory, so the compiler is free to optimize away any unnecessary reads or writes, and to reorder things as convenient (you can get this behavior in C if you tag your pointers with strict). If you stay in the safe Rust pool, using references, the bounds checker ensures that the compiler's assumptions are always true. If you write unsafe, though... it's on you. Screw it up and your code will be broken in crazy-subtle ways.)

Comment TSG (The SCO Group), not SCO (Score 2) 69

SCO, the Santa Cruz Operation, was a pretty cool company that had nothing to do with any of this crap. They sold a pretty decent x86 Unix throughout the 80s and early 90s, but ultimately were forced out of business because they found it hard to compete with the Microsoft marketing machine pushing Windows NT on one side, and free, open source Linux on the other side.

Unable to continue, they sold their Unix rights to Caldera Systems, renamed themselves Tarantella and were ultimately bought out by Sun Microsystems. It was Caldera that ultimately morphed into The SCO Group, then became a copyright troll hoping to score a settlement with deep-pockets IBM when it realized that it couldn't make UnixWare competitive either.

As we did 20 years ago, we should call the original company SCO and label the copyright troll TSG to keep them straight. They were not in any way the same company; there were no leaders or employees or buildings or anything in common.

Comment Re:Who cares? (Score 1) 66

If the product is an easily read, accurate website, that's a good outcome.

I suppose. I find AI prose increasingly-grating. I have to read it all day while working and when I hit some web page that uses all the same obnoxious phrasing and structure I tend to just close the tab and look for a different source.

Comment Re:Wrong conclusion. (Score 1) 56

Utilities are heavily regulated because they need to be. They have demonstrated it time and again. PGE in particular has proven it several well-publicized times that you surely have heard of.

The upshot of these regulations is that utilities including PGE only really make money from new generation projects, so they certainly would like to engage in them. But the longer they run, the more they cost, and the more PGE can charge as a result. This also motivates them to build the least cost-effective options.

Slashdot Top Deals

The goal of Computer Science is to build something that will last at least until we've finished building it.

Working...