Don't forget to stay hydrated.🍉🍉🍉🍉🍉

This is a test account for testing out lemmy.

Bio update test: 2024-03-13

  • 3 Posts
  • 36 Comments
Joined 3 years ago
cake
Cake day: June 16th, 2023

help-circle
  • UUUuuuuuh, I am not a programmer (you’re going to say “thank god”), but…

    I sometimes even chain them. You can put yet another ternary operator in the else and keep going. You know, else-if.
    So anyway, I can get ternary operators spanning 2 - 3 lines.
    Oh, I also often have issues thinking of proper loops, so you’d see a few terribly used goto statements.

    Although I do remove ones that are obvious brain fart.
    For example, quite obvious

    void example(bool true_or_false){
        if(true_or_false){
            //code if true
        }
        else{
            //code if false
        }
        //other code
    }
    

    Well, I’ve already had my brain goof up even that once or twice. “How the fuck”, you’re asking?

    void example(bool true_or_false){
        if(true_or_false){
            goto if_true;
        }
        //code if false
        goto end_false_if;
    if_true:
        //code if true
    end_false_if:
        //other code
    }
    

    The brain-fart if-else.




  • Because I am failure.
    I don’t have a kitchen, and most ready to eat food is non-vegan.
    I am currently living either with parents or at dorm.
    Parents are hoarders, so the kitchen can be considered out of service. There’s no space, and it’s far from food-safe.
    The dorm kitchen is shared between ~20 people, and I don’t do well around those, so I haven’t used it. Plus the situation with electric appliances is complicated there. I’d have to somehow haul my own fridge over there. And get it approved first, so more human contact.
    I also share a room with someone, so I just try to do least of anything over there.
    As I only tend to eat once a day, this is economically doable.

    Our uni also has a cafeteria, but I haven’t yet been there because… I haven’t yet been there. I don’t know how it works. I tried observing others, but I see the order system is done using some touchscreen terminal, the UI of which I don’t know (I was watching from further away), and I couldn’t find any precise manual online. Actually, I couldn’t find any manual online.


  • fly a private jet,

    Whom on Lemmy does that apply to?
    Anyway, the point being made here is to make better decisions where reasonably possible. If you dive deep enough, absolutely nothing is fully ethical.

    Like cleaning up your drive. You have little storage left, so you do a scan with Filelight.
    Do you care about:
    a) 1,000 20KiB config files
    b) 40GiB pacman cache
    c) 50GiB of music

    You can probably just get rid of pacman cache, but with the size, you might just as well get rid of your music, no? What’s the point of removing pacman cache if your music is worse?