• 0 Posts
  • 20 Comments
Joined 3 years ago
cake
Cake day: November 9th, 2022

help-circle
  • dreugeworst@lemmy.mltoMemes@sopuli.xyzEverytime
    link
    fedilink
    arrow-up
    4
    arrow-down
    1
    ·
    6 days ago

    you know, the AI answer is not that bad, but I have to wonder why you didn’t think about it. the peoples who would later become the Dutch and Germans used to refer to themselves using a similar term that meant ‘of the people’ because they saw themselves, collectively, as broadly similar peoples. OP is not wrong that English people use the word Dutch (rather than something like netherlandish) because there wasn’t much distinction made between German and Dutch at the time. That is, when a broader grouping than city or town was thought of at all.




  • most of his comments I completely understand, but saying process manager ‘looks a bit low-rent’ tells me absolutely nothing other than that you personally don’t like the look.

    also, complaining about not having a consistent way to install apps is a bit rich when coming from a desktop where the best way is still to just find the app website, download the installer and click through an inconsistent installer that might be trying to add ad- or spyware along with the app you want









  • I mean, this is also a particularly amateurish implementation. In more sophisticated versions you’d process the user input and check if it is doing something you don’t want them to using a second AI model, and similarly check the AI output with a third model.

    This requires you to make / fine tune some models for your purposes however. I suspect this is beyond Gab AI’s skills, otherwise they’d have done some alignment on the gpt model rather than only having a system prompt for the model to ignore









  • I think the main reason OOP has a well-known term and pattern for dependency injection is to differentiate these two (out of multiple) options:

    • the constructor of my object creates other objects it depends on itself
    • I construct the dependencies of my object elsewhere and pass them in to the constructor and use an interface to make it easy to swap behaviour

    However, this becomes less of a pattern in functional programming as you wouldn’t make such objects to begin with. In FP, you pass all parameters where a function is invoked, and DI just becomes using generic parameters. You wouldn’t instantiate a dependency on each function call after all.

    As this is such a minor change, it’s not really talked about much and it’s not really a pattern,