<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:admin="http://webns.net/mvcb/"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
	<channel> 

	<title>Comments on: Help a geek inherit the earth</title>
	<link>http://ask.metafilter.com/40299/Help-a-geek-inherit-the-earth/</link>
	<description>Comments on Ask MetaFilter post Help a geek inherit the earth</description>
	<pubDate>Fri, 16 Jun 2006 06:48:58 -0800</pubDate>
	<lastBuildDate>Fri, 16 Jun 2006 06:48:58 -0800</lastBuildDate>
	<language>en-us</language>
	<docs>http://blogs.law.harvard.edu/tech/rss</docs>
	<ttl>60</ttl>

	<item>
		<title>Question: Help a geek inherit the earth</title>
		<link>http://ask.metafilter.com/40299/Help-a-geek-inherit-the-earth</link>	
		<description>What language/environment would be a good choice now for a 6-year old math whizz to learn the basics of programming? &lt;br /&gt;&lt;br /&gt; My 6-year old son is something of a math whizz. I went up to his room recently and discovered he&apos;d figured out the basics of algebra on his own. He understands negative numbers, and concepts like infinity, and has figured out his own ways of adding together three digit numbers in his head. He gave a speech at school about numbers but left out a lot of his favorite concepts because &apos;the other kids wouldn&apos;t understand&apos;.&lt;br&gt;
&lt;br&gt;
I was kind of similar at his age so we enjoy talking about it, although I don&apos;t push it on him. (I gave up Math eventually and turned to the humanities, having been pushed by my school too hard).&lt;br&gt;
&lt;br&gt;
Anyway, now he&apos;s very interested in learning to program computers. When I was his age or a bit older, I learned BASIC... then it seemed LOGO was all the rage for kids. &lt;br&gt;
&lt;br&gt;
However I think it would be really good for him to learn something more object-oriented, if such a thing exists, but including procedural aspects.&lt;br&gt;
&lt;br&gt;
Ideally it would be something which is capable of writing real programs in (games, I assume) as he develops and if he&apos;s interested.&lt;br&gt;
&lt;br&gt;
So what language/environment would be good for him to learn on? I think something graphical would be good, as the feedback is so instant, but he&apos;s also really enjoys working with words so some textual input/output would be cool.&lt;br&gt;
&lt;br&gt;
As I say he&apos;s six but his mathematical/logical competency is very high and he has excellent concentration skills, so I wouldn&apos;t be afraid of introducing him to something aimed at older kids.&lt;br&gt;
&lt;br&gt;
(We run OS X on all our computers here)</description>
		<guid isPermaLink="false">post:ask.metafilter.com,2006:site.40299</guid>
		<pubDate>Fri, 16 Jun 2006 06:45:30 -0800</pubDate>
		<dc:creator>unSane</dc:creator>
		
			<category>computers</category>
		
			<category>kids</category>
		
			<category>programming</category>
		
			<category>learning</category>
		
	</item> <item>
		<title>By: CXImran</title>
		<link>http://ask.metafilter.com/40299/Help-a-geek-inherit-the-earth#620843</link>	
		<description>I was going to say Visual Basic was the easiest thing for me to learn, but I&apos;m not sure if it&apos;s available on OS X,  you might as well get him started with some simple Java Applets.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.40299-620843</guid>
		<pubDate>Fri, 16 Jun 2006 06:48:58 -0800</pubDate>
		<dc:creator>CXImran</dc:creator>
	</item><item>
		<title>By: StickyCarpet</title>
		<link>http://ask.metafilter.com/40299/Help-a-geek-inherit-the-earth#620851</link>	
		<description>It would help if you or someone could write  a few programs that did something he would appreciate, and then show him variables and expressions that he can change.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.40299-620851</guid>
		<pubDate>Fri, 16 Jun 2006 06:52:25 -0800</pubDate>
		<dc:creator>StickyCarpet</dc:creator>
	</item><item>
		<title>By: veedubya</title>
		<link>http://ask.metafilter.com/40299/Help-a-geek-inherit-the-earth#620852</link>	
		<description>My son learned to program at that age using MIT&apos;s &lt;a href=&quot;http://education.mit.edu/starlogo/&quot;&gt;StarLogo&lt;/a&gt;. I didn&apos;t want to scare him off by exposing him to OO too early.&lt;br&gt;
