

What a very non-rasist thing to do, turns out all those conservatives that told me that Trump isn’t racist were right after all.
What a very non-rasist thing to do, turns out all those conservatives that told me that Trump isn’t racist were right after all.
Republicans would have blamed Biden without a second thought, so I’m going to blame Trump for this.
I thought the actual natzis heard him loud and clear. I wouldn’t be surprised that they start saying “My heart goes out to you” just like they used to say “let’s go Brandon”
I had to see it for myself and my jaw hit the floor. Are we living in some cheesy low budget action movie?
I saw it too, and if you watch tizzyent’s video on TikTok you can see it too.
I think it’s a threat to ensure that TikTok does what he says. Lots of reports (that I as an Australian can’t verify before it works for me) of searches for Trump incriminating videos are returning no results since it came back. It feels like there were conditions on not banning TikTok.
I would say that tariffs are still internal since they are paid by American companies when they import goods.
Got to tweak dos startup menu to maximise your conventional or ems memory.
It will help pay for the tax cuts for the rich
I tried to look this up but I couldn’t find much. The “worst” I found was this:
Some users have expressed concerns about the platform’s moderation practices, suggesting that the community’s emphasis on inclusivity and respect may lead to over-sensitivity, where even minor disagreements or differing opinions are met with significant backlash. This environment can create a perception of excessive policing of content, potentially discouraging open dialogue.
Where are you reading that people are saying that it’s worse than twitter? Is it right wing people that are saying that because they put emphasis on inclusivity and respect?
It makes perfect sense actually. I did write another comment here if you are interested.
This is how operator overloads were written going back to the initial version of C++ back in 1985. The only new thing is that we can now add = default
to get the compiler to generate a default implementation that compares all the member variables for you.
Maybe to a non C++ dev, but a lot of C++ is probably incomprehensible to a non C++ dev, just like there are other laguages that are incomprehensible to C++ devs. To me it makes perfect sense as it works just like all the other operator overloads.
auto
- let the compiler deduce return type
operator<=>
- override the spaceship operator (pretty sure it exists in python too)
(const ClassName&)
- compare this class, presumably defined in Class name, with a const reference of type Class name, i.e. its own type.
const
- comparison can be made for const objects
= default;
- Use the default implementation, which is comparing all the member variables.
An alternate more explicit version, which is actually what people recommend:
auto operator<=>(const ClassName&, const ClassName&) = default;
if I just want to have less than comparison for example I would:
This one makes it explicit that you’re comparing two Class name objects.
if I just want to have less than comparison for example I would:
auto operator<(const ClassName&, const ClassName&) = default;
If I need to compare against another class I could define:
auto operator<(const ClassName&, const OtherClass&)
You mean copy/move constructor and assignment operator?
Unless you have any special handling the ones generated by the compiler automatically should work just fine. But if you do have to define them for some reason (which is becoming increasingly rare) you would need to define both if you need both copy/move construction and copy/move assignment.
I do appreciate how newer C++ standards have made these kinds of things a lot easier too.
Define all comparison operators with just one one line using C++20
auto operator<=>(const ClassName&) const = default;
Tens of billions is technically correct since in the last year US spent about 2 tens of billions, I.e. $20 billion, or about 2.5% of the annual military budget on Israel.
Could also be the first women president vs 4th worst president of all time.
edit: actually shared 3rd worst, shares with Franklin Pierce
While still to the right of center of the political compass, I do really like how much closer to the center Walz is than the other and previous candidates.
Not to defend them too much and I have to admit that I don’t know much about the details which bills were priorities during the 4 months that Obama has house, senate and Presidency.
What I did read a while back was that Obama didn’t know how long his supermajority would last and some of the things he wanted he wanted done but couldn’t once he lost the house.
I agree that Palestine is an important issue, do you have any suggestions on how to improve the situation?
I think politics, especially, but not exclusively right wing politics strives for division to create an in and out group.