• @[email protected]
    link
    fedilink
    English
    22
    edit-2
    6 months ago

    I feel like most people nowadays are just typing math calculations into their search engine. Which obviously also has massive privacy implications.

    • Ricky Rigatoni
      link
      fedilink
      196 months ago

      Yeah. If a search engine knows you didn’t know 5x(30/47)^2 they might be able to derive your SSN from that information.

      • Lemminary
        link
        fedilink
        56 months ago

        Well, if I start converting 23 cm to inches, you’ll know that I have a massive dong.

    • Urist
      link
      fedilink
      18
      edit-2
      6 months ago

      Once upon a time I wrote an IRC chat bot for my friends and I that could do calculations and convert units (metric -> imperial) with a command.

      My friends were impressed that I included units like furloughs, leagues and bushels.

      My chatbot was just googling their request and returning the result (which, handily, was done by the google engine itself and was very easy to extract with Beautiful Soup in python). This was 15+ years ago.

      This doesn’t really have anything to do with your reply, just a fun memory I guess

    • kase
      link
      fedilink
      76 months ago

      Which obviously also has massive privacy implications.

      How so? I don’t know much about this stuff lol

      • @[email protected]
        link
        fedilink
        English
        23
        edit-2
        6 months ago

        I’m mainly concerned with people using it for calculating things personal to them, finances/taxes comes to mind first. While the search engine may not know with certainty what the numbers represent, they have so much data on you that they could very well start inferring what those numbers are to add to your profile. For example if you suddenly do a ton of calculations in the days leading up to when taxes are due and all the numbers have two decimal places, it would be a pretty big hint to them. Or if you always do budget calculations on the days you get paid, they might be able to recognize that pattern and work out when your payday is and what your income, expenses, and savings are. And they definitely have AI to make these inferences for them so they can do it for every single user. IDK I might just be paranoid though.

        • @[email protected]
          link
          fedilink
          36 months ago

          With all that’s going on to systematically profile each and every person that ever went online, goes online, and will go online, that sounds 100% plausible and realistic to me.

    • Baŝto
      link
      fedilink
      English
      26 months ago

      There are many fun ways of calculating stuff.

      echo $((5+8)) or abusing REPL mode of python3 or node.

      My colleagues once made fun of me using galculator with a tiling wm:

      • @[email protected]
        link
        fedilink
        English
        16 months ago

        Call me a plebian but I still open up Python when I want to do calculations in the command line because I don’t know how to in Bash.

        • Baŝto
          link
          fedilink
          English
          2
          edit-2
          6 months ago

          It’s complicated.

          $((5+8))

          doesn’t support floats. For float you need bc and I always have to look up how to use it. You have to tell it how many numbers it should show scale=2;5/8, by default it also only does integer.