&lt;br&gt;
Looks like the next step is that he&apos;ll be learning Flash.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.40299-620852</guid>
		<pubDate>Fri, 16 Jun 2006 06:52:39 -0800</pubDate>
		<dc:creator>veedubya</dc:creator>
	</item><item>
		<title>By: jon_kill</title>
		<link>http://ask.metafilter.com/40299/Help-a-geek-inherit-the-earth#620853</link>	
		<description>I&apos;d steer him away from BASIC. Not just because it&apos;s a little bit harmful to one&apos;s understanding of structured programming, but also because it&apos;s hard to do anything very interesting. I remember making a video game when I was 8 in Basic. I also remember putting the whole thing away for 10 years after that, too, so...&lt;br&gt;
&lt;br&gt;
If, as you say, he figures stuff out on his own, and you don&apos;t like to push him, why not set up a few environments for him? Maybe he&apos;ll really like LISP, because it&apos;s pretty abstracted from the machine, and the technical hurdles present in something like C++ or C (and by technical I mean figuring out includes, makefiles, compiler stuff, etc...) aren&apos;t there. I hear everyone likes Python, or Ruby.&lt;br&gt;
&lt;br&gt;
OR&lt;br&gt;
&lt;br&gt;
Ask him what he&apos;d be interested in really finishing as a program, then figure out where to go from there. I always find a language easier to learn if there&apos;s a project married to it from the start.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.40299-620853</guid>
		<pubDate>Fri, 16 Jun 2006 06:52:50 -0800</pubDate>
		<dc:creator>jon_kill</dc:creator>
	</item><item>
		<title>By: unSane</title>
		<link>http://ask.metafilter.com/40299/Help-a-geek-inherit-the-earth#620854</link>	
		<description>My concern about something like Java is that syntactically it&apos;s just totally opaque. It doesn&apos;t seem like a learning language, unless there&apos;s some kid-friendly environment I&apos;m unaware of.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.40299-620854</guid>
		<pubDate>Fri, 16 Jun 2006 06:53:16 -0800</pubDate>
		<dc:creator>unSane</dc:creator>
	</item><item>
		<title>By: grumblebee</title>
		<link>http://ask.metafilter.com/40299/Help-a-geek-inherit-the-earth#620861</link>	
		<description>How about Flash&apos;s Actionscript? It&apos;s drawing commands will remind you of LOGO. The latest version of the language -- 2.0 -- is pretty object oriented (class files, inheritance, etc.), and version 3.0 (even move object oriented) is just around the corner.&lt;br&gt;
&lt;br&gt;
The nice thing about AS is that it&apos;s contained within a very visual environment (a drawing/animation app). And, of course, you can deploy anything you make in a form that everyone can see in their web browser.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.40299-620861</guid>
		<pubDate>Fri, 16 Jun 2006 06:55:18 -0800</pubDate>
		<dc:creator>grumblebee</dc:creator>
	</item><item>
		<title>By: Wolfdog</title>
		<link>http://ask.metafilter.com/40299/Help-a-geek-inherit-the-earth#620863</link>	
		<description>Do not turn your nose up at Logo by any means.  It&apos;s still a great idea, and you can do tons of math-y things with it.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.40299-620863</guid>
		<pubDate>Fri, 16 Jun 2006 06:56:58 -0800</pubDate>
		<dc:creator>Wolfdog</dc:creator>
	</item><item>
		<title>By: aroberge</title>
		<link>http://ask.metafilter.com/40299/Help-a-geek-inherit-the-earth#620864</link>	
		<description>Python is a friendly language, much friendlier and easy to understand than Java.  Using Python+Pygame makes is  possible to write quite complex games.&lt;br&gt;
&lt;br&gt;
You may want to google &quot;rur-ple&quot;.  Disclaimer: I wrote it... it is designed to teach programming using Python and is intended to be &quot;child friendly&quot;.  You will need to install python and wxPython before.  It is completely free!  There were some OS X bugs reported earlier but I believe they have been fixed.  Feel free to email me directly with questions/comments/feeback.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.40299-620864</guid>
		<pubDate>Fri, 16 Jun 2006 06:57:07 -0800</pubDate>
		<dc:creator>aroberge</dc:creator>
	</item><item>
		<title>By: kableh</title>
		<link>http://ask.metafilter.com/40299/Help-a-geek-inherit-the-earth#620868</link>	
		<description>I&apos;d second Python.  While it is OO you can write some pretty complex programs without getting into the nitty gritty.  And there is a wealth of tutorials out there.&lt;br&gt;
