theres an xkcd password generator for the terminal or a site that does a similar thing here
this post was submitted on 13 Feb 2022
1 points (100.0% liked)
Open Source
823 readers
19 users here now
All about open source! Feel free to ask questions, and share news, and interesting stuff!
Useful Links
- Open Source Initiative
- Free Software Foundation
- Electronic Frontier Foundation
- Software Freedom Conservancy
- It's FOSS
- Android FOSS Apps Megathread
Rules
- Posts must be relevant to the open source ideology
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
- !libre_culture@lemmy.ml
- !libre_software@lemmy.ml
- !libre_hardware@lemmy.ml
- !linux@lemmy.ml
- !technology@lemmy.ml
Community icon from opensource.org, but we are not affiliated with them.
founded 5 years ago
MODERATORS
I use my password manager (keepass) to generate a "phrase" and use that as name.
Idk, you could try to find a list of noun, a list of adjective and then make a lil python/bash script that randomly generates a nickname. (There might be an easier solution tho)
I made a python script (Yup I'm bored lol)
https://codeberg.org/UncleReaton/RUNG
#!/usr/bin/python3
import random
with open("adjectives.txt", "r") as f_adj:
adj = f_adj.readlines()
with open("nouns.txt", "r") as f_nouns:
nouns = f_nouns.readlines()
rand_noun = nouns[random.randint(1, len(nouns))].strip()
rand_adj = adj[random.randint(1, len(adj))].strip()
rand_number = str(random.randint(0, 100))
print(rand_noun + "_" + rand_adj + "_" + rand_number)