I write bugs and sometimes features! I’m also @[email protected].

  • 2 Posts
  • 178 Comments
Joined 1 year ago
cake
Cake day: June 21st, 2023

help-circle


  • CoderKat@lemm.eetoMemes@lemmy.mlJapan is on its own wavelength.
    link
    fedilink
    English
    arrow-up
    4
    ·
    edit-2
    7 months ago

    Huh, I’ve never noticed how much bloat was in ISO 8601. I think when most people refer to it, we’re specifically referring to the date (optionally with time) format that is shared with RFC 3339, namely 2023-11-22T20:00:18-05:00 (etc). And perhaps some fuzziness for what separates date and time.


  • CoderKat@lemm.eetoMemes@lemmy.mlEvery time
    link
    fedilink
    English
    arrow-up
    12
    ·
    7 months ago

    I like the idea of having a regulated, living, backwards compatible standard. Which seems to be what USB-C is now, for phones. The EU has soon to be active regulation that will make it a requirement for many things. Yet, it’s not a single, set in stone standard, but one that’s constantly being expanded (eg, version 3.2 and PD).

    Of course, the regulation has to also be living. Eg, at some point, maybe there’ll be a strong enough reason to allow another standard (by no means do I think USB-C will always make sense). And the regulation has to very carefully choose the standard.

    That way we get the benefits of standardization (from actually everyone using the same format), but we aren’t unreasonably crippling ourselves to do it.


  • CoderKat@lemm.eetoPrivacy@lemmy.mlWhat the actual fuck?!
    link
    fedilink
    English
    arrow-up
    3
    ·
    edit-2
    7 months ago

    Yeah. There’s literally nothing you can put on a prompt that will truly work. It’s still a good idea to prompt cause it will reduce how many people approve the prompt, but there is a significant number of people who don’t read prompts at all and just insta-confirm.

    At best, I think you could design it so there’s no way for an app to request certain permissions themselves. They’d have to be opted in from the system settings and apps could only tell you how to do it. But that’s a usability nightmare that is quite frustrating for legitimate usages. There’s already some super sensitive permissions that do this. I think the ability to install apps, ability to display over other apps, and password managers for android.



  • CoderKat@lemm.eetoMemes@lemmy.mlWhy? Are we not doing enough?
    link
    fedilink
    English
    arrow-up
    2
    arrow-down
    1
    ·
    8 months ago

    Lol, yesterday it felt like there was at least half a dozen posts about Firefox, mostly claiming that YouTube was slowing them down. Which seemed really bad at first, till I dug into it and saw it was probably an unintended bug with ad handling.

    And why were there so many posts? Who wants to see the same post more than once?




  • CoderKat@lemm.eetoMemes@lemmy.mlNWBTCW
    link
    fedilink
    English
    arrow-up
    3
    ·
    edit-2
    8 months ago

    While I think the rich are one of the most influential sources of it, I’m not convinced they’re the only or even the majority. Like, of the rich stopped using bigotry to divide people, would people stop being bigoted? I don’t think so at all. I think there’s something wrong with humanity that makes it easy for bigotry to evolve even in the absence of power and perhaps worse, for people to want to be bigoted.








  • Persona is definitely one of those games that really hits you when it’s over. In part I think it’s cause it’s just so damn long. You spend a long time getting attached to characters and it being your daily activity. But also, the format of the games is just very relatable. Sure, it’s got fantasy elements, but the school and calendar format grounds the game into something more relatable. The game’s story is heavily focused on building up friendships.

    Plus that fantasy element plays a part. It’s what makes the game world something unachievable for the real you. You’ll never have the grand, world-saving adventures of the video game. You could make some friends and such, but you’ll never bond over saving the world or catching a killer or the likes. The end of games like Persona tend to make me think a lot about that.

    I’ve seen this called “post Harry Potter syndrome” or “post anime syndrome” before. It’s very common for a variety of works, but I think the recurring theme is usually that you invest a lot of time into a character driven work where building friendships and some kind of adventure is the key element.




  • There’s a lot of common patterns, but you have to understand how URLs work. You have to recognize which URL parameters are tracking ones or even just might be tracking. And that means you have to know how they work and that takes a moment.

    In brief, URL parameters start after a ? in the URL and are formatted like key1=values&key2=value2. You can’t usually remove all parameters because not all are tracking. To further complicate things, URLs can also have an anchor starting with a # character which will be after the URL parameters. You often don’t want to remove that (though theoretically the anchor could in fact contain tracking details).

    It’s often trial and error to see which parameters you can remove. I do this a lot since I write a lot of technical documentation. Clean URLs make the documentation more compact and less likely to break. It’s not just tracking stuff, but sometimes you need to remove temporal data that makes a page display data from a specific time when you want it to just default to the current time (etc).