Deebster

New account since lemmyrs.org went down, other @Deebsters are available.

  • 56 Posts
  • 1.02K Comments
Joined 2 years ago
cake
Cake day: October 16th, 2023

help-circle






  • DeebstertoProgrammer HumorDebugging images
    link
    fedilink
    English
    arrow-up
    3
    ·
    6 days ago

    Then the UK’s equally dumb: it was 10:04 pm BST (GMT+1) cos daylight savings is a thing in most of Europe too. At least it’s synchronised across Europe[1] so you just need to remember that most[2] of North America changes a few weeks earlier.

    Also, the UK says GMT/BST which is nice and clear - calling both EST and EDT “Eastern Time” makes even more of a mess!

    And yes, I’ve just rediscovered you can use footnotes, why do you ask?


    1. The EU is planning on killing daylight savings but I have no idea if the UK will do the sensible thing and go along when/if this happens ↩︎

    2. thanks for making it more confusing, Mexico ↩︎


  • The duplicate content thing is kinda impossible to solve perfectly. Some people will tell you it’s a feature, and it can be interesting to see the different instances’ comment sections (especially after moderation), but yeah it can be annoying to have your feed dominated by a few stories.

    The default web front-end will merge crossposts, but won’t if they’re multiple posts to the same URL. I think some of the apps do have that deduplication as a feature, but I couldn’t tell you which.

    I remember the same problem from my Reddit days, but there wasn’t generally so many similar, overlapping communities.


  • From the Lemmy docs:

    • Active (default): Calculates a rank based on the score and time of the latest comment, with decay over time
    • Hot: Like active, but uses time when the post was published

    My default is set to

    • Scaled: Like hot, but gives a boost to less active communities

    This is the newest sorting option, I think, and it helps me not miss posts from the smaller comms - particularly ones where people are asking a question and there’s been no engagement. Ideally I’d like to have Mastodon-style lists so I could have “quiet comms” or something and check them all every so often.

    I will switch to new or top 6h/24h if I’ve been on recently and just want to see what’s fresh. Top all time or 1y if I’m looking at new-to-me comms so I can see what type of thing to expect from it.


  • DeebstertoAsklemmy@lemmy.mlI'm new to lemmy. Any tips or advice?
    link
    fedilink
    English
    arrow-up
    20
    arrow-down
    1
    ·
    edit-2
    9 days ago

    There’s no algorithm here*, so use the different sorting options (for both posts and comments), as well as setting your favourite as default once you see what works for you.

    * the different sort options are of course algorithms, but I mean there’s no automatic, manipulative system like YouTube’s “The Algorithm”, Facebook, TikTok, etc.

    Voting doesn’t tune your algorithm, so I’d say only use downvoting for things that are low quality, trolling, in the wrong sub, duplicate posts, etc. Your votes aren’t private, by the way - although Lemmy itself doesn’t display voters’ names, that info is in every server’s database, and some other software in the Fediverse does show them.

    There are quite a few apps available, I like Voyager on Android and I stick to the default website on my computer.








  • But you’re misrepresenting my argument.

    Hardly, I’m directly addressing your statement that case insensitive is intuitive to users, grandmas or otherwise - I give examples where it’s not initiative or obvious which filenames match. I didn’t mention ease of implementation at all.

    The principle of least surprise is an important UX consideration, and your idea of effectively introducing collation and localising which files conflict is just trading one problem for another set of problems and suprises (e.g. copying directories between drives with different settings).


  • Case insensitive is more intuitive

    Are these the same filename?

    • ΑΓΑΘΉ.txt
    • αγαθή.txt

    What about these?

    • MY-NOTES-ON-Δ.txt
    • μυ-notes-on-δ.txt

    Databases have different case-insensitive collations - these control what letters are equivalent to each other. The fact that there’s multiple options should tell you that there’s no one-size-fits-all solution to case insensitivity.

    This issue is only simple and obvious if you don’t know enough about it.