Skip to content

Instantly share code, notes, and snippets.

View Gowixx's full-sized avatar
😀
moved on

Gowixx Gowixx

😀
moved on
  • Berlin
View GitHub Profile
@Gowixx
Gowixx / wordle.js
Last active March 22, 2022 14:20
get wordle answer for the day (paste into console)
setInterval((function () {
if(console.clear) { console.clear() };
solutionToday = JSON.parse(window.localStorage['nyt-wordle-state'])['solution'];
console.log(
`%c${solutionToday}`,
'color: white; background: #1e1e1e; font-size: 500%');
}), 500)