Last active
March 9, 2018 10:02
-
-
Save deque-blog/92625cd7684d497837679ac1be9c15a4 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
suggestedPostsFor userId = do | |
friendIds <- friendsOf userId -- Get the friends of the current user | |
topics <- favoriteTopicsOf userId -- Get the favorite topics of the current user | |
friendsPosts <- forM friendIds $ \friendId -> do -- For each friend | |
posts <- lastPostsOf friendId -- * Get their last posts | |
return (filter (isAbout topics) posts) -- * Keep those whose topic is relevant | |
return (mostLiked 3 friendsPosts) -- Rank them to keep only the bests |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment