internetarchive / wordsmith

Wordle game - home grown and like a typewriter ~/:::/º

Home Page:https://wordsmith.archive.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

wordsmith

Wordle game - home grown and like a typewriter ~/:::/º

Very similar to https://www.nytimes.com/games/wordle

but all hand-made.

local dev

( sleep 3; open http://localhost:8080 & )
deno run --allow-net --allow-read --allow-env https://deno.land/std/http/file_server.ts -p8080

misc

lit has been having reliablity issues, so using pre-built, import-able version from offshoot project

fixmes

  • xxx pre-bake 5.8y of games, repeat loop, with daily "best of 3"

inspiration

words, words, words

# 6438 five-letter words from SCOWL:
wget -qO- https://gitlab.com/internetarchive/word-salad/-/raw/main/words-scowl.txt \
  |fgrep -A1000000 -- --- \
  |fgrep -v -- ---  \
  |tr A-Z a-z \
  |egrep '^.....$' \
  |fgrep -v "'" \
  |sort -u -o words.txt

# insert-able into index.js
cat words.txt |perl -ne 'chop; print "      \x27$_\x27,\n";'

About

Wordle game - home grown and like a typewriter ~/:::/º

https://wordsmith.archive.org

License:MIT License


Languages

Language:JavaScript 97.1%Language:CSS 1.8%Language:HTML 0.9%Language:Dockerfile 0.2%