I had to see it for myself and my jaw hit the floor. Are we living in some cheesy low budget action movie?
flying_gel
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.
Avocado, young me thought it was a Kiwi so it might just have been the surprise of how different it was.
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.
I'm using pass, the Unix standard password manager. While the original application is just a. shell script, gpg and git, it seems to have evolved more into a standard structure of encrypted files that any applications can use.
On UNIX I use gopass, on my phone I use Password store together with open keychain.
Benefits: completely self hosted, well known and robust technology, easy for developers to make applications or even just read the files youself
Cons: Need to setup and maintain gpg keys. Applications I've used so far seem geared to more technical people. Setting up a new device requires copying gpg keys or generating new ones and add the public key to your vault. Last I checked, no viable IOS client.
Depending on your view this can be either pro or con, but you can store your 2fa and password in the same repo, all protected by your gpg keys.
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&)
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"