• 0 Posts
  • 44 Comments
Joined 2 years ago
cake
Cake day: May 1st, 2024

help-circle



  • Thanks for the interesting read!

    My condolences on the state of the US food industry as a whole, and dairy in particular. As a European who loves their cheeses, it saddens me how a product that’s not cheap but accessible can be gatekept economically like that in the US.

    Don’t be hard on yourself about it though, to me this is a systemic failure. You clearly did your research, even though the “cheese platter” available to you is small and mostly gross ¯\_(ツ)_/¯ .

    If you’re looking for a hobby though: making cheese yourself doesn’t require any expensive stuff except milk (and in some cases time). You may have come across making mozzarella at home, which you can do in a day. But other cheese is possible too: apparently you can make a young cheese with yoghurt as the culture which starts fermentation!



  • stormeuh@lemmy.worldtoLemmy Shitpost@lemmy.worldHaha yes society is great
    link
    fedilink
    arrow-up
    15
    arrow-down
    1
    ·
    edit-2
    3 months ago

    Yes, because:

    • a small apartment is more comfortable when you have other spaces where you can exist for free

    • in our increasingly isolated society we need more spaces for serendipitous socializing

    It does tie into affordability though, because the lack of third spaces is in itself an indication of an over-exploited real-estate market. A third space is almost by definition not maximally exploited, because you’re allowing non-paying patrons to take space which could be used by paying ones. Allowing non-paying patrons is only a moral question up to some point, after that it’s just the market forcing the choice between more exploitation or bankruptcy.











  • Under a very strict interpretation, that should mean any LLM trained on GPL code should be GPL as well. To prove that is the case seems tough though, just like artists you would need to make the LLM produce a substantial part of the licensed work to prove said work was part of the training data.

    If that would hold up in court is a completely different question though, and then there is also the question of what organization is willing and able to cough up the legal fees to litigate this.



  • Why is it so hard to accept that not everybody can stay awake while reading a scientific article?

    I’m a PhD researcher and even I struggle staying awake sometimes.

    No seriously, I fully agree, scientific articles are written for a specific, niche audience, i.e. not the general public. But science should be communicated to the public, in as accessible a format as possible. If you fail to do that, you get people saying “science is boring”, or worse, mistrust of science like it exists today.

    And another thing: this shouldn’t be either-or between watching a video and reading an article. Watch the video, get a general understanding of the topic, see if it interests you. If you want to know more, dive into the article to deepen that understanding. I guarantee you’ll get a better understanding that way, because watching the video has already given you a general structure of the topic. Reading then serves to add details in that structure.



  • Seems like it’s mostly error handling, which makes total sense to me. In a function with a lot of error conditions, where it also takes more than return <nonzero value> to report that error, the code would get very cluttered if you handle the errors inline. Using goto in that case makes the normal case shorter and more readable, and if proper labels are used, it also becomes clear what happens in each error case.

    Sure, you can do that with functions too, but it’s much nicer staying in the same scope where the error occurred when reporting on it. Putting things in a function means thinking about what to pass, and presents extra resistance when you want to report extra info, because you have to change the function signature, etc.