Bruh you can make your own in python in 10 minutes max.
Shit. I'm gonna do it. Give me a secondm
# Requires python module 'nltk', run these two lines in a terminal
## python3 -m pip install nltk
## python3 -c "import nltk; nltk.download('words')"
from nltk.corpus import words
word_list = words.words()
flws=[]
for i in word_list:
if len(i)==5: flws.append(i.lower())
import random
def wordle():
print('Start guessing')
cw=random.choice(flws)
t=0
while t<6:
e=input()
if e in flws:
if cw==e:
print('√√√√√\nYou won!')
break
else:
out=''
for l in range(len(e)):
if e[l] in cw:
if e[l]==cw[l]: out+='√'
else: out+='~'
else: out+='x'
print(out)
t+=1
else:
print('Word not in dictionary')
if t<6:
print('GG, again? Y/N')
else:
print('Correct answer was "'+cw+'", wanna play again? Y/N')
ans=input()
if ans in ['Y','y']:
return(wordle())
else: return('Bye')
wordle()
The real reason it's popular is because it's a shared experience, everyone is doing the same puzzle - like the NYT Crossword.
That combined with the emoji sharing helped it become viral, you aren't just doing a word game - you're doing today's specific Wordle puzzle and sharing your results (without spoilers because of the emojis) with your friends/family.
That's not really true tbh, if someone created an online word game called "Wordle" and was under the jurisdiction of the US courts, it would probably be enforced without registering the trademark and all the paperwork
Bruh you can make your own in python in 10 minutes max.
Shit. I'm gonna do it. Give me a secondm
deleted by creator
They're buying the established userbase, ya turkey!
But literally anyone and their grandma can make their own version, this is like paying a lot of money to the person who invented tic-tac-toe
The real reason it's popular is because it's a shared experience, everyone is doing the same puzzle - like the NYT Crossword.
That combined with the emoji sharing helped it become viral, you aren't just doing a word game - you're doing today's specific Wordle puzzle and sharing your results (without spoilers because of the emojis) with your friends/family.
Yeah, I know
deleted by creator
Does it have copyright and shit? Cuz if its not a trademark or whatever and anyone can use "wordle" as name, then, again, they are fucked.
deleted by creator
That's not really true tbh, if someone created an online word game called "Wordle" and was under the jurisdiction of the US courts, it would probably be enforced without registering the trademark and all the paperwork
love me some nltk
:hero-of-socialist-labor:
It's garbage tho, the fuck is a genep?
genep? never heard of it. what is that?
I don't know but it showed up in the knlt dictionary
deleted by creator
No, linen is five letters, that's the only word you need
For the lexicon, just extract all 6 letters words from all the leftist theory online.