Created
October 24, 2011 13:52
-
-
Save anonymous/1309075 to your computer and use it in GitHub Desktop.
clojure api for google+
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
(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