Wordle Lovers - Play the NYT Daily Game

  • Thread starter fresh_42
  • Start date
  • Tags
    Game
In summary, the player played the New York Times daily word game and found that they had a higher fail rate in playing against Spanish-speaking humans. They also mentioned that the game is similar to a board game they remember from their childhood.
  • #5,181
Keeping the streak alive

Wordle 1 175 3/6

⬜🟨⬜⬜🟨
⬜⬜🟩⬜⬜
🟩🟩🟩🟩🟩

I have now solved Wordle 500 days in a row.

1725573987165.png


Played it even more days in a row but there was that fateful day 501 days ago when I managed to misspell the word I knew was the solution on guess 6 … unfortunately the misspelling was also a word … 😭
 
  • Wow
Likes dwarde
Physics news on Phys.org
  • #5,182
Wordle 1,175 4/6

β¬›πŸŸ¨β¬›β¬›πŸŸ¨
β¬›πŸŸ¨πŸŸ¨πŸŸ¨β¬›
β¬›πŸŸ©β¬›πŸŸ©πŸŸ¨
🟩🟩🟩🟩🟩
 
  • #5,183
Wordle 1,175 4/6

⬛⬛⬛⬛⬛
β¬›β¬›β¬›πŸŸ¨πŸŸ¨
β¬›πŸŸ¨πŸŸ©β¬›πŸŸ¨
🟩🟩🟩🟩🟩
 
  • #5,184
Wordle 1,175 4/6

⬜⬜⬜⬜🟨
⬜⬜🟩🟨⬜
🟨🟩🟩⬜⬜
🟩🟩🟩🟩🟩
 
  • #5,185
Wordle 1,175 6/6*

β¬›πŸŸ¨β¬›β¬›πŸŸ¨
β¬›β¬›πŸŸ©πŸŸ¨β¬›
β¬›πŸŸ©πŸŸ©β¬›β¬›
β¬›πŸŸ©πŸŸ©β¬›β¬›
β¬›πŸŸ©πŸŸ©β¬›β¬›
🟩🟩🟩🟩🟩

I have no idea why this was so hard for me. Once I found the solution it seemed so obvious!

EDIT: It might be relevant that I only found it after arriving home and gearing down.
 
Last edited:
  • Like
Likes dwarde
  • #5,186
Wordle 1,175 4/6

⬜🟨⬜⬜🟨
🟩🟩⬜🟩⬜
🟩🟩⬜🟩🟨
🟩🟩🟩🟩🟩
 
  • #5,187
Went into some kinda nerdy overdrive angry over the days abysmal result. I had an old IRC wordguess program lying around and cannabalized it to write this:

https://sourceforge.net/projects/wordlecheater/

I'm not really sure if it's publicly available as I cannot find the log out button on sourceforge. It was written as a challenge to myself and for the sheer fun of it. I'm not gonna use it to cheat. I mean, what would be the point?

The synopsis goes like:
Code:
./main [-l n] wordfile regex

as in (Example run for wordle (Sep. 6, 2024, "RERUN") "?er??":):

Code:
./main -l 5 '^([QWRUPFLZXVNM]{1})ER([QWRUPFLZXVNM]{2})$' csw.txt

Oh, forgot the output:

Code:
sbrothy@PAULINE:~/x2$ ./main -l 5 '^([QWRUPFLZXVNM]{1})ER([QWRUPFLZXVNM]{2})$' csw.txt
[./MAIN][][603650][603650][Sat:07:09:2024][00:05:39:130:130802][info]:  

        !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
        SPDLOG header only logging API initialized for asynchronous use. The EOL character
        has been removed so each call to a log function must be manually "newlined" as in :

        log->trace("blah\r\n");

        !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

[./MAIN][][603650][603650][Sat:07:09:2024][00:05:39:130:130853][info]: logger id: "./MAIN". Rotating logfile name: "./main.log".
[./MAIN][][603650][603650][Sat:07:09:2024][00:05:39:130:130860][trace]: Trace entry.
[./MAIN][][603650][603650][Sat:07:09:2024][00:05:39:130:130865][debug]: Debug entry.
[./MAIN][][603650][603650][Sat:07:09:2024][00:05:39:130:130869][info]: Information entry.
[./MAIN][][603650][603650][Sat:07:09:2024][00:05:39:130:130872][warning]: Warning entry.
[./MAIN][][603650][603650][Sat:07:09:2024][00:05:39:130:130876][error]: Error entry.
[./MAIN][][603650][603650][Sat:07:09:2024][00:05:39:130:130880][critical]: Critical entry.
[./MAIN][][603650][603650][Sat:07:09:2024][00:05:39:130:130883][info]: Done.
[./MAIN][][603650][603650][Sat:07:09:2024][00:05:39:130:130925][debug]: arguments received: 5
[./MAIN][][603650][603650][Sat:07:09:2024][00:05:39:130:130936][debug]: Filtering switches. Argument: -l
[./MAIN][][603650][603650][Sat:07:09:2024][00:05:39:130:130943][debug]: Found switch: -l
[./MAIN][][603650][603650][Sat:07:09:2024][00:05:39:130:130953][debug]: Found switch value: 5
[./MAIN][][603650][603650][Sat:07:09:2024][00:05:39:130:130962][debug]: Filtering switches. Argument: ^([QWRUPFLZXVNM]{1})ER([QWRUPFLZXVNM]
{2})$
[./MAIN][][603650][603650][Sat:07:09:2024][00:05:39:130:130975][debug]: Filtering switches. Argument: csw.txt
[./MAIN][][603650][603650][Sat:07:09:2024][00:05:39:130:130986][debug]: Parsing argument: ^([QWRUPFLZXVNM]{1})ER([QWRUPFLZXVNM]{2})$
[./MAIN][][603650][603650][Sat:07:09:2024][00:05:39:130:130997][debug]: Assuming regex: [^([QWRUPFLZXVNM]{1})ER([QWRUPFLZXVNM]{2})$]
[./MAIN][][603650][603650][Sat:07:09:2024][00:05:39:131:131356][debug]: Parsing argument: csw.txt
[./MAIN][][603650][603650][Sat:07:09:2024][00:05:39:131:131427][debug]: Assuming word file: [csw.txt]
[./MAIN][][603650][603650][Sat:07:09:2024][00:05:40:224:224305][debug]: Wordfile read: csw.txt
[./MAIN][][603650][603650][Sat:07:09:2024][00:05:40:224:224913][debug]: wordlist size: 279496
[./MAIN][][603650][603650][Sat:07:09:2024][00:05:40:289:289624][debug]: new wordlist size: 12972
MATCH: [RERUN]
MATCH: [R]
MATCH: [UN]
sbrothy@PAULINE:~/x2$

I know claimed I "geared down" but, yeah, I do stuff like this for fun. You don't get to judge me! :biggrin:
 
  • #5,188
Wordle 1,176 5/6*

β¬›πŸŸ¨β¬›β¬›πŸŸ¨
β¬›πŸŸ¨β¬›πŸŸ¨β¬›
πŸŸ¨β¬›πŸŸ©πŸŸ©β¬›
β¬›πŸŸ¨πŸŸ©πŸŸ©πŸŸ©
🟩🟩🟩🟩🟩

Hah! Well, at least you probably wont suspect me of cheating. :smile:
 
  • #5,189
Wordle 1,176 3/6

πŸŸ¨β¬›πŸŸ¨β¬›πŸŸ¨
β¬›πŸŸ¨πŸŸ©πŸŸ¨πŸŸ©
🟩🟩🟩🟩🟩
 

Similar threads

Replies
9
Views
2K
Replies
7
Views
368
Replies
1
Views
2K
Replies
1
Views
1K
Replies
3
Views
206
Replies
10
Views
2K
Back
Top