Created
August 12, 2013 23:03
-
-
Save aamedina/6216174 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (defn cyborg? | |
| [user] | |
| (->> (get-in user [:user :description]) | |
| (tokenize) (pos-tag) (personal-pronouns) | |
| (map first) | |
| (map str/lower-case) | |
| (set) | |
| (intersection person-pronouns) | |
| (intersection non-org-pronouns) | |
| (empty?))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment