> If you’re on Mac, Linux, or BSD, you should have a dictionary of words at /usr/share/dict/words Why do they come with a dictionary of words?
There are some legit use cases: words is a standard file on Unix and Unix-like operating systems, and is simply a newline-delimited list of dictionary words. It is used, for instance, by spell-checking programs. The words file is usually stored in /usr/share/dict/words or /usr/dict/words. https://en.wikipedia.org/wiki/Words_(Unix)
Find a good available .com domain
11–20 of 301 posts
Re: Find a good available .com domain
#12Would the same process work for other tlds?
Re: Find a good available .com domain
#13Re: Find a good available .com domain
#14Q: Do we (still?) think that dictionary words make good choices for domain names?
Re: Find a good available .com domain
#15Earlier quoted context omitted.
There are some legit use cases: words is a standard file on Unix and Unix-like operating systems, and is simply a newline-delimited list of dictionary words. It is used, for instance, by spell-checking programs. The words file is usually stored in /usr/share/dict/words or /usr/dict/words. https://en.wikipedia.org/wiki/Words_(Unix)
Are there other languages besides English and British?
$ apt-cache search 'words for /usr/share/dict' | sed -e 's/^[^ ]* - //; s/ dictionary words.*//' | sort -u
American English
British English
Bulgarian
Canadian English
Catalan
Esperanto
French
German medical
Irish (Gaeilge)
Italian
Manx Gaelic
Polish
Spanish
Swedish
UkrainianRe: Find a good available .com domain
#16Earlier quoted context omitted.
There are some legit use cases: words is a standard file on Unix and Unix-like operating systems, and is simply a newline-delimited list of dictionary words. It is used, for instance, by spell-checking programs. The words file is usually stored in /usr/share/dict/words or /usr/dict/words. https://en.wikipedia.org/wiki/Words_(Unix)
Are there other languages besides English and British?
Re: Find a good available .com domain
#17Q: Do we (still?) think that dictionary words make good choices for domain names?
Re: Find a good available .com domain
#18Under what license is that file? Could one make a webservice based on the data? Edit to clarify: I'm envisioning a open source service that uses an in-browser sqlite database [1] so you don't have to worry about a predatory middle party reserving the domains you searched for. [1] https://sql.js.org/#/
Re: Find a good available .com domain
#19I love the comment that someone dropped on the post. One could replace the first Ruby script by a one-liner: "cat /tmp/com.txt | awk '{ print substr($1, 1, length($1) -5) }' | uniq > domains.txt"