TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

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

4 点作者 yaj54大约 5 年前

1 comment

yaj54大约 5 年前
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>