• 4 Posts
  • 12 Comments
Joined 1 year ago
cake
Cake day: June 25th, 2023

help-circle






  • This article is a not sense. There is not a monopoly of identity: a lot of corporations and big tech have an ID about us or, at least, about me.

    Also, in my case, the state have paid most of my education, my healthcare, the street where I live… nor google not other big tech have paid a dime for it.

    The critic in the article has his points, but the proposed solution—using capitalist enterprises to issue IDs—is nonsense. We will lose track of people from a fiscal point of view, and it will not solve the problem of the people that not any corporation would issue an ID.








  • I think that this question from my non bot account has not reached you:

    @carlesmu@lemmygrad.ml wrote:

    Thanks for the wrapper :)

    Two questions:

    1. Where can I find the relation between languages and the languages_id ints?

    2. When I log in into a lemmy instance I check the protected member _requestor.nodeinfo to detect if the problem it’s the connection or the user/password:

       lemmy = Lemmy(instance)
      
       if not lemmy.log_in(user, password):
           if not lemmy._requestor.nodeinfo:
               raise LemmyException(f"Sorry, cannot connect to lemmy instance {instance}.")
           raise LemmyException(
               f"Sorry, cannot login {user} into {instance}. Bad user or wrong password."
           )
      

      There is a better way to validate it?