&lt;br&gt;
I, too, learned BASIC as a kid, and I think it didnt help me much.  Learning C at that age (8 or 9) was a bit much.  I had a &apos;C for dummies&apos; kind of book and didnt get much out of it.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.40299-620868</guid>
		<pubDate>Fri, 16 Jun 2006 07:00:06 -0800</pubDate>
		<dc:creator>kableh</dc:creator>
	</item><item>
		<title>By: GuyZero</title>
		<link>http://ask.metafilter.com/40299/Help-a-geek-inherit-the-earth#620870</link>	
		<description>As much as I love Java, it&apos;s not a good language for a first-time learner. And there are certainly those who argue it&apos;s not good for experienced developers either.&lt;br&gt;
&lt;br&gt;
Logo seems like fun. I remember writing recursive code to draw fractals in Logo as a kid. Pretty heady stuff really.&lt;br&gt;
&lt;br&gt;
If he understands algebra, maybe a pseudo-programming environment like MatLab or Maple, which can both easily graph complex equations, even in 3D.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.40299-620870</guid>
		<pubDate>Fri, 16 Jun 2006 07:02:14 -0800</pubDate>
		<dc:creator>GuyZero</dc:creator>
	</item><item>
		<title>By: Ryvar</title>
		<link>http://ask.metafilter.com/40299/Help-a-geek-inherit-the-earth#620872</link>	
		<description>My advice would be that regardless of what you do now, set him up with C/C++ around age 10.  I started BASIC at 6 (back 20 years ago), Pascal at 10.  I didn&apos;t get to C/C++ until 15, and looking back I could have handled it at 10, 12 at the very latest.  If your son is as smart as he sounds, he shouldn&apos;t have a problem with it and will thank you for getting him into &apos;core&apos; programming early on while he is brain is still being wired up.  Definitely one of my bigger life regrets.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.40299-620872</guid>
		<pubDate>Fri, 16 Jun 2006 07:04:33 -0800</pubDate>
		<dc:creator>Ryvar</dc:creator>
	</item><item>
		<title>By: GuyZero</title>
		<link>http://ask.metafilter.com/40299/Help-a-geek-inherit-the-earth#620875</link>	
		<description>Actually, I remember that there is a really good java dev tool for beginners that is sutiable for kids: &lt;a href=&quot;http://www.bluej.org/&quot;&gt;BlueJ&lt;/a&gt;. it has a turtle graphics library and some other eay to learn libraries. Plus it&apos;s free.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.40299-620875</guid>
		<pubDate>Fri, 16 Jun 2006 07:05:37 -0800</pubDate>
		<dc:creator>GuyZero</dc:creator>
	</item><item>
		<title>By: kableh</title>
		<link>http://ask.metafilter.com/40299/Help-a-geek-inherit-the-earth#620881</link>	
		<description>I bought this book a year or two ago to learn some assembly and found it very accessible (almost too accessible, its really beginner stuff): &lt;a href=&quot;http://www.computer-books.us/assembler_6.php&quot;&gt;http://www.computer-books.us/assembler_6.php&lt;/a&gt;.  At 6, it&apos;s probably too much (you be the judge), but would be good for later on.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.40299-620881</guid>
		<pubDate>Fri, 16 Jun 2006 07:09:06 -0800</pubDate>
		<dc:creator>kableh</dc:creator>
	</item><item>
		<title>By: 3.2.3</title>
		<link>http://ask.metafilter.com/40299/Help-a-geek-inherit-the-earth#620911</link>	
		<description>&lt;a href=&quot;http://www.handysoftware.com/cpif/&quot;&gt;for kids.&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
