Wordle Now Redirects to NYT
31–40 of 212 posts
Re: Wordle Now Redirects to NYT
#32Earlier quoted context omitted.
Apparently the old Wordle URL redirects to the new NYT page, and it includes the statistics as a JSON in the URL so the new page know what's the old statistics is.
This is clearly a violation of privacy because the url is unencrypted. NYT may face a billionaire lawsuit and his future is compromised.
Re: Wordle Now Redirects to NYT
#33Rejecting the cookie banner pops up a timed overlay (only appearing after you dismiss the game's onboarding guide) telling you that your cookie preferences are saved, unless you don't save cookies... If you don't save cookies, this appears for 5 or so seconds above the keyboard every time you load the site. A small nag, but a good reminder of the decay in user experience as soon as sites start adding tracking and sim…
Re: Wordle Now Redirects to NYT
#34Re: Wordle Now Redirects to NYT
#35Did wordle always have a “Hard Mode”?
Re: Wordle Now Redirects to NYT
#36I'm sure one talented programmer could code up OpenWordle and put it on GitHub in a few days tops
Re: Wordle Now Redirects to NYT
#37And they broke everybody’s streak in the process while reusing today‘s word… Way to destroy a good brand.
const d = JSON.parse(localStorage.getItem("nyt-wordle-statistics"))
console.log(d)
d.currentStreak = // whatever your streak was
d.gamesPlayed = d.gamesPlayed - 1
d.gamesWon = d.gamesWon - 1
d.guesses["4"] = d.guesses["4"] - 1 // subtract the last game
localStorage.setItem("nyt-wordle-statistics", JSON.stringify(d))
Re: Wordle Now Redirects to NYT
#38I've been playing Wordle as a saved PWA on iOS, wonder how the transfer will work for that.
Re: Wordle Now Redirects to NYT
#39You can write your own clone with grep, sh and /usr/share/dict/words.
I think there is a lot to be said for the presentation, polish, how easy it is to share, and the idea that everyone sees the exact same puzzle once per day, making it viral as you compete with your friends.
I've never seen grep do that on its own.