Give yourself a non-trivial project. It doesn't really matter what it is, you'll be 'building it to throw away' anyway.<p>Now start building it, with one hand on a good reference, and the other hand on the Google search page.<p>It'll be terrible code, but you'll be learning as you go. By the time you've built that program to your satisfaction, you'll have learned a lot.<p>So much so, that you will <i>want</i> to throw that first piece of crap programming away and to rewrite it properly.
If you want something practical that you can get a job with I highly suggest Fee Code Camp they offer various certifications including JavaScript programming language: <a href="https://www.freecodecamp.org/" rel="nofollow">https://www.freecodecamp.org/</a><p>If you just want to learn programming I suggest Python as a starting language, there are ton's of resources and YouTube videos on the subject. Just look for a tutorial that works for you and start there.<p>Biggest point, don't just read about it, type our the examples, run them. Code here, code there, code in your sleep, the only way you'll learn is by doing. Specially by running into problems.<p>I have 20+ yrs of dev experience and I still have my google page up to lookup errors, examples, and references.
Those are two different questions.<p>> What would you suggest to a newbie getting his feet weight into programming?<p>Learn assembly.<p>(Something tidy like the AVR chip used in Arduinos: ATMega328P microcontroller, or the PIC.)<p>Then learn a little about C <i>and the asm that it compiles into</i>. (Again, don't try to learn e.g. x86. It's a monster. Most C compilers can target AVR or PIC.)<p>If you start at the bottom and go <i>up</i> you'll do fine.<p>Do NOT start with e.g. Javascript or PHP or even Ruby or Python, it'll wreck you.<p>> How did you master a programming language?<p>Someone once said to Yoyo Ma, "I'd give my life to play like you do." To which he replied, "I did."<p>"Do it every day."
For the 'feet wet' question:<p>Some people have suggested assembly. That would be a good idea if we were still back in the simpler, less complex, 8-bit era of the Z80 or 6502 CPUs.<p>In today's world, I'd go for the "high-level assembly language" or in proper terminology, the C programming language.<p>To learn that, I'd buy the book of the same name: "The C Programming Language" by Kernighan and Ritchie.<p>Then follow the procedure laid out in my other comment.