cuz if he is a math wiz and learns python, he&apos;s got scipy and numpy and maya and blender and whole craploads of free scientific and visualization tools used in research to explore with big communities.&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://childsplay.sourceforge.net/&quot;&gt;this&lt;/a&gt; goes along with rur-ple.&lt;br&gt;
&lt;br&gt;
children are naturals with oo. adults find it hard because they&apos;ve been brought up procedurally. for kids, oo is like playing with lego: here&apos;s a block. it can be plugged in. it can be extended. there are lots of other blocks like it. some blocks are the same, but also different. all the blocks should play together in some ways. but some blocks are special....</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.40299-620911</guid>
		<pubDate>Fri, 16 Jun 2006 07:24:44 -0800</pubDate>
		<dc:creator>3.2.3</dc:creator>
	</item><item>
		<title>By: flickroad</title>
		<link>http://ask.metafilter.com/40299/Help-a-geek-inherit-the-earth#620912</link>	
		<description>You may want to consider Lego Mindstorms. My kids (9,10) weren&apos;t interested in programming but building a robot gave them a reason to learn. The included programming &quot;language&quot; consists of graphical building blocks that may not teach to good programming habits. Alternatively, you can use open source languages that are more traditional (e.g. Not Quite C).&lt;br&gt;
&lt;br&gt;
Disclaimer: my assessment is based on the older version.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.40299-620912</guid>
		<pubDate>Fri, 16 Jun 2006 07:25:51 -0800</pubDate>
		<dc:creator>flickroad</dc:creator>
	</item><item>
		<title>By: thegeezer3</title>
		<link>http://ask.metafilter.com/40299/Help-a-geek-inherit-the-earth#620919</link>	
		<description>lego mindstorms (ages 8+)  is great for getting into programing. Its not just kids stuff, loads of adults are making really cool robots and programming them with the simple supplied interface. stuff like a robot that solves a rubix cube (thats impressive from lego) or a path finding car have been made. the best thing is its great fun. oh and a lot of robotics and artificial intelligence sites highly reccommend it as an entry point into the field. You can pick up second hand ones on ebay for about 100pounds but some of the older versions dont work on win xp so cross check with lego website. the new one which is a bit swish costs 200quid. Expensive but very versatile. Theres a lot of pieces in the pack which means your only limited by your imagination  (well almost). In addtion to maths (which your kid has a good grasp of) programming also requires a different way of thinking and planning and i think the lego kit helps to develop it. Once he sees the benefits of programming (by making an eight legged spider ;&amp;gt; )he will be motivated to learn from some of the other dryer stuff... I mean i never found &quot;Hello world&quot; or &quot;The student grade records&quot; exercises intersting. And thats what you would normally find in a textbook (yawn). I never did LOGO and i didnt have time to read other posts so i dont know if thats interesting.&lt;br&gt;
hope thats of some use.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.40299-620919</guid>
		<pubDate>Fri, 16 Jun 2006 07:28:26 -0800</pubDate>
		<dc:creator>thegeezer3</dc:creator>
	</item><item>
		<title>By: sexymofo</title>
		<link>http://ask.metafilter.com/40299/Help-a-geek-inherit-the-earth#620920</link>	
		<description>&lt;a href=&quot;http://www.blitzbasic.com/&quot;&gt;Blitz Basic&lt;/a&gt; is basic for game developers.&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://processing.org/&quot;&gt;Processing&lt;/a&gt; allows for instant graphic gratification and is pretty simple.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.40299-620920</guid>
		<pubDate>Fri, 16 Jun 2006 07:28:55 -0800</pubDate>
		<dc:creator>sexymofo</dc:creator>
	</item><item>
		<title>By: thegeezer3</title>
		<link>http://ask.metafilter.com/40299/Help-a-geek-inherit-the-earth#620923</link>	
		<description>I didnt have time to read the previous posts as you can tell from the previous post to mine. ;&amp;gt;</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.40299-620923</guid>
		<pubDate>Fri, 16 Jun 2006 07:29:44 -0800</pubDate>
		<dc:creator>thegeezer3</dc:creator>
	</item><item>
		<title>By: bonecrusher</title>
		<link>http://ask.metafilter.com/40299/Help-a-geek-inherit-the-earth#620939</link>	
		<description>I&apos;d look into &lt;a href=&quot;http://www.squeakland.org/&quot;&gt;Squeak &lt;/a&gt; - Alan Kay always had kids partly in mind when he was developing Smalltalk, and Squeak seems to be in that spirit.  The immediate nature of Smalltalk would seem like a big plus for kids, and the new Self-inspired Morphic UI makes GUI programming easy.&lt;br&gt;
