If other opinions matter, then it is not an irrelevant question. Since it prompts people to tell their opinions.
If other opinions matter, then it is not an irrelevant question. Since it prompts people to tell their opinions.
If the question is so irrelevant, why do you even try to answer it in the same comment? Not only answering it, but also making it a fact. As if your opinion is the only one that matters and suddenly it’s irrelevant when there’s a different opinion.
Napoleon was french, not American.
I think you completely missed the point.
The problem is not that the sign exists, the problem is that people don’t see nothing wrong with it.
If you were a Jew, how would you feel if you saw Nazi flags on a men’s rights protest? Would you feel safe knowing that men a Nazi is safe around men? (Which probably means many of those men are nazis/nazi sympathizers themselves.).
That’s how men feel when they see sexist messages in feminist protests go uncontested.
They should’ve looked at their star software product: Microsoft access.
Now presenting: Access Intelligence
You can’t be that blind. At pretty much every women’s rights protest there is at least someone with a sign up that reads something like “All men are rapists”. Sure, the protest might not be about that. Sure, not everyone agrees with that kind of statements. But there’s not much opposition either, so that kind of sexist message appears all the time in the news. Furthermore, those spewing sexist bullshit call themselves “feminists”, so young men think that feminism is like that, and now they hate feminism too.
EDIT: just as an example, right after writing this comment I saw this other one: https://lemmy.world/comment/13322514 it’s impossible to time it better.
In Spanish, chupa means either suck or lick depending on context.
Chupa chups are lick licks.
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.
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?
Windows 11 is little more than a reskin of windows 10, and they still fucked it up.
Rounded corners are mandatory (Why? I really preferred squared ones). But developers can choose to have their windows square. Why only the developers? Let the user decide how a windows looks like!
And don’t get me started on the start menu. It was a complete massacre. Tiles are gone (am I the only one that liked them?). Instead, now we pin apps to the start menu. Fine I guess, except for the fact that half of the fucking menu is taken up by fucking recomendations. If I remove every single recommendation, instead of having my space back for more pinned programs I get this message: “oh you like this precious white space? If you turned on some recommendations it would show something”. No, i don’t want recommendations, I want my start menu space back. Which btw in windows 10 used to be resizable to whatever size I wanted.
Oh and lets not forget about the volume mixer. Which some genius decided that it was better to keep it 10 clicks away from the user in the settings, instead of conveniently at one click in the taskbar. Which they also made the sound settings their own special taskbar element, instead of another taskbar program. So now if I want to replace their shitty sound settings with the ones I like (trumpet btw), now I would have 2 sound settings in the taskbar, while in win10 I only had 1.
And whose Idea was to join the sound settings and internet settings in the same taskbar button visually? Which is also not the same button functionally. You see, if you press the left side of the button it opens the sound settings, but the right side opens the internet settings. How much do Microsoft UI people get paid?
I guess we got dark notepad, that’s nice.
Logistical problems are still financial problems though. That’s my point. Hire enough people/develop the appropriate automation and the issue is no more.
We have the technology to solve this, the problem is the money.
In fact, you could just buy enough batteries and the problem will also go away. Still a financial problem, not a technology one.
EDIT: just to clarify, if at some point energy prices go negative, it means that it is cheaper to buy energy usage than a solution. Unless the energy company is dumb enough to just lose money for the lazyness of considering other options.
It is a financial problem. Technically you can just cover the solar panels. But that’s not good financially.
That’s the exit. Because the woman is not inside.
Well, game freak is still a Japanese developer. Mario Cart is a very computationally light concept, as usually are Mario games, idk about odyssey in particular though, but they tend to be small maps with small amount of entities each. Zelda is fair, I’ve heard good things about it.
It’s easy to make a good performing game if its concept and art design are computationally light. Optimization is about turning a computationally hard problem into a light algorithm that doesn’t take much resources.
I didn’t answer your “request” because that has nothing to do with what I originally said.
If I wanted to get into an hours long conversation about gender I would’ve said something completely different. Got better things to waste my time on.