• 0 Posts
  • 24 Comments
Joined 10 months ago
cake
Cake day: August 8th, 2024

help-circle


  • ddplf@szmer.infotoTechnology@lemmy.world*Permanently Deleted*
    link
    fedilink
    English
    arrow-up
    8
    arrow-down
    1
    ·
    4 months ago

    You made me look ridiculously stupid and rightfully so. Actually, I take that back, I made myself look stupid and you made it obvious as it gets! Thanks for the wake up call

    If I understand correctly, the model is in a way a dictionary of questions with responses, where the journey of figuring out the response is skipped. As in, the answer for the question “What’s the point of existence” is “42”, but it doesn’t contain the thinking process that lead to this result.

    If that’s so, then wouldn’t it be especially prone to hallucinations? I don’t imagine it would respond adequately to the third “why?” in the row.










  • Extremely good news, the pricing of Chinese cars is not just a healthy competition to European counterparts, they were a form of attack on the European industry.

    The Chinese never found a way to make profit in spite of radically lower prices, this is a state-funded strive to reach dominion and monopolize the market, after which they can do whatever the fuck they want.

    It is the exact same fucking strategy they practiced with Temu, Alibaba and AliExpress operate at extreme deficit covered by the state, amass clients and then increase the prices.


  • To me, there are two classifications of DRY - one I find harmful, the other very useful.

    First one resembles mathematical extractions, essentially you never allow a single chunk of code to be written twice and you create massive amounts of global util junk. This also creates some bad tight coupling.

    The other is more logical, where you only extract logic in places you want to always change together. Simple and effective.