I manage to get the word on my last try and it was very satisfying. I've never seen this game before. I was a little sad you only get one word a day.
Wordle is pretty damn smart in many subtle ways
81–90 of 271 posts
Re: Wordle is pretty damn smart in many subtle ways
#82Earlier quoted context omitted.
Stardew Valley doesn‘t have nearly as short of a timeframe but is another labor of love success.
I think it's an even better personal success than Wordle, or at least different. It was a man's labor of love for years, which tied together all his interests: music, art, programming, games. And better yet he built a career out of doing all of those things and still owns and maintains it years later. Presumably still loves it too.
Re: Wordle is pretty damn smart in many subtle ways
#83The code design is also very elegant in its simplicity. You have two static lists of words in the JS code - known words, and a smaller, random pre-shuffled list of words the game will select from. The selection is done on the client, by date, from the second list - every day at midnight (your local time!) the next word in the pre-shuffled list is selected - no hashing or randomizing or anything. No cookies are involv…
Making the whole thing client side also let him scale from a small handful of users to literally millions with basically zero additional work. I hope it inspires future devs to let go of feeling like they absolutely need to beg or require users to create accounts to capture email addresses just so they have a chance at monetizing their thing. Wordle may not have ever caught on if it were preemptively over-engineered:…
But everyone on HN is telling me that I should move away from client side and render everything server side! In fact, all state should be server side! Use a fancy library that opens a web socket and turn the users 4+core computer into a mindless zombie controlled by a .25CPU VM somewhere.
/s
Re: Wordle is pretty damn smart in many subtle ways
#84Earlier quoted context omitted.
I'm actually sort of a "word" person. I've written books for publishers and do a fair bit of writing for my job. But crosswords have always fallen into the too much work category for me and I've never really connected to word games in general (including Scrabble). But, yeah, I like Wordle and it hits a sweet spot for me.
I played pretty high level Scrabble for a few years and most people who connect deeply with Scrabble are programmers, mathematicians, musicians, scientists, accountants, etc. Hardly anybody at the medium-to-high levels of play are word people. At its core, Scrabble is just a game of probability, memory, spatial awareness, and pattern recognition. The words could be random collections of symbols.
Re: Wordle is pretty damn smart in many subtle ways
#85> It also brings players back into the game, but not in an annoying way like Farmville Facebook notifications. As someone who doesn't play, it's getting more and more annoying. Especially now that there's stuff like Wordle Except It's Four Games At Once demanding space on my social timelines.
We have a "game" channel in our friend discord channel (like 10 or so if us). All interesting content has been completely drowned out with wordle shares, and there's no end in sight. I'm glad people are having fun, but I would like that channel back.
Re: Wordle is pretty damn smart in many subtle ways
#86Earlier quoted context omitted.
Stardew Valley doesn‘t have nearly as short of a timeframe but is another labor of love success.
If you looked at the engineer of worldle, he tried a lot of similar games before eg. On mobile. Dating back since 2013. So, while it could be created in a short timeframe. A lot of experience/thinking went into it. Edit: changed 2016 to 2013
Re: Wordle is pretty damn smart in many subtle ways
#87I actually think the OP and the comments are too focused on the programmer-related aspects of this. I'll add a few things. 1. It's not trivial but it's not that hard if you have a decent vocabulary and some intuitive sense for word frequencies (and word pair frequencies) for different locations in a word. The answer list does not seem to include really hard words as naively picking all the words in the MW dictionary…
Re: Wordle is pretty damn smart in many subtle ways
#88The code design is also very elegant in its simplicity. You have two static lists of words in the JS code - known words, and a smaller, random pre-shuffled list of words the game will select from. The selection is done on the client, by date, from the second list - every day at midnight (your local time!) the next word in the pre-shuffled list is selected - no hashing or randomizing or anything. No cookies are involv…
When I first discovered Wordle, I immediately looked for a way to keep playing with new random words, something that most clones have implemented. After a few rounds, it just wasn't as fun. What makes it fun to spend 10 minutes on the game is that it's the only round of the day so there's a pay-off to giving it some thought. When you can keep playing new rounds, it's just not rewarding and I would just close the tab…
Re: Wordle is pretty damn smart in many subtle ways
#89The code design is also very elegant in its simplicity. You have two static lists of words in the JS code - known words, and a smaller, random pre-shuffled list of words the game will select from. The selection is done on the client, by date, from the second list - every day at midnight (your local time!) the next word in the pre-shuffled list is selected - no hashing or randomizing or anything. No cookies are involv…
When I first discovered Wordle, I immediately looked for a way to keep playing with new random words, something that most clones have implemented. After a few rounds, it just wasn't as fun. What makes it fun to spend 10 minutes on the game is that it's the only round of the day so there's a pay-off to giving it some thought. When you can keep playing new rounds, it's just not rewarding and I would just close the tab…
Absolutely. If that limitation wasn't there, the game would've definitely fizzled out within days and maybe even never made to it the popularity it has now. The slow sustained popularity, with people posting their results on the shared daily word is the key to success here.
It's the only reason people are still talking about it more than a month later.
Re: Wordle is pretty damn smart in many subtle ways
#90Earlier quoted context omitted.
I wish I were smart enough to coin a catchy phrase that means "the moment some software dropped in quality, when they decided to add user accounts", because I see this quite a lot. I'm looking at you, Postman!
I'm old enough to remember when Google didn't have user accounts.