Ask HN: How would you teach programming skills to underprivileged kids?
I am associated with an NGO that organizes after-school activities for children in a slum in Mumbai, India. I'm trying to create a course to teach them some programming skills that will enable them to get freelancing careers or be able to get jobs once they graduate school. The target group is kids in grades 9 to 12 with limited exposure to computers and programming (some of them have some knowledge of HTML from a campaign done by another NGO but most are unfamiliar with any form of computer languages).
I'm trying to come up with a course of about 10 hours (spread out over 2 weekends) that would introduce them to programming. It would be great if the kids could have something working by the end of the course so that its engaging for them (drop out rates have been very high in the past).
My inclination is to start with the basics of Python and then move on to something like Django where they can create a working website for themselves. Is this feasible to teach in 10 hours? Is there any other language or program I should start with instead?
The longer term goal here is to take the kids that show the most interest and teach them algorithms and data structures allowing them to get good jobs in software companies.
2 comments
[ 3.0 ms ] story [ 11.9 ms ] threadCheck out Django Girls - https://djangogirls.org/ - they organize workshops that teach Django to kids all over the world, so I'm sure this will be relevant to your plan. Check out the tutorial that they do where the student makes a blog - https://tutorial.djangogirls.org/
Their organizer's manual - https://organize.djangogirls.org/
Their coaching guide - https://coach.djangogirls.org/
You could also prepare a few Jupyter/IPython notebooks in advance that have the basic examples of how to use Python - these could serve as a kind of executable documentation of language features, to help avoid them getting stuck.
Is the 10 hour limit really set in stone? Also do you have anyone else who could teach with you at the same time? More teacher attention % per student generally translates into a better learning environment.
Hope it goes well!