• 56 Posts
  • 4.75K Comments
Joined 5 年前
cake
Cake day: 2020年5月31日

help-circle

  • Ephera@lemmy.mltoich_iel@feddit.orgich🍲iel
    link
    fedilink
    Deutsch
    arrow-up
    5
    ·
    8 小时前

    Gibt hier im Laden einen Brotaufstrich aus roter Beete und Meerrettich. Als ich mir den auf’s Brot geschmiert hatte, hat mein Gehirn echt kurz die Reaktion gehabt, dass da eine Textur fehlt, weil es so Knallpink war, wie die Farbe, die man gerne in der Spieleentwicklung nimmt, wenn eben noch die Textur fehlt (#FF00FF).



  • I don’t have experience with Jujutsu, but I always have the same problem with these alternative frontends, which is that I’d still want to be proficient with the original. If you need to look up how to fix something or you want to help others in your team or you want to script something, then the language to speak is simply the Git CLI.

    And I don’t feel like I even use the Git CLI enough where a different tool could be so much better that it’s worth learning both.
    Obviously, your priorities may differ, but yeah, that’s just always the reason for me why I prefer the Git CLI, even if it were objectively more difficult to use.




  • Ephera@lemmy.mltoComic Strips@lemmy.worldFour Eyes Principle
    link
    fedilink
    English
    arrow-up
    13
    ·
    15 小时前

    Yeah, there were also several stories where the AI just detected that all the pictures of the illness had e.g. a ruler in them, whereas the control pictures did not. It’s easy to produce impressive results when your methodology sucks. And unfortunately, those results will get reported on before peer reviews are in and before others have attempted to reproduce the results.








  • We have a concept of word inflection, which can be used to replace a lot of words that English would use to denote something being a question, ownership markers, causes and effects etc.

    I don’t speak Finnish, but I believe a good example for such an inflection is how in English you can glue an -s to words to make them plural. In some other languages, you say “many word” instead, because they don’t have such an inflection.


  • Ephera@lemmy.mltoich_iel@feddit.orgich🐑🥁🐍iel
    link
    fedilink
    Deutsch
    arrow-up
    11
    ·
    1 天前

    Hab vor 'ner Weile im Laden “Ameisen-Buffet” gesehen und dachte, krass, hätte nicht gedacht, dass das schon im Mainstream angekommen ist, dass die Ameisen in Deutschland aktuell hart am Aussterben sind, so dass es genug Interesse an einem Produkt wie dem Bienenhotel nur eben für Ameisen gibt.

    Ja, es war Gift.



  • It’s mainly horrid, because it means you have to code extremely defensively (or I guess, use a different API).
    You can’t rely on new Date("not a date") aborting execution of your function by throwing an error. Instead, you have to know that it can produce an Invalid Date object and check for that. Otherwise a random NaN shows up during execution, which is gonna be extremely fun to try to find the source of.

    I understand that it’s implemented like that partially for historical reasons, partially because it’s often better to display “NaN” rather than nothing, but it’s still the sort of behavior that puts me in a cold sweat, because I should be memorizing all kinds of Best Practices™ before trying to code JavaScript.