https://github.com/powerock38/textguessr
https://github.com/powerock38/textguessr
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/powerock38/textguessr
- Owner: Powerock38
- Created: 2023-12-16T19:12:46.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-13T12:15:52.000Z (almost 2 years ago)
- Last Synced: 2025-12-04T01:42:56.833Z (7 months ago)
- Language: JavaScript
- Size: 1.9 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TextGuessr
Play at [https://powerock38.github.io/textguessr/](https://powerock38.github.io/textguessr/)
Every day, everyone gets to guess the same title of...
- a Wikipedia article, based on its first paragraph
- a movie, based on its plot summary
- a show, based on its plot summary
- a song, based on a part of its lyrics
# Impl details
This game runs without any server : the texts are fetched from the respective APIs (Wikipedia, TMDb, MusixMatch) using the client's browser.
For each API, a random text is selected every day, seeded by the current date, so that everyone gets the same text to guess.
Current progress is saved in the browser's local storage.
yes I know it's bad to leave the API keys in the client code / on GitHub