<?xml version="1.0" encoding="utf-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Teaching recursion with Scratch BYOB</title>
	<atom:link href="http://www.nutt.net/2010/03/06/teaching-recursion-with-scratch-byob/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nutt.net/2010/03/06/teaching-recursion-with-scratch-byob/</link>
	<description>Random articles on whatever I feel like...</description>
	<lastBuildDate>Tue, 07 Feb 2012 22:30:43 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Teaching recursion with Scratch BYOB &#8211; take 2 &#124; Nutt.net</title>
		<link>http://www.nutt.net/2010/03/06/teaching-recursion-with-scratch-byob/comment-page-1/#comment-164093</link>
		<dc:creator>Teaching recursion with Scratch BYOB &#8211; take 2 &#124; Nutt.net</dc:creator>
		<pubDate>Sat, 08 Oct 2011 14:35:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.nutt.net/?p=487#comment-164093</guid>
		<description>[...] is a follow up from a post I did about a year and a half ago on using Scratch BYOB to teach recursion. The original way of defining parameters in BYOB were a bit clunky, but it&#8217;s gotten much [...]</description>
		<content:encoded><![CDATA[<p>[...] is a follow up from a post I did about a year and a half ago on using Scratch BYOB to teach recursion. The original way of defining parameters in BYOB were a bit clunky, but it&#8217;s gotten much [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://www.nutt.net/2010/03/06/teaching-recursion-with-scratch-byob/comment-page-1/#comment-137111</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Mon, 28 Mar 2011 23:20:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.nutt.net/?p=487#comment-137111</guid>
		<description>Checked this morning. The version we used in class this year is 3.03 which has a small box out to the side of the block editor to create local variables. I downloaded the new version of BYOB last night, but didn&#039;t get a chance to try the script variable idea.</description>
		<content:encoded><![CDATA[<p>Checked this morning. The version we used in class this year is 3.03 which has a small box out to the side of the block editor to create local variables. I downloaded the new version of BYOB last night, but didn&#8217;t get a chance to try the script variable idea.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Randy</title>
		<link>http://www.nutt.net/2010/03/06/teaching-recursion-with-scratch-byob/comment-page-1/#comment-137059</link>
		<dc:creator>Randy</dc:creator>
		<pubDate>Mon, 28 Mar 2011 13:23:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.nutt.net/?p=487#comment-137059</guid>
		<description>Thanks for checking, I&#039;ll try to find a place to ask at the byob site.
They have something called a script variable...but this test doesn&#039;t seem to work the way I think it should -
make a regular variable x, set it to 0.
make a block Test with a script variable x, set it to 10.
I think both variables are changed to 10, rather than just the variable local to Test block.
Let me know if you find out something.
Thanks for your Sierpinski program.  We&#039;re teaching Scratch and maybe byob to elementary school kids in a school in Fairfax county Va.</description>
		<content:encoded><![CDATA[<p>Thanks for checking, I&#8217;ll try to find a place to ask at the byob site.<br />
They have something called a script variable&#8230;but this test doesn&#8217;t seem to work the way I think it should -<br />
make a regular variable x, set it to 0.<br />
make a block Test with a script variable x, set it to 10.<br />
I think both variables are changed to 10, rather than just the variable local to Test block.<br />
Let me know if you find out something.<br />
Thanks for your Sierpinski program.  We&#8217;re teaching Scratch and maybe byob to elementary school kids in a school in Fairfax county Va.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://www.nutt.net/2010/03/06/teaching-recursion-with-scratch-byob/comment-page-1/#comment-136810</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Sat, 26 Mar 2011 13:46:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.nutt.net/?p=487#comment-136810</guid>
		<description>This is actually from an older version of BYOB. Don&#039;t remember what version it was we used in class, but the process of making parameters was much easier than what&#039;s here.

Can&#039;t seem to get to the BYOB site right now to try out whatever the current version is. </description>
		<content:encoded><![CDATA[<p>This is actually from an older version of BYOB. Don&#8217;t remember what version it was we used in class, but the process of making parameters was much easier than what&#8217;s here.</p>
<p>Can&#8217;t seem to get to the BYOB site right now to try out whatever the current version is.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Randy</title>
		<link>http://www.nutt.net/2010/03/06/teaching-recursion-with-scratch-byob/comment-page-1/#comment-136808</link>
		<dc:creator>Randy</dc:creator>
		<pubDate>Sat, 26 Mar 2011 13:24:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.nutt.net/?p=487#comment-136808</guid>
		<description>I had trouble getting your code to work, but it works now. THe problem I have is with the &#039;local&#039; block variables.  Mine aren&#039;t working as local variables (midx1, midy1, etc), apparently they&#039;re having a global effect, which throws off the drawing.  
I just substituted the expression for each into the recursive call, skipped using the local variable names.  THis works now.
How do you create local variables?  My version of byob (windows) doesn&#039;t have the &#039;block variable&#039; creator?
Thanks</description>
		<content:encoded><![CDATA[<p>I had trouble getting your code to work, but it works now. THe problem I have is with the &#8216;local&#8217; block variables.  Mine aren&#8217;t working as local variables (midx1, midy1, etc), apparently they&#8217;re having a global effect, which throws off the drawing.<br />
I just substituted the expression for each into the recursive call, skipped using the local variable names.  THis works now.<br />
How do you create local variables?  My version of byob (windows) doesn&#8217;t have the &#8216;block variable&#8217; creator?<br />
Thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>

