TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Guess the daily Wordle in one try using the tweet distribution

564 pointsby benhamnerover 3 years ago

34 comments

jeffchienover 3 years ago
Waiting for a bot that guesses based on Google Trends:<p>* Wordle 218: <a href="https:&#x2F;&#x2F;i.imgur.com&#x2F;PbYfLm6.jpg" rel="nofollow">https:&#x2F;&#x2F;i.imgur.com&#x2F;PbYfLm6.jpg</a> * Wordle 221: <a href="https:&#x2F;&#x2F;i.imgur.com&#x2F;pTPbquL.jpg" rel="nofollow">https:&#x2F;&#x2F;i.imgur.com&#x2F;pTPbquL.jpg</a>
评论 #30113618 未加载
srcreighover 3 years ago
My favourite part of this is accounting for some fake grids.<p>Kudos! I have been so curious lately as to whether this was possible.<p>EDIT: The next question is which (if any) of these signals can be removed and still get it in 1 guess. Or if there are any other signals. Or how many tweets are needed (is 50 enough? 10? or 1000? 10k?)
评论 #30103393 未加载
评论 #30103227 未加载
del_operatorover 3 years ago
Two or three guesses with Wordle using the ETAOIN SHRDLU I learned doing cryptopals has been very effective at reaching a solution.<p>I usually have a first guess like SAINT then something like SCARE, CORED, etc eliminating vowels and frequent constants while also considering the most likely sequencing of matched characters or remaining characters.<p>Also eliminating S, T, C really reveals there’s no TH, SH, SP, CK, etc and is one factor that gets me suspicious of repeated chars or rarer k, g and x combos.
rogerallenover 3 years ago
SPOILER ALERT: shows today&#x27;s answer!
评论 #30102881 未加载
nilayover 3 years ago
Or take all the fun away and just get it through browser console ¯\_(ツ)_&#x2F;¯<p><pre><code> JSON.parse(localStorage.gameState).solution</code></pre>
评论 #30110126 未加载
beepbooptheoryover 3 years ago
This is brilliant and something I had the intuition was possible, just couldn&#x27;t put it all together myself. What was missing, I think, in my thought process was just taking into account the general common occurrence of words in English in general. Plus how to deal with static.<p>Just so cool someone put this together, major props.
Karunamonover 3 years ago
Very cool!<p>One minor improvement here; if the user has toggled colorblind mode on, then their tweeted result will also have altered color blocks. Orange for right letter right place, and blue for right letter wrong place.
评论 #30103434 未加载
csoursover 3 years ago
My metagame is guessing my friend&#x27;s guesses.
评论 #30104816 未加载
评论 #30103330 未加载
Boom_Rangover 3 years ago
I like that it&#x27;s robust to adversarial tweets!<p>I did something similar last week using the Twitter Stream API: <a href="https:&#x2F;&#x2F;github.com&#x2F;basile-henry&#x2F;twitter-wordle" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;basile-henry&#x2F;twitter-wordle</a><p>It&#x27;s not resistant to adversarial tweets, but it usually collects enough tweets to have an answer in around 1 minute, so it&#x27;s not too bad to restart if some bad tweets were sampled.<p>Maybe I should try to use your wordle-tweets dataset to make it work offline as well. :)
rkimbover 3 years ago
This is a really cool approach, definitely did not think of trying this! If you&#x27;d prefer to play without the crowdsourced data, I spent a couple hours on the following dictionary search algo yesterday which can typically solve puzzles in 3-4 guesses: <a href="https:&#x2F;&#x2F;github.com&#x2F;rgkimball&#x2F;wordlebot" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;rgkimball&#x2F;wordlebot</a>
评论 #30109188 未加载
评论 #30104115 未加载
评论 #30104138 未加载
freeslaveover 3 years ago
Cool but don&#x27;t read all the way if you haven&#x27;t done today&#x27;s Wordle!
评论 #30102884 未加载
siruva07over 3 years ago
This is the HN I’m here for. Brilliant.
swatts999over 3 years ago
This is super smart. I wonder how many tweets this approach needs each day to converge to the correct answer? It would be interesting to see some plots vs. num tweets
jonny_ehover 3 years ago
This is your regular reminder that today&#x27;s word, and all the upcoming ones, are located in the Wordle minified JS.
评论 #30103655 未加载
评论 #30108241 未加载
评论 #30105272 未加载
评论 #30104573 未加载
评论 #30108784 未加载
codefloover 3 years ago
I wonder what percentage of these Twitter posts are fake (“OMG so lucky LOL”).
jsmith99over 3 years ago
If you know someone always starts with SLATE it makes it easier...
评论 #30103819 未加载
alana314over 3 years ago
I use (not today&#x27;s puzzle) cat &#x2F;usr&#x2F;share&#x2F;dict&#x2F;words | grep -v &#x27;w&#x27; | grep -v &#x27;a&#x27; | grep &#x27;t&#x27; | egrep &#x27;^...er$&#x27;
Asraeliteover 3 years ago
What are the &quot;⬛ squares taking social media by storm&quot;?
评论 #30106725 未加载
评论 #30103040 未加载
评论 #30103095 未加载
hkmaxproover 3 years ago
&gt; Note that all of these 243 possibilities aren&#x27;t valid in practice. For example YYYYM will never be seen because if the first four letters are correctly placed and the fifth is also in the word, it will be correctly placed.<p>Not true. For example if the correct answer is TWEED and you guess TWEET, then you’ll get YYYYM.<p>Edit: As pointed out by two commenters, the actual implementation contradicts the following claim in the post:<p>&gt; “Maybe” - the letter is in the answer but in a different position<p>If the correct answer is TWEED and you gess TWEET, you will still get YYYYN, because the actual implementation uses a different definition of “Maybe” than what is written in the post.
评论 #30103915 未加载
评论 #30103955 未加载
评论 #30104704 未加载
olliejover 3 years ago
Something I’ve wondered about is how well you can guess what peoples guesses were from the images they post.
smaudetover 3 years ago
I mean, I guess - or you can just use a private tab. Same difference, except way less complex.
mtoner23over 3 years ago
Amazing, what a brilliant idea
cafed00dover 3 years ago
Computer nerds strike wordle! Goddammit! How long before Skynet. Sigh. The end is nigh<p>&#x2F;s
madcow2011over 3 years ago
This is genius. I love it.
jl6over 3 years ago
Lessons to be learned in the field of data anonymization!
评论 #30106586 未加载
mrfusionover 3 years ago
Would this be a good use of a hidden Markov model?
bushbabaover 3 years ago
Guess the daily wordle by inspecting source code…yes every word is hard coded in the JavaScript in calendar order
评论 #30105165 未加载
评论 #30104944 未加载
quothaover 3 years ago
And people think bitcoin wastes energy.
faeyanpiraatover 3 years ago
What is Wordle?
评论 #30103482 未加载
jcpham2over 3 years ago
Can someone TL:dr what this Wordless thing is?
评论 #30106516 未加载
ouidover 3 years ago
Now someone make an adversarial twitter bot.
Axienover 3 years ago
I am trying so hard to not know what Wordle is or how to play. Now it is showing up on Hacker News? Damn. I’ve not had this much trouble since I avoided Sudoku.
评论 #30104515 未加载
评论 #30109811 未加载
评论 #30104750 未加载
nerdjonover 3 years ago
I like the idea of worldle<p>But I hate that any guesses have to be words in its dictionary.<p>As someone who was never really a fan of crosswords, the need to find a real word that fits 5 letters every time severely limits how I can enjoy it.
评论 #30105164 未加载
not2bover 3 years ago
You can guess it in one try by carefully reading the code. There is no server that knows the correct answer. The client already knows, based on the date. That is why you can only play once per day.
评论 #30102335 未加载
评论 #30102308 未加载
评论 #30103962 未加载
评论 #30102307 未加载
评论 #30104070 未加载