• 2 Posts
  • 61 Comments
Joined 1 year ago
cake
Cake day: May 31st, 2023

help-circle

  • “Can’t share item,” was the header. “You cannot share this item because it has been flagged as inappropriate,” read the body text.

    FAFO.

    We’ve been fanfaring for a decade and a fucking half for people not to see “the cloud” as a miracle solution, and to use it carefully. We’ve been warning that it is a blatant invitation to vendor lock in, that it is singlehandedly creating oligopolies, and that exactly this would happen.

    Did people listen? No. Did they aggressively confront (or passive-aggressively ostracise) us? You bet your bottom dollar they did.

    And now? Now they come around with surprised_pika.gif faces and whine to whoever listens that they are victims, and that they couldn’t “possibly have seen this coming”.

    No. They are enablers of abusers, they themselves abused anyone with even a modicum of common sense, and they brought this upon themselves a thousand times over.

    FAFO. And at this point, reading such story fills me with the most powerful schadenfreude I have ever experienced.

    "Well well well if it isn't the consequences of my own actions" meme




  • 7heo@lemmy.mltoProgrammer Humor@lemmy.mlJunior Dev VS Senior Dev
    link
    fedilink
    arrow-up
    11
    arrow-down
    18
    ·
    3 months ago

    Junior dev:

    Straight out of uni, know the latest developments while having also studied long established standards and specifications (like POSIX, LSB, SQL, etc), full of energy, and ready to speedrun burning out any %

    Senior dev:

    Hasn’t learned anything substantial in decades, uses outdated specs because “who got the time for that, and legacy stuff works just as well anyway”, copy pastes most of their work from stack overflow, is only still employed because of their inside information knowledge and the utter absence of documentation leading to a bus factor of one, and has perfected the art of gaming the system to the point of photoshopping a sloppy IDE screen over their WoW game whenever a picture of them “working” gets taken.

    Yeah, checks out.











  • 7heo@lemmy.mltoTechnology@lemmy.mlToday's AI is unreasonable
    link
    fedilink
    arrow-up
    6
    arrow-down
    3
    ·
    edit-2
    4 months ago

    AGI

    It depresses me that we have to find new silly acronyms to mean something we already had acronyms for in the first place, just because we are simply too stupid to use our vocabulary appropriately.

    AI is what “AGI” means. Just fucking AI. It has been for more than half a century, it is sensical, and it is logical.

    However, in spite of its name, the current technology is not really capable of generating information, so it isn’t capable of actual “intelligence”. It is pseudo-generation, which it achieves by sequencing and combining input (AKA training) data. So it does not generate new information, but rather new variations of existing information. Due to this fact, I would prefer the name of “Artificial Adaptability” (or “AA”, or " A2") to be used in lieu of “AI”, or “Artificial Intelligence” (on the grounds that it means something else entirely).

    Edit: to the people it may concern: stop answering this about “Artifishual GeNeRaL intelligence”. I know what AGI means. It takes all of 3 seconds to do an internet search, and it isn’t even necessary: everyone has known for months. I did not bother to explicit it, because I did not imagine that anyone would be simple enough to take literally the first word starting with “g” from my comment and roll with that in a self-important diatribe on what they imagined I was wrong about. So if you feel the need to project what you imagine I meant, and then correct that, please don’t. I’m sad enough already that humanity is failing, I do not need more evidence.

    Edit 2: “your opinion only matters if you have published papers”. No. Also it is a really stupid argument from authority. Besides, anyone with enough time on their hands can get papers published. It is not a guarantee of quality, but merely a proof that you LARPed in academy. The hard part isn’t writing, it is thinking. And as I wrote before, I already know this, I need no more proof, thank you.




  • That isn’t real. It wouldn’t pass peer review. Here is the actual code:

    function GetCookieValue(x) {
      return JSON.stringify(x);
    }
    
    user.cookies.agreed = Boolean(GetCookieValue(true));
    
    if(!DarkPatternPopup()) {
      // Make sure we respect the user choice
      user.cookies.agreed = Boolean(GetCookieValue(false));
    }
    
    if(user.cookies.agreed) CollectData(user);