&lt;br&gt;
The only problem will be his eventual frustration when he moves on to the much less powerful mainstream languages...</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.40299-620939</guid>
		<pubDate>Fri, 16 Jun 2006 07:46:20 -0800</pubDate>
		<dc:creator>bonecrusher</dc:creator>
	</item><item>
		<title>By: blue_beetle</title>
		<link>http://ask.metafilter.com/40299/Help-a-geek-inherit-the-earth#620942</link>	
		<description>I think &lt;a href=&quot;http://www.kidwaresoftware.com/vcsekids.htm&quot;&gt;C#&lt;/a&gt; is a wonderful language, he&apos;ll understand C, C++, Java, and any other .NET languages pretty easily after that. There are free development environments on &lt;a href=&quot;http://msdn.microsoft.com/vstudio/express/visualcsharp/&quot;&gt;Windows&lt;/a&gt;, &lt;a href=&quot;http://www.monodevelop.com/Main_Page&quot;&gt;Linux&lt;/a&gt;, and &lt;a href=&quot;http://macslash.org/article.pl?sid=04/06/14/022235&quot;&gt;Mac OSX&lt;/a&gt;</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.40299-620942</guid>
		<pubDate>Fri, 16 Jun 2006 07:48:31 -0800</pubDate>
		<dc:creator>blue_beetle</dc:creator>
	</item><item>
		<title>By: spaceman_spiff</title>
		<link>http://ask.metafilter.com/40299/Help-a-geek-inherit-the-earth#620949</link>	
		<description>Second (or third, or whatever) python as a cool language.  However, perl or C# or something like that might be better, since it&apos;ll have actual utility (not that python isn&apos;t a great language; just that it&apos;s not as commonly used).&lt;br&gt;
&lt;br&gt;
However, if utility isn&apos;t a concern, you could go with scheme or another lisp dialect.  Very math/logic-y, very elegant.   Tricky to figure out at times, but it&apos;s elegant and may appeal to his sense of adventure.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.40299-620949</guid>
		<pubDate>Fri, 16 Jun 2006 07:58:12 -0800</pubDate>
		<dc:creator>spaceman_spiff</dc:creator>
	</item><item>
		<title>By: monochromaticgirl</title>
		<link>http://ask.metafilter.com/40299/Help-a-geek-inherit-the-earth#620955</link>	
		<description>I just started teaching computers to kids at a community center (in April), and I&apos;m slowly getting familiar with the different kinds of programs kids really hit on.  Mind you, I don&apos;t have any solid geeky wiz&apos;s yet, but here&apos;s what my coworkers have imparted on me about programming for kids.&lt;br&gt;
&lt;br&gt;
A program that we use in the centers to get kids into programming is called &lt;a href=&quot;http://www.kidsprogramminglanguage.com/&quot;&gt;Kids Programming Language&lt;/a&gt;.  You start out with really basic lessons learning about points on a grid (some kids have problems with the concept of coordinates right off, so we like to use &lt;a href=&quot;http://www.oswego.org/ocsd-web/games/BillyBug2/bug2.html&quot;&gt;this online game&lt;/a&gt; to help them grasp the concept), and they start by drawing things, then moving things, and it just goes on from there.&lt;br&gt;
&lt;br&gt;
I also third the recommendation for Lego Mindstorms.  I just got back from a conference for other computer teachers in our organization where I saw a presentation/demonstration, and this just sounds so cool.  The robot itself is easy enough because it is, essentially, lego-based, and the programming, from what I gather, sort of becomes natural to the kid.  You start off with, as you mentioned, a more object based environment--you move the icons for specific actions into the timeframes (ie, 5 seconds of going forward, etc), and then when the kid moves on to actual programming languages, he understand the concepts behind it, like the if x then y statements and such and finds the language itself much easier.  The new Lego Mindstorm model is due out in, I think, August or September.  Who knows, robotics could develop into a hobby, or he could get involved with competition for the First Lego League.&lt;br&gt;
&lt;br&gt;
Anyhow, good luck, and have fun.  :)</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.40299-620955</guid>
		<pubDate>Fri, 16 Jun 2006 08:03:57 -0800</pubDate>
		<dc:creator>monochromaticgirl</dc:creator>
	</item><item>
		<title>By: Artful Codger</title>
		<link>http://ask.metafilter.com/40299/Help-a-geek-inherit-the-earth#620985</link>	
		<description>Another vote for Lego Mindstorms. It&apos;s got fairly sophisticated programming abilities, but hey, it&apos;s LEGO!!. After all he&apos;s a 6 year-old. Time to play!!&lt;br&gt;
