Today I am 19, turning 20 relatively soon (June).
When I was a kid I played NeoPets, and on this game there were "guilds" I think, and I can't remember what they were for, but I remember that you could use HTML to set up a little page for it. So I started learning HTML. Formatting tags, whoa! Fancy backgrounds and hey -- what is this table thing!? Cool!
For Christmas I got a book on Javascript and started learning some of it, although I did skip a lot of it, I was quite young and hadn't really grown into the whole "programming" thing -- I just wanted to make alert boxes.
Later my dad asked me about C. I was like "C? You know when you open an EXE file in notepad and you get all those funky characters? I'm pretty sure that's C."
Yeah, I know. Don't laugh. So next Christmas I get this book on C. Still not that motivated yet (I was probably 9), though I did learn what a compiler did. Pointers were super hard at the time but I learned them, although the command line got boring, as I wasn't at the level of really solving problems yet -- it was just so much work to do simple things, and I didn't learn very much C. I just wanted to make "programs," as I understood them, which were windows with images and text and forms.
So I found VB6. "Form designer? Cool!" From there I started making little programs that would do my math homework. That is, write out all the work for me so I could copy it. Then I found the winsock control and started making little chat applications. I tried making an IRC clone but it turned out there was too much I didn't understand about protocols and the like. I wound up writing a full-blown script interpreter with functions, most of the VB6 library, winsock connections, dynamically creating windows, etc. It even had a nice debugging interface.
Then I started into PHP. I wound up jumping back and forth between PHP and VB6 a lot. I wrote a fansite with my friends for a band that gained quite a lot of use, and wrote a VB6 desktop application for fetching updates an the like.
Then I started doing C again, learned some 16 bit assembly, and about the same time, spent the next two years or so reading a lot about programming best practices, different concepts/paradigms/design patterns. I learned a bit of C++ but gave that up after a while. I started doing some development work for my friend's cousin and got to apply and polish a lot of the theoretical knowledge I had gained. Now I am getting into Python as well.
C and assembly taught me everything I know about how a computer works (by writing it, compiling to assembly, etc), VB6 taught me a lot about what could be done with a program and what kind of steps it took to create them. PHP and Python did the same things as VB6, but I'd have to say that all that time spent reading, and reading, and reading, really taught me "everything I know" -- clean code, DRY, SRP, OOP, etc etc etc -- now I just have to get out of "reading a lot of neat stuff" mode and get into "writing actual code" mode.
Hope this was the least bit interesting.