I haven’t seen a thread on this in a while. I have been going with top day for a while, but it can be hit or miss. Other sorts don’t seem to display as good in terms of balancing quality and quantity. What is your preferred sort for your main feed?

Edit: Realizing that the people who sort new commented before the hot/top/active people, haha

    • Vinny_93@lemmy.world
      13·
      11 months ago

      Been sorting new all my life on reddit and I’ve been using Boost forever so now I use Boost and sort by new. I enjoy not seeing the same shit over and over.

    • 200ok@lemmy.world
      4·
      11 months ago

      I don’t subscribe to enough communities (yet) to have the luxury of sorting by anything other than “new”, or else I’ll run out of content

  • neumast@lemmy.world
    351·
    11 months ago

    Bubble sort. It’s the only one I really understand and know how to implement.

    /s to be sure

  • pnutzh4x0r@lemmy.ndlug.orgEnglish
    25·
    11 months ago

    I’m a masochist, so I usually do “New”. Lemmy is small enough that I can usually get through most of the new posts in a reasonable amount of time.

    That said, if I want to a bit chiller experience, I will use “Scaled” which sometimes bubbles up something I might have missed.

    Finally, I will use “Active” if I’m really bored and what to see what most people are engaged with… but that is pretty rare.

    • MagicShel@programming.dev
      5·
      11 months ago

      I could’ve written this. Same answers, same reasoning. Word for word.

      • Today@lemmy.world
        2·
        11 months ago

        Me too. I feel a little unsettled if i don’t get all the way through new by lunch, like i have a bigger task ahead of me after work.

  • ramble81@lemm.ee
    18·
    11 months ago

    All, Top for the past 6 hours. Sometimes in the morning I’ll switch it to 12 hours to see what I missed overnight and other times the week just to make sure. But I don’t subscribe to anything, give me all the best of Lemmy

    • dodgy_bagel@lemmy.blahaj.zone
      48·
      11 months ago

      Honestly, sorting algos are serious nerd shit. They’re for suckers and losers. If it’s not worth doing, insertion sort every day of the week. Compute is cheap. If it’s actually important, then it’s TimSort (it’s never important).

      • ralakus@lemmy.world
        4·
        11 months ago

        In small datasets, the speed difference is minimal; but, once you get to large datasets with hundreds of thousands to millions of entries they do make quite a difference. For example, you’re a large bank with millions of clients, and you want to get a list of the people with the most money in an account. Depending on the sorting algorithm used, the processing time could range from seconds to days. That’s also only one operation, there’s so much other useful information that could be derived from a database like that using sorting.

  • kia@lemmy.caEnglish
    17·
    11 months ago

    Scaled sort usually gives good results.

    • MacroCyclo@lemmy.caOP
      7·
      11 months ago

      I didn’t even know this existed. Is this new?

          • rockSlayer@lemmy.world
            7·
            11 months ago

            It’s a great balance between new and hot! You mostly see posts that picked up some interest within the first couple minutes of being posted

    • jballs@sh.itjust.worksEnglish
      2·
      11 months ago

      That’s my back up plan after Top 12 hours on Everything gets stale.

  • Riskable@programming.devEnglish
    8·
    11 months ago

    I used to use “top 24h” but these days I just sort by “hot” because it actually seems to work pretty well now: I don’t see the total garbage that gets down voted immediately like you get with “new” but I see pretty much everything else (which is what I like; I especially like finding interesting posts in obscure communities!).

    I also regularly block foreign language communities for no other reason than I can’t read them so there’s no point in them taking up space in my feed. Like, I’m sure that German meme about Elon Musk is hilarious but since I don’t know German it’s just noise 🤷

  • leaky_shower_thought@feddit.nl
    6·
    11 months ago

    sub: top 12 hours, all: top 6 hours

    this somewhat balances out feeds I missed on my subscribed list.

  • wieson@feddit.org
    4·
    11 months ago

    Insertion Sort.

    It’s easier to remember how to program than quick sort and it’s stable (it keeps the previous order for same value data)