Hello! I am the creator of Don’t Wordle. Really excited to see this took off today. I thought I would share some background about the game, some of the iterations I went through, and some of the future features I would like to add. Background: Like many others, I have been playing Wordle daily. Recently, my Wordle win streak hit 99. I was admittedly very careful with my guesses on Day 100, not wanting to ruin my stre…
> 4. Trying to get www.dontwordle.com and dontwordle.com to take you to the same URL (either www.dontwordle.com or dontwordle.com) and still support TLS and only use the tech I mentioned above. I actually still don’t have it working perfectly. I know of a solution, but it’s overly complicated If you use Cloudfront with an S3 bucket as origin for _dontwordle.com_, just create a second Cloudfront with an S3 Bucket for…
Show HN: Can you lose at Wordle if you tried?
111–120 of 245 posts
Re: Show HN: Can you lose at Wordle if you tried?
#112Earlier quoted context omitted.
That's true for Wordle, but I think according to the dontwordle rules you are allowed to make a guess with an em on one of the grey squares anyway.
No you are not allowed to do that. A grey square excludes the letter from the position, regardless of any yellow squares.
Re: Show HN: Can you lose at Wordle if you tried?
#113I seem to have found a bug (or the word list is drastically different from Wordle). The game says I have 3 possible words remaining, but every Wordle solver website says I only have 2 (and I only have 2 guesses remaining, so this is the difference between the game being winnable and not). The guesses I used for today were WRITE,BOODY,VOUCH,COMMA (and at this point the only two possible words are FOCAL and LOCAL, but…
Re: Show HN: Can you lose at Wordle if you tried?
#114My minor nitpick would be to show the hint / toast every time Enter is pressed, not just the first time.
Re: Show HN: Can you lose at Wordle if you tried?
#115Earlier quoted context omitted.
Um.. elden ring?
Literally spent 50 hours mucking around exploring everything I could before realizing that you have to fight Margit to progress the story. I honestly thought it was a game like Shadow of the Colossus where you freely explore and just fight bosses. Fun game but some very terrible UX decisions that seem spiteful at times.
Re: Show HN: Can you lose at Wordle if you tried?
#116I seem to have found a bug (or the word list is drastically different from Wordle). The game says I have 3 possible words remaining, but every Wordle solver website says I only have 2 (and I only have 2 guesses remaining, so this is the difference between the game being winnable and not). The guesses I used for today were WRITE,BOODY,VOUCH,COMMA (and at this point the only two possible words are FOCAL and LOCAL, but…
Re: Show HN: Can you lose at Wordle if you tried?
#117Earlier quoted context omitted.
No you are not allowed to do that. A grey square excludes the letter from the position, regardless of any yellow squares.
You are correct. Words with repeated letters are not a good strategy in this game.
Re: Show HN: Can you lose at Wordle if you tried?
#118Re: Show HN: Can you lose at Wordle if you tried?
#119Hello! I am the creator of Don’t Wordle. Really excited to see this took off today. I thought I would share some background about the game, some of the iterations I went through, and some of the future features I would like to add. Background: Like many others, I have been playing Wordle daily. Recently, my Wordle win streak hit 99. I was admittedly very careful with my guesses on Day 100, not wanting to ruin my stre…
>What makes a Wordle square yellow One thing I had wondered--but not enough to figure out what the code does... Let's say you enter Mamma for example. And there is one M in the word but in the second position. Which M square does Wordle choose to turn yellow? (But maybe it doesn't matter?) There may be other cases like that as well.
Suppose the target word is “polar” and you guess “banal”.
A submitted word is marked in 3 passes.
0. Initial state: (“banal”, “polar”)
1. Zip together the letters of the guess and target words, and loop through the zipped list. When both letters at a position are the same, replace the guess letter with the symbol for “correct” (green) and remove the target letter from the target word. State: (“banGl”, “polr”)
2. Loop through the target word’s letters, replacing the first occurrence (if any) of each one in the guess word with the symbol for “present” (yellow). State: (“banGY”, “polr”)
3. Replace any remaining letters in the guess word with the symbol for “not present” (black). State: (“BBBGY”, “polr”)
Return the marked guess word.
---
Other examples:
0. (“mamma”, “amaze”)
1. (“mamma”, “amaze”)
2. (“YYmmY”, “amaze”)
3. (“YYBBY”, “amaze”)
---
0. (“nieto”, “otoño”)
1. (“nietG”, “otoñ”)
2. (“nieYG”, “otoñ”)
3. (“BBBYG”, “otoñ”)
edit: fixing formatting issues. Sorry, first time posting a comment on here.
Re: Show HN: Can you lose at Wordle if you tried?
#120Jane street had a puzzle related to this, called eldrow [1], a few months ago. The gist is you’re trying to find the worst sequence of (hard mode) guesses possible for any word in the wordle set. Their site shows submissions of up to 16 words and claims 17 is impossible [2]. I’ve been trying to do the same, but have yet to cut the search space enough[3]. Ex: calculating the worst chain for jazzy (with a 1000 word sub…