Date: 2026-05-06 Status: Draft
There is no simple, anonymous, registration-free tool for a group of people to collaboratively vote on a list of names suggested by the participants themselves.
| import bcrypt | |
| def generate_hashed_password(plain_password): | |
| salt = bcrypt.gensalt() | |
| hashed_password = bcrypt.hashpw(plain_password.encode('utf-8'), salt) | |
| return hashed_password.decode('utf-8') | |
| def main(): | |
| num_users = int(input("Quantos usuários você deseja adicionar? ")) | |
| inserts = [] |
| # How to consume Github Package private registry with yarn? | |
| Create an .npmrc file in the same location as the package.json with this content. | |
| ``` | |
| registry=https://registry.yarnpkg.com/ | |
| @<username>:registry=https://npm.pkg.github.com | |
| //npm.pkg.github.com/:_authToken=<your auth token> | |
| always-auth=true |