I've seen quite a few blogs/tools all trying to surf the wave of Wordle.
Reverse engineering Wordle
21–30 of 67 posts
Re: Reverse engineering Wordle
#22> It seems like many of the variables are given names that are not descriptive at all to make it a bit more difficult to read. The code is just minimized for prod.. The article as written makes it sound like the developer(s) intentionally wrote their code cryptically, whereas minimization for deployment is fairly standard practice
How common is it to have your minifier change symbol/variable names to short ones?
Re: Reverse engineering Wordle
#23A word of warning for anyone inspecting the Wordle source code: the answers for each day are stored in a list ordered by day. If you search for today's answer, the next word in the list will be tomorrow's answer, etc. Be careful not to ruin the fun by seeing tomorrow's answer in advance!
Re: Reverse engineering Wordle
#24> It seems like many of the variables are given names that are not descriptive at all to make it a bit more difficult to read. The code is just minimized for prod.. The article as written makes it sound like the developer(s) intentionally wrote their code cryptically, whereas minimization for deployment is fairly standard practice
How common is it to have your minifier change symbol/variable names to short ones?
Interestingly you can still view the unminified source, since create-react-app generates source maps by default.
Re: Reverse engineering Wordle
#25> It seems like many of the variables are given names that are not descriptive at all to make it a bit more difficult to read. The code is just minimized for prod.. The article as written makes it sound like the developer(s) intentionally wrote their code cryptically, whereas minimization for deployment is fairly standard practice
How common is it to have your minifier change symbol/variable names to short ones?
Re: Reverse engineering Wordle
#26> It seems like many of the variables are given names that are not descriptive at all to make it a bit more difficult to read. The code is just minimized for prod.. The article as written makes it sound like the developer(s) intentionally wrote their code cryptically, whereas minimization for deployment is fairly standard practice
How common is it to have your minifier change symbol/variable names to short ones?
Re: Reverse engineering Wordle
#27I figured that was possible; from the UX it was pretty clear it’s all client side. What I would find cool is derivation of the best strategy at any time. Just like blackjack, there should be a “best” move at all times , and it would be cool to measure yourself against that
https://github.com/jbchouinard/untitled-word-game
https://en.wikipedia.org/wiki/Mastermind_(board_game)#Best_s...
Re: Reverse engineering Wordle
#28I just hope the wordle developers manage to cash in on their going-viral jackpot without losing it to copycats or spoiling the experience for players.
Re: Reverse engineering Wordle
#29But not 19th of May 2021, but 20th of June 2021
Every time I look as JavaScript, I find a new reason to hate it.
Re: Reverse engineering Wordle
#30> var Ha = new Date(2021,5,19,0,0,0,0); > My assumption is that this is the launch date for Wordle But not 19th of May 2021, but 20th of June 2021 Every time I look as JavaScript, I find a new reason to hate it.