Skip to content

Instantly share code, notes, and snippets.

@aamedina
Created August 12, 2013 23:03
Show Gist options
  • Select an option

  • Save aamedina/6216174 to your computer and use it in GitHub Desktop.

Select an option

Save aamedina/6216174 to your computer and use it in GitHub Desktop.
(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