Skip to content

Instantly share code, notes, and snippets.

@antono
Forked from anonymous/clojure api for google+.clj
Created October 24, 2011 23:48
Show Gist options
  • Save antono/1310770 to your computer and use it in GitHub Desktop.
Save antono/1310770 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"))
@antono
Copy link
Author

antono commented Jan 18, 2012

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment