Skip to content

Instantly share code, notes, and snippets.

Created October 24, 2011 13:52
Show Gist options
  • Save anonymous/1309075 to your computer and use it in GitHub Desktop.
Save anonymous/1309075 to your computer and use it in GitHub Desktop.
clojure api for google+
(filter
(fn [user]
(let [langs-of-posts (map google.translate/guess-language
(google.plus/get-user-posts user))]
(and
(pos? (count langs-of-posts))
(every? #(#{:be :en :eo :ja :ru :uk} %) langs-of-posts)) ))
(google.plus/select-users-by-cirle "esperanto"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment