Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)CO
Posts
0
Comments
551
Joined
2 yr. ago

  • I'm downvoting both of you for being wrong.

    Go download a copy of your Discord data from your account settings. Have a look through it.

    It collects way more data about you than you know.

    Also as much as it is for gaming chat only, soooo much extra conversation is collected.

    And it's all going to a massive data mining company in China known as Bytedance. Otherwise known as Tencent.

  • You raise a good question, but here's the thing.

    In Australia discrimination may be unlawful if it pertains to:

     
            age
        disability, or
        race, including colour, national or ethnic origin or immigrant status
        sex, pregnancy, marital or relationship status, family responsibilities or breastfeeding
        sexual orientation, gender identity or intersex status.
    
    
      

    religion, political opinion, national extraction, nationality, social origin, medical record, criminal record or trade union activity.

    The kicker here is - insurance companies are allowed to -- that's how their business works.

  • This has been exceptionally done to death on Reddit but I'll say it here since Reddit is dead.

    Authentication -

    If what you're looking for is a login front end you could check out paper merge - personally I've got Keycloak and Nginx running so I can just make my own login page anyway and put paperless behind it.

    Stuff with sensitive documents should probably not be on the internet anyway unless you're a really advanced user.

    Encryption -

    In app encryption offers no security because the encryption key is stored in RAM and likely a database entry that must be unencrypted.

    So the Devs are 100% correct in stating that it gives people a false sense of security to offer it as a feature.

    Best bet is to have an encrypted filesystem or alternative encrypted storage buuuut, also understand that encryption key is also stored in RAM.

    TLDR: There is no point in Devs offering in app encryption when you should already be encrypting the filesystem.