Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Welcome to Codidact Meta!

Codidact Meta is the meta-discussion site for the Codidact community network and the Codidact software. Whether you have bug reports or feature requests, support questions or rule discussions that touch the whole network – this is the site for you.

Comments on How to keep displayed usernames unique even if the user account is deleted?

Parent

How to keep displayed usernames unique even if the user account is deleted?

+4
−0

Motivation

On Stack Exchange (SE) I could have a really hard time following a discussion in comments between multiple users if one of the users deleted their account or changed their username.

Here on Codidact, this "problem" seems to be handled much better as the username seems to change when a user deletes their account or changes their username.

Here is an example of the current behavior (from here): example of deleted user current display

The username (shown as "deleted user") is even still clickable (hyperlink retained)!

Then it's much easier to follow a thread, but what if there are two (or more) deleted users chatting in the thread? How to make the discussion still understandable?

Proposal

So the question is: How to keep displayed usernames unique even if the user account is deleted?

A solution could be to assign a unique number to the username after deletion, e.g. "deleted user #9999999" (but I'm not aware of the implication of such a feature because even if the account is deleted, all user activity can be easily traced...).

(BTW, currently the clickable link related to the deleted user name redirect to the top of the current page (also in comment thread view), maybe it would be better to redirect to a page related to account management or something but it will be harder to maintain... EDIT after an answer: this redirection to top page is a reported bug)

History
Why does this post require moderator attention?
You might want to add some details to your flag.
Why should this post be closed?

0 comment threads

Post
+3
−0

Every user already has an associated unique number (it's in your profile URL). The easiest way to distinguish user names for deleted users would be to use that number. This is what SE does.

A consequence of this approach is that this means that anyone who knew your user number before you deleted your account would be able to identify you afterwards. I don't know how much of a problem this is in light of "right to be forgotten" laws in parts of the world. Even without a legal motivation, I'm unsure of the ethical considerations. If people want to be done with us and delete their accounts, should we make them completely anonymous? The single "deleted user" name does that, at the cost of some confusion.

If we want uniqueness and anonymity, then I guess we would need to generate a new number and associate it with the old (deleted) account. Profiles are soft-deleted, so that they remain available if needed for auditing, spammer investigations, and so on. Deleted profiles aren't linked and that link you're seeing is a bug, so thanks for the report.

History
Why does this post require moderator attention?
You might want to add some details to your flag.

1 comment thread

A newly generated number still leaks private info (2 comments)
A newly generated number still leaks private info
trichoplax‭ wrote 11 months ago

In terms of privacy, generating a new number for the deleted account would fall somewhere between using their original user id and using the same fixed "deleted user" for all deleted users.

It would protect against being identified by people who already know your user id, but if anyone also knows even 1 of your historical posts, then they only have to look up that post to find out what your newly generated number is after you delete your account. At that point you have no more privacy (from that person, at least) than with your original user id.

trichoplax‭ wrote 11 months ago · edited 11 months ago

If the only reason to distinguish deleted users is the problem described (confusing threads involving 2 or more deleted users), then perhaps a per question approach could work:

  • If a question & its answers & comment threads contains only 1 deleted user, show them as "deleted user"
  • If a question & its answers & comment threads contains more than 1 deleted user, show them as names that do not correspond to names under any other question. For example, "deleted user A" & "deleted user B" under this question show as "deleted user C" and "deleted user D" under another question, despite being the same 2 users.

Knowing the identity of one of the deleted users under this question would tell nothing about which other questions they had activity under.

A comment thread now makes sense, because every time the same person is speaking they are shown with the same name. Privacy between questions is protected because your name under this question does not show up under any other question.