Skip to content

Instantly share code, notes, and snippets.

@natew
natew / reddit_rank.rb
Created October 16, 2012 06:23
Reddit ranking algorithm in rails
# Ranking algorithm
def set_rank
find_id = matching_id || id
shared_song = Song.find(find_id) if find_id
if shared_song
favs_count = shared_song.user_broadcasts_count
time_created = shared_song.created_at
else
favs_count = 1
time_created = created_at