Live data from Hacker News

Wordle Is a Love Story

nytimes.com

91–100 of 128 posts

Re: Wordle Is a Love Story

#91
post #16

- Fun - Simple - One puzzle a day, and everyone plays the same one so you can share and compare scores - No account creation, logins, ads, subscriptions, data mining All the right ingredients for going viral. I just hope the last point stays unchanged.

I feel bad that he isn't making a dime from this. I think people should be able to get something in return for creating value for others.

Did you actually read the article? It sounds like he's getting much more of a reward than money.

Re: Wordle Is a Love Story

#92
post #4

What’s your optimal 5-letter starting word? Mine is HOUSE. It has 3 vowels (including E which is the most frequent in the English language) and S which helps test for plurals.

Hah funny to see other people strategizing like this..

I did some research and (from what I found) the most common letters in English are:

E, O, T, A, I, R, N, H, S (not in any order)

So I came up with TRAIN and SHOVE as 2 starting words that use all those letters without repeats, plus V.

WORLD is also a good one because it uses one of the most common starting letters (W, T, A, O, D) and one of the most common ending letters (E, D, S, T).

Some other good starting words for me have been RIVET, CANDY, PLUCK and BASTE.

Re: Wordle Is a Love Story

#93
post #4

What’s your optimal 5-letter starting word? Mine is HOUSE. It has 3 vowels (including E which is the most frequent in the English language) and S which helps test for plurals.

I did some analysis on this last week [ https://noxville.medium.com/raising-the-wordle-first-guess-b... ], ROATE left the lowest average valid answers (60.424) but 195 in the worst case. RAISE was the second best average (61.0) but a much better worst case of 168 words. Both are just heuristics, there might be a better word than either if the game were solved.

I wonder if ROATE is even in the list of words. I'd never heard it and I'd like to think I have a decent vocabulary.

The article says they whittled it down from 12,000 words to around 2,500 words, aiming for words that most(?) people would be familiar with.

Re: Wordle Is a Love Story

#94
post #93

Earlier quoted context omitted.

I did some analysis on this last week [ https://noxville.medium.com/raising-the-wordle-first-guess-b... ], ROATE left the lowest average valid answers (60.424) but 195 in the worst case. RAISE was the second best average (61.0) but a much better worst case of 168 words. Both are just heuristics, there might be a better word than either if the game were solved.

I wonder if ROATE is even in the list of words. I'd never heard it and I'd like to think I have a decent vocabulary. The article says they whittled it down from 12,000 words to around 2,500 words, aiming for words that most(?) people would be familiar with.

Yes, it's in the list of guessable words - however it's not a valid answer word. You need to use the WORDLE word list in order to evaluate how good or bad your initial guess is, using another word list will provide distorted results.

Re: Wordle Is a Love Story

#96
The eligible word list is an array of 5 char words embedded in the script. After digging a bit it looks like it gets the word like this (pseudocode):

dayOffset = floor((today - 19 April 2021) / 864e5)

index = dayOffset % wordList.length

wordOfTheDay = wordList[index]

edit: It's literally just picking the next item in the array in sequence.

Re: Wordle Is a Love Story

#97
post #16

- Fun - Simple - One puzzle a day, and everyone plays the same one so you can share and compare scores - No account creation, logins, ads, subscriptions, data mining All the right ingredients for going viral. I just hope the last point stays unchanged.

I hope the third point stays unchanged too. Too many services out there optimize for engagement, the expense being the encouragement of addictive behaviors.

Without ads or logins to sell information from, what’s the need to maximize engagement?

Re: Wordle Is a Love Story

#98
post #28

Seems like it would be important to note in the rules that letters can be used more than once even if they're green.

I’ve played twice now and had trouble. Today I had to resort to “cheating” using a scrabble word search site. Because I didn’t know that was allowed/possibly required.

Looking forward to tomorrow.

Re: Wordle Is a Love Story

#99
post #53

The game's great but I'm puzzled why no one mentions that this is a verbatim copy of Lingo, a 1987 tv show that's been adapted in many countries. I used to watch this in France where it was very successful. Once people got too good at 5-letter words, they ran 6, then 7, and finally 8 letters.

It goes back even further, to a word game from 1955, though I'm sure it's been invented earlier. https://en.wikipedia.org/wiki/Jotto
Post reply on HN