this post was submitted on 14 Oct 2023
713 points (98.6% liked)

Memes

45132 readers
3258 users here now

Rules:

  1. Be civil and nice.
  2. Try not to excessively repost, as a rule of thumb, wait at least 2 months to do it if you have to.

founded 5 years ago
MODERATORS
 

Self doubt stems from here.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 146 points 11 months ago (4 children)

In order for this to save... It needs to use cookies, so by not saving cookies you're guaranteed to see it again.

[–] [email protected] 133 points 11 months ago (2 children)
[–] [email protected] 68 points 11 months ago (2 children)

it makes sense but the comic is slightly confusing because I think the character should be smiling in the last frame, as if thinking, hey they didn't lie, it really doesn't use cookies

[–] [email protected] 12 points 11 months ago

make site notification that they don't use cookie actually use cookie but code pages to always display notification be celebrated by users sell tracking data win from both ends

this is why I'm suspicious of everyone, all the time

[–] [email protected] 7 points 11 months ago

I think it's a "I don't know what else I was expecting" kind of frown.

[–] [email protected] 26 points 11 months ago
[–] [email protected] 43 points 11 months ago

Nah, there are also local and session storage, you don't need cookies to save something in a user's browser.

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

Clicking ok should transfer you to a different url without that message

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

You can use server side session tracking to maintain cookie choices short term. Some sites do.

[–] [email protected] 16 points 11 months ago (1 children)

And how does the server know which session was yours?

[–] [email protected] 16 points 11 months ago* (last edited 11 months ago) (1 children)

Besides using session cookies, they can track user agent and IP address. The two in combination will be unique enough. There are further metrics to make a unique identifier, but I think this is sufficient explanation.

Edit: Seems like people who don't know how to program besides super default methods are downvoting me.

You don't need cookies to hold session ID. If you programmed in the earlier days, you'd actually even know cookie session wasn't even the most common method before. For example, session ID can be passed around in the URL as another query parameter. You can even literally turn off cookie option in sessions in languages like PHP (ex: https://www.php.net/manual/en/session.configuration.php#ini.session.use-cookies). These kind of practice is still relatively quite common as it allows greater flexibility and not have your session ID bound to a domain.

Furthermore, you don't have to be restricted by the confines of whatever existing tools you already have. Like in the example I gave at the beginning, you can create your own unique identifiers. You don't have to use preexisting concept of session at all. If you can create any unique key-value pair, you can track and keep data without the use of sessions. Programmers are hired to create things that never existed before, be more creative.