&lt;br&gt;
It&apos;s a cool toy, and the programming objectives are very interesting. Great potential for parent-child cooperation, too.&lt;br&gt;
&lt;br&gt;
Unless he&apos;s extremely precocious, and shows that he&apos;s ready to get all abstract with complex languages, I would not clobber the poor guy with Java, C, C## etc just yet.&lt;br&gt;
&lt;br&gt;
Don&apos;t forget music. Music and math ability can be closely interrelated. Music is very satisfying in a mathematical way (especially Bach)&lt;br&gt;
&lt;br&gt;
Before I got into programming, my geeky childhood was filled with (non-Mindstorm) Lego, Meccano, chemistry set, model kits, microscope, telescope, countless electric/electronic lab things. Lots of hikes and outings. These helped me learn basics and to mess with physical and practical implementations of important abstract concepts. I think a kid should get to play with all this stuff before being stuck in a chair in front of a CRT (LCD) screen. just my opinion.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.40299-620985</guid>
		<pubDate>Fri, 16 Jun 2006 08:28:38 -0800</pubDate>
		<dc:creator>Artful Codger</dc:creator>
	</item><item>
		<title>By: chrispy108</title>
		<link>http://ask.metafilter.com/40299/Help-a-geek-inherit-the-earth#621082</link>	
		<description>I&apos;d definately look at &lt;a href=&quot;http://en.wikipedia.org/wiki/Lego_Mindstorms&quot;&gt;Lego Mindstorms&lt;/a&gt;, I think that it&apos;s good to get something physical out. The Wiki I linked to has lots of info about the various languages you can program the current RCX in.&lt;br&gt;
&lt;br&gt;
I&apos;m sure options like this will be available for the new Mindstorms too, theres a very active community behind Mindstorms.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.40299-621082</guid>
		<pubDate>Fri, 16 Jun 2006 09:38:34 -0800</pubDate>
		<dc:creator>chrispy108</dc:creator>
	</item><item>
		<title>By: Alterscape</title>
		<link>http://ask.metafilter.com/40299/Help-a-geek-inherit-the-earth#621118</link>	
		<description>Yet another reccomendation for Mindstorms -- I haven&apos;t ever used them, but at age 20, I started to get involved in the AVR hobbyist scene because the microcontrollers used a language I already knew (C) and let me design Really Cool Things that moved/blinked/talked to eachother via bluetooth, etc.  I suspect that Mindstorms would open up the same sense of wonder to somebody without a programming background.&lt;br&gt;
&lt;br&gt;
I&apos;m torn over whether to reccomend Javascript for your son once he gets comfortable with the basics.  I know its held accountable for many of the user-interface evils of the internet, but a few years ago (late high school and early college) I had a great time designing totally nonstandard DHTML interface widgets for my website in Javascript/DHTML.   Yes, I committed a lot of sins, but I also learned a lot which remained useful once I realized that I was creating usability nightmares.  It has the benefit of letting you make Really Cool Things in relatively short order, too, which makes it attractive from a &quot;ooh, if I teach myself this, I can maybe do ____&quot; perspective.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.40299-621118</guid>
		<pubDate>Fri, 16 Jun 2006 09:57:06 -0800</pubDate>
		<dc:creator>Alterscape</dc:creator>
	</item><item>
		<title>By: Zed_Lopez</title>
		<link>http://ask.metafilter.com/40299/Help-a-geek-inherit-the-earth#621138</link>	
		<description>I&apos;ll add a recommendation for Larry Gonick&apos;s &lt;a href=&quot;http://larrygonick.com/html/pub/books/sci1.html&quot;&gt;Cartoon Guide to the Computer&lt;/a&gt;, probably not for your 6-year-old, but maybe as early as 8. I love Gonick&apos;s stuff -- accessible, funny, and he doesn&apos;t sacrifice accuracy to get there.&lt;br&gt;
&lt;br&gt;
I also think the &lt;a href=&quot;http://www.roborally.com/&quot;&gt;Robo Rally&lt;/a&gt; board game is a good way to teach programmer-ish thinking.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.40299-621138</guid>
		<pubDate>Fri, 16 Jun 2006 10:15:01 -0800</pubDate>
		<dc:creator>Zed_Lopez</dc:creator>
	</item><item>
		<title>By: jamjam</title>
		<link>http://ask.metafilter.com/40299/Help-a-geek-inherit-the-earth#621154</link>	
		<description>unsane, your description of your son&apos;s achievements at &lt;em&gt;six&lt;/em&gt; gives me goosebumps. He may not need much help to inherit the earth. Stanislaw Ulam said he thought 80% of creative mathematicians thought in basically geometric terms, 20% in lexical/numeric. Your anecdotes suggest the latter for your son, and I would worry just a bit that pushing him in a geometric direction could frustrate his gift and undermine his confidence.&lt;br&gt;
