<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>RobotGrrl.com &#187; Search Results  &#187;  pinky</title>
	<atom:link href="http://robotgrrl.com/blog/search/pinky/feed/rss2/" rel="self" type="application/rss+xml" />
	<link>http://robotgrrl.com/blog</link>
	<description>ethical robots that bring smiles</description>
	<lastBuildDate>Tue, 07 Feb 2012 08:05:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>BubbleBoy</title>
		<link>http://robotgrrl.com/blog/bubbleboy/</link>
		<comments>http://robotgrrl.com/blog/bubbleboy/#comments</comments>
		<pubDate>Wed, 17 Sep 2008 23:44:49 +0000</pubDate>
		<dc:creator>Erin, the RobotGrrl</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://robotgrrl.com/blog/robots/bubbleboy/</guid>
		<description><![CDATA[BubbleBoy is my little emotional robot. The purpose of BubbleBoy is to serve as a physical representation of simulated behaviour AI. I started this project in March of 2007 (Grade 11) and it&#8217;s still working very well. In June 2010, BubbleBoy&#8217;s servo arms and wiring were refurbished, to ensure even more longevity. Originally, it was [...]]]></description>
			<content:encoded><![CDATA[<p><center><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/09/img_3057.JPG" width="100%" /></center></p>
<p><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/09/img_3058.thumbnail.JPG" align="left" /> BubbleBoy is my little emotional robot. <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  The purpose of BubbleBoy is to serve as a physical representation of simulated behaviour AI. I started this project in March of 2007 (Grade 11) and it&#8217;s still working very well. In June 2010, BubbleBoy&#8217;s servo arms and wiring were refurbished, to ensure even more longevity. Originally, it was called Pinky, but BubbleBoy sounded more cute. Although BubbleBoy does look like the robot Keepon, BubbleBoy was designed to look like a pink snowman, hence the hat and scarf.</p>
<p><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/09/img_3048.thumbnail.JPG" align="right" /> BubbleBoy runs off of an Arduino and has two user inputs, a food button and a water button. These buttons control BubbleBoy&#8217;s food and water levels. Both of these levels contribute to BubbleBoy&#8217;s behaviour and mood.</p>
<p><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/09/img_3069.thumbnail.JPG" align="left" /> Depending on BubbleBoy&#8217;s mood, its actions will be faster or slower to create the perception of happiness or sadness. In BubbleBoy&#8217;s original behaviour code, its moods range from &#8216;Hypertastic!&#8217; to &#8216;Dead&#8217;.  When BubbleBoy is &#8216;Hypertastic!&#8217; its actions consists of vibrating its hula ring, spinning its hat, and &#8216;twitching&#8217; its head. Usually after completing three action sets, BubbleBoy becomes more hungry and thirsty, thereby dropping the level of food and water.</p>
<p>The newer version of BubbleBoy&#8217;s Behaviour AI is currently a work in progress. Here&#8217;s a broad flowchart of the behaviour, which I will then explain below in detail.</p>
<p><center><a href="http://www.flickr.com/photos/robotgrrl/4786744498/" title="BubbleBoy Behaviour AI Flowchart by RobotGrrl, on Flickr"><img src="http://farm5.static.flickr.com/4135/4786744498_36ded3829e.jpg" width="500" height="500" alt="BubbleBoy Behaviour AI Flowchart"></a></center></p>
<ol>
<li>
<h3>Creating the Expectation</h3>
</li>
<p>This is the observatory phase. BubbleBoy initially does not have any expectation of when to be fed, so it waits around. While it is waiting, its collecting data from all of the sensors and storing them to an array. There has to be 10 numbers in the array for each sensor before BubbleBoy can proceed to the next stage, pattern finding. Once this is fulfilled, and if BubbleBoy is fed/watered, then it goes on to find a pattern.</p>
<li>
<h3>Pattern Finding</h3>
</li>
<p>BubbleBoy is seen as a simple robot. Thereby, its pattern finding is relatively simple as well. The main idea is to check each sensor&#8217;s array and see if there is a pattern within the residuals. Meaning, if looking for a sequential pattern, the array would be iterated through (starting at i=0, stopping after i=8), and i+1 would be subtracted from i. An average of the residual change would be calculated at the same time. The array would be iterated through again, this time to count how many items are within +- 10% of the residual average. If the count is above 7, then it is said that there is a sequential pattern in there.</p>
<p>The same process is done for a secondary pattern, and a &#8216;thirdary&#8217; pattern. Meaning, every 2nd number and 3rd number is checked to see if there is a pattern. It also goes through and checks with offsets, just incase the pattern is &#8220;even/odd/whatever&#8221;.</p>
<p>If there are no patterns, a random primary sensor is chosen for BubbleBoy to work with.</p>
<p>A problem exists in determining which pattern for which sensor to trust the most. A thirdary pattern for a photosensor is less dependable than a sequential pattern for a lid switch. This is handled in the next step.</p>
<li>
<h3>Determining the Sensor to Use</h3>
</li>
<p>The sensor with whatever pattern to follow is chosen through a Bayes Filter. This allows for a simple specification of confidence levels for a given sense resulting in a particular state through a table where all rows add up to 1.0. The sense columns are the sensor and pattern type. Meaning, there&#8217;s three sensors for every sensor, giving 9 senses in total. The states are confidence intervals. Anything >= 85 would be considered the most confident.</p>
<p><center><a href="http://spreadsheets.google.com/ccc?key=0Ato4VK268_GbdDJqZmZjVjNXUVFBSHI0aDdXLUlLYmc&#038;hl=en&#038;authkey=CPuAqsYG"><img src="http://farm5.static.flickr.com/4117/4785261276_23ed45c09b.jpg" width="500" height="119" alt="Bayes Filter AI Lookup Tables"></a></center></p>
<p>The numbers in bold are the ones that are more probable to be a result. A sensor in particular to look at is the Xbee for a thirdary pattern. The numbers are dispersed in such a way that it is almost a bimodal distribution. In order to understand why this is, imagine the scenario in real:</p>
<p>Xbee modems can communicate for up to a few meters. If BubbleBoy only receives a message every 3rd instance, it could either be a clever pattern, or it could be a miscommunication. </p>
<p>For this reason, the largest probability is given to the least confident state, and the second largest probability is given to the most confident state. It depends on the Bayes Filter and random roulette for what will actually be chosen.</p>
<p>This is just for determining what sensor is the most confident, that will provide the best result. This can mean that the chosen sensor will be followed, but it also may not. This will be explained in the next step.</p>
<li>
<h3>Calculating the Cost Adjustment</h3>
</li>
<p>The adjusted cost is determined by using the result from the previous step, and multiplying the probability by the inverse of whatever column it was situated in. In simpler terms, if the result was found in the best confidence interval state, then it would be multiplied by 5. If it was in ( 85, 70 ], it would be multiplied by 4&#8230;</p>
<p>This is then used as the sense for the next Bayes Filter. The state is how much of a cost to reduce the sense by.</p>
<p><center><a href=http://spreadsheets.google.com/ccc?key=0Ato4VK268_GbdEh6WXdqclducHFscktPcElkTllzTFE&#038;hl=en&#038;authkey=CK7RmesC"><img src="http://farm5.static.flickr.com/4117/4785261228_ce5b4c89b2.jpg" width="500" height="106" alt="Bayes Filter AI Lookup Tables"></a></center></p>
<p>Once the cost adjustment amount is determined, it is then subtracted from the cost of the particular sense&#8217;s cell. All of the senses are in a grid, with the most &#8220;primary&#8221; being the closest to BubbleBoy. An A* search is then used to choose the closest and least cost sensor. Once this is done, BubbleBoy can get on to entertaining its audience while waiting for food/water!</p>
<li>
<h3>Following the Expectation</h3>
</li>
<p>This is the main loop of the program. It&#8217;s where BubbleBoy is thinking in the present time about if it will be fed or not! <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The key idea here is that BubbleBoy is thinking in the now. Meaning, it tracks the patterns differently than it does when it is reflecting back on them (in a &#8220;past&#8221; thought).</p>
<p>Sensor data is retrieved and placed into an array of size 10. The data at i is checked wither it is within +- 10% of the average in the pattern. The threshold percentage amount differs for the type of pattern, where secondary would be +- 20%, and thirdary would be +- 30%. If the data fits in to the check, then a &#8220;yes&#8221; counter is incremented.</p>
<p>Once the &#8220;yes&#8221; counter is >= 6, the food level will begin to decrease by (i/2)^2. At the same time, BubbleBoy will begin to show signs that he is excited to be fed/watered soon, by spinning its hat and bobbing its head.</p>
<p>If the &#8220;no&#8221; counter is >= 6, then it means that the expectation isn&#8217;t really working in the present thought. A flag is set to redo the expectation once BubbleBoy receives food and water.</p>
<p>i is then either incremented or reset to 0, depending if it hit 9 or not. (That&#8217;s a sort of obvious step)</p>
<li>
<h3> Real-World Behaviors</h3>
</li>
<p>When the time elapsed from not receiving food exceeds 150% of that of the observed elapsed time, BubbleBoy goes in to a &#8220;wallow&#8221; mode. When BubbleBoy is wallowing, it spins its hat slowly, and bobs rarely.</p>
<p>If the time elapsed is ( 150%, 100% ], BubbleBoy is &#8220;angry&#8221; because it did not receive its food exactly before the time elapsed. The hat will not spin, and BubbleBoy will bob side to side, and once (quickly) in the opposite axis to simulate a sort of &#8220;twitching&#8221; to all this anger!</p>
<p>If the time elapsed is ( 100%, 85% ], BubbleBoy is eager to please. Hat tricks will be common, same as delightful bobbing. Depending on how much food/water BubbleBoy has, it may also hoola hoop!</p>
<li>
<h3>Last part of Following the Expectation</h3>
</li>
<p>Depending on when BubbleBoy was fed, if it was in ( whatever, 100 ], the expectation will be done. Essentially, BubbleBoy is a positive/eager thinker that believes it should always be fed before the elapsed observed time. What an attitude!</p>
<p>If it is in [ 85, 100 ), then the expectation will be kept.</p>
<p>To reformulate the expectation, the previous steps are executed on the collected data. Then, everything repeats!
</ol>
<p>What will be super interesting to see, in my opinion, will be when the discrepancies occur from past thought to present thought. It will be interesting to see which sensors fare better through that transformation.</p>
<p>It will also be interesting to see if this actually can work on an Arduino, and not in simulation. I created a simulated version of BubbleBoy in Processing recently:</p>
<p><center><a href="http://www.flickr.com/photos/robotgrrl/4760811533/" title="Screen shot 2010-07-04 at 2.56.16 PM by RobotGrrl, on Flickr"><img src="http://farm5.static.flickr.com/4142/4760811533_acb312c77e.jpg" width="500" height="313" alt="Screen shot 2010-07-04 at 2.56.16 PM"></a></center></p>
<p>The initial coding and testing will be done through this simulation, mainly because I already coded the Bayes Filter Algorithm (with random roulette) in Processing from 2009 Honors Summer Research. <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  Plus, in Processing it is very simple to communicate to an Arduino through Firmata. I can read in the data from BubbleBoy through there.</p>
<p>Here&#8217;s BubbleBoy&#8217;s circuit diagram:<br />
<a href="http://robotgrrl.com/blog/wp-content/uploads/2008/09/bubbleboycircuit.png" rel="lightbox[622]"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/09/bubbleboycircuit.png" alt="Circuit" /></a></p>
<p>BubbleBoy&#8217;s original source code for the Arduino can be <a href="http://robotgrrl.com/bubbleboy/bubbleBoy_v1.zip">downloaded here</a>!</p>
<p>Check out BubbleBoy in action in all of these videos!<br />
<center><br />
<object width="425" height="349"><param name="movie" value="http://www.youtube.com/v/Eixy721ZwDA&#038;border=1&#038;color1=0xe1600f&#038;color2=0xfebd01&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/Eixy721ZwDA&#038;border=1&#038;color1=0xe1600f&#038;color2=0xfebd01&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="349"></embed></object><br />
</center></p>
<p><center><br />
<object width="425" height="349"><param name="movie" value="http://www.youtube.com/v/7Mp35TkzMUA&#038;border=1&#038;color1=0x6699&#038;color2=0x54abd6&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/7Mp35TkzMUA&#038;border=1&#038;color1=0x6699&#038;color2=0x54abd6&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="349"></embed></object><br />
</center></p>
<p><center><br />
<object width="425" height="349"><param name="movie" value="http://www.youtube.com/v/xWo2ClAm7EU&#038;border=1&#038;color1=0x234900&#038;color2=0x4e9e00&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/xWo2ClAm7EU&#038;border=1&#038;color1=0x234900&#038;color2=0x4e9e00&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="349"></embed></object><br />
</center></p>
<p><center><br />
<object width="425" height="349"><param name="movie" value="http://www.youtube.com/v/IukSYpAguM4&#038;border=1&#038;color1=0x402061&#038;color2=0x9461ca&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/IukSYpAguM4&#038;border=1&#038;color1=0x402061&#038;color2=0x9461ca&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="349"></embed></object><br />
</center></p>
<p><center><br />
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/OKHPAEVIR9Q&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/OKHPAEVIR9Q&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object><br />
</center></p>
<p><center><br />
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/uueNwu_iC3I&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/uueNwu_iC3I&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object><br />
</center></p>
<p>Want more information about BubbleBoy? <a href="http://robotgrrl.com/blog/?s=bubbleboy">Click here</a> to see all of my blog posts that mention BubbleBoy! And <a href="http://robotgrrl.com/blog/?s=pinky">click here</a> to see all the blog posts that mention Pinky. <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=BubbleBoy+http%3A%2F%2Fis.gd%2FL8NYjG" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=BubbleBoy+http%3A%2F%2Fis.gd%2FL8NYjG" title=" "> </a> <a class="tt" href="http://delicious.com/post?url=http://robotgrrl.com/blog/bubbleboy/&amp;title=BubbleBoy" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://robotgrrl.com/blog/bubbleboy/&amp;title=BubbleBoy" title=" "> </a> <a class="tt" href="http://digg.com/submit?url=http://robotgrrl.com/blog/bubbleboy/&amp;title=BubbleBoy" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://robotgrrl.com/blog/bubbleboy/&amp;title=BubbleBoy" title=" "> </a> <a class="tt" href="http://www.facebook.com/share.php?u=http://robotgrrl.com/blog/bubbleboy/&amp;t=BubbleBoy" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://robotgrrl.com/blog/bubbleboy/&amp;t=BubbleBoy" title=" "> </a> <a class="tt" href="http://reddit.com/submit?url=http://robotgrrl.com/blog/bubbleboy/&amp;title=BubbleBoy" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://robotgrrl.com/blog/bubbleboy/&amp;title=BubbleBoy" title=" "> </a> <a class="tt" href="http://stumbleupon.com/submit?url=http://robotgrrl.com/blog/bubbleboy/&amp;title=BubbleBoy" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://robotgrrl.com/blog/bubbleboy/&amp;title=BubbleBoy" title=" "> </a></p></div>]]></content:encoded>
			<wfw:commentRss>http://robotgrrl.com/blog/bubbleboy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Current Robot Projects</title>
		<link>http://robotgrrl.com/blog/2008/07/20/current-robot-projects/</link>
		<comments>http://robotgrrl.com/blog/2008/07/20/current-robot-projects/#comments</comments>
		<pubDate>Sun, 20 Jul 2008 23:07:01 +0000</pubDate>
		<dc:creator>Erin, the RobotGrrl</dc:creator>
				<category><![CDATA[MANOI]]></category>
		<category><![CDATA[Other]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Robot]]></category>

		<guid isPermaLink="false">http://robotgrrl.com/blog/2008/07/20/current-robot-projects/</guid>
		<description><![CDATA[Yay! I have access to the internet After being at Stanford, I really realized that I extremely like AI and robotics. So, I have many robot projects going on all at one time. Here&#8217;s a list: Line following, maze navigating, AI robot Using an Arduino and Processing Started this project at Stanford (they funded it!) [...]]]></description>
			<content:encoded><![CDATA[<p>Yay! I have access to the internet <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>After being at Stanford, I really realized that I extremely like AI and robotics. So, I have many robot projects going on all at one time. Here&#8217;s a list:</p>
<ul>
<li> Line following, maze navigating, AI robot
<ul>
<li> Using an Arduino and Processing
<li> Started this project at Stanford (they funded it!)
<li> 2 DC motors
<li> 5 LDRs
<li> Chassis is a cardboard and plastic beginners robot kit (bought at the ExplOratorium while at Stanford)
<li> I need a gearbox!</ul>
</li>
<li> BubbleBoy
<ul>
<li> A robot that has fake emotions determined by the pushes of buttons and the LDR
<li> Using Arduino and Processing
<li> 2 Servos
<li> 1 LDR
<li> 2 Push buttons
<li> Chassis is the older BubbleBoy &#8211; Pinky one I created
<li> I need another Arduino &#8211; or an RBBB!
</ul>
</li>
<li> MANOI AT01 -> Arduino
<ul>
<li> Transplanting my humanoid to the Arduino board
<li> I need 2 or 3 Pololu micro serial servo boards &#8211; they can be controlled via a TXRX line, making it easy for the Arduino to control many servos
<li> Will write software to control the servos in Processing (easy GUI!)
</ul>
</li>
<li> Phoenix
<ul>
<li> Basically, my project for the year. *cough*ISEF<em>hopefully</em>*cough*
<li> Uses much of the knowledge I attain from all projects and the Stanford EPGY Summer Institutes AI Program
<li> Hospital bedside accompaniment
<li> I&#8217;m purposefully lacking details here. <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />
</ul>
</li>
</ul>
<p>Some of the parts I need immediately in order to continue building are expensive though <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>But hey, there&#8217;s always Styrobots in my shop <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  ready to be purchased!!</p>
<p>In the meantime, I&#8217;m still annotating and pulling all the details out of these books&#8230;</p>
<ul>
<li> Building Sociable Robots
<li> Probablistic Robotics
<li> AI Textbook from Stanford
<li> AI journal book from Stanford
<li> The Emotion Machine
<li> Intro to AI
</ul>
<p>I&#8217;m also compiling a huge blog post of over 1,000 pictures from Stanford <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Soon after that, I&#8217;ll post pics of these projects =D</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Current+Robot+Projects+http%3A%2F%2Fis.gd%2F1mH9di" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Current+Robot+Projects+http%3A%2F%2Fis.gd%2F1mH9di" title=" "> </a> <a class="tt" href="http://delicious.com/post?url=http://robotgrrl.com/blog/2008/07/20/current-robot-projects/&amp;title=Current+Robot+Projects" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://robotgrrl.com/blog/2008/07/20/current-robot-projects/&amp;title=Current+Robot+Projects" title=" "> </a> <a class="tt" href="http://digg.com/submit?url=http://robotgrrl.com/blog/2008/07/20/current-robot-projects/&amp;title=Current+Robot+Projects" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://robotgrrl.com/blog/2008/07/20/current-robot-projects/&amp;title=Current+Robot+Projects" title=" "> </a> <a class="tt" href="http://www.facebook.com/share.php?u=http://robotgrrl.com/blog/2008/07/20/current-robot-projects/&amp;t=Current+Robot+Projects" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://robotgrrl.com/blog/2008/07/20/current-robot-projects/&amp;t=Current+Robot+Projects" title=" "> </a> <a class="tt" href="http://reddit.com/submit?url=http://robotgrrl.com/blog/2008/07/20/current-robot-projects/&amp;title=Current+Robot+Projects" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://robotgrrl.com/blog/2008/07/20/current-robot-projects/&amp;title=Current+Robot+Projects" title=" "> </a> <a class="tt" href="http://stumbleupon.com/submit?url=http://robotgrrl.com/blog/2008/07/20/current-robot-projects/&amp;title=Current+Robot+Projects" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://robotgrrl.com/blog/2008/07/20/current-robot-projects/&amp;title=Current+Robot+Projects" title=" "> </a></p></div>]]></content:encoded>
			<wfw:commentRss>http://robotgrrl.com/blog/2008/07/20/current-robot-projects/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>It&#8217;s almost over! :D</title>
		<link>http://robotgrrl.com/blog/2008/05/28/its-almost-over-d/</link>
		<comments>http://robotgrrl.com/blog/2008/05/28/its-almost-over-d/#comments</comments>
		<pubDate>Thu, 29 May 2008 03:08:21 +0000</pubDate>
		<dc:creator>Erin, the RobotGrrl</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[School]]></category>
		<category><![CDATA[$100]]></category>
		<category><![CDATA[2008]]></category>
		<category><![CDATA[boring]]></category>
		<category><![CDATA[math]]></category>
		<category><![CDATA[omg]]></category>
		<category><![CDATA[senioritis]]></category>
		<category><![CDATA[Styrobots]]></category>
		<category><![CDATA[yay]]></category>

		<guid isPermaLink="false">http://robotgrrl.com/blog/2008/05/28/its-almost-over-d/</guid>
		<description><![CDATA[~~~~~~~~~~ Friday OMG YAY! This was the best day of school, ever. I think I was smiling 92.5% of the time, to be precise. I don&#8217;t understand though, how some people cry on a happy day?! Isn&#8217;t crying for bad things? Hmm.. anyway I left my yearbook at home, LOL, I was the only person [...]]]></description>
			<content:encoded><![CDATA[<p>~~~~~~~~~~<br />
Friday</p>
<p>OMG YAY! This was the best day of school, ever. <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  I think I was smiling 92.5% of the time, to be precise. I don&#8217;t understand though, how some people cry on a happy day?! Isn&#8217;t crying for bad things? Hmm.. anyway <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I left my yearbook at home, LOL, I was the only person without one. Woops! Well, the entire school year is worth waaaay more than a yearbook entry to me <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>As promised, a reflection post from elementary &#8211; highschool!</p>
<p>Junior Kindergarden (Hyland Hights, Shelburne, ON) &#8211; Weee! So much fun. I liked building stuff out of the wooden blocks. <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>Senior Kindergarden (Hyland Hights, Shelburne, ON) &#8211; Woohoo! I learned how to print on a line, I think. Well, I knew how to write and read before Kindergarden. Haha, I remember this:<br />
Teacher: &#8220;You have to write a &#8216;D&#8217; with a more of a point at the end&#8221;<br />
Me: &#8220;But then it will tip over, if it has a point! It won&#8217;t be able to stand up on the line!&#8221;<br />
I started gymnastics then &#8230; immediately fell in love with spinning around on the parallel bars!</p>
<p>Grade 1 (Hyland Hights, Shelburne, ON) &#8211; oOoOo This was quite fun. I most fondly remember counting to 100 by 5&#8242;s, for some reason! Still did gymnastics, in the elementary school that was on the opposite side of Shelburne, but it was fun! Also, I think it was this grade where a selected few went down to the library for typing lessons, and I was really good at it. The librarian was like &#8220;she&#8217;s a natural typer&#8221;. LOL, but I was using the computer a few years before this, so it was easy.</p>
<p>Grade 2 (Hyland Hights, Shelburne, ON) &#8211; I remember doing these math problems, and finishing them in a second. The question was raised as to whether I should skip a grade or not, however my parents decided against it as they wanted me to be more fun-oriented than mark-oriented. <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Mrs. Pugsley always kept insisting that she will eventually read one of my books one day. I had a ton of fun</p>
<p>Grade 3 (first half) (St.Benedict something something (aka: a religious school), Orangeville, ON) &#8211; Wooah. This school, I remember, was SO weird. They didn&#8217;t like me talking about Pokemon. I think they banned Pokemon cards too. The teachers were weird too, same with the books. I actually flipped through one of the books a few months ago, and it actually talked about adult issues. I was shocked, thank god I didn&#8217;t see that stuff in Grade 3!</p>
<p>Grade 3 (second half) (Laurel Woods Elementary School, Orangeville-ish (out on the R.R.&#8217;s), ON) &#8211; Wow, this school had so much land it was amazing. Plus, it was near one of the farms that had emu&#8217;s! It was so cool to always see them at lunch. I remember catching Mew on Pokemon, and trading lots of cards. Oh yeah, and being one of the fastest runners. First time I heard of Harry Potter. <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I remember trying to memorize the times tables, too. LOL. (I was so bad at them!)</p>
<p>Grade 4 (Roland Mitchener School, Ottawa, ON) &#8211; This school was amazing. It was a circle, with no walls. The computer lab was all macs. First time I heard about neopets. <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Track &#038; Field was so much fun, I remember running so fast that my hat blew off and I didn&#8217;t care because I won the race by a lot. I won lots of red ribbons <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  The pool noodle throw was so hilarious! Everyone thought I would throw it so far, but it didn&#8217;t even make it past the line LOL. That was really funny. I remember gymnastics being in the Earl of March High School gym. Reminded my of Dynamics, in Shelburne! <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  This school was really cooool! My most fond memory is probably playing Pokemon with Mark, Tegan, and Chrispy. (I actually still stay in touch with Chrispy, she has been through A LOT, but is an amazing person).</p>
<p>Grade 5 (Hyland Heights, Shelburne, ON) &#8211; Back to my old school, Grade 5 was my favourite grade of all time. I got straight A+&#8217;s!!! I remember there was this math problem, and I solved it before everyone else did. It required a lot of thinking, back then. Earthkeepers was an amazing field trip, I hope to one day get all of the beads! I remember when Mr.Mac&#8217;s guitar string broke and flicked Adam in the face. Building a bridge out of toothpicks was so much fun&#8230; then seeing who&#8217;s could hold more weight was even more fun. Ours broke when I started jumping up and down because I was so happy. (LOL). I remember there was this game we invented, and it was really good. There were two chairs, and the point was to hit the chair with the ball. You could run with the ball, but if you were touched you had to give it to the other team. However, you could put the ball on the ground and roll it, and it wouldn&#8217;t matter. It was fast paced and LOTS of fun. At the end of the year, Mr.Mac gave me &#8216;The Bridge to Terrabithia&#8217;. I don&#8217;t think I read it, as I already knew the story&#8230; or maybe I did read it. I have no clue. Oh yeah! I remember liking using the computer for Excel spreadsheets. XD I was really Harry Potter crazy too, in Grade 5. I won a Nike Basketball signed by Q-mac for beating bullying. Go figure! <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  I did gymnastics in Orangeville, as the club in Shelburne closed down.</p>
<p>Grade 6 (Hyland Heights, Shelburne, ON) &#8211; Grade 6 with Mrs Lemieux was interesting. I can say that I passed the D.A.R.E. course!  even remember what it stands for. Drug Abuse Resistance Eductation. Every school in Ontario had to do this course. It was pretty cool, you get a lot of free stuff like pencils and erasers. And you got to see an OPP! Another memory from Grade 6 was the Air Band project. Me and Jenny did Shania Twain&#8217;s &#8216;UP!&#8217; song, in Ottawa Senators jerseys. (That was when they were a good team). Gymn was lots of fun!</p>
<p>Grade 7 (a few weeks) (Hyland Heights, Shelburne, ON) &#8211; Was being bullied too much, had to leave.</p>
<p>Grade 7 (The Maples School, Orangeville, ON) &#8211; Wow, I get to go to a PRIVATE SCHOOL! No bullying! This school was pretty fun. I remember throwing a fit at the computer, after saying that I know everything about Powerpoint. The teacher asked me to do a quiz, and it was asking stupid questions about Outlook. Back then, Outlook was known for ALL of its viruses. It still is! I remember getting really high marks in Science. The only really horrible thing I remember was that there we all belonged to a mandatory dance club, after school. It was so lame! However, art class was really fun. They had functional paint brushes and paint, which amazed me compared to the other school. Also, there was a band. I chose the flute. I wasn&#8217;t really good at it as I couldn&#8217;t do the high notes, nor can I carry a tune. And I can&#8217;t do that thing where you inhale an exhale at the same time. Oh well! I still have my flute though. Most unfortunately, half-way through the year I had to quit gymnastics as I did a front tuck the wrong way, even though I told the coach I didn&#8217;t want to do it, and hurt my neck and back. Was fun while it lasted, and I DID get the back handspring down! <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  I started playing more on the computer, designing webpages too. Actually, that Christmas I bought my first domain name, with Yahoo. <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>Grade 8 (Kuper Academy, Montreal, QC) &#8211; Moving to Quebec, I thought it would be better, especially since it had such a big and profound history. It wasn&#8217;t. We had so much trouble with the language laws and everything. Getting a licensee for the cars was ridiculously hard and stressful. At school, I remember Computers class, Art, Home-Ec, and science with Miss Mallette. She was SO funny! Math was pretty funny, as the entire year we learned proportions like 500 different ways, which all equated to one basic way. I remember doing a problem that was a Mastermind Game (I really like Mastermind) and I was the only one that could solve it. I got the highest mark on the Jan. exam, too. <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  In French, we were graded based on how well we played chess. That was really amazing. I met one of my best friends that year too, cutting like a dozen apple pies at the senior luncheon. I participated in Track &#038; Field, won a bunch of 1sts in 200, 400, 800, long &#038; triple jump. Also won team MVP at the sports banquet! <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_surprised.gif' alt=':o' class='wp-smiley' />  <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>Grade 9 (Kuper Academy, Montreal, QC) &#8211; Math with Miss Aubie was so much fun! Wow, I remember laughing so hard in that class, phoning in to win prizes on the radio, and a bunch of other crazy stuff. Robotics was extremely fun. We built robots using the Lego RCX 1.0 GUI programmer. Man, trying to understand that was so difficult and annoying. At home, I prgrammed my personal Lego RCX 2.0 in NQC. <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Way easier to understand! I began interning this year too! I couldn&#8217;t participate in Track though because of a torn hip flexor. Owch! <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>Grade 10 (Kuper Academy, Montreal, QC) &#8211; I think this entire year revolved around me, always getting 90s in math, going down to low 20&#8242;s. This book was unbelievable. It was translated from french, and there were no notes in the book. Had I known the class was going to be taught similar to an independent studies course, I would have prepared myself more. Thank god it was a ministry exam, and I was able to get a 72 on it. However, there was something more important than stupid math &#8220;436&#8243; in this grade. For Science Fair we, Anne-Marie and Olivia and I, created this machine that would compare the difference between a light sensor and a touch/weight sensor. (I used Hooke&#8217;s law to make the touch sensor into a weight sensor w/springs). Although it did win gold at both the Kuper Science Fair and the MRSTF, what I learned from it was not the science. There was a big dispute over who would be going to the regionals. Me being the leader wanted both to have an equal opportunity to succeed &#8230; so if one had a question, I would make sure both heard the answer. I remember one day sitting in the library when one of the members just started really being mean towards the other. I couldn&#8217;t control it so I ran out of the library, and just my luck one of the science teachers was there and was able to calm them down. We still couldn&#8217;t settle the dispute, so we had to have a meeting with the school psychologist. After that, the decision was made that a panel will be set up and the best person that presents the project will represent it at the regionals. I always remember being asked &#8216;who do you want to go&#8217; and I would always answer this person. Thank goodness the other person went to regionals though, because the person mentioned before became extremely mean after. It really showed me that some people are only in it for the rewards. The person that went was in it because it was fun. We had a great time, we had GREAT judges, and walked away with a McGill and Polytech award. And, a gold medal. Even though it was stressful (no sleep for 1 week) &#8211; I have &#8216;Robotics&#8217; on my grad ring to remember it. It was fun, and I really learned A LOT about it. I really have a feeling that it will help me in the future. In grade 10 I was in the &#8216;Advanced Robotics&#8217; class, only me, and I learned Java and php/mySQL. <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  It was a lot of fun! I couldn&#8217;t do track though because of my fainting.</p>
<p>Grade 11 (Kuper Academy, Montreal, QC) -It&#8217;s the last year! Again, always failing failing failing math. I felt hopeless! But, thankfully, I was given a break and put into the science program even though my low marks in math last year. The first term, in retrospect, looked boring. Maybe it was. I remember having really good time management at the beginning of the year. I failed the Career Choice test (LOL). Term 2 was eventful. We got a new Physics teacher, who is now my inspiration to work at the JPL designing martian robots, and the class was really fun. Oh yeah! In term 2 I also went to the MIT Splash. That was SO much fun. I will never forget the Advanced Java class. Again this term I failed the Career Choice test (LOL). Term 3 was insanely fun. A new computer class was created, and I was able to learn more and work on new projects. For instance, Robbie the Robot. This was also the term where I wagered getting 75&#8242;s to work on this project, and hopefully win bigtime at the science fair. MRSTF really went downhill. I had judges that had no clue what I was saying. I don&#8217;t mean the vocabulary was too big, I mean they didn&#8217;t understand English completely. Apple lent me a big display, so I could make the interface bigger. Everything was shiny, and Robbie could have a long conversation with you. I was even asked by one of the big cheese&#8217;s if I can actually test it on autistic children in time for provincials. I of course said yes, as one of the potential uses of Robbie is to aid autistic children. I have no clue what happened, but they apparently did not like it. The comments that I received were very positive, however there were others that said that there was no innovation, that it was all money. I know it&#8217;s out of the ordinary, but there are people, or more precisely, GIRLS, that can program AND do graphic design. I guess they never saw a computer science project that had flashy colours and nice graphics. Whatever. I&#8217;m flattered by that judge&#8217;s vileness, because obviously the display was so glamorous he couldn&#8217;t focus on the project. The Apple community really likes Robbie the Robot. So, after I was pretty much heartbroken that night I got the silver medal (my goal was to get to ISEF, or at the very least Provs then CWSF). Pretty much a slap in the face. Also, they stole our &#8216;Support Our Troops&#8217; sticker off of our car, crumpled my certificate, and originally lost the comments. At least I unveiled that not all the parts of MRSTF are fair for Kuper, next year. I hope they seriously kick butt and win some good stuff next year. But, the most important part was that I didn&#8217;t give up. I started working on my next robot project (Pinky aka BubbleBoy) that night. Term 4 went by soooo slowly. In computers I had fun with the Arduino, though! In Physics we had to build a Rube Goldberg machine, which was REALLY fun until the part where it didn&#8217;t work. In any case, the project is donated to the school now. I can only hope that maybe they will start a team to participate in the competition at Perdue University each year (there is a high school section for the project). In Chemistry, redox reactions in basic solutions makes me insane. I better figure it out soon, though! I think one of the biggest disappointments of the whole year was that I got laryngitis right before the track meet. I actually practiced and trained for the 400 and 800. Oof! That really SUCKED! I really wish I could have ran. Grr! I&#8217;m still angry that I missed it. On the last day, we went to Chez Cora&#8217;s for breakfast. To be honest, I never heard of this whole &#8216;Eat out for Breakfast&#8217; thing. Why don&#8217;t people want to eat Fruit Loops at home? Anyway, my mom mentioned to me that the Lakeshore duckrace would be there, and it really was. It was cool, since the school paid for the tickets. A few years ago my family always bought lots lots lots of tickets, but we never knew who won! It got so annoying, I think it&#8217;s riggedz0rz. Anyway, for breakfast I had hot chocolate (drank it until I felt that I was having too much milk &#8212; lactose intolerant), and tried to figure out the menu. They said that they had pancakes, but they didn&#8217;t!! Instead, I had a &#8216;crepe&#8217;. Or, as I pronounce it, &#8216;crap&#8217;. ROFL. It tasted so bad. I didn&#8217;t have it with the bananas or chocolate though, because that didn&#8217;t sound too appetizing to me. It&#8217;s a big meal for breakfast though! Almost like having a meal at supper. At least we got to support the hospital though, and take a picture with a duck. I think I&#8217;ll stick with my Fruit Loops. When we got back, I was pretty much lost.. so I went to French class where the teacher tried to steal my duck :O then I went to the computer lab. Watched a crazy movie with flying cars and an Anthrax alarm&#8230; and a mix of JFK&#8217;s speeches with other pres&#8217; to make a message. It occurred to me then that I&#8217;ll actually be celebrating the 4th of July in California!! OMG!! I can&#8217;t wait, really, I can&#8217;t. <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  Finally I won&#8217;t look like a weirdo on the 4th in all red white and blue. I think though this will mean I will miss the Boston Pops on TV. Shucks, but still, celebrating is so much more fun than wishing we were on the Charles river on our boat watching the fireworks and listening to the 1812 overture. (If we were to move to MA, we would bring our boat with us (which is currently in Pickering, ON &#8212; and I miss it). The river is so breathtaking&#8230;). I finally got a 100% on a Math test, AND passed a Career Choice test (with an 84) O_O. Pretty cool. I gave Styrobots to several of my teachers, hopefully they will remember me? I really hope so, because most of them inspired me, LOTS! I feel so bad though, one of them that I gave to one of my favouritest teachers didn&#8217;t work. <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  So, now that Styrobot just looks cool instead of &#8216;looks cool and moves&#8217;. The last day was the best day, ever! <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  Oh yeah, my community service totalled to ~55 hours. BAM! <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>Woohoo! So, that took a good 2 hours away from studying. I&#8217;m gonna go and play soccer now. I&#8217;ll post pictures of the last day maybe later.</p>
<p>Oh yeah, and just to confirm the answer to the question that everyone is asking: No, I have no clue where I&#8217;m going. <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  No clue where I&#8217;m moving, but I know that it will be within North America. We&#8217;ll see what happens after the Stanford trip. And, yes, compared to other moves, it is less stressful because you have NO IDEA where you&#8217;re going, but you know you have to go somewhere so you&#8217;ll just end up wherever you end up. w00t!</p>
<p>And the real reason that I didn&#8217;t apply to CEGEP was because I didn&#8217;t have the $30 on hand for the application fee. But, I wouldn&#8217;t want to go to CEGEP anyway.<br />
 <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  HAPPY SUMMER <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>~~~~~~~~~~<br />
Thursday</p>
<p>So, today I really started to make these Styrobots for 10 of the people that have inspired &#038; helped me. <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I was painting them before-ish, which was good because I wasn&#8217;t leaving it to the last minute&#8230; right. I should have done the soldering first, and the painting last. xD I started working on them at 7ish, went to do some HW at 7:30. Came back to the Styrobots at 9, and worked until 12. Then, did more of my English essay <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  until 2ish, which leaves me here. (And I just got really scared out of my mind because I heard a weird noise, LOL)</p>
<p><a name="teachersStyrobots"></a>Here&#8217;s pictures of all the Styrobots:<br />
<center><br />
<a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7830-copy.JPG" rel="lightbox[pics510]" title="All in a row ^_^"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7830-copy.thumbnail.JPG" width="130" height="97" alt="All in a row ^_^" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7833-copy.JPG" rel="lightbox[pics510]" title="All in a row ^_^"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7833-copy.thumbnail.JPG" width="130" height="97" alt="All in a row ^_^" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7816-copy.JPG" rel="lightbox[pics510]" title="#018!"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7816-copy.thumbnail.JPG" width="97" height="130" alt="#018!" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7807-copy.JPG" rel="lightbox[pics510]" title="I havenâ€™t given this one out yet ;)"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7807-copy.thumbnail.JPG" width="97" height="130" alt="I havenâ€™t given this one out yet ;)" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7792-copy.JPG" rel="lightbox[pics510]" title="I havenâ€™t given this one out yet ;)"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7792-copy.thumbnail.JPG" width="97" height="130" alt="I havenâ€™t given this one out yet ;)" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7804-copy.JPG" rel="lightbox[pics510]" title="I havenâ€™t given this one out yet ;)"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7804-copy.thumbnail.JPG" width="130" height="97" alt="I havenâ€™t given this one out yet ;)" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7791-copy.JPG" rel="lightbox[pics510]" title="#017!"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7791-copy.thumbnail.JPG" width="97" height="130" alt="#017!" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7779-copy.JPG" rel="lightbox[pics510]" title="I havenâ€™t given this one out yet ;)"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7779-copy.thumbnail.JPG" width="97" height="130" alt="I havenâ€™t given this one out yet ;)" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7783-copy.JPG" rel="lightbox[pics510]" title="I havenâ€™t given this one out yet ;)"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7783-copy.thumbnail.JPG" width="130" height="97" alt="I havenâ€™t given this one out yet ;)" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7766-copy.JPG" rel="lightbox[pics510]" title="Chemistry Teacherâ€™s Styrobot"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7766-copy.thumbnail.JPG" width="97" height="130" alt="Chemistry Teacherâ€™s Styrobot" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7766-copy.JPG" rel="lightbox[pics510]" title="Chemistry Teacherâ€™s Styrobot"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7766-copy.thumbnail.JPG" width="97" height="130" alt="Chemistry Teacherâ€™s Styrobot" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7776-copy.JPG" rel="lightbox[pics510]" title="I havenâ€™t given this one out yet ;)"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7776-copy.thumbnail.JPG" width="130" height="97" alt="I havenâ€™t given this one out yet ;)" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7759-copy.JPG" rel="lightbox[pics510]" title="Chemistry Teacherâ€™s Styrobot"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7759-copy.thumbnail.JPG" width="130" height="97" alt="Chemistry Teacherâ€™s Styrobot" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7763-copy.JPG" rel="lightbox[pics510]" title="#016!"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7763-copy.thumbnail.JPG" width="97" height="130" alt="#016!" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7753-copy.JPG" rel="lightbox[pics510]" title="Chemistry Teacherâ€™s Styrobot"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7753-copy.thumbnail.JPG" width="130" height="97" alt="Chemistry Teacherâ€™s Styrobot" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7749-copy.JPG" rel="lightbox[pics510]" title="Chemistry Teacherâ€™s Styrobot"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7749-copy.thumbnail.JPG" width="97" height="130" alt="Chemistry Teacherâ€™s Styrobot" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7743-copy.JPG" rel="lightbox[pics510]" title="Physics Teacherâ€™s Styrobot"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7743-copy.thumbnail.JPG" width="97" height="130" alt="Physics Teacherâ€™s Styrobot" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7746-copy.JPG" rel="lightbox[pics510]" title="Chemistry Teacherâ€™s Styrobot"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7746-copy.thumbnail.JPG" width="130" height="97" alt="Chemistry Teacherâ€™s Styrobot" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7733-copy.JPG" rel="lightbox[pics510]" title="Physics Teacherâ€™s Styrobot"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7733-copy.thumbnail.JPG" width="130" height="97" alt="Physics Teacherâ€™s Styrobot" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7735-copy.JPG" rel="lightbox[pics510]" title="#015!"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7735-copy.thumbnail.JPG" width="97" height="130" alt="#015!" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7727-copy.JPG" rel="lightbox[pics510]" title="Physics Teacherâ€™s Styrobot"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7727-copy.thumbnail.JPG" width="130" height="97" alt="Physics Teacherâ€™s Styrobot" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7720-copy.JPG" rel="lightbox[pics510]" title="Computer Teacherâ€™s Styrobot"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7720-copy.thumbnail.JPG" width="97" height="130" alt="Computer Teacherâ€™s Styrobot" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7711-copy.JPG" rel="lightbox[pics510]" title="English Teacherâ€™s Styrobot"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7711-copy.thumbnail.JPG" width="97" height="130" alt="English Teacherâ€™s Styrobot" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7714-copy.JPG" rel="lightbox[pics510]" title="English Teacherâ€™s Styrobot"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7714-copy.thumbnail.JPG" width="97" height="130" alt="English Teacherâ€™s Styrobot" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7704-copy.JPG" rel="lightbox[pics510]" title="Physics Teacherâ€™s Styrobot"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7704-copy.thumbnail.JPG" width="130" height="97" alt="Physics Teacherâ€™s Styrobot" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7709-copy.JPG" rel="lightbox[pics510]" title="Physics Teac</p>
<p>herâ€™s Styrobot"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7709-copy.thumbnail.JPG" width="97" height="130" alt="Physics Teacherâ€™s Styrobot" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7698-copy.JPG" rel="lightbox[pics510]" title="#014!"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7698-copy.thumbnail.JPG" width="130" height="97" alt="#014!" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7702-copy.JPG" rel="lightbox[pics510]" title="Physics Teacherâ€™s Styrobot"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7702-copy.thumbnail.JPG" width="130" height="97" alt="Physics Teacherâ€™s Styrobot" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7691-copy.JPG" rel="lightbox[pics510]" title="#013!"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7691-copy.thumbnail.JPG" width="130" height="97" alt="#013!" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7694-copy.JPG" rel="lightbox[pics510]" title="Lolerskates"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7694-copy.thumbnail.JPG" width="130" height="97" alt="Lolerskates" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7673-copy.JPG" rel="lightbox[pics510]" title="English Teacherâ€™s Styrobot"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7673-copy.thumbnail.JPG" width="130" height="97" alt="English Teacherâ€™s Styrobot" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7677-copy.JPG" rel="lightbox[pics510]" title="English Teacherâ€™s Styrobot"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7677-copy.thumbnail.JPG" width="97" height="130" alt="English Teacherâ€™s Styrobot" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7681-copy.JPG" rel="lightbox[pics510]" title="English Teacherâ€™s Styrobot"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7681-copy.thumbnail.JPG" width="130" height="97" alt="English Teacherâ€™s Styrobot" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7667-copy.JPG" rel="lightbox[pics510]" title="Computer Teacherâ€™s Styrobot"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7667-copy.thumbnail.JPG" width="130" height="97" alt="Computer Teacherâ€™s Styrobot" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7652-copy.JPG" rel="lightbox[pics510]" title="Computer Teacherâ€™s Styrobot"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7652-copy.thumbnail.JPG" width="97" height="130" alt="Computer Teacherâ€™s Styrobot" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7656-copy.JPG" rel="lightbox[pics510]" title="Computer Teacherâ€™s Styrobot"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7656-copy.thumbnail.JPG" width="130" height="97" alt="Computer Teacherâ€™s Styrobot" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7638-copy.JPG" rel="lightbox[pics510]" title="#012!"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7638-copy.thumbnail.JPG" width="97" height="130" alt="#012!" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7642-copy.JPG" rel="lightbox[pics510]" title="Anne-Marieâ€™s Styrobot"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7642-copy.thumbnail.JPG" width="97" height="130" alt="Anne-Marieâ€™s Styrobot" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7648-copy.JPG" rel="lightbox[pics510]" title="Computer Teacherâ€™s Styrobot"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7648-copy.thumbnail.JPG" width="130" height="97" alt="Computer Teacherâ€™s Styrobot" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7635-copy.JPG" rel="lightbox[pics510]" title="Anne-Marieâ€™s Styrobot"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7635-copy.thumbnail.JPG" width="130" height="97" alt="Anne-Marieâ€™s Styrobot" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7626-copy.JPG" rel="lightbox[pics510]" title="Anne-Marieâ€™s Styrobot"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7626-copy.thumbnail.JPG" width="97" height="130" alt="Anne-Marieâ€™s Styrobot" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7630-copy.JPG" rel="lightbox[pics510]" title="Anne-Marieâ€™s Styrobot"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7630-copy.thumbnail.JPG" width="130" height="97" alt="Anne-Marieâ€™s Styrobot" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7621-copy.JPG" rel="lightbox[pics510]" title="Michelleâ€™s Styrobot"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7621-copy.thumbnail.JPG" width="97" height="130" alt="Michelleâ€™s Styrobot" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7623-copy.JPG" rel="lightbox[pics510]" title="Anne-Marieâ€™s Styrobot"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7623-copy.thumbnail.JPG" width="130" height="97" alt="Anne-Marieâ€™s Styrobot" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7614-copy.JPG" rel="lightbox[pics510]" title="#011!"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7614-copy.thumbnail.JPG" width="97" height="130" alt="#011!" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7604-copy.JPG" rel="lightbox[pics510]" title="Michelleâ€™s Styrobot"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7604-copy.thumbnail.JPG" width="130" height="97" alt="Michelleâ€™s Styrobot" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7611-copy.JPG" rel="lightbox[pics510]" title="Michelleâ€™s Styrobot"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7611-copy.thumbnail.JPG" width="130" height="97" alt="Michelleâ€™s Styrobot" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7598-copy.JPG" rel="lightbox[pics510]" title="Michelleâ€™s Styrobot"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7598-copy.thumbnail.JPG" width="130" height="97" alt="Michelleâ€™s Styrobot" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7601-copy.JPG" rel="lightbox[pics510]" title="Michelleâ€™s Styrobot"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7601-copy.thumbnail.JPG" width="97" height="130" alt="Michelleâ€™s Styrobot" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7596-copy.JPG" rel="lightbox[pics510]" title="Assistant headmaster - vice principleâ€™s Styrobot"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7596-copy.thumbnail.JPG" width="97" height="130" alt="Assistant headmaster - vice principleâ€™s Styrobot" class="imageframe" /></a><br />
<a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7590-copy.JPG" rel="lightbox[pics510]" title="#010!"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7590-copy.thumbnail.JPG" width="97" height="130" alt="#010!" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7584-copy.JPG" rel="lightbox[pics510]" title="Assistant headmaster - vice principleâ€™s Styrobot"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7584-copy.thumbnail.JPG" width="130" height="97" alt="Assistant headmaster - vice principleâ€™s Styrobot" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7568-copy.JPG" rel="lightbox[pics510]" title="Librarianâ€™s Styrobot"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7568-copy.thumbnail.JPG" width="130" height="97" alt="Librarianâ€™s Styrobot" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7581-copy.JPG" rel="lightbox[pics510]" title="Assistant headmaster - vice principleâ€™s Styrobot"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7581-copy.thumbnail.JPG" width="97" height="130" alt="Assistant headmaster - vice principleâ€™s Styrobot" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7561-copy.JPG" rel="lightbox[pics510]" title="Librarianâ€™s Styrobot"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7561-copy.thumbnail.JPG" width="97" height="130" alt="Librarianâ€™s Styrobot" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7542-copy.JPG" rel="lightbox[pics510]" title="Librarianâ€™s Styrobot"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7542-copy.thumbnail.JPG" width="130" height="97" alt="Librarianâ€™s Styrobot" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7545-copy.JPG" rel="lightbox[pics510]" title="#009!"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7545-copy.thumbnail.JPG" width="130" height="97" alt="#009!" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7537-copy.JPG" rel="lightbox[pics510]" title="Librarianâ€™s Styrobot"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7537-copy.thumbnail.JPG" width="130" height="97" alt="Librarianâ€™s Styrobot" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7528-copy.JPG" rel="lightbox[pics510]" title="Librarianâ€™s Styrobot"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7528-copy.thumbnail.JPG" width="130" height="97" alt="Librarianâ€™s Styrobot" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7520-copy.JPG" rel="lightbox[pics510]" title="Librarianâ€™s Styrobot"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7520-copy.thumbnail.JPG" width="97" height="130" alt="Librarianâ€™s Styrobot" class="imageframe" /></a> <a href="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7861-copy.JPG" rel="lightbox[pics510]" title="Iâ€™m very happy! :D"><img src="http://robotgrrl.com/blog/wp-content/uploads/2008/06/img_7861-copy.thumbnail.JPG" width="130" height="97" alt="Iâ€™m very happy! :D" class="imageframe" /></a><br />
</center></p>
<p>Although the supplies for the Styrobots cost the usual ~$39, and that money could have been used to raise ~$200 for my Stanford Trip, I think it was extremely worth it! These are the people that got me into this 3 week program, and it&#8217;s going to be really fun! Like, I look forward to it every second of everyday now. How could I not make these Styrobots for them? <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  Besides, it&#8217;s a great way to remember someone, in my opinion! <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  I&#8217;ll be posting the pictures of the 10 Styrobots tomorrow, since we get out early. <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Anyway&#8230; YAY LAST DAY OF SCHOOL TOMORROW!</p>
<p>And what better way to end with than achieving my goal from 1 year ago of getting 100% on a math test! Woohoo! <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  (Finally!)</p>
<p>~~~~~~~~~~<br />
Wednesday</p>
<p>This year is almost over!!!</p>
<p>It&#8217;s been a long one, and I can&#8217;t wait to celebrate (a tiny bit). Save the real celebration till after exams, though! <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I&#8217;ll make a gigantor reflection post on Friday. (That way I can look at it in 5 years and have a good laugh, hopefully!)</p>
<p>I&#8217;d love to go to a <a href="http://jpl.nasa.gov/pso/pt.cfm">public tour</a> at the JPL while I&#8217;m in Cali! <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>I wonder if Apple has tours of its buildings&#8230;</p>
<p><h7>(GEEZ Erin, such a boring blog post!)</h7></p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=It%E2%80%99s+almost+over%21+%3AD+http%3A%2F%2Fis.gd%2FyiHLuN" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=It%E2%80%99s+almost+over%21+%3AD+http%3A%2F%2Fis.gd%2FyiHLuN" title=" "> </a> <a class="tt" href="http://delicious.com/post?url=http://robotgrrl.com/blog/2008/05/28/its-almost-over-d/&amp;title=It%E2%80%99s+almost+over%21+%3AD" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://robotgrrl.com/blog/2008/05/28/its-almost-over-d/&amp;title=It%E2%80%99s+almost+over%21+%3AD" title=" "> </a> <a class="tt" href="http://digg.com/submit?url=http://robotgrrl.com/blog/2008/05/28/its-almost-over-d/&amp;title=It%E2%80%99s+almost+over%21+%3AD" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://robotgrrl.com/blog/2008/05/28/its-almost-over-d/&amp;title=It%E2%80%99s+almost+over%21+%3AD" title=" "> </a> <a class="tt" href="http://www.facebook.com/share.php?u=http://robotgrrl.com/blog/2008/05/28/its-almost-over-d/&amp;t=It%E2%80%99s+almost+over%21+%3AD" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://robotgrrl.com/blog/2008/05/28/its-almost-over-d/&amp;t=It%E2%80%99s+almost+over%21+%3AD" title=" "> </a> <a class="tt" href="http://reddit.com/submit?url=http://robotgrrl.com/blog/2008/05/28/its-almost-over-d/&amp;title=It%E2%80%99s+almost+over%21+%3AD" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://robotgrrl.com/blog/2008/05/28/its-almost-over-d/&amp;title=It%E2%80%99s+almost+over%21+%3AD" title=" "> </a> <a class="tt" href="http://stumbleupon.com/submit?url=http://robotgrrl.com/blog/2008/05/28/its-almost-over-d/&amp;title=It%E2%80%99s+almost+over%21+%3AD" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://robotgrrl.com/blog/2008/05/28/its-almost-over-d/&amp;title=It%E2%80%99s+almost+over%21+%3AD" title=" "> </a></p></div>]]></content:encoded>
			<wfw:commentRss>http://robotgrrl.com/blog/2008/05/28/its-almost-over-d/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Where Am I?</title>
		<link>http://robotgrrl.com/blog/2008/04/21/where-am-i/</link>
		<comments>http://robotgrrl.com/blog/2008/04/21/where-am-i/#comments</comments>
		<pubDate>Tue, 22 Apr 2008 01:22:02 +0000</pubDate>
		<dc:creator>Erin, the RobotGrrl</dc:creator>
				<category><![CDATA[Other]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[boring]]></category>
		<category><![CDATA[fingers]]></category>
		<category><![CDATA[FIRST]]></category>
		<category><![CDATA[MIA]]></category>
		<category><![CDATA[omg]]></category>
		<category><![CDATA[pointless]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[random]]></category>
		<category><![CDATA[studying]]></category>
		<category><![CDATA[working]]></category>

		<guid isPermaLink="false">http://robotgrrl.com/blog/2008/04/21/where-am-i/</guid>
		<description><![CDATA[Why were there no blog posts for a week? EEEEEK! I was studying&#8230;.working&#8230;programming! ^^ I&#8217;ll skip the terribly boring stuff and get to the point(s) - Tuesday, Wednesday, Thursday &#8211; track practice - Spent Friday in Ottawa ^^ - Half of Saturday I soldered stuff - Sunday I programmed in a GUI &#038; went biking [...]]]></description>
			<content:encoded><![CDATA[<p>Why were there no blog posts for a week? EEEEEK!</p>
<p>I was studying&#8230;.working&#8230;programming! ^^</p>
<p>I&#8217;ll skip the terribly boring stuff and get to the point(s)<br />
- Tuesday, Wednesday, Thursday &#8211; track practice<br />
- Spent Friday in Ottawa ^^<br />
- Half of Saturday I soldered stuff<br />
- Sunday I programmed in a GUI &#038; went biking in mud with a friend<br />
- Monday I am watching the Habs <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  Homework I&#8217;ll do after <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>There was an extremely good day at school last week&#8230; we get to make a Rube Goldberg machine for Physics!! This is SO cool it&#8217;s unbelievable to have this opportunity. I&#8217;m still in awe, and verrry excited to start working with the wood with our team! Sure&#8230; our team may go overboard for a simple simple machine combination contraption &#8230; but when will the chance of building a Rube Goldberg machine come around again? ;P</p>
<p>What I am working on now is getting my LCD to display a custom screen that I drew out on paper. What the problem appears to be is that it can&#8217;t handle many characters&#8230; I have 3 custom characters&#8230; I FINALLY got the 3rd line to work, so now I have to figure out the 4th line. It&#8217;s really annoying. I&#8217;ll figure out, somehow, how to cut down the amount of info/characters that has to be displayed.</p>
<p>Additionally, I&#8217;m working on making a SQLite database interface for conversation links and language models. Once I get it working, I&#8217;ll be linking it up with Robbie. <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  You can then imagine all the possibilities with regards to the different language models that will be downloadable! I&#8217;m thinking a gigantor mental math mini-game one&#8230; <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>My fingers on my right hand are insane&#8230; thumb- raw&#8217;ish from soldering. index- has something wrong with it as I can&#8217;t lift it middle- a chunk of skin is missing because I unplugged my magsafe the wrong way&#8230; ring- my grad ring is ALWAYS falling off pinky- sprained a bit, from &#8230; I have no clue o_o</p>
<p>That&#8217;s all for now. I like how next year&#8217;s FIRST robotics is going to be completely different, with the new WPI programmer software and all! 802.11n will be great for ANNs too. I hope I am lucky enough to take part in FIRST next year! <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Where+Am+I%3F+http%3A%2F%2Fis.gd%2F4qFwbb" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Where+Am+I%3F+http%3A%2F%2Fis.gd%2F4qFwbb" title=" "> </a> <a class="tt" href="http://delicious.com/post?url=http://robotgrrl.com/blog/2008/04/21/where-am-i/&amp;title=Where+Am+I%3F" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://robotgrrl.com/blog/2008/04/21/where-am-i/&amp;title=Where+Am+I%3F" title=" "> </a> <a class="tt" href="http://digg.com/submit?url=http://robotgrrl.com/blog/2008/04/21/where-am-i/&amp;title=Where+Am+I%3F" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://robotgrrl.com/blog/2008/04/21/where-am-i/&amp;title=Where+Am+I%3F" title=" "> </a> <a class="tt" href="http://www.facebook.com/share.php?u=http://robotgrrl.com/blog/2008/04/21/where-am-i/&amp;t=Where+Am+I%3F" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://robotgrrl.com/blog/2008/04/21/where-am-i/&amp;t=Where+Am+I%3F" title=" "> </a> <a class="tt" href="http://reddit.com/submit?url=http://robotgrrl.com/blog/2008/04/21/where-am-i/&amp;title=Where+Am+I%3F" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://robotgrrl.com/blog/2008/04/21/where-am-i/&amp;title=Where+Am+I%3F" title=" "> </a> <a class="tt" href="http://stumbleupon.com/submit?url=http://robotgrrl.com/blog/2008/04/21/where-am-i/&amp;title=Where+Am+I%3F" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://robotgrrl.com/blog/2008/04/21/where-am-i/&amp;title=Where+Am+I%3F" title=" "> </a></p></div>]]></content:encoded>
			<wfw:commentRss>http://robotgrrl.com/blog/2008/04/21/where-am-i/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Friday Night MANOI &#8211; replaced by BUBBLE BOY!</title>
		<link>http://robotgrrl.com/blog/2008/03/28/friday-night-manoi-replaced-by-bubble-boy/</link>
		<comments>http://robotgrrl.com/blog/2008/03/28/friday-night-manoi-replaced-by-bubble-boy/#comments</comments>
		<pubDate>Sat, 29 Mar 2008 03:10:40 +0000</pubDate>
		<dc:creator>Erin, the RobotGrrl</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Robot]]></category>
		<category><![CDATA[Arduino]]></category>
		<category><![CDATA[Bubble Boy]]></category>
		<category><![CDATA[Pinky]]></category>

		<guid isPermaLink="false">http://robotgrrl.com/blog/2008/03/28/friday-night-manoi-replaced-by-bubble-boy/</guid>
		<description><![CDATA[That&#8217;s right! My usual Friday night MANOI was replaced by Friday night BUBBLE BOY! Pinky was renamed to Bubble Boy as, not only is it more bubblicious, but it also reminds us of Seinfeld. (Nope, the answer is MOOPS!) (]]></description>
			<content:encoded><![CDATA[<p>That&#8217;s right! My usual Friday night MANOI was replaced by Friday night BUBBLE BOY! Pinky was renamed to Bubble Boy as, not only is it more bubblicious, but it also reminds us of Seinfeld. (Nope, the answer is MOOPS!) (<--- Seinfeld joke)</p>
<p>Trying to get it all to work out was pretty a pretty intense thought process. At least, it seemed that way relative to a Friday. Relative to a Monday morning, the thought process could be described as easy. The way Bubble Boy (lol) will rock back and forth, and from side to side is that there will be two servos embedded into the side of the bottom ball. On the servo horns will be string, which will be attached to a paperclip. From there, the paperclip plugs easily into the cross on the top ball.</p>
<p>The reason why I chose paperclips rather than anything else is because it allows more movement. For example, if the top ball moves to the left, the back and forth ones will not constrain this movement. Pretty neat, eh! <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I'll probably strengthen the cross tomorrow, after I replace the elastic string I used.</p>
<p>This brings me to another point. There isn't much string around, so the first thing I saw, I grabbed. Elasticy string. I thought it would probably work out, but it didn't. Tomorrow I'll replace it with bunchels of thread, or yarn - depending on what mood I am in. (Yarn is bigger - thread is smaller).</p>
<p>These photos show the progress of the process. <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><center><a href='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4523.JPG' title='Overview of workstation' rel="lightbox[568]"><img src='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4523.thumbnail.JPG' alt='Overview of workstation' /></a> <a href='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4524.JPG' title='1 Elastic Knot' rel="lightbox[568]"><img src='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4524.thumbnail.JPG' alt='1 Elastic Knot' /></a> <a href='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4527.JPG' title='2nd Elastic Knot! (There are 2 more, but I didnâ€™t Capture â€˜Em)' rel="lightbox[568]"><img src='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4527.thumbnail.JPG' alt='2nd Elastic Knot! (There are 2 more, but I didnâ€™t Capture â€˜Em)' /></a> <a href='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4534.JPG' title='I have to attach the string to the horn â€¦ glue gun!!' rel="lightbox[568]"><img src='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4534.thumbnail.JPG' alt='I have to attach the string to the horn â€¦ glue gun!!' /></a> <a href='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4537.JPG' title='Then, the horn goes on the servo! ^_^' rel="lightbox[568]"><img src='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4537.thumbnail.JPG' alt='Then, the horn goes on the servo! ^_^' /></a> <a href='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4541.JPG' title='I put the servo in the bottom ball â€¦ Haiii servo!!' rel="lightbox[568]"><img src='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4541.thumbnail.JPG' alt='I put the servo in the bottom ball â€¦ Haiii servo!!' /></a> <a href='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4544.JPG' title='Metal brackets help with Newtonâ€™s 3rd law' rel="lightbox[568]"><img src='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4544.thumbnail.JPG' alt='Metal brackets help with Newtonâ€™s 3rd law' /></a> <a href='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4545.JPG' title='Pumpkin carving does come in handy in robotics! :) (Cut out the bottom of the bottom ball)' rel="lightbox[568]"><img src='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4545.thumbnail.JPG' alt='Pumpkin carving does come in handy in robotics! :) (Cut out the bottom of the bottom ball)' /></a> <a href='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4548.JPG' title='Metal brackets can now fit.' rel="lightbox[568]"><img src='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4548.thumbnail.JPG' alt='Metal brackets can now fit.' /></a> <a href='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4551.JPG' title='Secret trapador!' rel="lightbox[568]"><img src='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4551.thumbnail.JPG' alt='Secret trapador!' /></a> <a href='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4553.JPG' title='Gluing the servo down â€¦ goop!' rel="lightbox[568]"><img src='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4553.thumbnail.JPG' alt='Gluing the servo down â€¦ goop!' /></a> <a href='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4556.JPG' title='Nice soldering on the yellow one!' rel="lightbox[568]"><img src='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4556.thumbnail.JPG' alt='Nice soldering on the yellow one!' /></a> <a href='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4557.JPG' title='The yellow one is just SO perfect @_@ Omg.' rel="lightbox[568]"><img src='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4557.thumbnail.JPG' alt='The yellow one is just SO perfect @_@ Omg.' /></a> <a href='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4561.JPG' title='10/10 Soldering skills! (On the yellow one)' rel="lightbox[568]"><img src='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4561.thumbnail.JPG' alt='10/10 Soldering skills! (On the yellow one)' /></a> <a href='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4565.JPG' title='It all connects back to Arduino :)' rel="lightbox[568]"><img src='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4565.thumbnail.JPG' alt='It all connects back to Arduino :)' /></a></center></p>
<p>During the weekend, keep an eye out for:<br />
- Blog post about Autism &#038; Robots &#038; Robbie<br />
- Blog post (hopefully) about a working Bubble Boy<br />
- YouTube video (hopefully) about Bubble Boy<br />
- Blog post about a very fun Physics lab</p>
<p>Happy Friday night BUBBLE BOY!</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Friday+Night+MANOI+%E2%80%93+replaced+by+BUBBLE+BOY%21+http%3A%2F%2Fis.gd%2FmjRwYt" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Friday+Night+MANOI+%E2%80%93+replaced+by+BUBBLE+BOY%21+http%3A%2F%2Fis.gd%2FmjRwYt" title=" "> </a> <a class="tt" href="http://delicious.com/post?url=http://robotgrrl.com/blog/2008/03/28/friday-night-manoi-replaced-by-bubble-boy/&amp;title=Friday+Night+MANOI+%E2%80%93+replaced+by+BUBBLE+BOY%21" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://robotgrrl.com/blog/2008/03/28/friday-night-manoi-replaced-by-bubble-boy/&amp;title=Friday+Night+MANOI+%E2%80%93+replaced+by+BUBBLE+BOY%21" title=" "> </a> <a class="tt" href="http://digg.com/submit?url=http://robotgrrl.com/blog/2008/03/28/friday-night-manoi-replaced-by-bubble-boy/&amp;title=Friday+Night+MANOI+%E2%80%93+replaced+by+BUBBLE+BOY%21" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://robotgrrl.com/blog/2008/03/28/friday-night-manoi-replaced-by-bubble-boy/&amp;title=Friday+Night+MANOI+%E2%80%93+replaced+by+BUBBLE+BOY%21" title=" "> </a> <a class="tt" href="http://www.facebook.com/share.php?u=http://robotgrrl.com/blog/2008/03/28/friday-night-manoi-replaced-by-bubble-boy/&amp;t=Friday+Night+MANOI+%E2%80%93+replaced+by+BUBBLE+BOY%21" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://robotgrrl.com/blog/2008/03/28/friday-night-manoi-replaced-by-bubble-boy/&amp;t=Friday+Night+MANOI+%E2%80%93+replaced+by+BUBBLE+BOY%21" title=" "> </a> <a class="tt" href="http://reddit.com/submit?url=http://robotgrrl.com/blog/2008/03/28/friday-night-manoi-replaced-by-bubble-boy/&amp;title=Friday+Night+MANOI+%E2%80%93+replaced+by+BUBBLE+BOY%21" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://robotgrrl.com/blog/2008/03/28/friday-night-manoi-replaced-by-bubble-boy/&amp;title=Friday+Night+MANOI+%E2%80%93+replaced+by+BUBBLE+BOY%21" title=" "> </a> <a class="tt" href="http://stumbleupon.com/submit?url=http://robotgrrl.com/blog/2008/03/28/friday-night-manoi-replaced-by-bubble-boy/&amp;title=Friday+Night+MANOI+%E2%80%93+replaced+by+BUBBLE+BOY%21" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://robotgrrl.com/blog/2008/03/28/friday-night-manoi-replaced-by-bubble-boy/&amp;title=Friday+Night+MANOI+%E2%80%93+replaced+by+BUBBLE+BOY%21" title=" "> </a></p></div>]]></content:encoded>
			<wfw:commentRss>http://robotgrrl.com/blog/2008/03/28/friday-night-manoi-replaced-by-bubble-boy/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Colouring Pinky</title>
		<link>http://robotgrrl.com/blog/2008/03/22/colouring-pinky/</link>
		<comments>http://robotgrrl.com/blog/2008/03/22/colouring-pinky/#comments</comments>
		<pubDate>Sun, 23 Mar 2008 02:37:47 +0000</pubDate>
		<dc:creator>Erin, the RobotGrrl</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Robot]]></category>
		<category><![CDATA[Arduino]]></category>
		<category><![CDATA[paint]]></category>
		<category><![CDATA[Pinky]]></category>

		<guid isPermaLink="false">http://robotgrrl.com/blog/2008/03/22/colouring-pinky/</guid>
		<description><![CDATA[Today (March 22) I painted Pinky Lucky for me &#8211; it was the EXACT colour I envisioned! I also made the bottom part better, so it wouldn&#8217;t topple over that easy. Enjoy the pics! Hooray!]]></description>
			<content:encoded><![CDATA[<p>Today (March 22) I painted Pinky <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Lucky for me &#8211; it was the EXACT colour I envisioned!</p>
<p>I also made the bottom part better, so it wouldn&#8217;t topple over that easy.</p>
<p>Enjoy the pics!</p>
<p><center><a href='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4424.JPG' title='Letâ€™s Start!' rel="lightbox[524]"><img src='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4424.thumbnail.JPG' alt='Letâ€™s Start!' /></a> <a href='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4425.JPG' title='Nice sky (in the background â€¦ ) lol!' rel="lightbox[524]"><img src='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4425.thumbnail.JPG' alt='Nice sky (in the background â€¦ ) lol!' /></a> <a href='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4426.JPG' title='Top cut out' rel="lightbox[524]"><img src='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4426.thumbnail.JPG' alt='Top cut out' /></a> <a href='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4429.JPG' title='Top ball cross' rel="lightbox[524]"><img src='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4429.thumbnail.JPG' alt='Top ball cross' /></a> <a href='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4431.JPG' title='Bottom ball crater' rel="lightbox[524]"><img src='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4431.thumbnail.JPG' alt='Bottom ball crater' /></a> <a href='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4432.JPG' title='Overview :)' rel="lightbox[524]"><img src='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4432.thumbnail.JPG' alt='Overview :)' /></a> <a href='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4433.JPG' title='Sanded bottom ball for stability' rel="lightbox[524]"><img src='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4433.thumbnail.JPG' alt='Sanded bottom ball for stability' /></a> <a href='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4436.JPG' title='PINK PAINT! <3' rel="lightbox[524]"><img src='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4436.thumbnail.JPG' alt='PINK PAINT! <3' /></a> <a href='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4438.JPG' title='Bubblicious' rel="lightbox[524]"><img src='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4438.thumbnail.JPG' alt='Bubblicious' /></a> <a href='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4441.JPG' title='Top ball hole is nice and pink!' rel="lightbox[524]"><img src='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4441.thumbnail.JPG' alt='Top ball hole is nice and pink!' /></a> <a href='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4443.JPG' title='Lookin good, Pinky!' rel="lightbox[524]"><img src='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4443.thumbnail.JPG' alt='Lookin good, Pinky!' /></a> <a href='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4445.JPG' title='A wonderful view for an excellent day!' rel="lightbox[524]"><img src='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4445.thumbnail.JPG' alt='A wonderful view for an excellent day!' /></a></center></p>
<p>Hooray!</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Colouring+Pinky+http%3A%2F%2Fis.gd%2Fp1zIAi" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Colouring+Pinky+http%3A%2F%2Fis.gd%2Fp1zIAi" title=" "> </a> <a class="tt" href="http://delicious.com/post?url=http://robotgrrl.com/blog/2008/03/22/colouring-pinky/&amp;title=Colouring+Pinky" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://robotgrrl.com/blog/2008/03/22/colouring-pinky/&amp;title=Colouring+Pinky" title=" "> </a> <a class="tt" href="http://digg.com/submit?url=http://robotgrrl.com/blog/2008/03/22/colouring-pinky/&amp;title=Colouring+Pinky" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://robotgrrl.com/blog/2008/03/22/colouring-pinky/&amp;title=Colouring+Pinky" title=" "> </a> <a class="tt" href="http://www.facebook.com/share.php?u=http://robotgrrl.com/blog/2008/03/22/colouring-pinky/&amp;t=Colouring+Pinky" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://robotgrrl.com/blog/2008/03/22/colouring-pinky/&amp;t=Colouring+Pinky" title=" "> </a> <a class="tt" href="http://reddit.com/submit?url=http://robotgrrl.com/blog/2008/03/22/colouring-pinky/&amp;title=Colouring+Pinky" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://robotgrrl.com/blog/2008/03/22/colouring-pinky/&amp;title=Colouring+Pinky" title=" "> </a> <a class="tt" href="http://stumbleupon.com/submit?url=http://robotgrrl.com/blog/2008/03/22/colouring-pinky/&amp;title=Colouring+Pinky" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://robotgrrl.com/blog/2008/03/22/colouring-pinky/&amp;title=Colouring+Pinky" title=" "> </a></p></div>]]></content:encoded>
			<wfw:commentRss>http://robotgrrl.com/blog/2008/03/22/colouring-pinky/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Commencement of Pinky</title>
		<link>http://robotgrrl.com/blog/2008/03/21/the-commencement-of-pinky/</link>
		<comments>http://robotgrrl.com/blog/2008/03/21/the-commencement-of-pinky/#comments</comments>
		<pubDate>Sat, 22 Mar 2008 03:04:58 +0000</pubDate>
		<dc:creator>Erin, the RobotGrrl</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Robot]]></category>
		<category><![CDATA[beanie babys]]></category>
		<category><![CDATA[Pinky]]></category>
		<category><![CDATA[styrofoam]]></category>

		<guid isPermaLink="false">http://robotgrrl.com/blog/2008/03/21/the-commencement-of-pinky/</guid>
		<description><![CDATA[I bought some pink paint, and two styrofoam balls this afternoon. (I also bought two beanie babys, but that&#8217;s besides the point). So, it is the commencement of Pinky! Wahahahahaha&#8230; Basically what I did today was familiarized myself with how to program the servos with the Arduino more, and I made the two styrofoam balls [...]]]></description>
			<content:encoded><![CDATA[<p>I bought some pink paint, and two styrofoam balls this afternoon. <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  (I also bought two beanie babys, but that&#8217;s besides the point). So, it is the commencement of Pinky! Wahahahahaha&#8230;</p>
<p><center><a href='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4380.JPG' title='Work â€œareaâ€' rel="lightbox[523]"><img src='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4380.thumbnail.JPG' alt='Work â€œareaâ€' /></a> <a href='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4383.JPG' title='Bottom Snowball' rel="lightbox[523]"><img src='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4383.thumbnail.JPG' alt='Bottom Snowball' /></a> <a href='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4389.JPG' title='Top Snowball' rel="lightbox[523]"><img src='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4389.thumbnail.JPG' alt='Top Snowball' /></a> <a href='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4391.JPG' title='Lots of Styro-dust!' rel="lightbox[523]"><img src='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4391.thumbnail.JPG' alt='Lots of Styro-dust!' /></a> <a href='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4392.JPG' title='Almost Interlocking!' rel="lightbox[523]"><img src='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4392.thumbnail.JPG' alt='Almost Interlocking!' /></a> <a href='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4394.JPG' title='Need to Sand a Bit More' rel="lightbox[523]"><img src='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4394.thumbnail.JPG' alt='Need to Sand a Bit More' /></a> <a href='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4398.JPG' title='Looks a Bit Better!' rel="lightbox[523]"><img src='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4398.thumbnail.JPG' alt='Looks a Bit Better!' /></a><a href='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4401.JPG' title='It can Stand!' rel="lightbox[523]"><img src='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4401.thumbnail.JPG' alt='It can Stand!' /></a> <a href='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4404.JPG' title='Sand paper or SNOW paper? Haha' rel="lightbox[523]"><img src='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4404.thumbnail.JPG' alt='Sand paper or SNOW paper? Haha' /></a> <a href='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4412.JPG' title='Lots of Cleaning â€¦ Nooooooo!' rel="lightbox[523]"><img src='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4412.thumbnail.JPG' alt='Lots of Cleaning â€¦ Nooooooo!' /></a></center></p>
<p>Basically what I did today was familiarized myself with how to program the servos with the Arduino more, and I made the two styrofoam balls interlock. This was done buy cutting an &#8216;x&#8217; into both. On the bottom one, the x was concave. On the top one, the x was convex. They have some ability to move side to side and front to back. Tomorrow that functionality will improve after I trim it up a bit. <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Hooray for virtual logbooks! ^_^</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=The+Commencement+of+Pinky+http%3A%2F%2Fis.gd%2Fe8BAK4" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=The+Commencement+of+Pinky+http%3A%2F%2Fis.gd%2Fe8BAK4" title=" "> </a> <a class="tt" href="http://delicious.com/post?url=http://robotgrrl.com/blog/2008/03/21/the-commencement-of-pinky/&amp;title=The+Commencement+of+Pinky" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://robotgrrl.com/blog/2008/03/21/the-commencement-of-pinky/&amp;title=The+Commencement+of+Pinky" title=" "> </a> <a class="tt" href="http://digg.com/submit?url=http://robotgrrl.com/blog/2008/03/21/the-commencement-of-pinky/&amp;title=The+Commencement+of+Pinky" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://robotgrrl.com/blog/2008/03/21/the-commencement-of-pinky/&amp;title=The+Commencement+of+Pinky" title=" "> </a> <a class="tt" href="http://www.facebook.com/share.php?u=http://robotgrrl.com/blog/2008/03/21/the-commencement-of-pinky/&amp;t=The+Commencement+of+Pinky" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://robotgrrl.com/blog/2008/03/21/the-commencement-of-pinky/&amp;t=The+Commencement+of+Pinky" title=" "> </a> <a class="tt" href="http://reddit.com/submit?url=http://robotgrrl.com/blog/2008/03/21/the-commencement-of-pinky/&amp;title=The+Commencement+of+Pinky" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://robotgrrl.com/blog/2008/03/21/the-commencement-of-pinky/&amp;title=The+Commencement+of+Pinky" title=" "> </a> <a class="tt" href="http://stumbleupon.com/submit?url=http://robotgrrl.com/blog/2008/03/21/the-commencement-of-pinky/&amp;title=The+Commencement+of+Pinky" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://robotgrrl.com/blog/2008/03/21/the-commencement-of-pinky/&amp;title=The+Commencement+of+Pinky" title=" "> </a></p></div>]]></content:encoded>
			<wfw:commentRss>http://robotgrrl.com/blog/2008/03/21/the-commencement-of-pinky/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bristlebot</title>
		<link>http://robotgrrl.com/blog/2008/03/20/bristlebot-2/</link>
		<comments>http://robotgrrl.com/blog/2008/03/20/bristlebot-2/#comments</comments>
		<pubDate>Fri, 21 Mar 2008 01:20:52 +0000</pubDate>
		<dc:creator>Erin, the RobotGrrl</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Robot]]></category>
		<category><![CDATA[bristlebot]]></category>
		<category><![CDATA[Pinky]]></category>
		<category><![CDATA[science fair]]></category>

		<guid isPermaLink="false">http://robotgrrl.com/blog/2008/03/20/bristlebot-2/</guid>
		<description><![CDATA[Yay! I made a Bristlebot today, and updated the smilies for this blog. Much cuter, no? ^_^ It was pretty fun. My soldering has gone waaaaaay downhill though. Hopefully I&#8217;ll get more practice in soon. Arduino and ArtBot contest entries are due in the end of April, so I better get moving. My plan is [...]]]></description>
			<content:encoded><![CDATA[<p>Yay! I made a Bristlebot today, and updated the smilies for this blog. <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  Much cuter, no? ^_^</p>
<p><center><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/3gViwYHXRzA&#038;hl=en"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/3gViwYHXRzA&#038;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
<p><a href='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4350.JPG' title='Picks up A LOT of Stuff!' rel="lightbox[478]"><img src='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4350.thumbnail.JPG' alt='Picks up A LOT of Stuff!' /></a> <a href='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4356.JPG' title='Kachow!' rel="lightbox[478]"><img src='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4356.thumbnail.JPG' alt='Kachow!' /></a> <a href='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4366.JPG' title='The Many Places a BristleBot can Travelâ€¦' rel="lightbox[478]"><img src='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4366.thumbnail.JPG' alt='The Many Places a BristleBot can Travelâ€¦' /></a> <a href='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4377.JPG' title='Baaaaad Soldering' rel="lightbox[478]"><img src='http://robotgrrl.com/blog/wp-content/uploads/2008/03/img_4377.thumbnail.JPG' alt='Baaaaad Soldering' /></a><br />
</center></p>
<p>It was pretty fun. My soldering has gone waaaaaay downhill though. Hopefully I&#8217;ll get more practice in soon. Arduino and ArtBot contest entries are due in the end of April, so I better get moving. My plan is to make a new Robbie, incidentally called Pinky. I&#8217;ll somehow find a small microphone and speaker, and embed it in a physical pink snowman.</p>
<p>The coolest part about the ArtBot contest is that, if I am accepted, I&#8217;ll be able to go to Ireland on my birthday. I&#8217;m Irish, so that&#8217;s quite a huge ordeal! <:D</p>
<p>-> Oh, I received my comments today. And a crumpled certificate. Nice. Well, the comments were all positive, even the two in French.</p>
<p>I checked to see what the science fairs in Mass are like &#8211; they have a panel of professional judges. So I need not worry for the future! <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Bristlebot+http%3A%2F%2Fis.gd%2FrRl4ys" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Bristlebot+http%3A%2F%2Fis.gd%2FrRl4ys" title=" "> </a> <a class="tt" href="http://delicious.com/post?url=http://robotgrrl.com/blog/2008/03/20/bristlebot-2/&amp;title=Bristlebot" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://robotgrrl.com/blog/2008/03/20/bristlebot-2/&amp;title=Bristlebot" title=" "> </a> <a class="tt" href="http://digg.com/submit?url=http://robotgrrl.com/blog/2008/03/20/bristlebot-2/&amp;title=Bristlebot" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://robotgrrl.com/blog/2008/03/20/bristlebot-2/&amp;title=Bristlebot" title=" "> </a> <a class="tt" href="http://www.facebook.com/share.php?u=http://robotgrrl.com/blog/2008/03/20/bristlebot-2/&amp;t=Bristlebot" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://robotgrrl.com/blog/2008/03/20/bristlebot-2/&amp;t=Bristlebot" title=" "> </a> <a class="tt" href="http://reddit.com/submit?url=http://robotgrrl.com/blog/2008/03/20/bristlebot-2/&amp;title=Bristlebot" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://robotgrrl.com/blog/2008/03/20/bristlebot-2/&amp;title=Bristlebot" title=" "> </a> <a class="tt" href="http://stumbleupon.com/submit?url=http://robotgrrl.com/blog/2008/03/20/bristlebot-2/&amp;title=Bristlebot" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://robotgrrl.com/blog/2008/03/20/bristlebot-2/&amp;title=Bristlebot" title=" "> </a></p></div>]]></content:encoded>
			<wfw:commentRss>http://robotgrrl.com/blog/2008/03/20/bristlebot-2/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Robots</title>
		<link>http://robotgrrl.com/blog/robots/</link>
		<comments>http://robotgrrl.com/blog/robots/#comments</comments>
		<pubDate>Sat, 25 Aug 2007 13:36:00 +0000</pubDate>
		<dc:creator>Erin, the RobotGrrl</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://robotgrrl.com/blog/robots/</guid>
		<description><![CDATA[Welcome to my Robotics page. =D Here you will be able to find old videos, posts, pictures and links of my robots that I have made. I hope you enjoy my robots (sorted in descending chronological order)! BubbleBoy (aka: Pinky) (2007-08 Grade 11) Bubble Boy FinishedVideo Friday Night MANOI! (Replaced by Bubble Boy, again)Bubble Boy [...]]]></description>
			<content:encoded><![CDATA[<p>Welcome to my Robotics page. =D Here you will be able to find old videos, posts, pictures and links of my robots that I have made. I hope you enjoy my robots (sorted in descending chronological order)!</p>
<h3>BubbleBoy (aka: Pinky)</h3>
<p> <i>(2007-08 Grade 11)</i></p>
<ul>
<li> <a href="http://www.youtube.com/watch?v=OKHPAEVIR9Q"><strong>Bubble Boy Finished</strong></a><br />Video
<li> <a href="http://robotgrrl.com/blog/2008/04/12/friday-night-manoi-replaced-by-bubble-boy-again/"><strong>Friday Night MANOI! (Replaced by Bubble Boy, again)</strong></a><br />Bubble Boy works in all directions!
<li> <a href="http://www.youtube.com/watch?v=uueNwu_iC3I"><strong>Video of BubbleBoy WORX</strong></a><br />Video
<li> <a href="http://robotgrrl.com/blog/2008/04/06/bubble-boy-worx/"><strong>Bubble Boy WORX!</strong></a><br />And so it works!
<li> <a href="http://robotgrrl.com/blog/2008/03/28/friday-night-manoi-replaced-by-bubble-boy/"><strong>Friday Night MANOI &#8211; replaced by BUBBLE BOY!</strong></a><br />Inserted one servo and controlled it via the Arduino!
<li> <a href="http://robotgrrl.com/blog/2008/03/22/colouring-pinky/"><strong>Colouring Pinky</strong></a><br />Gotta make robots look nice!
<li> <a href="http://robotgrrl.com/blog/2008/03/21/the-commencement-of-pinky/"><strong>The Commencement of Pinky</strong></a><br />I came up with the Pinky idea, and started to build it. The design idea varied later on <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />
</ul>
<h3>Robbie the Robot</h3>
<p> <i>(2007-08 Grade 11)</i></p>
<ul>
<li> <a href="http://youtube.com/watch?v=QvrBxgNh5co"><strong>Robbie the Robot (2/2)</strong></a><br />Video
<li> <a href="http://youtube.com/watch?v=xNoiwhzRGdI"><strong>Robbie the Robot (1/2)</strong></a><br />Video
<li> <a href="http://robotgrrl.com/robbie"><strong>Robbie the Robot&#8217;s webpage</strong></a><br />Home of the application I created for Mac OS 10.5 that can have a human-machine conversation, vocally
</ul>
<h3>Science Fair 2007</h3>
<p> <i>(2006-07 Grade 10)</i></p>
<ul>
<li> <a href="http://frankenteddy.com/robotics-the-better-way/scienceproject1.m4v"><strong>Building the Robot</strong></a>
<li> <a href="http://frankenteddy.com/robotics-the-better-way/scienceproject2.m4v"><strong>Building the Robot 2</strong></a>
<li> <a href="http://frankenteddy.com/robotics-the-better-way/painting.m4v"><strong>Painting the Robot</strong></a>
<li> <a href="http://frankenteddy.com/robotics-the-better-way/scienceproject3.m4v"><strong>Robot Demonstration</strong></a>
</ul>
<h3>Dancing Mickey</h3>
<p> <i>(2005-06 Grade 9)</i></p>
<ul>
<li><a href="http://robotgrrl.com/lego-robotics-videos/MVI_0785.AVI" target="_blank"><b>Center of Balance Determined!</b></a><br />Determined the center of balance! &#8211;Now time to decorate!</li>
<li><a href="http://robotgrrl.com/lego-robotics-videos/MVI_0855.AVI" target="_blank"><b>Dancing Mickey</b></a><br />Decoration finished, and now there is a Dancing Mickey!!</li>
</ul>
<h3>Flippin&#8217;</h3>
<p> <i>(2005-06 Grade 9)</i><br />
Flippin&#8217; was created for a robotics contest in grade 9 at my school. It whupped the other robots, and deemed the best award for logic. Here are the vids!</p>
<ul>
<li><a href="http://robotgrrl.com/lego-robotics-videos/MVI_0753.AVI" target="_blank"><b>Flippin&#8217;s Basics</b></a><br />The basics of Flippin&#8217;.</li>
<li><a href="http://robotgrrl.com/lego-robotics-videos/MVI_0758.AVI" target="_blank"><b>Weightlifting</b></a><br />Testing Flippin&#8217; with the usual weight of an RCX.</li>
<li><a href="http://robotgrrl.com/lego-robotics-videos/MVI_0760.AVI" target="_blank"><b>Flippin&#8217; Runs</b></a><br />Testing Flippin&#8217; again</li>
<li><a href="http://robotgrrl.com/lego-robotics-videos/MVI_0762.AVI" target="_blank"><b>Flippin&#8217; did as planned!</b></a><br />Flippin&#8217; sent the other robot speeding into the wall after a quick brawl. (LOL!)</li>
<li><a href="http://robotgrrl.com/lego-robotics-videos/MVI_0765.AVI" target="_blank"><b>Flippin&#8217; Won Another Brawl</b></a><br />Sending the other robot crashing into Michelle!</li>
<li><a href="http://robotgrrl.com/lego-robotics-videos/MVI_0766.AVI" target="_blank"><b>Stalemate</b></a><br />Stalemate. They had a good chance to attack, but they didn&#8217;t.</li>
<li><a href="http://robotgrrl.com/lego-robotics-videos/MVI_0761.AVI" target="_blank"><b>Bad Timing&#8230; but we still won! Lol!</b></a><br />Their wheel fell off!</li>
</ul>
<p>I have made more, however these are the ones that I have videos of. <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Robots+http%3A%2F%2Fis.gd%2FXKak0D" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Robots+http%3A%2F%2Fis.gd%2FXKak0D" title=" "> </a> <a class="tt" href="http://delicious.com/post?url=http://robotgrrl.com/blog/robots/&amp;title=Robots" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://robotgrrl.com/blog/robots/&amp;title=Robots" title=" "> </a> <a class="tt" href="http://digg.com/submit?url=http://robotgrrl.com/blog/robots/&amp;title=Robots" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://robotgrrl.com/blog/robots/&amp;title=Robots" title=" "> </a> <a class="tt" href="http://www.facebook.com/share.php?u=http://robotgrrl.com/blog/robots/&amp;t=Robots" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://robotgrrl.com/blog/robots/&amp;t=Robots" title=" "> </a> <a class="tt" href="http://reddit.com/submit?url=http://robotgrrl.com/blog/robots/&amp;title=Robots" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit.png" alt="Post to Reddit" /></a> <a class="tt" href="http://reddit.com/submit?url=http://robotgrrl.com/blog/robots/&amp;title=Robots" title=" "> </a> <a class="tt" href="http://stumbleupon.com/submit?url=http://robotgrrl.com/blog/robots/&amp;title=Robots" title=" "><img class="nothumb" src="http://robotgrrl.com/blog/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://robotgrrl.com/blog/robots/&amp;title=Robots" title=" "> </a></p></div>]]></content:encoded>
			<wfw:commentRss>http://robotgrrl.com/blog/robots/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

