What We've Learned About Teaching Code
codecademy.com
What We've Learned About Teaching Code
1–10 of 45 posts
Re: What We've Learned About Teaching Code
#2This is the point of user acceptance tests - it doesn't matter if the code does 100% what it was designed to do. If the users can't make it work, it's no good.
Nice analysis from Codecademy.
Re: What We've Learned About Teaching Code
#3Re: What We've Learned About Teaching Code
#4Isn't this common sense? If you've ever tried to teach anyone anything, you've run into this.
Re: What We've Learned About Teaching Code
#5Isn't this common sense? If you've ever tried to teach anyone anything, you've run into this.
Re: What We've Learned About Teaching Code
#6Re: What We've Learned About Teaching Code
#7I've had a couple dozen students working through many of the CodeCademy programs this semester as an experiment. And most of the Javascript lessons currently on the site are just barely above mediocre.
Re: What We've Learned About Teaching Code
#8One thing that makes coding a little harder is that many of the analogies we make for non-coders aren't especially clean: A hash is like an set of cubby holes, each can be named and filled, and the set can be infinitely expanded. Packet routing is like trying to find your way from New York to California, only stopping at major cities to ask for a general direction. Memory is like a big sheet of paper, and x = 5 is like writing 5 somewhere on the paper, and x somewhere else, and then drawing an arrow between them.
I'm not saying these are the best analogies (or even any good), but I have yet to hear ones that aren't riddled with holes. The average non-coder doesn't have the context to back-fill these holes. As an instructor, you need to realize this and take the time to lay more of a foundation than you think.
Re: What We've Learned About Teaching Code
#9When you're teaching something completely new to someone, at first you won't even have a common vocabulary. This is true no matter what you're teaching, and you have to dedicate some time to establishing the language (English, not computer). One thing that makes coding a little harder is that many of the analogies we make for non-coders aren't especially clean: A hash is like an set of cubby holes, each can be named…
Re: What We've Learned About Teaching Code
#10Isn't this common sense? If you've ever tried to teach anyone anything, you've run into this.
In my experience the best people to educate the newbies are the people who were newbies a year ago. They know what the roadblocks were for them, and the don't know 'too much' as to complicate things.