&lt;br&gt;
The discovery of the existence of prime numbers seems to be critical not only for the development of mathematics, but for many mathematicians, too. How about reading a book such as David Wells&apos; &lt;a href=&quot;http://www.amazon.com/exec/obidos/ASIN/0140261494/metafilter-20/ref=nosim/&quot;&gt;Curious and Interesting Numbers&lt;/a&gt; and having &apos;numerical&apos; conversations with your son a la Oliver Sacks and the Prime Twins? He&apos;s not all that likely to find a mate who can hold his or her own with him at the average school, and this very necessary role may fall to you.&lt;br&gt;
&lt;br&gt;
I&apos;ve read the other answers to your question, and I barely understand what any of them are even talking about, so I speak here from a position of depthless ignorance. But. Mathematics and computer programming are certainly related.  However, they are quite distinct. I wonder, in fact, whether they may even compete for the same parts of the developing brain. No one can say with any confidence what programming  languages will be hot in 10 years; I seem to hear programmers complaining about what they must &lt;em&gt;unlearn&lt;/em&gt; that they learned 10 years ago, actually. I don&apos;t hear anything like that about mathematics.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.40299-621154</guid>
		<pubDate>Fri, 16 Jun 2006 10:26:38 -0800</pubDate>
		<dc:creator>jamjam</dc:creator>
	</item><item>
		<title>By: ewagoner</title>
		<link>http://ask.metafilter.com/40299/Help-a-geek-inherit-the-earth#621234</link>	
		<description>I&apos;ve heard great things about &lt;a href=&quot;http://pragmaticprogrammer.com/titles/fr_ltp/index.html&quot;&gt;&lt;i&gt;Learn to Program&lt;/i&gt;&lt;/a&gt; from the Pragmatic Programmers. While the author uses Ruby in the book, it&apos;s more about the concepts of programming and can be applied toward most any language. And it&apos;s &lt;a href=&quot;http://www.flickr.com/photos/orsini/92697433/&quot;&gt;child-friendly&lt;/a&gt;!</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.40299-621234</guid>
		<pubDate>Fri, 16 Jun 2006 11:35:17 -0800</pubDate>
		<dc:creator>ewagoner</dc:creator>
	</item><item>
		<title>By: geeky</title>
		<link>http://ask.metafilter.com/40299/Help-a-geek-inherit-the-earth#621238</link>	
		<description>One of the first programming languages I ever learned was &lt;a href=&quot;http://en.wikipedia.org/wiki/Logo_programming_language&quot;&gt;Logo&lt;/a&gt; back in 3rd grade. The fun part was the Turtle graphics, because you could visually see the result of your programming. I still have a print out from the calculator that I &quot;programmed&quot;. I highly recommend it, since I ultimately ended up getting a CS degree and a programming job :)</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.40299-621238</guid>
		<pubDate>Fri, 16 Jun 2006 11:36:48 -0800</pubDate>
		<dc:creator>geeky</dc:creator>
	</item><item>
		<title>By: gmarceau</title>
		<link>http://ask.metafilter.com/40299/Help-a-geek-inherit-the-earth#621302</link>	
		<description>The Teach Scheme project is having great success teaching programming of the high school level using DrScheme.&lt;br&gt;
&lt;br&gt;
   http://www.teach-scheme.org/&lt;br&gt;
&lt;br&gt;
   http://www.plt-scheme.org/software/drscheme/tour/tour-Z-H-5.html&lt;br&gt;
&lt;br&gt;
DrScheme is a tower of languages, starting from really simple and growing gradually into the professional language that was used to implement DrScheme itself.  The programming environment is geared toward beginners, with a lot of effort spent generating good error messages.  There is also an introduction to programming book that goes with the environment, and it is available for free on the Web.&lt;br&gt;
&lt;br&gt;
   http://htdp.org/&lt;br&gt;
