When the working class kills a CEO, there’s a reward by the FBI and is found in a week. When a company does it, the world is silent.
When the working class kills a CEO, there’s a reward by the FBI and is found in a week. When a company does it, the world is silent.
I’d bet if you were a lego fan you’d say the same about legos.
Housing and concerts are orders of magnitude apart in “importantness”. All of the items above are not needed to live. A home is needed.
I have had many mouses. Most of them broke the side buttons. The scroll wheel usually lasts as much as the side buttons. After that. The left/right main buttons fail.
I have never had a mouse with a broken sensor though. I would look for solutions in the software (calibration and settings). But it’s not impossible that it’s broken.
They should’ve looked at their star software product: Microsoft access.
Now presenting: Access Intelligence
The thing about UB is that many optimizations are possible precisely because the spec specified it as UB. And the spec did so in order to make these optimizations possible.
Codebases are not 6 lines long, they are hundreds of thousands. Without optimizations like those, many CPU cycles would be lost to unnecessary code being executed.
If you write C/C++, it is because you either hate yourself or the application’s performance is important, and these optimizations are needed.
The reason rust is so impressive nowadays is that you can write high performing code without risking accidentally doing UB. And if you are going to write code that might result in UB, you have to explicitly state so with unsafe
. But for C/C++, there’s no saving. If you want your compiler to optimize code in those languages, you are going to have loaded guns pointing at your feet all the time.
I recently came across a rust book on how pointers aren’t just ints, because of UB.
fn main() {
a = &1
b = &2
a++
if a == b {
*a = 3
print(b)
}
}
This may either: not print anything, print 3 or print 2.
Depending on the compiler, since b isn’t changed at all, it might optimize the print for print(2)
instead of print(b)
. Even though everyone can agree that it should either not print anything or 3, but never 2.
If you want to use instructions from an extension (for example SIMD), you either: provide 2 versions of the function, or just won’t run in some CPUs. It would be weird for someone that doesn’t know about that to compile it for x86 and then have it not run on another x86 machine. I don’t think compilers use those instructions if you don’t tell them too.
Anyway, the SIMD the compilers will do is nowhere near the amount that it’s possible. If you manually use SIMD intrinsics/inline SIMD assembly, chances are that it will be faster than what the compiler would do. Especially because you are reducing the % of CPUs your program can run on.
They should be paid though
Spaniard here. Not only does my company not pay me for lunch time. It also demands it to be at least 30 minutes long. How is it even legal to force my unpaid time to be a minimum amount?
So the top exports are: medicines and medicines. Got it
They are not equivalent situations. More like:
Person A promises to kill 10 people. Person B promises to kill 20 people.
Only one of them will do it, and you choose who. If you refuse to choose, person B will do it. What do you do?
My comment only mentions me and all women. How exactly am I giving cover to men that rape? I raped nobody. The question I’m asking is what I’ve done wrong.
I don’t know what trump and racism has anything to do with this.
So how exactly am I complicit for some dude raping someone? Just because I have a penis? And are all women completely exempt or are all women also complicit?
The windows key is awesome though. It’s basically an “OS key”, since windows is not the only one that can use it, so the OS can have many hotkeys, all of them using the OS key, and it shouldn’t conflict with any program’s hotkeys. If any program uses the OS key for their default hotkey, that’s their problem.
Kids are constantly being made. While it might be your 15th CoD game, it’s someone else’s 1st
So because you don’t understand it, everything it does should be legal?
It’s not rare maths. There are trns of thousands of AI experts. And most CS graduates (millions) have a good understanding on how they work, just not the specifics of the maths.
Yeah, they’re not selling a copy, they are just selling a subscription to a copying machine loaded with the information needed to make a copy. Totally different.
I should start a business of printers and attach a USB with the PNG of a dollar bill. And of course my printers won’t have any government mandated firmware that disables printing fake money.
I’m not printing fake money! It’s my clients! Totally legal.
When you copy to consume yourself it’s way different than when you copy to sell the copy for a lower price.
I’ll train my AI on just the bee movie. Then I’m going to ask it “can you make me a movie about bees”? When it spits the whole movie, I can just watch it or sell it or whatever, it was a creation of my AI, which learned just like any human would! Of course I didn’t even pay for the original copy to train my AI, it’s for learning purposes, and learning should be a basic human right!
There are only 2 reasons I would buy a motherboard:
What feature would make you upgrade just the motherboard? Especially given how expensive they are nowadays (sometimes even more expensive than the CPU).
Don’t worry. This is just third party AIs. Google’s AIs will still be trained on them without your permission.