The web raccoon 🦝
Activity | CS Student |
---|---|
Interests | art / tech / science |
Website | hugo-mechiche.com |
Banner | Photomontage by me (Original pic by shi chenxi) |
XMPP | uncle-reaton@jabber.lqdn.fr |
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)
Idk if lemmy.ml have mods in multiple tz but if it’s not the case it could be nice to consider it.
Just tried and it’s just doing
ls
in the directory passed in the arg 🤔edit:
alias cd="ls ${1} && cd ${1}"
works tho