cross-posted from: https://lemmy.world/post/4793853
cross-posted from: https://lemmy.world/post/4793705
https://gitlab.com/christosangel/wordy
Wordy is a word spelling puzzle.
You have 6 guesses to find out the secret 5-letter word.
If a letter appears green, that means that this letter exists in the secret word, and is in the right position.
If a letter appears yellow, that means that this letter exists in the secret word, but is in NOT the right position.
If a letter appears red, that means that this letter does NOT appear in the secret word AT ALL.
There is another project that might interest you:
Oh the word list issue is a matter of great debate. I opted for using the default word list just to avoid this matter (thinking that this list is something fixed and undebatable). It might be a good idea to make the word list configurable, so that each user may use their prefered word list. Stay tuned, I might do it the very near future.
Have you thought of the Wordle wordlist by default and let the user override it via a config option? This would cut down on the per-distro variability. IIRC the wordlist itself it around 14KB so not terribly large. You could even pull it from the GH via curl during installation if you’d like. I don’t think I’d mind implementing this if your interested.
If someone wishes to play the game using a different word list, they can do so, editing LINE 17of the
wordy.sh
WORD_LIST="/usr/share/dict/words"
change to
WORD_LIST="/path/to/prefered/wordlist"
I have already considered this before. I know that what you propose is quite easy. However I do not want to impose any other word list (that might even be considered “proprietary”) to anyone, when the majority of the users’s systems already have the default word list. So, whoever user want any other list, they can easily edit that line and go on enjoy the game using the list they like.
Another solution is a config file instead of editing line 17. It is just as easy, but having a config file to configure just one parameter sounds not great.