WelcomeUser Guide
ToSPrivacyCanary
DonateBugsLicense

©2024 Poal.co

597

I think that users should be able to endorse other users (creating a web) and then users not in this web could be labeled "untrusted". For this to work you would have to be able to tell why a user is trusted so the names of endorsements would have to be public. This might also be overkill for poal at the current size, but if we got to 10k users or something it would be pretty nice to know who is vouched for my people i trust, and if i have a legit good conversation with someone i could mark them as trusted.

I think that users should be able to endorse other users (creating a web) and then users not in this web could be labeled "untrusted". For this to work you would have to be able to tell why a user is trusted so the names of endorsements would have to be public. This might also be overkill for poal at the current size, but if we got to 10k users or something it would be pretty nice to know who is vouched for my people i trust, and if i have a legit good conversation with someone i could mark them as trusted.

(post is archived)

[–] 0 pt

Sorry, i'm a little off today, so this could be wrong, but you get the idea. This would just be for the check, the actual code would have to return the paths that get to a positive result.

def is_trusted(username, trusted_list):
    for trusted in trusted_list:
        if username == trusted:
            return True
        if is_trusted(username, get_trusted_list(trusted)):
            return True
    return False
[–] 1 pt
[–] 0 pt

Wow, thank you for finding that. Hopefully get to read it tomorrow.

[–] 1 pt

It's good. There's also a github repo that's got extensive work done on this. Also check out https://cryptoanarchy.wiki/. This is the exact problem cryptocurrency was trying to solve, but applied to money.