Unless it’s to give them physical support getting through a voting line designed to make people wonder if they should leave the line for survival sake. In which case they don’t want anyone doing it, homeless or not.
- 0 Posts
- 1.75K Comments
Buddahriffic@lemmy.worldto Mildly Interesting@lemmy.world•Today, the Mexican Government introduced its new chocolate bar, priced at less than $1USD. Made of 50% cocoa, powdered milk, vanilla. No refined sugar, no artificial flavourings.1·4 days agoMy mom would always tell me that I wouldn’t like the baker’s chocolate she would use in baking when I’d ask to try a piece.
Then, one day, she decided to just let me try it, probably expecting me to be grossed out or something. But I love dark chocolate and liked it anyways, even if it didn’t exactly match my expectations at the time.
Yeah, the showing off is what I was getting at. The first experiment seemed more like an experiment and an accident but the demonstrations with the screwdriver seemed more like someone doing pull-ups over a fatal drop just to show how badass they are and accidentally landing on other people on the bottom when he slipped.
Thanks for the in depth response though, this gives more context to this than I’ve had before.
And just guessing on the other two attitudes before looking anything up (haha maybe wanting to challenge my intuition like this instead of just looking it up is one), one is probably related to laziness (eg assuming something is fine and doesn’t need to be checked when going through the pre flight checklist). And maybe the other is being too trusting or not assertive enough (eg colleague says something is OK, you don’t fully believe them but don’t challenge them on it). Am I close?
What was the point of these approaching criticality experiments anyways?
Buddahriffic@lemmy.worldto Showerthoughts@lemmy.world•My world is so much better because of immigrants3·4 days agoNot in Canada. Unless they want to go out of business.
Buddahriffic@lemmy.worldto memes@lemmy.world•Good luck getting the song out of your heads. I call it musical terrorism.5·4 days agoRick rolls saved the internet from random goatse/tubgurl/2girls1cup.
Buddahriffic@lemmy.worldto PC Gaming@lemmy.ca•Subnautica 2 Boycott Started by Community After Krafton LayoffsEnglish24·4 days agoI can say that personally, I do hesitate if I see a game with mixed reviews and will at least check out why people don’t like it. And if steam says a high volume of “irrelevant” (or whatever word they use) reviews are not shown, I’ll click through to see what they are about to decide for myself if they are relevant or just losers whining about “woke” shit.
Buddahriffic@lemmy.worldto PC Gaming@lemmy.ca•Subnautica 2 Boycott Started by Community After Krafton LayoffsEnglish3·4 days agoI’m wondering if the first one needs to go from a game I recommend highly (or upvote recommendations of if I’m too late) to one I no longer acknowledge because the same assholes probably get paid from each of those sales, too.
Like removed them removed them or just filled it up with spam “clicks”?
Second one is annoying and shouldn’t be possible but first one is concerning and really shouldn’t be possible. Makes me wonder if there’s a way to access the links in the back list via js. What browser btw?
One trick for the “back button doesn’t work” is to right click it and select the page you want to go back to from that list.
Though I do wish back buttons worked on clicks rather than loads or anything a site can override with javascript. I hate the sites that treat scrolling to the next article as a new page. It trains me to not scroll to the next one, even if it looks interesting, because they fuck with my browser like that (even though I can work around it, fuck them for the attempt).
But then there’s quantum immortality which kinda is like that. Your consciousness picks a universe where you don’t die for you to experience. Maybe it even picks an ideal reality, though in a “reality I need” kind of way, not necessarily a “reality I want”.
Buddahriffic@lemmy.worldto Greentext@sh.itjust.works•84 year old grandfather joined a message board2·6 days agoKen M’s grankid doesn’t get him.
Buddahriffic@lemmy.worldto Lemmy Shitpost@lemmy.world•Take a deep breath and think about it1·6 days agoIt is that simple but it isn’t easy. It’s like finding enlightenment from Buddhist parables. They don’t all click the same for everyone. Once they click, it can seem obvious, but before that, they can seem meaningless, trite, or misleading.
From my pov, the image is accurate but not the clearest. It can only get you part of the way and only if it resonates with you. It doesn’t surprise me that it generates cynicism similar to the “gee thanks, I’m cured” responses to mental health advice.
Buddahriffic@lemmy.worldto Lemmy Shitpost@lemmy.world•Take a deep breath and think about it2·7 days agoMy interpretation of the message in the meme isn’t so much a “present vs future thinking” as it is a “you don’t need to search for happiness because your brain determines your mood, not outside factors.” I’m not saying you should just ignore your issues (which would make things more difficult over time), but that you can be happy despite them. Happiness isn’t a goal, it’s a state of mind.
As for the millionaire example, that they wouldn’t be living paycheck to paycheck is the whole point. It was intended to frame happiness/unhappiness in a different context that was easy to understand (he lost money he had spent a lot of time getting) but was still left in a position that most would be happy to find themselves in, but instead he’s probably miserable about it.
Buddahriffic@lemmy.worldto Lemmy Shitpost@lemmy.world•Take a deep breath and think about it2·7 days agoMy line of thought for this is that stressing about whether you’ll have enough money to cover rent won’t make it any easier to cover rent. Happiness is more about mindset than circumstances. It is easier said than done, for sure, but if one needed to have 0 problems to be happy, there wouldn’t be many happy people.
Consider a millionaire who checks the markets one day only to realize their portfolio has dropped by 30% wiping out all of their gains for the past two years and leaving them with only 3 million. They’d probably not be very happy with that, despite still being in a position that many would trade everything to be in.
I’d even go so far as saying that fraud is pretty rampant in all levels of society.
Monkey’s paw curls. Now abortions are legal and forced.
Buddahriffic@lemmy.worldto Greentext@sh.itjust.works•I watched several videos on a Combine Harvester's inner workings and I still don't understand how this thing works.61·8 days agoAny farming will deplete the soil of nutrients over time simply because we harvest things from the plants and ship them elsewhere and don’t ship the waste or replacement nutrients back. Especially considering the insect die off, which at least moved some nutrients at random, though still not likely enough to make up for removing them at an industrial scale.
Buddahriffic@lemmy.worldto Mildly Infuriating@lemmy.world•The driver for my mouse occupies over 1 gbEnglish2·9 days agoIt’s generally not as heavy because the layer is just reinterpreting API calls while the user code still runs natively. On a browser running JavaScript, it’s using an interpreter for every line of code. Depending on the specifics, it could be doing string processing for each operation, though it probably only does the string processing once and converts the code into something it can work with faster.
Like if you want to add two variables, a compiled program would do it in about 4 cpu instructions, assuming it needed to be loaded from memory and saved back to memory. Or maybe 7 if everything had a layer of indirection (eg pointers).
A scripting language needs to parse the statement (which alone will take on the order of dozens of cpu instructions, if not hundreds), then look up the variables in a map, which can be fast but not as fast as a memory load or two, then do the add, and store the result with another map lookup. Not to mention all of the type stuff being handled at run time, like figuring out what the variables are and what an add of those types even means, plus any necessary conversions. I understand that JavaScript can be compiled and that TypeScript is a thing, but the compiled code still needs to reproduce all of the same behaviour the scripting language does, so generic functions can still be more complex to handle calling and return conventions and making sure they work on all possible types that can be provided. And if they are using eval statements (or whatever it is to process dynamically generated code), then it’s back to string processing.
Plus the UI itself is all html and css, and the JavaScript interacts with it as such, limiting optimizations that would convert it into another format for faster processing. The GPU doesn’t render HTML and CSS directly; it all needs to be processed for each update.
For D3D to Vulkan, the GPU handles the repetitive work while any data that needs to be converted only needs to happen once per pass through the API (eg at load time).
That browser render stuff can all be done pretty quickly on today’s hardware, so it’s generally usable, but native stuff is still orders of magnitude faster and the way proton works is much closer to native than a browser.
“Luckily there was a loophole in those rules that I (omnipotent, omnipresent, and omniscient) made.”
If that doesn’t scream, “made up by the clerics trying to avoid contradicting each other and bringing the whole house of lying cards down as they went”, just keep sending money to your church. Because if a god needs anything, it’s obviously worldly riches and unquestioning loyalty. We need these churches to impress everyone with the power of our god, but he’s sleepy after making it all and throwing tantrums bigger than we can imagine because people were acting like the way he made them capable of acting, like cartoon villains in some cases, like a whole city whose first reaction to seeing an angel was “Let’s all rape it!” So that’s why you need to send your money without any questions!