Skip Navigation

Search

"Get reply notifications"

cross-posted from: https://sh.itjust.works/post/8431810

> Not sure how feasible this would be, but my favourite Reddit app (Joey) has this feature. > > It allows a user to "follow" an arbitrary post or comment and receive an notifications when new comments or replies are posted. E.g. "Post 'abc' has 9 new comments" or "Comment 'xyz' has 3 new replies". > > Useful for keeping up with active threads which have gotten buried in the feed due to age, as well as cases of "I have that question too, and would love to know the answer if someone responds". > > Anyway, thanks Bazsalanszky for an already great app! It is my current most-used Lemmy app.

I originally submitted this as an app feature request, but realized that it could also be implemented into Lemmy itself. Would anyone else find this feature useful?

1

Ability to mute/unmute post comments and comment replies

cross-posted from: https://infosec.pub/post/2802322

This feature is long overdue, Lemmy is getting distracting, especially with worthless replies.

2

Reddit 'best' comment sorting - a confidence based sorting algorithm

github.com Add a "confidence" comment sort option 路 Issue #3381 路 LemmyNet/lemmy

Requirements Is this a feature request? For questions or discussions use https://lemmy.ml/c/lemmy_support Did you check to see if this issue already exists? Is this only a feature request? Do not p...

Add a "confidence" comment sort option 路 Issue #3381 路 LemmyNet/lemmy

This is a feature request to implement reddit's 'best' sorting algorithm for comments.

Quoting the github issue creator academician: > Here is Reddit's original announcement post for the feature, written by Randall Munroe from XKCD, and here is an article about how the ranking algorithm works under the hood. Essentially, it uses a Wilson score interval based on the ratio of upvotes to downvotes.

TL;DR:

Top sorting has the problem that early comments usually stay on top because people are more likely to read the top comment and upvote it as opposed to reading new comments at the bottom.

Hot takes into account time and is very biased towards newer comments. I frequently see a much higher voted comment (with no downvotes) below a comment that was just posted a little later (maybe this can be tweaked a little though).

Best Doesn't take time into account at all. Instead we are trying to estimate how well received a comment might be in the future (its ratio of upvotes and downvotes), given the total number of upvotes and downvotes right now. This both allows the comments to be sorted by how much people upvoted (and downvoted) them but also allows new popular comments to rise quickly.

I hope this can be implemented soon. The code for the algorithm is already available in Rust or SQL, so it shouldn't be too much work.

0