Note to self: The following generates a pretty good list of 2^10 common english words, in which I haven't found any offensive ones:
```
cat words_by_freq.txt | egrep -e '^\w{5,9}$' | head -n 1024
```
Add one more bit, though, and you get "fucking" and a couple others.