I would like to know how you learned to program in order to teach future programmers.
Could recommend some books to teach programming,or some helpful tips?
Edit :
How to motivate students to continue learning?
|
5
|
I would like to know how you learned to program in order to teach future programmers. Could recommend some books to teach programming,or some helpful tips? Edit : How to motivate students to continue learning? |
|||
|
|
|
|
As to how to keep students motivated, the best way I found is to have them work on something of practical value. For introductory students, using a language like Python makes this easier as you can teach about file input/output and have them write programs that convert files from one format into another format. In the CS0 class I teach, I use Python and wind up with them writing a simple XML parser (using the xml.sax module). They have to read in an XML file and convert it to HTML. For extra credit, they can accomplish the same thing using XSLT. Using a language like Python makes this possible even in a first semester course. For more advanced students, having them work on a real project that the school will use is good experience. If you can get them paid to do this, that is even better. By giving them real-world experience it is easy to get the good students to work hard. In my more advanced programming class (covering PHP and MySQL), I tell the students that the ones who do well will be able to participate in a real project for the school. I think getting paid as well as getting real-world experience turn out to be good motivators. |
|||
|
|
|
|
learn by doing |
|||
|
|
|
|
I started with the scripting language for the UnrealEngine. Its called UnrealScript and it is/was a hybrid of Java and C++. I messed around with it and nothing really 'clicked'. Thankfully, when I started there was a very popular Wiki dedicated to UnrealScript and its engine and I got a lot of help from people who 'sat down' with me and went through some concepts and problems. Some of it stuck but most of it didn't. I then took a look at Visual Basic. I had done some Visual Basic before this but it was all pretty much simply GUI stuff... drop a control onto a form and make a MsgBox appear when you click on it. I delved deeper into it, taking with me some of my knowledge from UnrealScript. When I got into it, it clicked. Some time later I watched a Video Tutorial on how to make a 'customized' weapon with UnrealScript. After that everything just started to "click" and the Universe made sense. So basically I learned to program mostly through self-teaching and someone showing me the basics as well as some advanced concepts. Once you get the basic concepts and learn a programming language intimately, you can pretty much take that knowledge and transfer it to any other language. Once you learn the syntax, there's no differences. What motivated me to get into programming was solely the UnrealEngine. I wanted to create something "amazing" with a "wow" factor. When it 'clicked', I was motivated to learn about programming and other languages was the need to satisfy new long term goals: To develop an operating system, to develop a game engine and finally to develop a stand-alone game. Going to school I found that not a lot of people wanted to learn code. In high school the only reason students took the Comp. Science class was because they had the idea that they would be allowed to surf the web for the entire year. After high school, it seemed that people were mostly learning how to program (those of which who didn't already know how) because their future goals or even just the course required it. I believe some people just won't be motivated by programming. You can throw something shiny infront of them and they'll be more concerned with the fact that the shiny thing is made than how it was created. If you do find someone who is very motivated and interested in programming, I suggest you devise some 'cool' projects for them to learn from or get them to create a project plan on their own. |
|||
|
|
I learnt to program by fiddling. I had a programmer father, but he didn't know the language I was learning, so he just helped me with program suggestions and by pointing me to websites like koders and stack overflow. I used a book to learn the first fundamentals, and I learnt a bit at school, but I also used my IDE's help a lot too. I think the best way to teach people is to give them a book that teaches them a few basic commands, then challenge them to create programs. If you help them sort out their compiling problems, and just leave the expansion of their knowledge of commands to necessity, I'm sure they'll learn all right. |
|||
|
|
|
|
How do you learn to dig a hole? At some point, you learn that a shovel makes the job much easier. It's the same with programming. You decide you want to do something and realize that automating that task is easier with a computer. So, first inspire a person to do something, then show them why it is better with a computer, finally, nurture that desire. |
|||
|
|
|
|
A local TV station ran a series of programming articles on their Teletext
service. The examples were written in some kind of BASIC. I wrote the programs down on paper and went to our neighbors - they had a Commodore C64 back then. |
|||
|
|