How much of the friendly-words list have you used in random project names?

if you downloaded a copy of your glitch stuff (Get_my_glitch_stuff.sh) here’s a script to count how many of the “objects” and “predicates” (the predicates are more like adjectives. I’m not the one in charge of what they named that list :person_shrugging:) word lists have shown up in your project names

#!/bin/sh -eu
ls projects | tr '-' '\n' | sort -u >seen_words.txt
curl -sSfL 'https://github.com/glitchdotcom/friendly-words/raw/refs/heads/main/words/objects.txt' | sort -u >friendly_objects.txt
curl -sSfL 'https://github.com/glitchdotcom/friendly-words/raw/refs/heads/main/words/predicates.txt' | sort -u >friendly_predicates.txt
echo "$(comm -12 seen_words.txt friendly_objects.txt | wc -l)/$(wc -l <friendly_objects.txt) objects seen, $(comm -12 seen_words.txt friendly_predicates.txt | wc -l)/$(wc -l <friendly_predicates.txt) predicates seen"

for me it’s

310/3062 objects seen, 390/1450 predicates seen

not even close completion.

but I wonder if the community together could get much closer to seeing all these words. we could have a web app that let people submit their project names and figure out the combined usage. gee, if only there were a free, no-hassle place we could build and host that app. or if only we could have more time to create new projects and stuff. it’s just wishful thinking.

4 Likes

821/3062 objects seen, 840/1450 predicates seen

1 Like

109/3062 objects seen, 142/1450 predicates seen

pitiful