TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Guess the daily Wordle in one try using the tweet distribution

564 点作者 benhamner超过 3 年前

34 条评论

jeffchien超过 3 年前
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 未加载
srcreigh超过 3 年前
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_operator超过 3 年前
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.
rogerallen超过 3 年前
SPOILER ALERT: shows today&#x27;s answer!
评论 #30102881 未加载
nilay超过 3 年前
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 未加载
beepbooptheory超过 3 年前
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.
Karunamon超过 3 年前
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 未加载
csours超过 3 年前
My metagame is guessing my friend&#x27;s guesses.
评论 #30104816 未加载
评论 #30103330 未加载
Boom_Rang超过 3 年前
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. :)
rkimb超过 3 年前
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 未加载
freeslave超过 3 年前
Cool but don&#x27;t read all the way if you haven&#x27;t done today&#x27;s Wordle!
评论 #30102884 未加载
siruva07超过 3 年前
This is the HN I’m here for. Brilliant.
swatts999超过 3 年前
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_eh超过 3 年前
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 未加载
codeflo超过 3 年前
I wonder what percentage of these Twitter posts are fake (“OMG so lucky LOL”).
jsmith99超过 3 年前
If you know someone always starts with SLATE it makes it easier...
评论 #30103819 未加载
alana314超过 3 年前
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;
Asraelite超过 3 年前
What are the &quot;⬛ squares taking social media by storm&quot;?
评论 #30106725 未加载
评论 #30103040 未加载
评论 #30103095 未加载
hkmaxpro超过 3 年前
&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 未加载
olliej超过 3 年前
Something I’ve wondered about is how well you can guess what peoples guesses were from the images they post.
smaudet超过 3 年前
I mean, I guess - or you can just use a private tab. Same difference, except way less complex.
mtoner23超过 3 年前
Amazing, what a brilliant idea
cafed00d超过 3 年前
Computer nerds strike wordle! Goddammit! How long before Skynet. Sigh. The end is nigh<p>&#x2F;s
madcow2011超过 3 年前
This is genius. I love it.
jl6超过 3 年前
Lessons to be learned in the field of data anonymization!
评论 #30106586 未加载
mrfusion超过 3 年前
Would this be a good use of a hidden Markov model?
bushbaba超过 3 年前
Guess the daily wordle by inspecting source code…yes every word is hard coded in the JavaScript in calendar order
评论 #30105165 未加载
评论 #30104944 未加载
quotha超过 3 年前
And people think bitcoin wastes energy.
faeyanpiraat超过 3 年前
What is Wordle?
评论 #30103482 未加载
jcpham2超过 3 年前
Can someone TL:dr what this Wordless thing is?
评论 #30106516 未加载
ouid超过 3 年前
Now someone make an adversarial twitter bot.
Axien超过 3 年前
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 未加载
nerdjon超过 3 年前
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 未加载
not2b超过 3 年前
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 未加载