<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.sugarlabs.org/index.php?action=history&amp;feed=atom&amp;title=Archive%2FCurrent_Events%2F2014-09-02</id>
	<title>Archive/Current Events/2014-09-02 - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.sugarlabs.org/index.php?action=history&amp;feed=atom&amp;title=Archive%2FCurrent_Events%2F2014-09-02"/>
	<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=Archive/Current_Events/2014-09-02&amp;action=history"/>
	<updated>2026-05-25T15:27:10Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.43.0</generator>
	<entry>
		<id>https://wiki.sugarlabs.org/index.php?title=Archive/Current_Events/2014-09-02&amp;diff=93326&amp;oldid=prev</id>
		<title>Walter: Created page with &quot;==Sugar Digest==  Happy 6th Birthday Sugar Labs  1. I just got back from Turtle Art Day in Kathmandu, Nepal. OLE Nepal helped organize a 2-day workshop with 70+ children from ...&quot;</title>
		<link rel="alternate" type="text/html" href="https://wiki.sugarlabs.org/index.php?title=Archive/Current_Events/2014-09-02&amp;diff=93326&amp;oldid=prev"/>
		<updated>2014-09-02T18:33:41Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;==Sugar Digest==  Happy 6th Birthday Sugar Labs  1. I just got back from Turtle Art Day in Kathmandu, Nepal. OLE Nepal helped organize a 2-day workshop with 70+ children from ...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;==Sugar Digest==&lt;br /&gt;
