<?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>Yuliya Parshina</title>
	<atom:link href="http://itp.nyu.edu/~yp541/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://itp.nyu.edu/~yp541/blog</link>
	<description>ITP 2014</description>
	<lastBuildDate>Tue, 16 Apr 2013 12:47:12 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Sketchfab</title>
		<link>http://itp.nyu.edu/~yp541/blog/sketchfab/</link>
		<comments>http://itp.nyu.edu/~yp541/blog/sketchfab/#comments</comments>
		<pubDate>Fri, 12 Apr 2013 12:20:51 +0000</pubDate>
		<dc:creator>yp541</dc:creator>
				<category><![CDATA[Hacking Higher Ed]]></category>

		<guid isPermaLink="false">http://itp.nyu.edu/~yp541/blog/?p=494</guid>
		<description><![CDATA[I am exploring a web service called Sketchfab (https://sketchfab.com/) that allows users &#8220;to publish, share and embed interactive 3D models online in real-time without plugin.&#8221; This site is not for downloading 3D models but rather for displaying them online for &#8230; <a href="http://itp.nyu.edu/~yp541/blog/sketchfab/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>I am exploring a web service called Sketchfab (https://sketchfab.com/) that allows users &#8220;to publish, share and embed interactive 3D models online in real-time without plugin.&#8221; This site is not for downloading 3D models but rather for displaying them online for portfolios, clients or fun.</p>
<p>It&#8217;s free to register, upload and embed and there are various monthly plans for professional use. One of the paid plans is offered for free to students in &#8220;partnered&#8221; institutions.</p>
<p><code><iframe frameborder="0" height="480" width="854" allowFullScreen webkitallowfullscreen="true" mozallowfullscreen="true" src="http://skfb.ly/5l3hgfda?autostart=0&#038;transparent=0&#038;autospin=0&#038;controls=1"></iframe></code></p>
]]></content:encoded>
			<wfw:commentRss>http://itp.nyu.edu/~yp541/blog/sketchfab/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Node.js + Spacebrew = Works!</title>
		<link>http://itp.nyu.edu/~yp541/blog/node-js-spacebrew-works/</link>
		<comments>http://itp.nyu.edu/~yp541/blog/node-js-spacebrew-works/#comments</comments>
		<pubDate>Wed, 10 Apr 2013 15:00:06 +0000</pubDate>
		<dc:creator>yp541</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://itp.nyu.edu/~yp541/blog/?p=490</guid>
		<description><![CDATA[I connected the Node.js Spacebrew example (mentioned in the previous post) to a simple Processing sketch, to get a better idea of what the Node.js code is doing. This is the bit of code that is responsible for esending the &#8230; <a href="http://itp.nyu.edu/~yp541/blog/node-js-spacebrew-works/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>I connected the Node.js Spacebrew example (mentioned in the previous post) to a simple Processing sketch, to get a better idea of what the Node.js code is doing.</p>
<p>This is the bit of code that is responsible for esending the data to Spacebrew (in this case a string with a counter in it).</p>
<p><span style="color: #666699;">var i = 0;</span><br />
<span style="color: #666699;">setInterval(function(){</span><br />
<span style="color: #666699;"> var newString = &#8220;You are &#8220;+i+&#8221; seconds older.&#8221;;</span><br />
<span style="color: #666699;"> sb.send(&#8220;tick&#8221;, &#8220;string&#8221;, newString); // send string to spacebrew</span><br />
<span style="color: #666699;"> i++;</span><br />
<span style="color: #666699;">}, 1000);</span></p>
<p>Here are the results!</p>
<p><a href="http://itp.nyu.edu/~yp541/blog/wp-content/uploads/2013/04/Screen-Shot-2013-04-10-at-10.54.25-AM.png"><img class="aligncenter size-large wp-image-491" alt="Screen Shot 2013-04-10 at 10.54.25 AM" src="http://itp.nyu.edu/~yp541/blog/wp-content/uploads/2013/04/Screen-Shot-2013-04-10-at-10.54.25-AM-1024x439.png" width="584" height="250" /></a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://itp.nyu.edu/~yp541/blog/node-js-spacebrew-works/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Node.js + Express + Spacebrew</title>
		<link>http://itp.nyu.edu/~yp541/blog/node-js-express-spacebrew/</link>
		<comments>http://itp.nyu.edu/~yp541/blog/node-js-express-spacebrew/#comments</comments>
		<pubDate>Tue, 09 Apr 2013 12:35:30 +0000</pubDate>
		<dc:creator>yp541</dc:creator>
				<category><![CDATA[Spatial Media]]></category>

		<guid isPermaLink="false">http://itp.nyu.edu/~yp541/blog/?p=479</guid>
		<description><![CDATA[For our Spatial Media class, we are learning Node.js (http://nodejs.org/) and using it to connect web-based inputs and outputs via Spacebrew (http://docs.spacebrew.cc/). I had a tricky time with it, mainly because I know nothing about servers, javascript, Node.js or the &#8230; <a href="http://itp.nyu.edu/~yp541/blog/node-js-express-spacebrew/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>For our Spatial Media class, we are learning Node.js (<a href="http://nodejs.org/">http://nodejs.org/</a>) and using it to connect web-based inputs and outputs via Spacebrew (<a href="http://docs.spacebrew.cc/">http://docs.spacebrew.cc/</a>). I had a tricky time with it, mainly because I know nothing about servers, javascript, Node.js or the inner-workings of my cat&#8217;s mind&#8230; but that&#8217;s another story.</p>
<p>We were using code examples from from this github:<br />
<a href="https://github.com/jefftimesten/SpatialMedia/tree/master/Week_08">https://github.com/jefftimesten/SpatialMedia/tree/master/Week_08</a></p>
<p>Here are a few lessons I learned.</p>
<p>- In layman&#8217;s terms, Node.js is a way to use javascript to make efficient servers so you don&#8217;t have to run things like Apache. I&#8217;m still hazy on the server concept, but this article is a good start: <a href="http://en.wikipedia.org/wiki/Nodejs">http://en.wikipedia.org/wiki/Nodejs<br />
</a></p>
<p>- To install Node.js, go to <a href="http://nodejs.org/">http://nodejs.org/</a></p>
<p>- Node.js applications can be written/edited in any plain text editor (I used TextWrangler).</p>
<p>- The .js applications are compiled/run via <a href="http://en.wikipedia.org/wiki/Terminal_(OS_X)">Terminal</a>. You must <a href="https://ccrma.stanford.edu/guides/planetccrma/terminal.html">navigate into the appropriate folder</a> and run the &#8220;app.js&#8221; or &#8220;server.js&#8221; (those are the common server app names) by entering the following command:<br />
<strong>$ node app.js</strong>  <em>Note:</em> &#8220;$&#8221;  should not be typed into the terminal—it&#8217;s just a way to indicate something is a Terminal command.</p>
<p>- For the github examples used in our class, you need to install <a href="http://expressjs.com/">Express</a> — a web application framework for Node.</p>
<p>- Node.js uses npm (Node Packaged Modules: https://npmjs.org/) to install &#8220;plugins&#8221; or &#8220;libraries&#8221; — the things that help it run.</p>
<p>- You can install Express locally (into the folder where your code lives so it only works for code in that folder) or globally (so after one installation Express will work for any file on the computer).</p>
<p>- To install locally (via Terminal), navigate into your folder and enter:<br />
<strong>$ npm install express</strong></p>
<p>- To install globally, enter: <strong>$ npm install -g npm  </strong><em>Note:</em> If you are using a Mac and get errors with the above global install command, try adding &#8220;sudo&#8221; in front of it: <strong>$ sudo npm install -g express</strong></p>
<p>- After installing Express, my node-spacebrew example didn&#8217;t run because I was missing a &#8220;ws&#8221; websocket Spacebrew uses (check out this article about websockets: <a href="http://en.wikipedia.org/wiki/WebSocket">http://en.wikipedia.org/wiki/WebSocket</a>). To install the &#8220;ws&#8221; websocket via Terminal, enter<strong> $ npm install ws</strong></p>
<p>- Once everything is installed, open Spacebrew by going here:<br />
<a href="http://labatrockwell.github.io/spacebrew/admin/admin.html?server=sandbox.spacebrew.cc">http://labatrockwell.github.io/spacebrew/admin/admin.html?server=sandbox.spacebrew.cc</a><br />
I had trouble getting the file to run until Spacebrew was open</p>
<p>- Run the example in Terminal by entering: $ node app.js</p>
<p>- You should see your &#8220;publisher&#8221; appear in the Spacebrew window. I changed the name of my publisher to &#8220;It Works!&#8221; by opening the app.js file in TextWrangler and changing:<br />
<strong>var name</strong> = &#8220;It works!&#8221;<br />
<strong>var description</strong> = &#8220;Yuliya&#8217;s Node test!&#8221;;</p>
<p><a href="http://itp.nyu.edu/~yp541/blog/wp-content/uploads/2013/04/Screen-Shot-2013-04-09-at-7.41.44-AM.png"><img class="aligncenter size-large wp-image-480" alt="Screen Shot 2013-04-09 at 7.41.44 AM" src="http://itp.nyu.edu/~yp541/blog/wp-content/uploads/2013/04/Screen-Shot-2013-04-09-at-7.41.44-AM-1024x602.png" width="584" height="343" /></a></p>
<p>P.S. Thank you Andy Sigler for helping figure this out!</p>
]]></content:encoded>
			<wfw:commentRss>http://itp.nyu.edu/~yp541/blog/node-js-express-spacebrew/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rubberband Plants</title>
		<link>http://itp.nyu.edu/~yp541/blog/rubberband-plants/</link>
		<comments>http://itp.nyu.edu/~yp541/blog/rubberband-plants/#comments</comments>
		<pubDate>Mon, 18 Mar 2013 16:47:44 +0000</pubDate>
		<dc:creator>yp541</dc:creator>
				<category><![CDATA[FAVORITES]]></category>
		<category><![CDATA[Processing (ICM)]]></category>

		<guid isPermaLink="false">http://itp.nyu.edu/~yp541/blog/?p=447</guid>
		<description><![CDATA[This was an exercise in creating a bouncing effect. Grab the heads of the plants, drag them around the stage, let go and watch the bounce! The source code can be downloaded from Github: https://github.com/yparshina/ITP_1st_semester/tree/master/rubberband_plants]]></description>
				<content:encoded><![CDATA[<p>This was an exercise in creating a bouncing effect. Grab the heads of the plants, drag them around the stage, let go and watch the bounce! The source code can be downloaded from Github:<br />
<a href="https://github.com/yparshina/ITP_1st_semester/tree/master/rubberband_plants">https://github.com/yparshina/ITP_1st_semester/tree/master/rubberband_plants</a><br />
<br />
<code><iframe src="http://player.vimeo.com/video/62077532" height="209" width="500" allowfullscreen="" frameborder="0"></iframe></code></p>
]]></content:encoded>
			<wfw:commentRss>http://itp.nyu.edu/~yp541/blog/rubberband-plants/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Camera: one on one (step 2)</title>
		<link>http://itp.nyu.edu/~yp541/blog/camera-one-on-one-step-2/</link>
		<comments>http://itp.nyu.edu/~yp541/blog/camera-one-on-one-step-2/#comments</comments>
		<pubDate>Mon, 18 Mar 2013 13:10:49 +0000</pubDate>
		<dc:creator>yp541</dc:creator>
				<category><![CDATA[FAVORITES]]></category>
		<category><![CDATA[Spatial Media]]></category>

		<guid isPermaLink="false">http://itp.nyu.edu/~yp541/blog/?p=400</guid>
		<description><![CDATA[&#8220;Sneaky Critter&#8221; Building upon the last camera interaction (http://itp.nyu.edu/~yp541/blog/camera-one-on-one-step-1), I attached a servo motor to the arduino which drives a paper creature on a wire. When a face is detected, the shy creature hides behind the camera. When no one &#8230; <a href="http://itp.nyu.edu/~yp541/blog/camera-one-on-one-step-2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><strong>&#8220;Sneaky Critter&#8221;</strong></p>
<p>Building upon the last camera interaction (<a title="the last camera interaction" href="http://itp.nyu.edu/~yp541/blog/camera-one-on-one-step-1/">http://itp.nyu.edu/~yp541/blog/camera-one-on-one-step-1</a>), I attached a servo motor to the arduino which drives a paper creature on a wire.</p>
<p><a href="http://itp.nyu.edu/~yp541/blog/wp-content/uploads/2013/02/DSC032221.jpg"><img class="aligncenter size-large wp-image-404" alt="DSC03222" src="http://itp.nyu.edu/~yp541/blog/wp-content/uploads/2013/02/DSC032221-1024x680.jpg" width="584" height="387" /></a></p>
<p><a href="http://itp.nyu.edu/~yp541/blog/wp-content/uploads/2013/02/DSC032231.jpg"><img class="aligncenter size-large wp-image-405" alt="DSC03223" src="http://itp.nyu.edu/~yp541/blog/wp-content/uploads/2013/02/DSC032231-1024x680.jpg" width="584" height="387" /></a></p>
<p><a href="http://itp.nyu.edu/~yp541/blog/wp-content/uploads/2013/02/DSC032241.jpg"><img class="aligncenter size-large wp-image-406" alt="DSC03224" src="http://itp.nyu.edu/~yp541/blog/wp-content/uploads/2013/02/DSC032241-680x1024.jpg" width="584" height="879" /></a></p>
<p>When a face is detected, the shy creature hides behind the camera. When no one is looking, it peaks out.</p>
<p><code><iframe src="http://player.vimeo.com/video/60622931" height="281" width="500" allowfullscreen="" frameborder="0"></iframe></code></p>
]]></content:encoded>
			<wfw:commentRss>http://itp.nyu.edu/~yp541/blog/camera-one-on-one-step-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Camera: one on one (step 1)</title>
		<link>http://itp.nyu.edu/~yp541/blog/camera-one-on-one-step-1/</link>
		<comments>http://itp.nyu.edu/~yp541/blog/camera-one-on-one-step-1/#comments</comments>
		<pubDate>Mon, 18 Mar 2013 13:00:31 +0000</pubDate>
		<dc:creator>yp541</dc:creator>
				<category><![CDATA[Spatial Media]]></category>

		<guid isPermaLink="false">http://itp.nyu.edu/~yp541/blog/?p=387</guid>
		<description><![CDATA[To get a better handle on all the tools we covered in class, I combined TSPS facial tracking, oF, Spacebrew, Processing and Arduino (sounds messier than it actually was). I combined the TSPS &#62; oF and the oF &#62; Spacebrew &#8230; <a href="http://itp.nyu.edu/~yp541/blog/camera-one-on-one-step-1/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><a href="http://itp.nyu.edu/~yp541/blog/wp-content/uploads/2013/02/step1_setup.jpg"><img class="aligncenter size-large wp-image-389" alt="step1_setup" src="http://itp.nyu.edu/~yp541/blog/wp-content/uploads/2013/02/step1_setup-1024x768.jpg" width="584" height="438" /></a></p>
<p>To get a better handle on all the tools we covered in class, I combined TSPS facial tracking, oF, Spacebrew, Processing and Arduino (sounds messier than it actually was).</p>
<p>I combined the TSPS &gt; oF and the oF &gt; Spacebrew code we covered in class into an oF file that receives face recognition information from TSPS and sends a Boolean via Spacebrew. A processing sketch receives the Boolean from Spacebrew and passes the info to Arduino. For a simple proof of concept, the Arduino turned on a Red LED when a face was spotted and a Green LED if &#8220;the coast was clear&#8221;.</p>
<p>I could have communicated with TSPS via Processing directly, but the oF &gt; Spacebrew &gt; Processing &gt; Arduino connection can be useful in the future, when I wish to connect oF Open CV or other powerful oF tools, with an Arduino.</p>
<p>Notice the LED (on the breadboard in the bottom of the video). The red one turns on when a face is visible to the camera. The green one turns on when the face is blocked.</p>
<p><code><iframe src="http://player.vimeo.com/video/60498238" height="375" width="500" allowfullscreen="" frameborder="0"></iframe></code></p>
]]></content:encoded>
			<wfw:commentRss>http://itp.nyu.edu/~yp541/blog/camera-one-on-one-step-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shadow Puppet Play</title>
		<link>http://itp.nyu.edu/~yp541/blog/shadow-puppet-play/</link>
		<comments>http://itp.nyu.edu/~yp541/blog/shadow-puppet-play/#comments</comments>
		<pubDate>Mon, 18 Mar 2013 12:45:56 +0000</pubDate>
		<dc:creator>yp541</dc:creator>
				<category><![CDATA[FAVORITES]]></category>
		<category><![CDATA[Processing (ICM)]]></category>

		<guid isPermaLink="false">http://itp.nyu.edu/~yp541/yparshina/?p=173</guid>
		<description><![CDATA[I am building a tool to teach kids (and eager adults) about the basics of storytelling. A participant will be able to combine characters, simple actions and environmental elements on a simple timeline and watch them play out in real &#8230; <a href="http://itp.nyu.edu/~yp541/blog/shadow-puppet-play/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>I am building a tool to teach kids (and eager adults) about the basics of storytelling. A participant will be able to combine characters, simple actions and environmental elements on a simple timeline and watch them play out in real time.</p>
<p style="text-align: center;"><a href="http://itp.nyu.edu/~yp541/blog/wp-content/uploads/2012/11/shad_int_2.jpg"><img class="aligncenter  wp-image-176" title="shad_int_2" alt="" src="http://itp.nyu.edu/~yp541/blog/wp-content/uploads/2012/11/shad_int_2.jpg" /></a></p>
<p>The experience will be rich with texture and lighting, giving the experience a homemade, old-time feel.</p>
<p>Below is the documentation of the first-stage build, that demonstrates the look and feel of the environment and characters.</p>
<p>You can create the characters by pressing buttons, lift them into the air and dangle their legs. The Processing source code can be downloaded from Github: <a href="The Processing source code can be downloaded from Github: https://github.com/yparshina/ITP_1st_semester/tree/master/shadow_puppets">https://github.com/yparshina/ITP_1st_semester/tree/master/shadow_puppets</a></p>
<p><iframe style="font-style: normal;" src="http://player.vimeo.com/video/62083715" height="371" width="500" allowfullscreen="" frameborder="0"></iframe></p>
<p><strong>NEXT STEPS:</strong></p>
<p>1) Flush out the user experience and user interface roughly outlined in the sketch above:</p>
<ul>
<li>The user should be able to tell a story on the timeline but still have the ability to interact with the characters on stage. How will this work?</li>
<li>What is the most intuitive timeline interaction?</li>
<li>What are the best actions? They have to be simple enough for the characters to act out programmatically in two-weeks of build time, clear enough for the user to understand from a symbol and fun enough to make an engaging play (I&#8217;m half-way there).</li>
</ul>
<div>2) Implement the &#8220;XY coordinates &amp; color combo&#8221; technique for better mouse selection of irregular shapes (trees, deer horns, etc).</div>
<div>3) Swap Processing generated bodies of characters for irregular PShapes</div>
<div>4) Complete environments</div>
<div>5) Build out the UI</div>
<div>6) Create a timeline</div>
<div>7) Program actions</div>
<div>8) Polish character behavior (both action and user driven)</div>
<div>9) Add one more character</div>
<div>10) Polish character motion (dangly legs should dangle better, add twitch ears and tails, add wings to the bird)</div>
<div></div>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://itp.nyu.edu/~yp541/blog/shadow-puppet-play/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fragmentations</title>
		<link>http://itp.nyu.edu/~yp541/blog/fragmentations/</link>
		<comments>http://itp.nyu.edu/~yp541/blog/fragmentations/#comments</comments>
		<pubDate>Mon, 18 Mar 2013 12:30:09 +0000</pubDate>
		<dc:creator>yp541</dc:creator>
				<category><![CDATA[FAVORITES]]></category>
		<category><![CDATA[INDEPENDENT WORK]]></category>
		<category><![CDATA[Processing (ICM)]]></category>

		<guid isPermaLink="false">http://itp.nyu.edu/~yp541/blog/?p=297</guid>
		<description><![CDATA[This is an edit of some early tests for the Fragmentations project. In my animation work, I often use After Effects to distort reality until it is broken down into lights and patterns. I decided to take this technique a &#8230; <a href="http://itp.nyu.edu/~yp541/blog/fragmentations/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><code><iframe src="http://player.vimeo.com/video/54904201" height="281" width="500" allowfullscreen="" frameborder="0"></iframe></code></p>
<p>This is an edit of some early tests for the Fragmentations project.</p>
<p>In my animation work, I often use After Effects to distort reality until it is broken down into lights and patterns. I decided to take this technique a step further and bring it into real-time.</p>
<p>In Fragmentations, I create Processing sketches that break down a live web-cam feed into abstract representations. I then film the result through distorting mediums such as glass vessels filled with various translucent liquids. The final product is a cycle of reality, transformed by technology, transformed by reality.</p>
<p>Below are video documentations of the actual Processing sketches. The files can be downloaded from Github: <a href="https://github.com/yparshina/fragmentations">https://github.com/yparshina/fragmentations</a><br />
&nbsp;<br />
<code><br />
<iframe src="http://player.vimeo.com/video/62090836" width="500" height="393" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe><br />
&nbsp;<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://itp.nyu.edu/~yp541/blog/fragmentations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Where Animals Live</title>
		<link>http://itp.nyu.edu/~yp541/blog/where-animals-live/</link>
		<comments>http://itp.nyu.edu/~yp541/blog/where-animals-live/#comments</comments>
		<pubDate>Mon, 18 Mar 2013 11:30:23 +0000</pubDate>
		<dc:creator>yp541</dc:creator>
				<category><![CDATA[Cabinets of Wonder]]></category>
		<category><![CDATA[Cog Sci & Ed Tech]]></category>
		<category><![CDATA[FAVORITES]]></category>

		<guid isPermaLink="false">http://itp.nyu.edu/~yp541/yparshina/?p=183</guid>
		<description><![CDATA[I am working on a portable exhibit that teaches kids ages 4 to 7 about the places and environments animals live in through a physical exploration of the world map. The activity takes place on a 20&#8242; x 12&#8242; soft &#8230; <a href="http://itp.nyu.edu/~yp541/blog/where-animals-live/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://itp.nyu.edu/~yp541/blog/wp-content/uploads/2012/12/bio_1_small.jpg"><img class="aligncenter  wp-image-184" title="bio_1_small" alt="" src="http://itp.nyu.edu/~yp541/blog/wp-content/uploads/2012/12/bio_1_small.jpg" /></a></p>
<p>I am working on a portable exhibit that teaches kids ages 4 to 7 about the places and environments animals live in through a physical exploration of the world map.</p>
<p style="text-align: center;"><a href="http://itp.nyu.edu/~yp541/blog/wp-content/uploads/2012/12/bio_2_small.jpg"><img class="aligncenter  wp-image-185" title="bio_2_small" alt="" src="http://itp.nyu.edu/~yp541/blog/wp-content/uploads/2012/12/bio_2_small.jpg" /></a></p>
<p>The activity takes place on a 20&#8242; x 12&#8242; soft mat (similar to the padded mats in a school gym) with the world map depicted on it.  It can be set up on any wide, flat surface such as a park, a school yard or a gym. Participants choose from a wide selection of familiar animals and use clues to place them in the correct spot on the map.</p>
<p style="text-align: center;"><a href="http://itp.nyu.edu/~yp541/blog/wp-content/uploads/2012/12/bio_3_small.jpg"><img class="aligncenter  wp-image-186" title="bio_3_small" alt="" src="http://itp.nyu.edu/~yp541/blog/wp-content/uploads/2012/12/bio_3_small.jpg" /></a></p>
<p>The experience begins at the Biodiversity Tent, where a docent familiarizes the participants with the exhibit and supplies them with animals. The Tent also serves as an educational corner, with additional recourses and activities.</p>
<p style="text-align: center;"><a href="http://itp.nyu.edu/~yp541/blog/wp-content/uploads/2012/12/bio_4_small.jpg"><img class="aligncenter  wp-image-187" title="bio_4_small" alt="" src="http://itp.nyu.edu/~yp541/blog/wp-content/uploads/2012/12/bio_4_small.jpg" /></a></p>
<p>On the map, each continent has a different color and is marked with the pattern of various environments.</p>
<p style="text-align: center;"><a href="http://itp.nyu.edu/~yp541/blog/wp-content/uploads/2012/12/bio_5_small.jpg"><img class="aligncenter  wp-image-188" title="bio_5_small" alt="" src="http://itp.nyu.edu/~yp541/blog/wp-content/uploads/2012/12/bio_5_small.jpg" /></a></p>
<p style="text-align: center;"><a href="http://itp.nyu.edu/~yp541/blog/wp-content/uploads/2012/12/bio_5a_small.jpg"><img class="aligncenter  wp-image-189" title="bio_5a_small" alt="" src="http://itp.nyu.edu/~yp541/blog/wp-content/uploads/2012/12/bio_5a_small.jpg" /></a></p>
<p style="text-align: center;"><a href="http://itp.nyu.edu/~yp541/blog/wp-content/uploads/2012/12/bio_5b_small.jpg"><img class="aligncenter  wp-image-190" title="bio_5b_small" alt="" src="http://itp.nyu.edu/~yp541/blog/wp-content/uploads/2012/12/bio_5b_small.jpg" /></a></p>
<p>The creatures are flat, brightly-colored shapes made of wood. One side depicts the animal while the other gives clues about their location on the map with continent color and environment pattern.</p>
<p style="text-align: center;"><em><a href="http://itp.nyu.edu/~yp541/blog/wp-content/uploads/2012/12/bio_7_small1.jpg"><img class="aligncenter  wp-image-192" title="bio_7_small" alt="" src="http://itp.nyu.edu/~yp541/blog/wp-content/uploads/2012/12/bio_7_small1.jpg" /></a></em>When an animal is placed in the right spot on the map, the anima&#8217;s sound is played on a speaker embedded in the mat and the animal vibrates in the kid&#8217;s hand.</p>
<p>A wrong placement triggers no response in hope that the sound and tactile feedback experienced by the successful explorers will encourage the rest to reach their goal instead of settling for random noise making.</p>
<p style="text-align: center;"><a href="http://itp.nyu.edu/~yp541/blog/wp-content/uploads/2012/12/bio_8_small.jpg"><img class="aligncenter  wp-image-193" title="bio_8_small" alt="" src="http://itp.nyu.edu/~yp541/blog/wp-content/uploads/2012/12/bio_8_small.jpg" /></a></p>
<p>Additional exploration incentives include a checklist of successfully placed animals that can be exchanged at the Biodiversity Tent for a badge (such as &#8220;most mammals&#8221; or &#8220;greatest continent explorer&#8221; or &#8220;Savanna Master&#8221; etc.) and a timed group activity or team competition based on specific animal assignments.</p>
<p>&#8220;Where Animals Live&#8221; is a modular, portable exhibit that can support various biodiversity curriculi.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://itp.nyu.edu/~yp541/blog/where-animals-live/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bubbles Final Presentation</title>
		<link>http://itp.nyu.edu/~yp541/blog/bubbles-final-presentation/</link>
		<comments>http://itp.nyu.edu/~yp541/blog/bubbles-final-presentation/#comments</comments>
		<pubDate>Sat, 16 Mar 2013 15:06:45 +0000</pubDate>
		<dc:creator>yp541</dc:creator>
				<category><![CDATA[Physical Computing]]></category>

		<guid isPermaLink="false">http://itp.nyu.edu/~yp541/blog/?p=439</guid>
		<description><![CDATA[In this presentation, our team discusses the creation process of the fuzzy responsive robot named Bubbles. Take a look at earlier posts for a fuller description of the project and technical breakdowns. You can view a brief interaction with the &#8230; <a href="http://itp.nyu.edu/~yp541/blog/bubbles-final-presentation/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>In this presentation, our team discusses the creation process of the fuzzy responsive robot named Bubbles. Take a look at earlier posts for a fuller description of the project and technical breakdowns.</p>
<p><code><iframe src="http://www.youtube.com/embed/D3YfKUyF0rI" height="315" width="560" allowfullscreen="" frameborder="0"></iframe></code></p>
<p>You can view a brief interaction with the creature! The orange tentacles are a bit under the weather but the sound is working!<br />
<iframe src="http://www.youtube.com/embed/ED63YR43_10" height="315" width="560" allowfullscreen="" frameborder="0"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://itp.nyu.edu/~yp541/blog/bubbles-final-presentation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
