Across this vast Fediverse, I have encountered a trend of people answering questions with esoteric programming language speaking in tongues that I don’t understand, including under my own posts. I am a Boomer when it comes to coding and I am only 27. I don’t even know where I would start to learn it because programming is so diverse. I want to feel like I know what’s going on but I don’t. Coding is the future and the future is now and I am lagging severely behind. I guess I’m asking where a bumbling novice like me can learn more about where to start when it comes to programming.

  • @nednobbins
    link
    English
    611 months ago

    I’d actually start by playing around with the automation and customization functionality you already have. Learn to set email sorting filters, get some cool browser extensions and configure them, maybe even start by customizing your windows preferences or making some red stone stuff in Minecraft.

    Computers are just tools. Programs are just stuff you tell a computer to do over and over again. All the fancy programming languages give you really good control over how you talk to a computer but I’d start with the computer equivalent of “Me Tarzan, you Jane.”

    • FavrionOP
      link
      English
      111 months ago

      What language would that be?

      • @nednobbins
        link
        English
        2
        edit-2
        11 months ago

        I’m not talking about any particular language.

        Modern programming languages are as complex as natural languages. They have sophisticated and flexible grammars. They have huge vocabularies. They’re rich enough that individual projects will have a particular “style”. Programming languages tend to emphasize the imperative and the interrogative over the indicative but they’re all there.

        Most programming languages have a few common elements:
        Some way to remember things
        Some way to repeat sets of instructions
        Some way to tell the user what it’s done
        Some way to make decisions (ie if X then do Y)

        Programmers mix and match those and, depending on the skill of the people involved, end up with Shakespear, Bulwer-Lytton, or something in between.

        The essence of programming is to arrange those elements into a configuration that does something useful for you. It’s going to be hard to know what kinds of useful things you can do if you’re completely fresh to the field.

        Python and Javascript are great. The main reasons I wouldn’t recommend them for an absolute beginner is that it takes some time to set up and, even after that, there’s a bit of a curve before you can do something interesting.
        If they go and change configuration settings in an app, they’re learning to manipulate variables.
        If they click a “do this N times” they’ve learned to create a loop.
        etc.

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

        They aren’t talking about a programming language, just the graphical tools in the programs you already have.

        If you are interested in simple automation for your computer, learn python. If you are interested in simple automation in a browser, learn JavaScript.

        • FavrionOP
          link
          English
          111 months ago

          I don’t know what needs to be automated though.