• 1 Post
  • 32 Comments
Joined 2 years ago
cake
Cake day: July 5th, 2023

help-circle





  • r1veRRR@feddit.detoMemes@lemmy.mlPlane goes brrrr
    link
    fedilink
    arrow-up
    33
    arrow-down
    10
    ·
    2 years ago

    ANY effective, long-term collective change REQUIRES that the large majority of people CHANGE THEIR CONSUMPTION HABBITS. While not great, the private plane stuff is exactly as pointless as the paper straws. Both are ways for everyone to point the finger at everyone else, and not have to change.

    If the government implemented the “correct” laws tomorrow, but the populace doesn’t want to change their habits, they will vote in people that give them back their old, bad things.

    If a company implemented to “correct” processes, but the consumers don’t want to pay the necessary price, they go bankrupt, and the company with the “incorrect, but cheap” processes wins.

    ALL COLLECTIVE ACTION IS A COLLECTION OF INDIVIDUAL CHANGE. There is no alternative!


  • r1veRRR@feddit.detoMemes@lemmy.mlLove my bugs like I like my ..
    link
    fedilink
    arrow-up
    1
    arrow-down
    4
    ·
    2 years ago

    Having had lobster exactly once, I really don’t understand. The meat tastes like nothing, exactly like 99% of all meat. The only exception is a good beef cut, and that still has to be prepared correctly. Everything else is just about the butter, salt, spices.

    The manual part I can kind of understand, honestly. There’s something rewarding about working for your food. Though I did feel like I’m using more energy to get the food than I end up consuming. It’s like a lick-mat for dogs.




  • Imagine a website where EVERYONE sees the exact same content. You could just calculate that content once, save the result, and give everyone that pre-calculated result. This is called caching (roughly speaking).

    Now imagine the other extreme: NOONE sees the same content. That means you have to do your (comparatively) expensive calculations every single time. That requires a lot more compute power, esp. if you want to maintain a decent speed.

    Most websites aren’t entirely one or the other, but in general anything customizable will make things just a little less cache-able, and therefore everything a little more compute-intensive. Blocking is one of those customizations.



  • But that’s true of literally every single community. Posting copyrighted images in a pics community, copyrighted music in a little video/gif, a nazi denying the holocaust (illegal in Germany) in one little comment a hundred comments in…

    Who do you think is more likely to overstep? A community very well aware of the risks and the scrutiny they are under, full of people that are themselves aware of the risks, or some rando on some random community?

    Obviously, they are allowed to ban or not ban whatever they want, but I just think it’s a very short sighted, quickfire decision.



  • r1veRRR@feddit.detoProgrammer Humor@programming.devGolang be like
    link
    fedilink
    arrow-up
    21
    arrow-down
    1
    ·
    2 years ago

    It’s better than “invisible” exceptions, but it’s still the worst “better” version. The best solution is some version of the good old Result monad. Rust has the BEST error handling (at least in the languages i know). You must handle Errors, BUT they are just values, AND there’s a easy, non-verbose way of passing on the error (the ? operator).


  • While I understand the idea behind using CSS “correctly”, I have, in my 15 years of professional experience, never ever seen even one project where the hypothetical promises of CSS were actually realized. It ALWAYS ends up with a fuckton of importants, or hunting for ages for the one class fifteen levels of abstraction up that changes your one element, coming up with more and more absurd class names, until they are literally no different from just some random name. Tailwind might seem horrible in a theoretical sense, but in an actually using it sense it’s a heaven sent. I want to change the padding on THIS ONE SINGLE ELEMENT, I change it EXACTLY RIGHT THERE where the element is defined, and i can be absolutely sure that I haven’t accidentally cascaded someone else’s work to death.

    #CSS, in practice, is the insane idea of every single element on your website sharing global, mutable state, and thinking that’s in anyway smart.


  • To get annoyingly serious on a funny post, the one huge danger of GUIs that I’ve personally witnessed in many of my juniors is that they abstract away the need to understand the tool you’re using.

    I regularly use a Git GUI, and I might have to google the rebase command for more complex tasks, but I know how Git works. I know what I can do with rebase, even if I don’t exactly know how to. If you only live in the GUI, you can get far never understanding the system. Until one day, when you fuck up a commit or a push, and you’re totally hosed because there isn’t a pretty button with the exact feature you want in your GUI.