&lt;br&gt;
I&apos;ve seen your question come up a few times already.  Don Box from Microsoft led a large discussion on this subject on his blog.&lt;br&gt;
&lt;br&gt;
  http://pluralsight.com/blogs/dbox/archive/2005/02/20/6009.aspx&lt;br&gt;
  http://pluralsight.com/blogs/dbox/archive/2005/02/26/6181.aspx&lt;br&gt;
&lt;br&gt;
There is also this post on the DrScheme mailing list:&lt;br&gt;
&lt;br&gt;
  http://list.cs.brown.edu/pipermail/plt-scheme/2005-April/008417.html</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.40299-621302</guid>
		<pubDate>Fri, 16 Jun 2006 12:18:38 -0800</pubDate>
		<dc:creator>gmarceau</dc:creator>
	</item><item>
		<title>By: profwhat</title>
		<link>http://ask.metafilter.com/40299/Help-a-geek-inherit-the-earth#621336</link>	
		<description>&quot;It is practically impossible to teach good programming to students that have had a prior exposure to BASIC: as potential programmers they are mentally mutilated beyond hope of regeneration.&quot;  -- &lt;a href=&quot;http://www.cs.virginia.edu/~evans/cs655-S00/readings/ewd498.html&quot;&gt;Edsger W. Dijkstra&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
I also recommend Logo or Python, but probably more Logo because graphics will be a lot easier, and kids like graphics.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.40299-621336</guid>
		<pubDate>Fri, 16 Jun 2006 12:43:27 -0800</pubDate>
		<dc:creator>profwhat</dc:creator>
	</item><item>
		<title>By: Zed_Lopez</title>
		<link>http://ask.metafilter.com/40299/Help-a-geek-inherit-the-earth#621449</link>	
		<description>&lt;a href=&quot;http://www.toontalk.com/&quot;&gt;ToonTalk&lt;/a&gt; looks like it might be fun, but it&apos;s Windows only -- you&apos;d have to run a virtual machine on your Mac.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.40299-621449</guid>
		<pubDate>Fri, 16 Jun 2006 14:04:51 -0800</pubDate>
		<dc:creator>Zed_Lopez</dc:creator>
	</item><item>
		<title>By: 3.2.3</title>
		<link>http://ask.metafilter.com/40299/Help-a-geek-inherit-the-earth#621579</link>	
		<description>Wow. By accident today, I find out &lt;a href=&quot;http://www.metafilter.com/user/26157&quot;&gt;aroberge&lt;/a&gt; has made a &lt;a href=&quot;http://showmedo.com/videos/video?name=rurple1_andreR&quot;&gt;Quicktime movie demonstrating Rur-ple&lt;/a&gt;.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.40299-621579</guid>
		<pubDate>Fri, 16 Jun 2006 17:13:36 -0800</pubDate>
		<dc:creator>3.2.3</dc:creator>
	</item><item>
		<title>By: SuperSquirrel</title>
		<link>http://ask.metafilter.com/40299/Help-a-geek-inherit-the-earth#621679</link>	
		<description>This &lt;a href=&quot;http://www.handysoftware.com/cpif/&quot;&gt;book &lt;/a&gt;might be helpful, if you go the [Windows or Linux] Python route.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.40299-621679</guid>
		<pubDate>Fri, 16 Jun 2006 19:35:04 -0800</pubDate>
		<dc:creator>SuperSquirrel</dc:creator>
	</item><item>
		<title>By: everybody polka</title>
		<link>http://ask.metafilter.com/40299/Help-a-geek-inherit-the-earth#621834</link>	
		<description>I agree that Mindstorms are a great idea.. Additionally, &lt;a href=&quot;http://robocode.sourceforge.net/&quot;&gt;Robocode&lt;/a&gt; might be something he would be interested in..  It reminds me of Mindstorms minus the hardware. You build a Robot (a java object), plug it into their interface and it battles other robots.&lt;br&gt;
&lt;br&gt;
IBM developed it as a platform to teach programming--it&apos;s open source now.&lt;br&gt;
&lt;br&gt;
This article has a nice overview of it (including screen shots): &lt;a href=&quot;http://ai-depot.com/Essay/Robocode.html&quot;&gt;http://ai-depot.com/Essay/Robocode.html&lt;/a&gt;</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.40299-621834</guid>
		<pubDate>Sat, 17 Jun 2006 00:39:58 -0800</pubDate>
		<dc:creator>everybody polka</dc:creator>
	</item>
	</channel>
</rss>
