Earlier quoted context omitted.
This is a terrible use case for cookies. Any browser reset or change, new computer, your phone, etc, and you need to redo the whole experience every time. I'd rather login and customize once. Cookies get sent with most requests as headers so you're unnecessarily bogging down requests with data unrelated to the session.
I don't think a gzipped header with some hundreds of bytes of JSON (or BSON) for preferences is that much bigger than one with a session id string in a cookie.
Things to know about the GDPR, Mozilla and Firefox
91–100 of 103 posts
Re: Things to know about the GDPR, Mozilla and Firefox
#92Earlier quoted context omitted.
If the data collected is not personally identifying data, then GDPR is not interested in it. Maybe it is PII, but the quoted policies don't say that. > We may also use cookies, device information and IP addresses, along with clear GIFs, cookies and third party services to help us understand in the aggregate how users engage with our products, …
This brings up a interesting point: cookies are not just for user/session identification. Yes that's how the majority of the apps work but instead, it's totally possible to use cookies to customize a site's experience, feature by feature. A cookie for the theme, a cookie for the font prefs, etc. Yet most sites still insist on logging the user in to customize the experience, and rely on some central storage to determi…
I wouldn't bother changing any preferences that disappear every time I clear out my cookies. For starters, I'd have to figure out where on the website the preferences are set -- and if it's in the user profile, well, just save my preferences there.
Re: Things to know about the GDPR, Mozilla and Firefox
#93Earlier quoted context omitted.
Wasn't there some website where you could pull a relatively small number of easily accessible prefs from the browser (OS, list of fonts, browser, etc.) and get a nearly uniquely identifying set of facts about someone?
https://panopticlick.eff.org/ ?
Re: Things to know about the GDPR, Mozilla and Firefox
#94Earlier quoted context omitted.
This brings up a interesting point: cookies are not just for user/session identification. Yes that's how the majority of the apps work but instead, it's totally possible to use cookies to customize a site's experience, feature by feature. A cookie for the theme, a cookie for the font prefs, etc. Yet most sites still insist on logging the user in to customize the experience, and rely on some central storage to determi…
This is a terrible use case for cookies. Any browser reset or change, new computer, your phone, etc, and you need to redo the whole experience every time. I'd rather login and customize once. Cookies get sent with most requests as headers so you're unnecessarily bogging down requests with data unrelated to the session.
Of course this may require some heavy changes on the client-side code, as the client now must have the ability to apply user's customization locally, but there are benefit: After you done that, then you don't have to read user's customization data from any of your infrastructure every time user reloads your page.
Re: Things to know about the GDPR, Mozilla and Firefox
#95Earlier quoted context omitted.
Just have the browser present the user with the choice on install. ( ) Enable third party cookies. This may allow third party websites to track you across the internet. ( ) Disable third party cookies. This may break some functionality on some websites. It's no more confusing to end users than the endless sets of checkboxes websites have to use for GDRP or the pointless click OK to accept cookies notices.
Yup thats how it should be. Technical solutions are always superior to regulations.
Re: Things to know about the GDPR, Mozilla and Firefox
#96Earlier quoted context omitted.
Yup thats how it should be. Technical solutions are always superior to regulations.
It seems like the regulations help to create an environment conducive to innovation. There is now a strong incentive to solve the problem "a better way". Let's hope it happens!
Re: Things to know about the GDPR, Mozilla and Firefox
#97Earlier quoted context omitted.
100% exactly. Cookies are device and moment specific. Whereas a user account can easily save and transport the saved experience/setting anywhere the user wants to access them.
Firefox (and Chrom{e,ium} AFAIK) can sync up your cookies, among other things.
Re: Things to know about the GDPR, Mozilla and Firefox
#98Earlier quoted context omitted.
Firefox (and Chrom{e,ium} AFAIK) can sync up your cookies, among other things.
but if you go this route, you have to share them with a third party (Mozilla or Google)?
Re: Things to know about the GDPR, Mozilla and Firefox
#99Earlier quoted context omitted.
but if you go this route, you have to share them with a third party (Mozilla or Google)?
Yes, but Firefox's Sync is open source [1], so you should be able to set up a private instance. IDK how easy or hard it is though. [1] https://wiki.mozilla.org/CloudServices/Sync
Re: Things to know about the GDPR, Mozilla and Firefox
#100Earlier quoted context omitted.
https://bugzilla.mozilla.org/show_bug.cgi?id=697436#c14 "GA also doesn't track IPs or store PII within the tool."
Still requires that they inform the user, with the Cookie Notice soft-consent (or whatever the new ePrivacy directive will replace that with soon).