• @[email protected]
    link
    fedilink
    697 months ago

    we’ve updated our terms of service, you’re now opted in to everything, good luck!

    And

    Yes, you unsubscribed from that mailing list, but before you did we went and put your name down for 575 new email lists which you have not unsubscribed from.

    • @HaveYouPaidYourDues
      link
      English
      477 months ago

      Unsubscribing from this mailing list automatically signs you up for this other identical mailing list

      • AwkwardLookMonkeyPuppet
        link
        English
        407 months ago

        Unsubscribing confirms this is a monitored account, so we have sold your email address to 9 million other companies.

    • AwkwardLookMonkeyPuppet
      link
      English
      12
      edit-2
      7 months ago

      That first one should be punishable by flogging. Also the second one, but the first one is a very common strategy for opting you in to things you explicitly opted out of, and I’m pretty sure it’s illegal. But, since no one ever enforces the law against mega corps, they’re free to operate with impunity.

    • @KazuyaDarklight
      link
      English
      61
      edit-2
      7 months ago

      elseif( user.region = ‘eu’ ){ SecretlyCollectData(user)}

      • JohnEdwa
        link
        fedilink
        5
        edit-2
        7 months ago

        Would be neat if Google got caught with a GDPR violation, the max fine is 4% of your global revenue, which for Google would be 12.2 billion.

        So far the biggest has been Meta who was hit for 1.2 billion.

    • @raldone01
      link
      47 months ago

      No then they just don’t show you that they have your data…

  • 7heo
    link
    fedilink
    257 months ago

    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);
    
  • @[email protected]
    link
    fedilink
    197 months ago

    Don’t need an if, just set the variable and collect the data. Saved you a jump instruction. The compiler is going to optimize it out anyway, but simpler code is better and some people forget the -O flag.

    • Sibbo
      link
      fedilink
      37 months ago

      Yeah but the last requires you to explicitly distinguish between the two cases.

  • MxM111
    link
    fedilink
    37 months ago

    The only problem with the code I see is that the first 3 lines are not needed.

    /Google