• Marxism-Fennekinism@lemmy.ml
    link
    fedilink
    English
    arrow-up
    0
    ·
    edit-2
    2 years 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@lemm.ee
      link
      fedilink
      arrow-up
      0
      ·
      2 years 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.

    • urist@lemmy.blahaj.zone
      link
      fedilink
      arrow-up
      0
      ·
      edit-2
      2 years 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

    • Baŝto@discuss.tchncs.de
      link
      fedilink
      English
      arrow-up
      0
      ·
      2 years 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:

      • Marxism-Fennekinism@lemmy.ml
        link
        fedilink
        English
        arrow-up
        0
        ·
        2 years 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@discuss.tchncs.de
          link
          fedilink
          English
          arrow-up
          0
          ·
          edit-2
          1 year 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.