• TrickDacy@lemmy.world
    link
    fedilink
    English
    arrow-up
    21
    arrow-down
    1
    ·
    1 month ago

    It shouldn’t really be just millennials who do this, and there’s a simple reason for it. Just about every web developer uses a desktop for development work, so most of their testing is done in a desktop browser. So mobile-only bugs do slip through the cracks more often, I find. imo that is the reason that to this day, a lot of bugs get overlooked on mobile.

    I feel like food ordering services are always the worst culprits for some reason. Many times I have tried to order food on my phone only to get stuck in a login loop or some other bug that makes it impossible. Open the same service up on my desktop and it works perfectly first try

    • CatLikeLemming@lemmy.blahaj.zone
      link
      fedilink
      English
      arrow-up
      2
      ·
      1 month ago

      Notably modern browsers can simulate phones, tablets, TVs, really all kinds of screens. I personally use that mode a lot to test the mobile variant, but nearly all bugs are purely CSS-related (at least in my experience) when it comes to a mobile-desktop discrepancy. Either way, for food delivery and stuff like that I’d really expect the devs to develop primarily for mobile, so that’s surprising to hear.

      • TrickDacy@lemmy.world
        link
        fedilink
        English
        arrow-up
        1
        ·
        1 month ago

        Yeah I refuse to debug other people’s sites lol so I don’t know what’s going on precisely but I’ve noticed this a few times.

        We build things as mobile first in my shop but it’s really hard to test everything on a real device on every build. I suspect these kinds of bugs are usually a “this small change should work the same everywhere” but doesn’t for various reasons.

        • CatLikeLemming@lemmy.blahaj.zone
          link
          fedilink
          English
          arrow-up
          2
          ·
          1 month ago

          Oh yeah, that stuff is a pain and automated tests can only go so far. Also I know for me personally I do tend to neglect mobile a little just because I much prefer designing and developing for larger screens, and I doubt I’m the only one, so on mobile more will slip through the cracks when it comes to these tiny changes.