How do I go about this? Are there any free resources that’ll help me get started?

I see people advising to start with a small project, but you need to get some basics down right? What language? How to develop it and stuff?

My only experience is some very basic C programming classes I took during school.

  • MentalEdge
    link
    fedilink
    arrow-up
    7
    ·
    20 hours ago

    I learned using python.

    I’ve yet to find anything that would have been a better place to start, and the concepts you pick up coding almost anything are extremely transferable.

    A small project is good because it doesn’t just teach you the basics, it makes you apply what you learn to actually do stuff.

    I write little python scripts to do various things all the time. Most recently I made one that automatically posts the next comic strip to !moomin@sopuli.xyz.

    My recommendation would be to come up with something like that, then start figuring out how to do each step of accomplishing the task you want the code to do, then putting it all together. Look things up a lot, use print() often, and trial and error your way to the goal.

    You could also read guides or watch videos, but personally I learn WAY faster by just doing.

    Reading the code, making changes based on how I think something should work, then being proven right/wrong also seems to give me a better understanding than just following instructions.