I'm like you in that i learn best from doing, i just cant learn from reading and watching i have to do it to know it properly. The way i learnt was to read some things, like with php (its he language i know best but the same ideas apply) i read a few tutorials like variables and writing things to a browser it started with stuff like
QUOTE
echo "hello world";
$text = "hello world";
echo $text;
but i eneded up using that simple command to write an entire dynamic website.
the thing is you need to take small things and expand them. I think you should read about every command there is to know. first of all get an idea. Maybe a simple calculator. learn how to add things andf how to output the data in text. Then learn how to make it do more complex things like FORMAT the data then output it. Then move on from that to something more complicated like a spell checker using an external file. Dont bother learning the ins and outs of how to read files just concentrate on the parts you need THEN learn the rest. this way you dont get bored of jus reading you only read what you need to know then use it and modify it yourself rather than reading more. Once you get tired of one command or it just isnt good enough anymore learn about a new one. Thats how im learning more php, im trying to make a forum and to be honest i havent got much of a clue what im doing or how to do it but by doing what ive said aboce i know i can make one.
Hope that helped a little bit!
good luck and dont give up, infortunately i cant program in C or C++ so i cant give any specific advice but thats worked for me with html javascript php and some VB so it should work for you!

Reply