alt text

An edit of xkcd 2501, “Average Familiarity”:
[Ponytail and Cueball are talking. Ponytail has her hand raised, palm up, towards Cueball.]
Ponytail: Open-source alternatives are second nature to us foss nerds, so it’s easy to forget that the average person probably only knows Linux and one or two degoogled Android ROMs.
Cueball: And Firefox, of course.
Ponytail: Of course.

[Caption below the panel]
Even when they’re trying to compensate for it, experts in anything wildly overestimate the average person’s familiarity with their field.

partly inspired by the replies to this post but i see this kind of thing all the time (shoutout to the person who once genuinely asked “who still uses google these days?”)

made with this neat tool

  • arcine@jlai.lu
    link
    fedilink
    arrow-up
    11
    arrow-down
    2
    ·
    12 hours ago

    Okay but litterally everyone knows about Firefox.

    I’m willing to concede some people don’t know about Linux. But I’ve never met anyone who didn’t know about Firefox.

    • PerogiBoi@lemmy.ca
      link
      fedilink
      arrow-up
      7
      ·
      8 hours ago

      The vast majority of people I work with in my organization have absolutely no idea what Firefox is or that there are other browsers. You, me, and everyone here is living in a bubble.

      • calcopiritus@lemmy.world
        link
        fedilink
        arrow-up
        1
        ·
        7 hours ago

        Not too long ago, in the internet explorer era, Firefox had a huge market share. Something like 30%. Even if they didn’t use it themselves, they probably knew someone that did.

        They may not remember it, but at some point they knew.

        They may say they don’t know firefox, but if you ask them “do you remember there were some people that didn’t use internet explorer before chrome?” They’ll probably remember, even if they don’t remember the name.

    • Decq@lemmy.world
      link
      fedilink
      arrow-up
      12
      ·
      9 hours ago

      Hah no they don’t. My partner doesn’t even really know what a browser is, or where the distinction between phone/pc and ‘the internet’ lies. Sure she might have heard of the word ‘firefox’ but no way she can explain what it is or does.

    • NightmareQueenJune@lemmy.world
      link
      fedilink
      arrow-up
      16
      ·
      11 hours ago

      No. People who are 30+ maybe. But there are tons of people in GenZ (my generation) and Alpha that don’t even know what folders or symlinks are. And Firefox is a nieche browser since 10 years or so.

      • calcopiritus@lemmy.world
        link
        fedilink
        arrow-up
        5
        ·
        6 hours ago

        Putting folders and symlinks in the same category is wild. Most people I know (basically every non-elderly non-toddler person) knows what a folder is. Yet only some of the programmers I know know what a symlink is. Not even a chance for non-programers.

        At most they’ll know what a shortcut is. Which is not the same as a symlink.

          • calcopiritus@lemmy.world
            link
            fedilink
            arrow-up
            1
            ·
            4 hours ago

            I don’t know you. My comment doesn’t apply to you, sorry.

            Knowing what a symlink is doesn’t make you a programmer. It’s just that I don’t know any non-programmer that knows what it is.

        • starman2112@sh.itjust.works
          link
          fedilink
          arrow-up
          1
          ·
          edit-2
          5 hours ago

          I didn’t know that symbolic links were a thing until like 2 years into using Linux daily. I didn’t know there was a difference between symlinks and shortcuts until I saw this comment!

          To save others a trip to Wikipedia, both a symlink and a shortcut store a path to another file or directory. The biggest difference is that symlinks are resolved by your file system, whereas shortcuts are resolved by whatever program accesses them. So if your software doesn’t know what a symlink is, that doesn’t matter. It tries to access the symlink, and your file system says “oh hey they want that jpeg” and serves them that jpeg. Whereas if your software doesn’t know what a shortcut is, it’ll try to access the shortcut and be like “wtf this is just a file path, I was expecting a jpeg”

          They can also store relative file paths, while shortcuts can only store absolute filepaths. So if your symlink references a file that’s in the same directory, you can move that directory and the symlink still works. Can’t do that with a shortcut.