{"id":34976150,"url":"https://github.com/webpro/wooordle","last_synced_at":"2025-12-27T00:10:39.584Z","repository":{"id":288382736,"uuid":"966720549","full_name":"webpro/wooordle","owner":"webpro","description":null,"archived":false,"fork":false,"pushed_at":"2025-08-11T10:06:12.000Z","size":21910,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-11T11:42:12.733Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/webpro.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-04-15T10:59:50.000Z","updated_at":"2025-08-11T10:24:25.000Z","dependencies_parsed_at":"2025-04-20T07:15:21.757Z","dependency_job_id":null,"html_url":"https://github.com/webpro/wooordle","commit_stats":null,"previous_names":["webpro/wooordle"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/webpro/wooordle","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webpro%2Fwooordle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webpro%2Fwooordle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webpro%2Fwooordle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webpro%2Fwooordle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/webpro","download_url":"https://codeload.github.com/webpro/wooordle/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webpro%2Fwooordle/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28065828,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-12-26T02:00:06.189Z","response_time":55,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-12-27T00:10:38.787Z","updated_at":"2025-12-27T00:10:39.575Z","avatar_url":"https://github.com/webpro.png","language":"TypeScript","readme":"# Wooordle\n\n- [Game](#game)\n- [Advice](#advice)\n- [Run simulations](#run-simulations)\n- [Algorithms](#algorithms)\n\n## Game\n\nPlay at [wooordle.webpro.nl][1]\n\nLocal development:\n\n```sh\npnpm wooordle\n```\n\n## Advice\n\nLocal development:\n\n```sh\npnpm advice:server\npnpm advice:client\n```\n\n- Go to [localhost:5173](http://localhost:5173) for web UI\n- Or send image to `http://localhost:8080/api/advice`\n\nExample requests:\n\n```sh\ncurl -X POST http://localhost:8080/api/advice -H \"Content-Type: multipart/form-data\" -F \"image=@./samples/wordle.jpeg\"\ncurl -X POST http://localhost:8080/api/advice -H \"Content-Type: multipart/form-data\" -F \"image=@./samples/woordle.jpeg\"\ncurl -X POST http://localhost:8080/api/advice -H \"Content-Type: multipart/form-data\" -F \"image=@./samples/wooordle.jpeg\"\n```\n\nExample response:\n\n```json\n{\n  \"analysisResult\": {\n    \"guesses\": [\n      {\n        \"word\": \"salet\",\n        \"result\": [1, 0, 0, 0, 2]\n      }\n    ],\n    \"wordLength\": 5,\n    \"detectedLanguages\": [\"nl\", \"en\"],\n    \"bestWords\": {\n      \"nl\": [\"worst\", \"borst\", \"dorst\", \"korst\", \"vorst\"],\n      \"en\": [\"foist\", \"joist\", \"moist\", \"hoist\", \"worst\"]\n    }\n  }\n}\n```\n\nExample using an iPhone Shortcut (actived by \"Double Back Tap\"):\n\nhttps://github.com/user-attachments/assets/d2015e0f-ae3b-47cb-a4a0-fa299cd8e7da\n\n## Run simulations\n\nUse Node.js v24:\n\n```sh\nnode packages/core/src/simulations/solve-random-word.ts\n```\n\nOther available simulations:\n\n```sh\nnode packages/core/src/simulations/find-best-words.ts\nnode packages/core/src/simulations/find-possible-words.ts\n```\n\n- Runs 2315 games with English 5-letter words\n- Dutch and 6-letter word lists are also available\n\n## Algorithms\n\n- Dimitris Bertsimas and Alex Paskov\n  - Article: [An Exact and Interpretable Solution to Wordle][3]\n  - [Optimal Wordle][2]\n  - Average: 3.42\n- Martin Konicek\n  - Article: [Solving Wordle with Python][4]\n  - GitHub: [https://github.com/mkonicek/wordle][5]\n  - Average: 3.556-3.769\n- Lars Kappert\n  - GitHub: [./strategies/find-best-words.ts][6]\n  - Average: 3.60\n\n[1]: https://wooordle.webpro.nl\n[2]: https://wordleopt.com\n[3]: https://auction-upload-files.s3.amazonaws.com/Wordle_Paper_Final.pdf\n[4]: https://coding-time.co/wordle/\n[5]: https://github.com/mkonicek/wordle\n[6]: https://github.com/webpro/wooordle/blob/main/strategies/find-best-words.ts\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwebpro%2Fwooordle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwebpro%2Fwooordle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwebpro%2Fwooordle/lists"}