🐀 Building a federated link aggregator in rust
Go to file
Dessalines 00d9a88dbd Travis
2019-04-06 08:27:35 -07:00
server Travis fix 2019-04-06 08:15:47 -07:00
ui Adding docker. 2019-04-05 22:29:20 -07:00
.dockerignore Adding docker. 2019-04-05 22:29:20 -07:00
.travis.yml Travis 2019-04-06 08:27:35 -07:00
API.md Adding docker. 2019-04-05 22:29:20 -07:00
docker-compose.yml Adding docker. 2019-04-05 22:29:20 -07:00
Dockerfile Adding docker. 2019-04-05 22:29:20 -07:00
LICENSE Initial commit 2019-02-14 09:17:18 -08:00
README.md Adding docker. 2019-04-05 22:29:20 -07:00

Lemmy

We have a twitter alternative (mastodon), a facebook alternative (friendica), so let's build a reddit alternative in the fediverse.

Matrix Chat: #rust-reddit-fediverse:matrix.org

ActivityPub API.md

Goals

  • Come up with a name / codename.
  • Must have communities.
  • Must have threaded comments.
  • Must be federated: liking and following communities across instances.
  • Be live-updating: have a right pane for new comments, and a main pain for the full threaded view.
    • Use websockets for post / gets to your own instance.

Questions

  • How does voting work? Should we go back to the old way of showing up and downvote counts? Or just a score?
  • Decide on tech to be used
    • Backend: Actix, Diesel.
    • Frontend: inferno, typescript and bootstrap for now.
  • Should it allow bots?
  • Should the comments / votes be static, or feel like a chat, like flowchat?.
    • Two pane model - Right pane is live comments, left pane is live tree view.
    • On mobile, allow you to switch between them. Default?

Resources / Potential Libraries

TODOs

  • Endpoints
  • DB
  • Followers / following

Trending / Hot / Best Sorting algorithm

Goals

  • During the day, new posts and comments should be near the top, so they can be voted on.
  • After a day or so, the time factor should go away.
  • Use a log scale, since votes tend to snowball, and so the first 10 votes are just as important as the next hundred.

Reddit Sorting

Reddit's comment sorting algorithm, the wilson confidence sort, is inadequate, because it completely ignores time. What ends up happening, especially in smaller subreddits, is that the early comments end up getting upvoted, and newer comments stay at the bottom, never to be seen.

Hacker News Sorting

The Hacker New's ranking algorithm is great, but it doesn't use a log scale for the scores.

My Algorithm

Rank = ScaleFactor * sign(Score) * log(1 + abs(Score)) / (Time + 2)^Gravity

Score = Upvotes - Downvotes
Time = time since submission (in hours)
Gravity = Decay gravity, 1.8 is default
  • Add 1 to the score, so that the standard new comment score of +1 will be affected by time decay. Otherwise all new comments would stay at zero, near the bottom.
  • The sign and abs of the score are necessary for dealing with the log of negative scores.
  • A scale factor of 10k gets the rank in integer form.

A plot of rank over 24 hours, of scores of 1, 5, 10, 100, 1000, with a scale factor of 10k.