this post was submitted on 14 Mar 2024
603 points (96.6% liked)

Programmer Humor

18961 readers
1178 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 1 year ago
MODERATORS
 
all 17 comments
sorted by: hot top controversial new old
[–] [email protected] 70 points 5 months ago (2 children)

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.

[–] [email protected] 47 points 5 months ago (1 children)

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

[–] [email protected] 40 points 5 months ago

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

[–] [email protected] 12 points 5 months ago* (last edited 5 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.

[–] [email protected] 46 points 5 months ago (4 children)

Excuse me, that else should be elseif( user.region != 'eu' )

[–] [email protected] 61 points 5 months ago* (last edited 5 months ago) (1 children)

elseif( user.region = 'eu' ){ SecretlyCollectData(user)}

[–] [email protected] 5 points 5 months ago* (last edited 5 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.

[–] [email protected] 19 points 5 months ago

Google: "Haha, hahaha, no."

[–] [email protected] 18 points 5 months ago* (last edited 5 months ago)

Else if (EU) {be annoying while collecting data;}

[–] [email protected] 4 points 5 months ago

No then they just don't show you that they have your data...

[–] [email protected] 26 points 5 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] 19 points 5 months ago (1 children)

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.

[–] [email protected] 3 points 5 months ago

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

[–] [email protected] 3 points 5 months ago

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

/Google