Loading
After school programming class. What to teach?
Nov 12, 2007 By Shawn Powers
I may be teaching some high school & middle school kids programming as part of an after school program. Any advice on a language, especially if there are resources available (ie, less work for me!)
Their experience would be zero, and mine is limited to BASH scripts used to do menial work on my Linux servers.
Thanks!
-Shawn
Trending Topics
| You Need A Budget | Feb 10, 2012 |
| The Linux powered LAN Gaming House | Feb 08, 2012 |
| Creating a vDSO: the Colonel's Other Chicken | Feb 06, 2012 |
| Your CMS Is Not Your Web Site | Feb 01, 2012 |
| Casper, the Friendly (and Persistent) Ghost | Jan 31, 2012 |
| Razor-qt 0.4 - Qt based Desktop Environment | Jan 30, 2012 |
- Fun with ethtool
- 100% disappointed with the decision to go all digital.
- Parallel Programming with NVIDIA CUDA
- Readers' Choice Awards 2011
- Validate an E-Mail Address with PHP, the Right Way
- You Need A Budget
- Why Python?
- Linux-Based X Terminals with XDMCP
- The Linux powered LAN Gaming House
- Creating a vDSO: the Colonel's Other Chicken
- buena información
3 hours 53 min ago - One important "bucket" that I didn't note (désolé si qqun deja d
4 hours 54 min ago - Gnome3 is such a POS. No one
14 hours 21 min ago - Gnome 3 is the biggest POS
14 hours 32 min ago - I didn't knew this thing by
20 hours 36 min ago - Author's reply
1 day 48 sec ago - Link to modlys
1 day 1 hour ago - I use YNAB because of the
1 day 1 hour ago - Search
1 day 6 hours ago - Question
1 day 6 hours ago





about software programming info
i have completed 12th in science.
i want more info about software programming institutions.
Functional maybe?
You could also try something different, and try a language based on the functional paradigm, like SML or Haskell. They are very different from the imperative languages that are used most in the industry (like Java and C#), although functional languages are getting more popular (F#, Scala).
I think they have some benefits as first languages. First of all, not very many people have tried programming in a functional style, which means that students who may have some experience with programming won't get bored.
Second, when you have learned the syntax (which is actually pretty minimal and well-defined), this way of programming is pretty intuitive I think.
Functional languages may seem very weird at first, because some of the well-known imperative elements doesn't exist. You don't have any kind of loops for instance, all iterations are made using recursion. You don't have state either, so you can't change the contents of a value when it's been set. But when you've learned programming the style, it suddenly makes a lot of sense!
-Ulrik
Ruby
There's a good Ruby programming class online, http://tinyurl.com/ypp6xx. The class begins with a 'Hello World' example so safe to say it's probably the speed you're looking for.
Check out Linux Journal's issue on Ruby too, http://www.linuxjournal.com/issue/147.
Oh, and I can't recommend this book more, Learn to Program by Chris Pine.
Carlie Fairchild is the publisher of Linux Journal.
What to teach? Python?
Python seems to be the teaching language of the moment.
If you want to go this route you might check out:
How to Think Like a Computer Scientist
Learning with Python at:
http://www.ibiblio.org/obp/thinkCSpy/
Ken