• 0 Posts
  • 34 Comments
Joined 1 year ago
cake
Cake day: June 12th, 2023

help-circle



  • dvlsg@lemmy.worldtomemes@lemmy.worldMost annoying feature ever
    link
    fedilink
    English
    arrow-up
    6
    ·
    edit-2
    1 month ago

    I never want to turn it on, but I do swap from shuffle to regular (depending on whether I want to listen to just the newest stuff I’ve added), which means I have to click through smart shuffle now too.

    Which wouldn’t be a huge problem, but if you do it too fast, smart shuffle appears to be off, but the songs it has added are at least partially still in the queue.
















  • dvlsg@lemmy.worldtoProgrammer Humor@lemmy.mlSTOP DOING ASYNC
    link
    fedilink
    English
    arrow-up
    15
    ·
    5 months ago

    Nah, they’re very similar, really. You generally kick IO heavy stuff you don’t need immediately off to async await.

    There are a few more applications of it in C# since you don’t have the “single thread” to work with like in JS. And the actual implementation under the hood is different, sure. But conceptually they’re similar. Pretty sure JS was heavily influenced by C#'s implementation and syntax.