TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Show HN: Reddsera.com – The top Coursera courses recommended on Reddit

4 pointsby yaj54about 5 years ago

1 comment

yaj54about 5 years ago
Hey HN,<p>Here&#x27;s my latest project in the category of &quot;ranking things based on social signals&quot;.<p>It looks at all (url-based) posts and comment mentions of Coursera courses on Reddit, ranks each course based on Reddit score, and shows each course with its top Reddit mentions.<p>Scoring each course is done with a slightly modified version of a simple popularity &#x2F; age calculation.<p><pre><code> course_score = sum(mention_scores) &#x2F; course_age </code></pre> I tried a number of other more nuanced ranking methods that try to surface &quot;best&quot; above &quot;popular&quot; (averages, confidence intervals, etc) but the simpler method thus far has seemed to produce the most &quot;helpful&quot; list. There are definitely still some bogies in there, but it seems to surface some interesting stuff.<p>You may be interested to compare this reddit top list to my previous similar project over Hacker News data (which also uses a significantly different scoring method): HN Academy [1].<p>Would love to get any comments and feedback.<p>[1]: <a href="https:&#x2F;&#x2F;yahnd.com&#x2F;academy&#x2F;" rel="nofollow">https:&#x2F;&#x2F;yahnd.com&#x2F;academy&#x2F;</a>