Some discouraging anecdotes on how services handle account deletions
21–30 of 133 posts
Re: Some discouraging anecdotes on how services handle account deletions
#22That's because Apple requires it. They won't approve my app, unless there's a "full-fat delete" option.
If a user of the app deletes, it completely nukes their entire account, down to the last byte.
Re: Some discouraging anecdotes on how services handle account deletions
#23I've worked for several companies and let me tell you the truth: * accounts are never deleted, period * At most there's a column in the table which specifies whether the account is alive or not. That's it.
Confluence even explicitly does this - you can do a “gdpr delete” which disables the user and replaces all info with random strings. It’s kind of hilarious.
Re: Some discouraging anecdotes on how services handle account deletions
#24The app I'm writing does this very well. That's because Apple requires it. They won't approve my app, unless there's a "full-fat delete" option. If a user of the app deletes, it completely nukes their entire account, down to the last byte.
Re: Some discouraging anecdotes on how services handle account deletions
#25Re: Some discouraging anecdotes on how services handle account deletions
#26The app I'm writing does this very well. That's because Apple requires it. They won't approve my app, unless there's a "full-fat delete" option. If a user of the app deletes, it completely nukes their entire account, down to the last byte.
Depending on the service, it's not always possible, or even desirable, to fully delete an account. For example, if something has an important social part to it, do you also delete the comments that user has left on other people's content? Or their messages in chats? If you do, then discussions end up broken. If you don't, this isn't really a "full deletion". Most social services I've seen do the latter. Some replace…
I have seen apps that delete an entire thread, when a root comment is deleted; including responses by other people. I think SMF did that.
In the case of our app, we leave communication between users to other apps (like Mail and Messages), so we sidestep that problem.
Actually, the reason we deliberately push communication out to other apps, is so we’re not on the hook for it. There’s no reason for us to have the users communicating with each other, via our app. Long story, but privacy is a real big deal, with our user base. I’m super tinfoil about security.
Re: Some discouraging anecdotes on how services handle account deletions
#27Part of this is leftover tech culture from Facebook's early focus on Growth, Growth, and more Growth. Allowing for easy deletion of accounts was fundamentally at odds with user growth. It's refreshing to see that tech is now heading in a more socially responsible direction, but the industry still has a long way to go.
> It's refreshing to see that tech is now heading in a more socially responsible direction what are examples of tech heading in a more socially responsible direction?
These are, of course, unrelated to account deletion, but it shows that big tech is at the very minimum aware that social responsibility is becoming a more important part of business.
Re: Some discouraging anecdotes on how services handle account deletions
#28Earlier quoted context omitted.
> It's refreshing to see that tech is now heading in a more socially responsible direction what are examples of tech heading in a more socially responsible direction?
Datacenter carbon neutrality and de-biasing ML models are two that I can recall off the top of my head. These are, of course, unrelated to account deletion, but it shows that big tech is at the very minimum aware that social responsibility is becoming a more important part of business.
As exemplified by, for example, Google firing the two heads of their Ethical Artificial Intelligence Team...who had been researching bias? [1]
[1] https://www.theverge.com/2021/4/13/22370158/google-ai-ethics...
Re: Some discouraging anecdotes on how services handle account deletions
#29That's sketchy, especially if you don't own the domain but you're on a multi tenant domain like Gmail
Re: Some discouraging anecdotes on how services handle account deletions
#30I've worked for several companies and let me tell you the truth: * accounts are never deleted, period * At most there's a column in the table which specifies whether the account is alive or not. That's it.