&lt;br /&gt;
Happy 6th Birthday Sugar Labs&lt;br /&gt;
&lt;br /&gt;
1. I just got back from Turtle Art Day in Kathmandu, Nepal. OLE Nepal helped organize a 2-day workshop with 70+ children from four schools. Many thanks to Martin Dluhos, Basanta Shrestha, Subir Pradhanang, Rabi Karmacharya, Bernie Innocenti, Nick Dorion, and Adam Holt, all of whom contributed to the event.&lt;br /&gt;
&lt;br /&gt;
It was not a surprise that children in Nepal are like children everywhere else: they take to programming like ducks to water. We began by taking the children in small groups to learn some basics about controlling the turtle: one child plays the role of turtle, one holds the pen (a piece of chalk) and the rest, in a circle, instruct the &amp;quot;turtle&amp;quot; how to draw a square. They need to be very precise with their instructions: if they just say &amp;quot;forward&amp;quot; without saying how far forward, the turtle keeps walking. If they say &amp;quot;right&amp;quot;, without saying how far to turn, the turtle keeps spinning. After they draw a square, I ask them to draw a triangle; then they are ready to start with Turtle Art. I&amp;#039;ve posted a few of the chalk drawings in the wiki: [[:File:Chalk1.jpg|simple ones]] from my session, to [[:File:Chalk1.jpg|more elaborate]], from those working with another one of the mentors.&lt;br /&gt;
&lt;br /&gt;
After working with chalk, we went to the computers. On a laptop connected to a projector, I introduced Turtle Blocks, and again ask for a square. I show them that they can snap together blocks, e.g., forward 100, right 90; showed them the repeat block; and then I show them how to use the start block to run their program with the rabbit or snail (fast or slow). Over time, I introduced the pen and let them explore colors for awhile. Next, I introduce action blocks: make an action for drawing a square and then call that action inside of a repeat block followed by right 45, and you get a pretty cool pattern. This was followed by more open-ended exploration. I introduced a few more ideas, such as using &amp;quot;set color to heading&amp;quot; (the color is determined by the direction the turtle is heading); &amp;quot;set color = color + 1&amp;quot; to increment the color; and &amp;quot;set color = time&amp;quot; to make the color slowly change over time. I also introduced a few other blocks, such as show, speak, and random. Finally, I introduced boxes. For this, I use a physical box: I ask the children to put a number (written on paper) in the box; then I ask them what number is in the box. I ask them to take the number in the box and add 1 to it. Again I ask them what number is in the box. I repeat this until they get used to it; then I show them the same thing using Turtle. The example program I write with them is to go forward by the amount in the box, turn right, and add 10 to the number in the box. I asked them what they think will happen, and then show them that it makes a spiral. When they run it with the &amp;quot;snail&amp;quot;, they can see the number in the box as the program runs. Another block I explicitly introduced was the &amp;quot;show&amp;quot; block. We programmed an animation with &amp;quot;show image&amp;quot;, &amp;quot;wait 1&amp;quot;, &amp;quot;show image&amp;quot;, &amp;quot;wait 1&amp;quot;, ... They recorded dance steps using the Sugar Record activity and used those images in their Turtle projects. As often as possible, we tried to have a child show their work to the entire group. At the end of the second day, we had a table set up for an exhibition; we had to keep adding more tables as more and more children wanted to show off their projects.&lt;br /&gt;
&lt;br /&gt;
We originally planned on break-out sessions on Day Two, but we had a technical glitch on Day One, that slowed things down quite a bit. The children were running Sugar 0.82 on XO-1 laptops, which is nearly six-years old. They had them connected to the mesh network, which cannot scale properly to 70+ machines. The result was a lot of frozen machines. It took most of the day to figure out what was wrong. Once we turned off the radios, everything worked great. I also had to spin a stripped down version of Turtle Art, since a number of dependencies I use, such as some Python 2.7 features, were unavailable on 0.82.&lt;br /&gt;
&lt;br /&gt;
We did have one break-out session for robotics. I brought a Butia to Nepal and I wrote the typical program with the kids to have the Butia go forward until it got to the edge of the circle (everyone was sitting in a circle on the floor); whomever the Butia approached had to push a button so that the Butia would spin and then go in another direction. We then added a few embellishments: the Butia would say &amp;quot;ouch&amp;quot; or &amp;quot;that tickles&amp;quot; when the button was pushed; and we had it take a picture of the child who pushed the button. We saved the files so we could use them to make an animation in Turtle Art.&lt;br /&gt;
&lt;br /&gt;
Of note: One child approached me to say he is teaching himself to program Python. I showed him how to export Python from his Turtle Art projects. I&amp;#039;ll be curious how he uses that feature. I am making a new set to [[Activities/Turtle_Art/Turtle_Cards|Turtle Cards]] to demonstrate the steps we took in explaining Turtle to the children.&lt;br /&gt;
&lt;br /&gt;
Photos: [https://www.facebook.com/permalink.php?story_fbid=10151995403127583&amp;amp;id=187845102582] [https://www.facebook.com/photo.php?fbid=10152402311569362&amp;amp;set=a.140818034361.110570.552694361&amp;amp;type=1&amp;amp;theater] [https://www.facebook.com/permalink.php?story_fbid=10151996917067583&amp;amp;id=187845102582] [https://www.facebook.com/permalink.php?story_fbid=10151996931477583&amp;amp;id=187845102582]&lt;br /&gt;
&lt;br /&gt;
2. While I was in Kathmandu, I had a chance to meet with the Nepali FOSS community, thanks to Shankar Pokharel, Ankur Sharma, and Subir Pradhanang. We had a nice [[:File:Kathmandu-FOSS.pdf|talk]] about the challenges and opportunities facing FOSS in Nepal.&lt;br /&gt;
&lt;br /&gt;
3. Just before my trip to Nepal, I was in Mexico attending [http://aldeadigitalmx.com/ Aldea Digital]. The central plaza in Centro Historico in DF is turned into the world&amp;#039;s largest free Internet cafe for two weeks. I gave a lecture about Sugar and ran an impromptu Turtle Art session. (We installed Sugar in a VM on twenty Windows 8 machines and ran a session.) I also had a chance to meet Ian, the 9-month old baby of Carla Gomez: a future Turtle Artist.&lt;br /&gt;
&lt;br /&gt;
=== In the Community ===&lt;br /&gt;
&lt;br /&gt;
4. Mike Dawson, formally of OLPC Afghanistan, wrote a nice [http://www.ictworks.org/2014/05/14/keepod-wasting-40000-to-reinvent-linux-on-a-stick/ commentary on the Keepod] in which he mentions Sugar on a Stick.&lt;br /&gt;
&lt;br /&gt;
5. Google Summer of Code begins on the 19th of May. We&amp;#039;ll be meeting every week in IRC on Fridays at 2PM EST.&lt;br /&gt;
&lt;br /&gt;
6. There is still time to enter the [http://contest.sugarlabs.org Sugar Background Image Contest].&lt;br /&gt;
&lt;br /&gt;
=== Tech Talk ===&lt;br /&gt;
&lt;br /&gt;
7. Daniel Narvaez has been building [http://shell.sugarlabs.org/~dnarvaez/oob/ F20 images for XO]: The XO-1 image boots into Sugar (latest from git) and wifi works. He has also built XO-4 images.&lt;br /&gt;
&lt;br /&gt;
8. Daniel also built tarballs for 0.101.5 ([http://download.sugarlabs.org/sources/sucrose/glucose/sugar/sugar-0.101.7.tar.xz sugar-0.101.7.tar.xz] and [http://download.sugarlabs.org/sources/sucrose/glucose/sugar-toolkit-gtk3/sugar-toolkit-gtk3-0.101.5.tar.xz sugar-toolkit-gtk3-0.101.5.tar.xz]. We are now in string, API and UI freeze.&lt;br /&gt;
&lt;br /&gt;
9. Please help us with [[0.102/Testing|testing of Sugar 102]].&lt;br /&gt;
&lt;br /&gt;
=== Sugar Labs ===&lt;br /&gt;
&lt;br /&gt;
10. Please visit our [http://planet.sugarlabs.org planet].&lt;br /&gt;
&lt;br /&gt;
[[Category: Sugar Digest]]&lt;/div&gt;</summary>
		<author><name>Walter</name></author>
	</entry>
</feed>