• 7 Posts
  • 1.01K Comments
Joined 4 years ago
cake
Cake day: May 31st, 2020

help-circle


  • Ephera@lemmy.mltoMemes@lemmy.mlBacon tho
    link
    fedilink
    arrow-up
    7
    arrow-down
    1
    ·
    3 days ago

    Ah, so your point was that we take B12 supplements for the nutrition, not just for taste pleasure. I genuinely had not understood that.

    I am aware of B12 being recommended to supplement. Personally, I don’t worry much about it, because my oat milk is fortified, my vegan cheese is fortified, even the multi-vitamin juice in my fridge has B12 in it. And the supplements are dirt-cheap, too. But yeah, sure, people in different regions might not have it as easy in this regard.

    The thing is, though, if we disregard those people, and also disregard all the meat-eaters who genuinely care about their nutrition and genuinely believe that they can only get it from meat, i.e. we let those eat their meat,
    then that still leaves a huge number of people, who would significantly improve their diet, if they significantly reduced their meat intake (or cut it out and replaced it with appropriate vegetables + supplements/fortified stuff).

    Nutritional experts have been screaming for decades that people should eat their veggies. Because those contain a massive range of vitamins, which the average person is not getting enough of. And if you’re eating enough veggies, then you need to cut back meat intake far below the average or do a lot of sport, otherwise you’re just consuming too much food.

    Ultimately, why the nutrition argument is rarely taken serious, is because the average meat-eater is so far removed from eating healthy that they probably don’t even know what B12 is.

    I guess, if you want the sensitive version of the strawman argument which you just came up with, that apparently the hivemind of vegans says that omnivores eat meat only for taste pleasure, then as a certified Vegan™ and part of the hivemind, I am glad to tell you:
    Not all omnivores eat meat only for taste pleasure. But a significant portion of those living in developed countries could easily go vegan without sacrificing nutritional quality and rather even improving it.



  • I’m currently in a software development project which was handed over to a different department with little software development expertise, and fucking hell, I hear this so often.

    Can’t you just run the tests against against a database like normal? Why do you need to automate the setup of this database? (I do not know what “normal” means, they did not elaborate.)
    Can’t you just switch over all the code to go directly against the database rather than also supporting in-memory.
    And then five minutes later: Can’t you just hook up the database connection where we need it and use in-memory for the rest?

    Like, I’m trying to appreciate the critical questions, because hey, maybe there is something I’m missing. But always this “just”, and them being dissatisfied when you tell them it doesn’t make sense or would be more work, that’s what kills me.



  • Ephera@lemmy.mltoMemes@lemmy.mlBacon tho
    link
    fedilink
    arrow-up
    3
    ·
    3 days ago

    If you can find TVP in the shops, in a steak shape, that stuff is ridiculous. You just cook them in a vegetable broth, press out the water and then sear them like a steak in a pan. The Maillard reaction turns the protein into that typical seared meat taste and it’s similarly chewy, too.

    Granted I have been vegetarian for a bit too long to really judge it, but I did also immediately gag on my first bite, because my body was convinced I was biting into meat.





  • As a German, it’s always fun to use the ss command. The SS was the organization that did most of the genocide under Hitler. That’s a bad name around here, so people are always surprised that a command is named that.

    But what’s even more fun is that we can memorize the standard set of flags as -tulpn, because it’s basically spelled+pronounced like “Tulpen”, which is German for tulips.

    So, occasionally I get to tell people to type “SS-tulips” into their terminal and it always confuses the hell out of them. 🙃










  • You should look into how the webpage is built. If it’s a static HTML webpage pre-rendered on the server, then you would have to scrape the HTML to extract the info.

    However, many more “modern” webpages use client-side JavaScript to separately request the actual data from the web server through a REST/HTTP API. This kind of API is not possible to fully restrict, unless they want to require all users to log in for viewing the webpage.
    And yeah, if it’s built like that, then you’d want to make use of that REST API. You do not need to use JavaScript to call it. Using any HTTP client library in any programming language, or even just curl, should work just as much.

    To see, if it’s built like that, open the “Network” tab in the Developer Tools of your browser and refresh the webpage.
    If it just loads a bunch of HTML, CSS and image files, then it’s the static webpage kind. If it sends/receives messages with JSON in the body to URLs without a file-type, then it’s likely the REST-API-kind.