this post was submitted on 28 Mar 2025
9 points (100.0% liked)

PieFed Meta

1435 readers
2 users here now

Discuss PieFed project direction, provide feedback, ask questions, suggest improvements, and engage in conversations related to the platform organization, policies, features, and community dynamics.

Wiki

founded 2 years ago
MODERATORS
 

One of the things I miss a little from Lemmy is the different Top Hour/Day/Week etc. sort options. The most used one for me was Top Day, it was a nice way to get a suitable amount of doomscrolling each day with mostly new posts.

What's the current logic/timeframe for the Top sort on PieFed?

top 4 comments
sorted by: hot top controversial new old
[–] asudox@lemmy.asudox.dev 8 points 4 months ago (1 children)

From the source:

    elif sort == "top":
        posts = posts.filter(Post.posted_at > utcnow() - timedelta(days=1)).order_by(desc(Post.up_votes - Post.down_votes))
[–] oranki@piefed.social 2 points 4 months ago
[–] rimu@piefed.social 5 points 4 months ago (1 children)

Top sort is the most upvoted in the last 7 days.

We need to have a way for people to choose a different amount of time, a lot of people visit daily. Something like this https://s1.o7planning.com/web-rs/web-image/en/arf-1123668-vi.gif

[–] oranki@piefed.social 3 points 4 months ago

Thanks! Though @asudox@lemmy.asudox.dev comment looks to indicate it's actually "Top day".

Maybe people are just upvoting the same posts all over recently.