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.
I’m not sure about “lie #1” so let’s talk about the second one.
Read the privacy policy again, they are using IP adresses, they do not collect them. That’s a big difference. I see no lie here.
For secure call, yes you must pay, that’s their business model. Honestly I prefer to know that’s how they make money rather than selling my data.
But hey, we can’t all like the same thing. :)
Yeah, we have !linuxhumor@lemmy.ml for memes about Linux @m4x@lemmy.ml :)
Matrix takes not that many resources to selfhotst now! also, as @dessalines@lemmy.ml mentioned, it does not use jitsi for 1 to 1 calls.
So I think your statement isn’t true.
I get it and it’s a totally valid argument. They say want to open the source code soon but it’s been a while since they said that and nothing has changed… I really hope they will respect what they said…
btw I don’t mind getting downvoted, I was just wondering why it was the case everytime Olvid was mentioned
Just tried and it’s just doing
ls
in the directory passed in the arg 🤔edit:
alias cd="ls ${1} && cd ${1}"
works tho