<?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>its me, hirumi</title>
	<atom:link href="http://itsmehirumi.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://itsmehirumi.com</link>
	<description>Interaction Designer</description>
	<lastBuildDate>Thu, 31 Jan 2013 16:46:31 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5</generator>
		<item>
		<title>The Harry Potter Pumpkin</title>
		<link>http://itsmehirumi.com/?p=709&#038;utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=the-harry-potter-pumpkin</link>
		<comments>http://itsmehirumi.com/?p=709#comments</comments>
		<pubDate>Fri, 11 Nov 2011 00:23:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Pcomp]]></category>

		<guid isPermaLink="false">http://itsmehirumi.com/?p=709</guid>
		<description><![CDATA[This was an assignment in my physical computation class. We were to create some sort of enclosure for a Halloween jack o lantern. The Harry Potter Pumpkin is a social pumpkin that interacts with you based on proximity. From far away, he is sad and sits quietly with red eyes. If you move a little closer, [...]]]></description>
				<content:encoded><![CDATA[<p>This was an assignment in my physical computation class. We were to create some sort of enclosure for a Halloween jack o lantern.</p>
<p><object width="398" height="224"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=31632734&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=00adef&amp;fullscreen=1&amp;autoplay=1&amp;loop=0" /><embed type="application/x-shockwave-flash" width="398" height="224" src="http://vimeo.com/moogaloop.swf?clip_id=31632734&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=00adef&amp;fullscreen=1&amp;autoplay=0&amp;loop=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>The <em>Harry Potter Pumpkin </em>is a social pumpkin that interacts with you based on proximity. From far away, he is sad and sits quietly with red eyes. If you move a little closer, his eyes change to green and he turns on the light from his magic wand. When you are REALLY close, his eyes change to blue, his wand lights up completely, and he hums the Harry Potter theme.</p>
<p><a href="http://makingtoys.files.wordpress.com/2011/11/img_0670.jpg"><img title="IMG_0670" src="http://makingtoys.files.wordpress.com/2011/11/img_0670-e1320457480429.jpg?w=300" alt="" width="300" height="225" /><br />
</a><em>Final Pumpkin</em></p>
<p>Parts used:<br />
LEDs<br />
RGB LEDs<br />
8 Ohm mini speaker<br />
mini photocell</p>
<p><a href="http://makingtoys.files.wordpress.com/2011/11/img_0656.jpg"><img title="IMG_0656" src="http://makingtoys.files.wordpress.com/2011/11/img_0656.jpg?w=300" alt="" width="300" height="225" /></a></p>
<p><a href="http://makingtoys.files.wordpress.com/2011/11/img_0656.jpg"></a><a href="http://makingtoys.files.wordpress.com/2011/11/img_0657.jpg"><img title="IMG_0657" src="http://makingtoys.files.wordpress.com/2011/11/img_0657.jpg?w=300" alt="" width="300" height="225" /></a></p>
<p>Whats happening:<br />
The photocell values dictate what the other components do. The largest value keeps the RGB LEDs (the eyes) red. The medium range changes the RGBs to green and lights the tip of the wand. The lowest range changes the RGBs to blue, lights up the entire wand, and plays the Harry Potter theme from the speaker. I looked up the sheet music for HP  to compose the tune.<br />
[youtube http://www.youtube.com/watch?v=VE3QXuyaN90]<br />
<em>Testing out the circuit</em></p>
<p>I had to tweak my original concept, which was having the pumpkin shoot different spells the closer you approached it. The Twig sound recorder was <strong>so</strong>difficult to work with. I was able to record spells, but controlling it through the arduino was tough. The sounds kept looping instead of playing one at a time, so I decided to change my concept a bit.</p>
<p>If I could redo this project, I would use the sound shield, which seems to be easier to control with the arduino, so that the pumpkin will actually shoot spells.</p>
<p>CODE:</p>
<div>#include &#8220;pitches.h&#8221;</div>
<div>int analogPin = 4;   //Set value for analog pin input from photocell into arduino</div>
<div>int red = 3;        // If serial reads val &lt;= 700, red will go HIGH</div>
<div>int green = 4;      // If serial reads val &gt;= 701 or val &lt;= 825, green will go HIGH</div>
<div>int blue = 5;       // If serial reads val &gt;= 826, blue will go HIGH</div>
<div>int wand1 = 9;</div>
<div>int wand2 = 10;</div>
<div>int wand3 = 11;</div>
<div>int wand4 = 12;</div>
<div>int wand5 = 13;</div>
<div>int val = 0;         // Store value of pin input (i.e. photocell) for serial to read</div>
<div>int melody[] = {</div>
<div>NOTE_B3, NOTE_E4, NOTE_G4, NOTE_FS4, NOTE_E4, NOTE_B4, NOTE_A4, NOTE_FS4};</div>
<div>// note durations: 4 = quarter note, 8 = eighth note, etc.:</div>
<div>int noteDurations[] = {</div>
<div>4, 3, 8, 4, 2, 4, 1.5, 1.5 };</div>
<div>void setup(){</div>
<div>Serial.begin(9600);</div>
<div>pinMode(red, OUTPUT);</div>
<div>pinMode(green, OUTPUT);</div>
<div>pinMode(blue, OUTPUT);</div>
<div>pinMode(wand1, OUTPUT);</div>
<div>pinMode(wand2, OUTPUT);</div>
<div>pinMode(wand3, OUTPUT);</div>
<div>pinMode(wand4, OUTPUT);</div>
<div>pinMode(wand5, OUTPUT);</div>
<div>}</div>
<div>void loop(){</div>
<div>val = analogRead(analogPin);  // Read the value (amount of light) from photocell</div>
<div>Serial.println(val);           // Print out the value to the serial port</div>
<div>if(val &lt;= 749){</div>
<div>digitalWrite(blue, HIGH);</div>
<div>digitalWrite(wand1, LOW);</div>
<div>digitalWrite(wand4, HIGH);</div>
<div>delay(250);</div>
<div>digitalWrite(wand3, HIGH);</div>
<div>delay(250);</div>
<div>digitalWrite(wand2, HIGH);</div>
<div>delay(250);</div>
<div>digitalWrite(wand1, HIGH);</div>
<div>lumos();</div>
<div>delay(2000);</div>
<div>}else{</div>
<div>digitalWrite(blue, LOW);</div>
<div>digitalWrite(wand1, LOW);</div>
<div>digitalWrite(wand2, LOW);</div>
<div>digitalWrite(wand3, LOW);</div>
<div>digitalWrite(wand4, LOW);</div>
<div>}</div>
<div>if(val &gt;= 750 || val &lt;= 799){</div>
<div>digitalWrite(green, HIGH);</div>
<div>digitalWrite(wand1, HIGH);</div>
<div>}else{</div>
<div>digitalWrite(green, LOW);</div>
<div>}</div>
<div>if(val &gt;= 800){</div>
<div>digitalWrite(red, HIGH);</div>
<div>digitalWrite(wand1, LOW);</div>
<div>}else{</div>
<div>digitalWrite(red, LOW);</div>
<div>}</div>
<div>}</div>
<div>void lumos (){</div>
<div>for (int thisNote = 0; thisNote &lt; 8; thisNote++) {</div>
<div>// to calculate the note duration, take one second</div>
<div>// divided by the note type.</div>
<div>//e.g. quarter note = 1000 / 4, eighth note = 1000/8, etc.</div>
<div>int noteDuration = 1000/noteDurations[thisNote];</div>
<div>tone(8, melody[thisNote],noteDuration);</div>
<div>// to distinguish the notes, set a minimum time between them.</div>
<div>// the note&#8217;s duration + 30% seems to work well:</div>
<div>int pauseBetweenNotes = noteDuration * 1.30;</div>
<div>delay(pauseBetweenNotes);</div>
<div>// stop the tone playing:</div>
<div>noTone(8);</div>
<div>}</div>
<div>}</div>
<div>PITCHES (to include in new tab)</div>
<div>
<div>#define NOTE_B0  31</div>
<div>#define NOTE_C1  33</div>
<div>#define NOTE_CS1 35</div>
<div>#define NOTE_D1  37</div>
<div>#define NOTE_DS1 39</div>
<div>#define NOTE_E1  41</div>
<div>#define NOTE_F1  44</div>
<div>#define NOTE_FS1 46</div>
<div>#define NOTE_G1  49</div>
<div>#define NOTE_GS1 52</div>
<div>#define NOTE_A1  55</div>
<div>#define NOTE_AS1 58</div>
<div>#define NOTE_B1  62</div>
<div>#define NOTE_C2  65</div>
<div>#define NOTE_CS2 69</div>
<div>#define NOTE_D2  73</div>
<div>#define NOTE_DS2 78</div>
<div>#define NOTE_E2  82</div>
<div>#define NOTE_F2  87</div>
<div>#define NOTE_FS2 93</div>
<div>#define NOTE_G2  98</div>
<div>#define NOTE_GS2 104</div>
<div>#define NOTE_A2  110</div>
<div>#define NOTE_AS2 117</div>
<div>#define NOTE_B2  123</div>
<div>#define NOTE_C3  131</div>
<div>#define NOTE_CS3 139</div>
<div>#define NOTE_D3  147</div>
<div>#define NOTE_DS3 156</div>
<div>#define NOTE_E3  165</div>
<div>#define NOTE_F3  175</div>
<div>#define NOTE_FS3 185</div>
<div>#define NOTE_G3  196</div>
<div>#define NOTE_GS3 208</div>
<div>#define NOTE_A3  220</div>
<div>#define NOTE_AS3 233</div>
<div>#define NOTE_B3  247</div>
<div>#define NOTE_C4  262</div>
<div>#define NOTE_CS4 277</div>
<div>#define NOTE_D4  294</div>
<div>#define NOTE_DS4 311</div>
<div>#define NOTE_E4  330</div>
<div>#define NOTE_F4  349</div>
<div>#define NOTE_FS4 370</div>
<div>#define NOTE_G4  392</div>
<div>#define NOTE_GS4 415</div>
<div>#define NOTE_A4  440</div>
<div>#define NOTE_AS4 466</div>
<div>#define NOTE_B4  494</div>
<div>#define NOTE_C5  523</div>
<div>#define NOTE_CS5 554</div>
<div>#define NOTE_D5  587</div>
<div>#define NOTE_DS5 622</div>
<div>#define NOTE_E5  659</div>
<div>#define NOTE_F5  698</div>
<div>#define NOTE_FS5 740</div>
<div>#define NOTE_G5  784</div>
<div>#define NOTE_GS5 831</div>
<div>#define NOTE_A5  880</div>
<div>#define NOTE_AS5 932</div>
<div>#define NOTE_B5  988</div>
<div>#define NOTE_C6  1047</div>
<div>#define NOTE_CS6 1109</div>
<div>#define NOTE_D6  1175</div>
<div>#define NOTE_DS6 1245</div>
<div>#define NOTE_E6  1319</div>
<div>#define NOTE_F6  1397</div>
<div>#define NOTE_FS6 1480</div>
<div>#define NOTE_G6  1568</div>
<div>#define NOTE_GS6 1661</div>
<div>#define NOTE_A6  1760</div>
<div>#define NOTE_AS6 1865</div>
<div>#define NOTE_B6  1976</div>
<div>#define NOTE_C7  2093</div>
<div>#define NOTE_CS7 2217</div>
<div>#define NOTE_D7  2349</div>
<div>#define NOTE_DS7 2489</div>
<div>#define NOTE_E7  2637</div>
<div>#define NOTE_F7  2794</div>
<div>#define NOTE_FS7 2960</div>
<div>#define NOTE_G7  3136</div>
<div>#define NOTE_GS7 3322</div>
<div>#define NOTE_A7  3520</div>
<div>#define NOTE_AS7 3729</div>
<div>#define NOTE_B7  3951</div>
<div>#define NOTE_C8  4186</div>
<div>#define NOTE_CS8 4435</div>
<div>#define NOTE_D8  4699</div>
<div>#define NOTE_DS8 4978</div>
</div>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://itsmehirumi.com/?feed=rss2&#038;p=709</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>#OccupyWallStreet Reaction</title>
		<link>http://itsmehirumi.com/?p=689&#038;utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=occupywallstreet-reaction</link>
		<comments>http://itsmehirumi.com/?p=689#comments</comments>
		<pubDate>Wed, 05 Oct 2011 15:56:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[#occupytogether]]></category>
		<category><![CDATA[#occupywallstreet]]></category>
		<category><![CDATA[new school]]></category>
		<category><![CDATA[new york]]></category>
		<category><![CDATA[nyc]]></category>
		<category><![CDATA[obama]]></category>
		<category><![CDATA[occupy]]></category>
		<category><![CDATA[parsons]]></category>
		<category><![CDATA[wall street]]></category>

		<guid isPermaLink="false">http://itsmehirumi.com/?p=689</guid>
		<description><![CDATA[When this movement began, I have to admit I didn&#8217;t know much about it. From the outside looking in, I went along with how the general public and viewed portrayed the movement: a disorganized group of young people without a cause. As soon as I stepped into the square, I felt completely absorbed into a [...]]]></description>
				<content:encoded><![CDATA[<div>
<p>When this movement began, I have to admit I didn&#8217;t know much about it. From the outside looking in, I went along with how the general public and viewed portrayed the movement: a disorganized group of young people without a cause.</p>
<p>As soon as I stepped into the square, I felt completely absorbed into a new community that was self-sufficient and encompassed an entirely different mentality than the usual hustle and bustle I normally feel throughout NYC.</p>
<div>
<dl id="attachment_268">
<dt><a href="http://www.melaniecrean.com/betterspeech/wp-content/uploads/2011/10/site.jpg"><img title="OccupyWallStreet Site" src="http://www.melaniecrean.com/betterspeech/wp-content/uploads/2011/10/site-300x225.jpg" alt="" width="300" height="225" /></a></dt>
<dd>OccupyWallStreet Site</dd>
</dl>
</div>
<p>&nbsp;</p>
<p>The energy and vibe of the square promoted one of inclusion, excitement, and sincerity. It&#8217;s probably the best definition and example of an open source community.  There&#8217;s an info center for those that are curious about the happenings of the day, an arts and crafts section to visualize and vocalize your beliefs. Holy crap, there is even a media center and library!</p>
<p>&nbsp;</p>
<div>
<dl id="attachment_269">
<dt><a href="http://www.melaniecrean.com/betterspeech/wp-content/uploads/2011/10/photo-1.jpg"><img title="Info Center" src="http://www.melaniecrean.com/betterspeech/wp-content/uploads/2011/10/photo-1-300x225.jpg" alt="" width="300" height="225" /></a></dt>
<dd>Media Center</dd>
</dl>
</div>
<p>&nbsp;</p>
<div>
<dl id="attachment_270">
<dt><a href="http://www.melaniecrean.com/betterspeech/wp-content/uploads/2011/10/suggestions.jpg"><img title="Suggestion Box" src="http://www.melaniecrean.com/betterspeech/wp-content/uploads/2011/10/suggestions-300x225.jpg" alt="" width="300" height="225" /></a></dt>
<dd>Suggestion Box</dd>
</dl>
</div>
<div>
<dl id="attachment_272">
<dt><a href="http://www.melaniecrean.com/betterspeech/wp-content/uploads/2011/10/map.jpg"><img title="Sites of OccupyTogether" src="http://www.melaniecrean.com/betterspeech/wp-content/uploads/2011/10/map-300x225.jpg" alt="" width="300" height="225" /></a></dt>
<dd>Sites of OccupyTogether</dd>
</dl>
</div>
<div>
<dl id="attachment_273">
<dt><a href="http://www.melaniecrean.com/betterspeech/wp-content/uploads/2011/10/signs.jpg"><img title="signs" src="http://www.melaniecrean.com/betterspeech/wp-content/uploads/2011/10/signs-300x225.jpg" alt="" width="300" height="225" /></a></dt>
<dd>Signs</dd>
</dl>
</div>
<p>&nbsp;</p>
<p>There&#8217;s two things I noticed immediately:</p>
<p>1. Information and staff was more kind and more readily accessible than at the place of higher education that I pay thousands of dollars to, semesterly<br />
2 The food available is more plentiful and nutritious than my fridge at home.</p>
<p>This doesn&#8217;t seem so disorganized to me.</p>
<p>I was trying to figure out why these feelings of inclusiveness and general solidarity felt so nostalgic&#8230; until it finally hit me. This felt like Obama&#8217;s inauguration. I had acquired tickets to the event and drove to DC with friends to experience the monumental event and that <em>feeling</em>was the same. I had never seen such a vastly diverse quantity of people in one place for the same cause. The gentlest bump elicited an &#8220;excuse me,&#8221; smiles were plentiful, and people were so willing to help each other. The environment felt comfortable and familiar as we united behind the campaign of &#8220;Yes we can.&#8221;</p>
<p>&nbsp;</p>
<div>
<dl id="attachment_271">
<dt><a href="http://www.melaniecrean.com/betterspeech/wp-content/uploads/2011/10/Pic-119.jpg"><img title="Obama's Inauguration " src="http://www.melaniecrean.com/betterspeech/wp-content/uploads/2011/10/Pic-119-300x225.jpg" alt="" width="300" height="225" /></a></dt>
<dd>Obama&#8217;s Inauguration</dd>
</dl>
</div>
<p>&nbsp;</p>
<p>Obama symbolized hope and change and we rallied behind him in order to make these things happen. He didn&#8217;t get himself elected, it was a large group of passionate, inspired people that did. Unfortunately, since Obama took office, we transitioned from &#8220;yes we can&#8221; to &#8220;yes you [obama] can.&#8221; We relied on him to fix everything, and to fix everything quickly.</p>
<p>..which brings us to now. A different type of movement with the same ideals, making certain that our voices are heard so that SOMETHING changes. I can only hope that  a president who was so supported and moved by a passionate group of people that believed in him will return the favor.</p>
<p>As I watch my student loans accumulate, and my friends with masters degrees submit to low paying jobs and internships for lack of better opportunity, I can&#8217;t help but to wonder if my pursuit of happiness will end in the guest bedroom of my parents&#8217; house.</p>
<p>&nbsp;</p>
</div>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://itsmehirumi.com/?feed=rss2&#038;p=689</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fractivism</title>
		<link>http://itsmehirumi.com/?p=582&#038;utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=fractivismproject</link>
		<comments>http://itsmehirumi.com/?p=582#comments</comments>
		<pubDate>Mon, 16 May 2011 22:45:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://itsmehirumi.com/?p=582</guid>
		<description><![CDATA[4.13.11 After watching a screening of Gasland at school, I was inspired to change gears for my final project in Major Studio to do something to combat hydraulic fracturing in New York&#8217;s watershed. Hydraulic fracturing is a volatile and a pretty much unregulated way of extracting natural gas. The trailer for Gasland above, and this [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://itsmehirumi.com/wp-content/uploads/2011/08/fractivism8.jpg"><img class="alignnone size-medium wp-image-586" title="fractivism8" src="http://itsmehirumi.com/wp-content/uploads/2011/08/fractivism8-300x231.jpg" alt="" width="300" height="231" /></a></p>
<p><strong>4.13.11</strong><br />
After watching a screening of <em>Gasland</em> at school, I was inspired to change gears for my final project in Major Studio to do something to combat hydraulic fracturing in New York&#8217;s watershed.</p>
<p><object width="560" height="345"><param name="movie" value="http://www.youtube.com/v/z0fAsFQsFAs?version=3&amp;hl=en_US" /><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><embed type="application/x-shockwave-flash" width="560" height="345" src="http://www.youtube.com/v/z0fAsFQsFAs?version=3&amp;hl=en_US" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Hydraulic fracturing is a volatile and a pretty much unregulated way of extracting natural gas. The trailer for Gasland above, and this image explains it pretty well.</p>
<p><a href="http://itsmehirumi.com/wp-content/uploads/2011/08/3.jpg"><img class="alignnone size-medium wp-image-587" title="3" src="http://itsmehirumi.com/wp-content/uploads/2011/08/3-300x231.jpg" alt="" width="300" height="231" /></a></p>
<p><strong>4.17</strong><br />
After my initial presentation to the class, Melanie resonated really strongly with using maps to tell a story. I still believe that face to face interaction is the best way to drive the point home, so here is the next iteration of my process:</p>
<div id="__ss_8967624" style="width: 425px;"><strong style="display: block; margin: 12px 0 4px;"><a title="Fractivism" href="http://www.slideshare.net/jurbonefracker/fractivism" target="_blank">Fractivism</a></strong>&nbsp;</p>
<div style="padding: 5px 0 12px;">View more <a href="http://www.slideshare.net/" target="_blank">presentations</a> from <a href="http://www.slideshare.net/jurbonefracker" target="_blank">jurbonefracker</a></div>
</div>
<p>I garnered a lot of interest from classmates that wanted to get involved. Kenny wanted to partner up, and Heather &amp; Graeme from Victoria&#8217;s nanotech class also were super interested. From there we decided to split up. Graeme &amp; Heather would be working primarily on the public intervention part, Kenny would spearhead figuring out the google map and I would be split in both parts. We also got started in the social media realm by creating a facebook group and twitter account. We followed both hydraulic fracturing supporters and those against it.</p>
<p><strong>4.22</strong><br />
I attended the Sustainability Awards to get a better feel for what the environmental activist community was doing to fight this legislation. It was a little extreme, which made me realize that I would need a different tactic to pull in the rest of the population that would be interested if they knew more about the issue. Kenny, Heather &amp; I headed to a rally held by NYU students against fracking. We held interviews and filmed the scene. Heather had our logo and social media information printed on business cards and we handed them out to interested parties.</p>
<p>Kenny &amp; I presented the following presentation to our guest crit:</p>
<div id="__ss_8968092" style="width: 425px;"><strong style="display: block; margin: 12px 0 4px;"><a title="Frackpresentation3" href="http://www.slideshare.net/jurbonefracker/frackpresentation3" target="_blank">Frackpresentation3</a></strong>&nbsp;</p>
<div style="padding: 5px 0 12px;">View more <a href="http://www.slideshare.net/" target="_blank">presentations</a> from <a href="http://www.slideshare.net/jurbonefracker" target="_blank">jurbonefracker</a></div>
</div>
<p>It didn&#8217;t go over as well as we had liked. Part of it was that we were a bit flustered throughout our presentation. We had focused so much on the time we&#8217;d spent on the rally and our social media efforts, and not so much on the map we were working on. Our major critique was that it was too much activism and not enough design + technology. At this point, we realized we were trying to do too much, and we should drop the public intervention part of our project and really start iterating our map.</p>
<p><strong>4.27</strong><br />
We had initially wanted people to contribute stories and we would curate and edit what we could find, but after our crit, we were inspired to look more at pulling in feeds from social media. When reflecting on our own experiences with this project, we realized that we had relied a lot upon twitter and google alerts in finding the latest trends and information about current events.</p>
<p>Here are some layouts I worked on for our map:</p>
<div id="__ss_8968102" style="width: 425px;"><strong style="display: block; margin: 12px 0 4px;"><a title="Fractivismwireframes" href="http://www.slideshare.net/jurbonefracker/fractivismwireframes" target="_blank">Fractivismwireframes</a></strong>&nbsp;</p>
<div style="padding: 5px 0 12px;">View more <a href="http://www.slideshare.net/" target="_blank">presentations</a> from <a href="http://www.slideshare.net/jurbonefracker" target="_blank">jurbonefracker</a></div>
</div>
<p><strong><br />
5.6.11</strong><br />
Even with honing in on just the website, we realized the website was doing too much. There are plenty of websites that already explain what fracking is and what can be done to help. So we chose to excise that from our site and really push using alerts and twitter. Here is our final product:</p>
<p><a href="http://itsmehirumi.com/wp-content/uploads/2011/05/fractivism3.jpg"><img class="alignnone size-medium wp-image-591" title="fractivism3" src="http://itsmehirumi.com/wp-content/uploads/2011/05/fractivism3-286x300.jpg" alt="" width="286" height="300" /></a></p>
<p>Our final crits were a success! Our guest crits liked what we were trying to achieve with our project. One crit that we were really intrigued by was transforming what we&#8217;re doing into a social activists kit&#8211; an easy way for a person or an organization to start a movement. Interesting idea, and I really would like to continue it further.</p>
<p>Final Presentation:</p>
<div id="__ss_8967532" style="width: 425px;">
<p><strong style="display: block; margin: 12px 0 4px;"><a title="Frackfinal" href="http://www.slideshare.net/jurbonefracker/frackfinal" target="_blank">Frackfinal</a></strong> <object id="__sse8967532" width="425" height="355"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=frackfinal-110822181811-phpapp01&amp;stripped_title=frackfinal&amp;userName=jurbonefracker" /><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><embed type="application/x-shockwave-flash" width="425" height="355" src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=frackfinal-110822181811-phpapp01&amp;stripped_title=frackfinal&amp;userName=jurbonefracker" name="__sse8967532" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<div style="padding: 5px 0 12px;">View more <a href="http://www.slideshare.net/" target="_blank">presentations</a> from <a href="http://www.slideshare.net/jurbonefracker" target="_blank">jurbonefracker</a></div>
<div style="padding: 5px 0 12px;">And our<a href="http://itsmehirumi.com/wp-content/uploads/2011/05/Fractivism_Final.pdf"> research paper.</a></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://itsmehirumi.com/?feed=rss2&#038;p=582</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Social Media Fellowship with NYC Mayor&#8217;s Office</title>
		<link>http://itsmehirumi.com/?p=564&#038;utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=social-media-fellowship-with-nyc-mayors-office</link>
		<comments>http://itsmehirumi.com/?p=564#comments</comments>
		<pubDate>Fri, 22 Apr 2011 21:35:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://itsmehirumi.com/?p=564</guid>
		<description><![CDATA[From the NYC.gov site: The Mayor’s Office of Adult Education welcomes the 2011 cohort of the Social Media in Education Fellows. Eight NYC graduate students will develop social media projects to foster digital communication of information, ideas and other content relevant to the City’s adult education system. The Fellows will collaborate with College &#38; Community Fellowship, [...]]]></description>
				<content:encoded><![CDATA[<p>From the NYC.gov site: The Mayor’s Office of Adult Education welcomes  the 2011 cohort of the Social Media in Education Fellows. Eight NYC  graduate students will develop social media projects to foster digital  communication of information, ideas and other content relevant to the  City’s adult education system. The Fellows will collaborate with <a href="http://www.nyc.gov/cgi-bin/exit.pl?url=http://www.collegeandcommunity.org/">College &amp; Community Fellowship</a>, the Mayor’s Office of Adult Education and the <a href="http://council.nyc.gov/html/home/home.shtml">New York City Council</a>, the <a href="http://www.nyc.gov/cgi-bin/exit.pl?url=http://www.nypl.org/events/classes/crw">New York Public Library</a>, and the <a href="http://www.nyc.gov/LearnEnglish">We Are New York Community Project</a>.</p>
<p>I was partnered with Elle Yuan from the Teacher&#8217;s College at Columbia University. We had approximately 6 weeks to speak with our organizations, conduct interviews, design a solution, iterate it, and produce a final deliverable.</p>
<p><a href="http://itsmehirumi.com/wp-content/uploads/2011/04/Screen-shot-2011-08-22-at-5.58.48-PM.png"><img class="alignnone size-medium wp-image-566" title="Screen shot 2011-08-22 at 5.58.48 PM" src="http://itsmehirumi.com/wp-content/uploads/2011/04/Screen-shot-2011-08-22-at-5.58.48-PM-300x225.png" alt="" width="300" height="225" /></a><br />
<em>Elle &amp; I with Kunchok Dolma, one of our WANY mentors. </em></p>
<p>Our organization was the <a href="http://www.nyc.gov/LearnEnglish">We Are New York Community Project</a>. WANY is an Emmy award-winning television series that helps adult learners speak English. We decided to design for the volunteers that make WANY so successful. The currently lacked an organized, central network to communicate with each other and with WANY employees aside from phone or email. We designed an online social hub that features a live chat, forums, news feed, events calendar, classroom map, volunteer openings, blog, and links to Youtube, Facebook, &amp; Twitter that facilitate ideas/resources/experience sharing among volunteers. This website provides volunteers with as many options as possible in terms of communication through social media platforms.</p>
<p><object width="398" height="249"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=22427342&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=00adef&amp;fullscreen=1&amp;autoplay=0&amp;loop=0" /><embed type="application/x-shockwave-flash" width="398" height="249" src="http://vimeo.com/moogaloop.swf?clip_id=22427342&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=00adef&amp;fullscreen=1&amp;autoplay=0&amp;loop=0" allowfullscreen="true" allowscriptaccess="always"></embed></object><br />
<em>Walk through of site</em></p>
<p>WANY was pleased with the beginning stages of the site structure. The success of this project is based up on the positive feedback received from test users and their excitement towards creating similar systems for WANY participants.</p>
<p>Going forward, the site needs to be developed to incorporate not only volunteers, but participants and general users. We had also suggested creating an interactive lesson plan system designed as a game. Students would be able to interact with each other over the web, compete in cooperative collaboration exercises, get real-time results on their homework assignments, and provide a mobile and dynamic home for their learning curriculum. Another area of suggested research and development is incorporating international version of social networking to better transition international learners into their current living environments in New York.</p>
<p>Download our policy memo <a href="http://itsmehirumi.com/wp-content/uploads/2011/07/WANY_PolicyMemo.pdf" target="_blank">here</a>.</p>
<p>Though brief, this experience provided great insight into working for a governmental entity. Paul Kim and Marlee Ickowicz did a phenomenal job putting together this program. In addition to working with our organizations, we had many wonderful guest speakers (Clay Shirky, Cindy Gallup, and Emily May to name a few) come and speak to us about social media.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>If you are curious about a breakdown of our process, check out or week by week breakdown here:</p>
<p><strong>Week 1:</strong></p>
<p>IDEAS<br />
1. Turning study guides into interactive learning games (stands out to Pauline. Gaming around conversation groups)</p>
<ul>
<li>instant grading</li>
<li>guess &amp; check</li>
<li>monitor progress</li>
<li>cooperative competition/collaboration with other students</li>
</ul>
<p>2. Implementing QR codes as a method of marketing/outreach<br />
3. Visualizing group chats/communication domestically &amp; abroad (<br />
4. Utilizing international social media platform like QQ in connecting the immigrants communities<br />
5.  Incorporating mobile phone texts into the exiting social media platform  the WANY uses, since a lot of ESL learners might not be familiar with  social media tools like Facebook and Twitter; but almost every one has a  mobile phone.<br />
6. Mapping tool (nyccares)- volunteers and participants</p>
<p>CURRENT TASKS<br />
1. Revamping youtube channel<br />
2. Design layout for new website that promotes information + interaction<br />
3. Maximize efficiency in sharing information between teachers/students<br />
4. Develop mapping tools to visualize resources available for volunteers</p>
<ul>
<li>ex: resource centers, volunteers, study buddies, etc&#8230;</li>
</ul>
<hr />
<p><strong>Week 2:</strong></p>
<p>Elle &amp; Hirumi meeting notes:</p>
<ul>
<li>items to focus on:
<ul>
<li>1. mapping visualization</li>
<li>2. explore text based services</li>
<li>3. extending marketing to international social networks</li>
</ul>
</li>
<li>disseminate survey to students/volunteers
<ul>
<li>survey located at <a href="http://surveymonkey.com/">surveymonkey.com</a></li>
<li>login: WANYspring</li>
<li>pw: elleandhirumi</li>
<li>email: <a href="mailto:hirumianajones@gmail.com">hirumianajones@gmail.com</a></li>
</ul>
</li>
</ul>
<p>Group Texting:<br />
<a href="http://groupme.com/help">http://groupme.com/help</a><br />
Group Size: 25 Maximum<br />
Possible model: Large groups → subgroups → Individuals</p>
<p>About QQ:</p>
<p>Wikipedia -Tecent QQ<br />
<a href="https://secure.wikimedia.org/wikipedia/en/wiki/Tencent_QQ">https://secure.wikimedia.org/wikipedia/en/wiki/Tencent_QQ</a></p>
<p>QQ  could be used as our pilot program in reaching out to people who are  still using their home countries’ social networking sites.</p>
<p>(Besides  creating groups on QQ and other marketing efforts that could be made,  maybe we could reach out to the company directly to see whether there’s  any special channel could be created&#8230;)</p>
<p>CONFERENCE CALL MEETING NOTES<br />
1. Turning study guides into interactive learning games (stands out to Pauline. Gaming around conversation groups)</p>
<ul>
<li>instant grading</li>
<li>guess &amp; check</li>
<li>monitor progress</li>
<li>cooperative competition/collaboration with other students</li>
</ul>
<p>2. Implementing QR codes as a method of marketing/outreach<br />
3. Visualizing group chats/communication domestically &amp; abroad (<br />
4. Utilizing international social media platform like QQ in connecting the immigrants communities<br />
5.  Incorporating mobile phone texts into the exiting social media platform  the WANY uses, since a lot of ESL learners might not be familiar with  social media tools like Facebook and Twitter; but almost every one has a  mobile phone.<br />
6. Mapping tool (NYCcares) specific volunteers-</p>
<ul>
<li>putting up classes (how full classes are)</li>
<li>choose sites</li>
<li>find subways/directions for class sites (googlemaps API for public transport)</li>
<li>signing up to be a volunteers</li>
</ul>
<p>Prototype of website: include interaction tools (game, mapping tool).<br />
Send out updated survey of website catered to volunteers/teachers.<br />
Expanding mapping tool to volunteers/site sponsors eventually.</p>
<p>International Social Networking Sites:</p>
<ul>
<li>Cyworld: A South Korean social networking site similar to MySpace</li>
<li>Renren: Chinese’ Facebook</li>
<li>QQ: Chinese social networking portal</li>
<li>Orkut: Originally created by Google to compete with MySpace and Facebook, it has mainly caught hold in Brazil.</li>
</ul>
<p>How to set up a short code: <a href="http://www.ehow.com/how_4836576_short-code-sms-text-number.html">http://www.ehow.com/how_4836576_short-code-sms-text-number.html</a><br />
1.  Register and obtain your short code with the Common Short Code  Administration (CSCA). This organization handles the registration on  your short code number and makes sure your code works for all <a href="http://www.ehow.com/how_4836576_short-code-sms-text-number.html#">cell phone</a> carriers that are associated with CSCA.</p>
<p>2.  Your short code can be randomly assigned or you can choose your own, as  long as it is available. Once your short code is set up you will be  able to set up mobile <a href="http://www.ehow.com/how_4836576_short-code-sms-text-number.html#">marketing</a> and your SMS platform.</p>
<p>3. Establishing your own short code is a great way to market your <a href="http://www.ehow.com/business/">business</a>.  Try to find a code that spells out part of your business name so it&#8217;s  easier to remember. The fees for your short code are paid monthly.</p>
<p>Beluga.com (with location identification function)<br />
Disco.com<br />
Frontlinesms</p>
<p>For next week:<br />
Social media components:<br />
how it will fundamentally affect the population</p>
<hr />
<p><strong>Week 4</strong></p>
<p>4Square Specialist &#8211; Elle<br />
Wordpress Magician &#8211; Hirumi</p>
<p>Emailed all current volunteers.<br />
Need to email past volunteers and newsletter recipients</p>
<p>Focusing on creating a page for WANY volunteers</p>
<ul>
<li>include forum</li>
<li>availability</li>
<li>customize 4square badges for checkins</li>
<li>collaborative cooperation/competition between class sites</li>
<li>visualize checkins on page</li>
<li>4square based games/challenges</li>
<li>mayor of WANY badges</li>
</ul>
<p>Ultimately extend this platform to students of WANY.</p>
<p>Upload photos from mobile device to website (class-based activities)</p>
<hr />
<p>&nbsp;</p>
<p>Week 5</p>
<p>Custom  badges not quite available on 4square API, bigdoor gamification toolbar  added in the meantime. Volunteers can login via facebook and earn  points/badges for interacting with website.</p>
<p>Bugs in forum, need to explore more.</p>
<p>Perhaps integrating a flickr area for teachers to submit pictures directly to website.</p>
<p>4.12<br />
Forum fixed! Any guest can search and post ideas.<br />
Photo albums from FB page can be imported; however backend maintenance is necessary<br />
Group text feature added; site manager must moderate dissemination of texts</p>
<p>4.15<br />
Take out extra forums<br />
How to get sign up to get involved</p>
<hr />
<p>4.21</p>
<p>Brief notes for ourselves<br />
A video capture of the live chat in action<br />
some data visualization of our survey responses<br />
Some mock-ups for next steps</p>
<p>To do for Elle:<br />
User feedback (forward that after H sent that to me)<br />
Ask the team for specific locations of classes for the mapping tool</p>
<p>Memos:  deep dive, more details; a tool to give to the customer (WANY);  operational questions; what are the requirements; not just philosophical  stuff<br />
anything should be in place<br />
instructional menu</p>
]]></content:encoded>
			<wfw:commentRss>http://itsmehirumi.com/?feed=rss2&#038;p=564</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windfall Farms</title>
		<link>http://itsmehirumi.com/?p=578&#038;utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=windfall-farms</link>
		<comments>http://itsmehirumi.com/?p=578#comments</comments>
		<pubDate>Thu, 31 Mar 2011 22:37:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://itsmehirumi.com/?p=578</guid>
		<description><![CDATA[Site analysis of a NY based farmer. Sneak preview of our project: Final Writeup &#38; Deliverable: Our group decided to interview Farmer Morse of Windfall Farms in the Union Square Farmers Market. Initially it was the giant green bus and the abundance of green vegetables that drew us in, but the more we spoke to [...]]]></description>
				<content:encoded><![CDATA[<p>Site analysis of a NY based farmer.</p>
<p>Sneak preview of our project:<br />
<object width="398" height="299"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=20897735&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=00adef&amp;fullscreen=1&amp;autoplay=0&amp;loop=0" /><embed type="application/x-shockwave-flash" width="398" height="299" src="http://vimeo.com/moogaloop.swf?clip_id=20897735&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=00adef&amp;fullscreen=1&amp;autoplay=0&amp;loop=0" allowfullscreen="true" allowscriptaccess="always"></embed></object></p>
<p><strong>Final Writeup &amp; Deliverable:</strong></p>
<p><em>Our group decided to interview Farmer Morse of Windfall  Farms in the Union Square Farmers Market. Initially it was the giant  green bus and the abundance of green vegetables that drew us in, but the  more we spoke to Morse and his staff, the more we found them to be an  incredibly kind and enjoyable bunch.</em></p>
<p><em>We as a group had a great time learning about Morse and his  farming process and decided to harness that energy into this  project. We decided to go beyond creating a video presentation and  assembled an interactive video experience.</p>
<p>The farmers’ market is so dynamic; no two visits are the  same and no two people have the same experience. These unique site  visits are what we  attempted to recreate in our Windfall Farms Treasure  Hunt. We wanted to give our AUB counterparts agency in uncovering facts  about the site and also about Farmer Morse. We analyzed the site from a  multitude of perspectives in order to integrate visual cues, textual  analysis, video interviews, infrastructure, and public access. The  treasure hunt allowed us to consolidate all of our various diagrams and  pieces of media into one platform and hopefully achieved an enjoyable  educational experience.</em></p>
<p><em><a href="http://itsmehirumi.com/wp-content/uploads/2011/07/treasuremap3.jpg"><img class="alignnone size-medium wp-image-459" title="treasuremap3" src="http://itsmehirumi.com/wp-content/uploads/2011/07/treasuremap3-300x120.jpg" alt="" width="300" height="120" /></a></em></p>
<p><em><a href="http://itsmehirumi.com/cityaslab/windfallfarms.html">Click here</a> to access the map.<br />
</em></p>
<p><em> </em></p>
<p><em> </em></p>
]]></content:encoded>
			<wfw:commentRss>http://itsmehirumi.com/?feed=rss2&#038;p=578</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Food Diary</title>
		<link>http://itsmehirumi.com/?p=572&#038;utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=food-diary</link>
		<comments>http://itsmehirumi.com/?p=572#comments</comments>
		<pubDate>Tue, 22 Mar 2011 22:23:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[beirut]]></category>
		<category><![CDATA[cityaslab]]></category>
		<category><![CDATA[food diary]]></category>
		<category><![CDATA[new york]]></category>
		<category><![CDATA[you are what you eat]]></category>

		<guid isPermaLink="false">http://itsmehirumi.com/?p=572</guid>
		<description><![CDATA[This assignment is from my CityAsLab class: You are what you eat To get the semester started we’d like for you to introduce yourself. But this being a studio on housing and food, we’d like you refrain from reciting your CV and instead show us what goes inside your mouth. This first exercise is a [...]]]></description>
				<content:encoded><![CDATA[<p>This assignment is from my CityAsLab class:</p>
<p><strong>You are what you eat</strong><br />
To get the semester started we’d like for you to introduce yourself. But this being a studio on housing and food, we’d like you refrain from reciting your CV and instead show us what goes inside your mouth. This first exercise is a visualization of the relationship you have with food in Lebanon. We need to see our food in our environment in order to react with an appropriate design. This not only provides a great perspective for yourself, your classmates, but our colleagues in New York City, as they will as well introduce themselves to us in terms of the food they eat.</p>
<p>Requirements:<br />
Document your eating and buying habits for a period no less than 5 days. Utilizing a number of different medias and documenting tools how can you present to us a visualization of your food consumption patterns in relationship to home and school. Where do you buy it, where do you prepare it, where do you eat it, where do you throw out the waste?</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
I’ve always found food to be the highlight of my day. I think my love for food comes from my family. My mother is an amazing cook and can throw down everything from delicious Sri Lankan food to Thai noodles to good ol’ New Mexican cuisine (and yes, New Mexican is different from Mexican or TexMex). Our family gatherings revolve around food and then more food, and then eating even more food. My frequent visits to Las Vegas during my college days revolved not around the black jack tables, but which buffets we’d be dining at. There’s something incredibly special about making your own meal and also enjoying a good meal with other people. I love food and I envision the perfect job to be Anthony Bourdain’s. My friends have nicknamed me “The Beast” because of the amount of food I would put down in any given situation.  In actuality, I’m not sure if that’s because I like eating food a lot or if my parents have engrained the “clean your plate there are starving children in Sri Lanka!” in my head. Regardless, I am embarrassed about sharing my true routine of food consumption with the world.</p>
<p>Since I went back to school, I&#8217;ve found that I’m working on projects around the clock, few hours are dedicated to sleep, and I frequently use this schedule to justify poor food habits. But this semester, I’ve been trying to plan my grocery shopping better and cook my meals for the week on the weekend, however it’s only been semi successful; I usually drop off towards the end of the week. As you’ll notice my weekends and early week look pretty good (Sunday &#8211; Wednesday). But later, (Thursday &#8211; Saturday) is a little sketchy. Thursday and Friday are also the days where I’m loaded with classes, so I’m sure that attributes to my poor food choices or just not eating much at all.</p>
<p>Picture taking and sticky-noting were my main methods of documentation for this assignment. I had a sticky note on my igoogle page and I just listed everything as I went through the day, which was easy enough since my laptop has become my official sidekick. Sit. Stay. Good boy, laptop.</p>
<p>Most of the food I use to cook with comes from Trader Joes or Chinatown. Neither is really in a convenient location for me, but I can find fresh produce in Chinatown much cheaper than anywhere else as well as seafood&#8230;if you go to the right place. Trader Joes has as an abundance of self-proclaimed organic products and is also cheaper than other grocery stores. For both places, you need tough skin and strong arms because they are ALWAYS crowded and you need to move quickly and furiously to sidestep the meandering Chelsea shoppers or the impressively strong Asian grandmas. Although I must note that I do stop at Food Emporium if I need something on a whim.</p>
<p>Some things I noticed:</p>
<p>1. I either eat a lot (&#8220;lot&#8221; meaning super large servings as opposed to many meals) of food in one day, or very little food at all.<br />
2. Days with coffee constitutes less food intake<br />
3. I’m a serial snacker and a lot of food comes charging in during the late hours of the night.<br />
4. I work while I eat. All. The. Time.<br />
5. I find myself eating with other people usually if its over the weekend or I’ve brought my food to class; otherwise its eaten in front of my computer or vegging out to whatever rerun is on TBS.<br />
6. I drink more water when I am on campus.<br />
7. A good chunk of food is starchy. Boo.<br />
8. No food + long day = angry Hirumi (This is a special note for my future roommates and collaborators for the summer.)</p>
<p>I initially struggled with how to analyze the data, so I compiled a detailed breakdown of my information into an excel spreadsheet.</p>
<p><a href="http://itsmehirumi.com/wp-content/uploads/2011/08/excel.png"><img class="alignnone size-medium wp-image-574" title="excel" src="http://itsmehirumi.com/wp-content/uploads/2011/08/excel-287x300.png" alt="" width="287" height="300" /></a><br />
<em>Breakdown of every morsel consumed.</em></p>
<p>From there, I quantified my servings based on origin and put the results into a pie chart.<br />
<a href="http://itsmehirumi.com/wp-content/uploads/2011/08/illustrator.png"><img class="alignnone size-medium wp-image-575" title="illustrator" src="http://itsmehirumi.com/wp-content/uploads/2011/08/illustrator-231x300.png" alt="" width="231" height="300" /></a></p>
<p><em>Food consumed broken down according to origin. </em></p>
<p>I was happy to find out that the largest portion of my consumption is food that I prepare at home, which comes from Trader Joes. I was able to recycle most of the packaging form that waste, but what really bothered me was the amount of compost I throw out with trash because we don’t have an organized composting system for residences in Manhattan. If I were able to compost, the amount of trash I would be sending to the landfill would be extremely small. Such a depressing realization.</p>
<p>Here&#8217;s a quick video summarizing my meals. I didn&#8217;t have pics of everything, so if you are looking a detailed breakdown of my diet, please see the excel screenshot above.</p>
<p><object width="398" height="264"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=20347574&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=00adef&amp;fullscreen=1&amp;autoplay=0&amp;loop=0" /><embed type="application/x-shockwave-flash" width="398" height="264" src="http://vimeo.com/moogaloop.swf?clip_id=20347574&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=00adef&amp;fullscreen=1&amp;autoplay=0&amp;loop=0" allowfullscreen="true" allowscriptaccess="always"></embed></object></p>
<p>I honestly need to do something about my serving portions. If I suffer from any deadly sin, gluttony is surely the one. From that, I came up with a Flash game idea, but I ran out of time. It was entitled &#8220;Feed the Beast&#8221; and the object of the game was to feed the girl all the meals until she exploded. See sketch below. Perhaps another time, friends.</p>
]]></content:encoded>
			<wfw:commentRss>http://itsmehirumi.com/?feed=rss2&#038;p=572</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hungry Hungry Hippocrites</title>
		<link>http://itsmehirumi.com/?p=600&#038;utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=hungry-hungry-hippocrites</link>
		<comments>http://itsmehirumi.com/?p=600#comments</comments>
		<pubDate>Fri, 25 Feb 2011 02:08:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[budget cut]]></category>
		<category><![CDATA[funding]]></category>
		<category><![CDATA[hungry hungry hippocrites]]></category>
		<category><![CDATA[hungry hungry hippos]]></category>
		<category><![CDATA[planned parenthood]]></category>

		<guid isPermaLink="false">http://itsmehirumi.com/?p=600</guid>
		<description><![CDATA[Goal: to critically consider how tangibility and physicality affect the functions of an interface. The House of Representatives recently voted to cut federal funding to Planned Parenthood. I was livid, to say the least. Before attending Parsons, I worked at an institution of higher education in San Francisco in student affairs. I cannot count the [...]]]></description>
				<content:encoded><![CDATA[<p>Goal: to critically consider how tangibility and physicality affect the functions of an interface.</p>
<p><a href="http://itsmehirumi.com/wp-content/uploads/2011/07/hippos1.jpg"><img class="alignnone size-medium wp-image-468" title="hippos1" src="http://itsmehirumi.com/wp-content/uploads/2011/07/hippos1-300x160.jpg" alt="" width="300" height="160" /></a></p>
<p>The House of Representatives recently voted to cut federal funding to Planned Parenthood. I was livid, to say the least. Before attending Parsons, I worked at an institution of higher education in San Francisco in student affairs. I cannot count the number of times I have counseled female students and advised them to go to Planned Parenthood (PP). It&#8217;s unfortunately categorized as an abortion provider and nothing else. Take a look at this tasteless ad that appeared in SoHo, NYC right around the voting period.<br />
<a href="http://itsmehirumi.com/wp-content/uploads/2011/08/2.jpg"><img class="alignnone size-medium wp-image-601" title="2" src="http://itsmehirumi.com/wp-content/uploads/2011/08/2-300x231.jpg" alt="" width="300" height="231" /></a></p>
<p>What many fail to realize, or fail to consider as important as abortions, are the many other services PP provides.  Physical exams, cancer screening, STD testing, and contraceptive dissemination are all available at little to no cost to many women. By cutting funding, the people that are hurt the most are low income women, single-mother families, and young females.</p>
<p>I really wanted to make this issue somehow fit the goals of this assignment. The debate is always volatile and everyone fighting over it are usually people that don&#8217;t need it. Politicians have great healthcare. Most politicians arguing against funding are men, and probably have never even set foot into a PP clinic.</p>
<p>All of a sudden, this idea popped into my head. This political debate is like a game of hungry hungry hippos. It&#8217;s a volatile environment. Everyone is yelling and fighting to win. Watching these debates is like watching a Hungry Hungry hippos game because people honestly lose their shit.</p>
<p>First presentation:</p>
<p>&nbsp;</p>
<div id="__ss_8968941" style="width: 425px;"><strong style="display: block; margin: 12px 0 4px;"><a title="Tangibility" href="http://www.slideshare.net/jurbonefracker/tangibility" target="_blank">Tangibility</a></strong>&nbsp;</p>
<div style="padding: 5px 0 12px;">View more <a href="http://www.slideshare.net/" target="_blank">presentations</a> from <a href="http://www.slideshare.net/jurbonefracker" target="_blank">jurbonefracker</a></div>
</div>
<p>&nbsp;</p>
<p>In the end, the people who really need PP aren&#8217;t the ones making the  headline. And so I&#8217;m taking the platform of Hungry Hungry Hippos and  turning into an educational game. People assume one of 4 roles and try  and get their family through the game without anyone getting sick or  dying. It&#8217;s sort of like a healthcare dependant Oregon Trail.</p>
<p><a href="http://itsmehirumi.com/wp-content/uploads/2011/07/hippos2.png"><img class="alignnone size-medium wp-image-469" title="hippos2" src="http://itsmehirumi.com/wp-content/uploads/2011/07/hippos2-300x105.png" alt="" width="300" height="105" /></a></p>
<p><a href="http://itsmehirumi.com/wp-content/uploads/2011/07/hippos3.png"><img class="alignnone size-medium wp-image-470" title="hippos3" src="http://itsmehirumi.com/wp-content/uploads/2011/07/hippos3-300x263.png" alt="" width="300" height="263" /></a></p>
<p><a href="http://itsmehirumi.com/wp-content/uploads/2011/07/hippos4.png"><img class="alignnone size-medium wp-image-472" title="hippos4" src="http://itsmehirumi.com/wp-content/uploads/2011/07/hippos4-300x200.png" alt="" width="300" height="200" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://itsmehirumi.com/?feed=rss2&#038;p=600</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MSAADA: Final Presentation</title>
		<link>http://itsmehirumi.com/?p=437&#038;utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=msaada-final-presentation</link>
		<comments>http://itsmehirumi.com/?p=437#comments</comments>
		<pubDate>Mon, 06 Dec 2010 13:29:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Crisis Networks]]></category>

		<guid isPermaLink="false">http://itsmehirumi.com/?p=437</guid>
		<description><![CDATA[Ushahidi is an open-source, crowd-mapping platform created in 2008 to visualize the violence that occurred after the election fall-out in Kenya. Since then, it has been customized in many situations to aid in disaster relief; specifically in 2010 to assist in crowd sourcing the crisis after a devastating earthquake hit Haiti. Approximately 60,000 text messages [...]]]></description>
				<content:encoded><![CDATA[<p>Ushahidi is an open-source, crowd-mapping platform created in 2008 to visualize the violence that occurred after the election fall-out in Kenya. Since then, it has been customized in many situations to aid in disaster relief; specifically in 2010 to assist in crowd sourcing the crisis after a devastating earthquake hit Haiti. Approximately 60,000 text messages were received from Haitians requiring assistance without an existing system in place to validate, answer, or monitor those pleas.</p>
<p>After analyzing the various crises associated with technology in Haiti, we decided to focus on designing a solution that created a continuous feedback loop between victims and aid groups as well as developing a method that validated and tracked aid relief pleas and efforts.</p>
<p>Our concept, MSAADA (Mobile Service and Aid Deployment Agency), is a model that trains able-bodied members of the community to provide relief and assistance post-crisis via mobile technology.</p>
<div id="__ss_8522436" style="width: 425px;"><strong style="display: block; margin: 12px 0 4px;"><a title="Msaada: Final Presentation" href="http://www.slideshare.net/jurbonefracker/msaada-final-presentation" target="_blank">Msaada: Final Presentation</a></strong>&nbsp;</p>
<div style="padding: 5px 0 12px;">View more <a href="http://www.slideshare.net/" target="_blank">presentations</a> from <a href="http://www.slideshare.net/jurbonefracker" target="_blank">jurbonefracker</a></div>
</div>
<p><object width="398" height="224"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=17615728&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=00adef&amp;fullscreen=1&amp;autoplay=0&amp;loop=0" /><embed type="application/x-shockwave-flash" width="398" height="224" src="http://vimeo.com/moogaloop.swf?clip_id=17615728&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=00adef&amp;fullscreen=1&amp;autoplay=1&amp;loop=0" allowfullscreen="true" allowscriptaccess="always"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://itsmehirumi.com/?feed=rss2&#038;p=437</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google TV Commercial</title>
		<link>http://itsmehirumi.com/?p=430&#038;utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=google-tv-commercial</link>
		<comments>http://itsmehirumi.com/?p=430#comments</comments>
		<pubDate>Sat, 06 Nov 2010 08:16:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Motion Graphics]]></category>
		<category><![CDATA[after effects]]></category>
		<category><![CDATA[google tv]]></category>
		<category><![CDATA[motion graphics]]></category>
		<category><![CDATA[motion tracking]]></category>

		<guid isPermaLink="false">http://itsmehirumi.com/?p=430</guid>
		<description><![CDATA[This Motion Graphics assignment required us to make a 10 second project that utilized motion tracking. The House MD title sequence inspired me the most. I&#8217;ve found it easiest to do animations that are themed as TV commercials. For this project, I decided to do a commercial for GoogleTV. Major thanks to VideoCoPilot for their [...]]]></description>
				<content:encoded><![CDATA[<p><object width="398" height="294"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=18074030&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=00adef&amp;fullscreen=1&amp;autoplay=1&amp;loop=0" /><embed type="application/x-shockwave-flash" width="398" height="294" src="http://vimeo.com/moogaloop.swf?clip_id=18074030&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=00adef&amp;fullscreen=1&amp;autoplay=1&amp;loop=0" allowfullscreen="true" allowscriptaccess="always"></embed></object></p>
<p>This Motion Graphics assignment required us to make a 10 second project that utilized motion tracking. The House MD title sequence inspired me the most. I&#8217;ve found it easiest to do animations that are themed as TV commercials. For this project, I decided to do a commercial for GoogleTV. Major thanks to VideoCoPilot for their amazing tutorials on motion tracking.</p>
<p>Music: Cake &#8211; Sheep Go to Heaven<br />
Footage: Times Square, NYC</p>
]]></content:encoded>
			<wfw:commentRss>http://itsmehirumi.com/?feed=rss2&#038;p=430</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Crisis Cadence &#8211; Technology in Haiti</title>
		<link>http://itsmehirumi.com/?p=425&#038;utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=crisis-cadence-technology-in-haiti</link>
		<comments>http://itsmehirumi.com/?p=425#comments</comments>
		<pubDate>Fri, 05 Nov 2010 13:19:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Crisis Networks]]></category>
		<category><![CDATA[crisis]]></category>
		<category><![CDATA[haiti]]></category>
		<category><![CDATA[map]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://itsmehirumi.com/?p=425</guid>
		<description><![CDATA[After Chris Blow&#8217;s presentation and our collective research of Haiti websites, Ada &#38; I decided that the crisis we wanted to focus on the lack of rapid response in mobile media applications. We felt that this was a crisis that has the most potential for a new design solution. Our solution may potentially be helpful [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://itsmehirumi.com/wp-content/uploads/2011/07/technologycrisiscadence2.jpg"><img class="alignnone size-medium wp-image-427" title="technologycrisiscadence2" src="http://itsmehirumi.com/wp-content/uploads/2011/07/technologycrisiscadence2-300x210.jpg" alt="" width="300" height="210" /></a></p>
<p>After Chris Blow&#8217;s presentation and our collective research of Haiti websites, Ada &amp; I decided that the crisis we wanted to focus on the lack of rapid response in mobile media applications. We felt that this was a crisis that has the most potential for a new design solution. Our solution may potentially be helpful in future crises.</p>
<p><span>Hot Flash</span></p>
<ul>
<li>user input</li>
<li>information compilation</li>
<li>large volumes of people requiring aid</li>
</ul>
<p>Slow Burn</p>
<ul>
<li>filtering/categorizing information</li>
<li>delegating response teams</li>
<li>aid/relief to those not in immediate danger</li>
<li>providing emotional relief</li>
</ul>
<p>Glacial</p>
<ul>
<li>making application universal for all relief organizations</li>
<li>aid/relief to those not in immediate danger</li>
<li>long-term rehabilitation to city &amp; citizens</li>
</ul>
<p>Actors/Agents</p>
<ul>
<li>application users</li>
<li>victims</li>
<li>organization using application</li>
<li>aid workers</li>
<li>government endorsers</li>
</ul>
<p>Design Problem/Solution</p>
<ul>
<li>MARE &#8211; Mobile Application and Responsibility Execution</li>
<li>adding an additional layer of categorization within applications currently in use</li>
<li>adding an additional layer of people to verify/categorize level of need in various situations</li>
<li>incorporating image texts</li>
<li>using google earth satellites for verification</li>
<li>incorporating hash tag filtration of messages (like twitter) to organize information</li>
</ul>
<p>Prevention/Intervention</p>
<ul>
<li>distribution of literature</li>
<li>pilot-testing application</li>
</ul>
<p>Evaluative Methods</p>
<ul>
<li>ratio of messages received to people receiving relief</li>
</ul>
<p>Goal</p>
<ul>
<li>provide immediate relief to those in dire need</li>
<li>provide structures/plans for those that can wait</li>
<li>have a singular database to compile and organize information to increase efficiency and provide information for data visualizations and analysis post-crisis</li>
</ul>
<p>Trying to figure out a design solution for this problem is kind of a mind-melt. The expectation of our desired solution is easy to say, but extremely difficult to implement.</p>
<p>We inevitably want to introduce an intermediary layer between the Ushahidi platform and the dissemination of information to aid workers. We need a way to verify information that has been input as well as efficiently distributing aid to where it is needed.</p>
<p>Our initial thoughts were to disseminate a team of workers who&#8217;s sole responsibility is to verify the accuracy of reports submitted. I was <a href="http://www.sf-fire.org/index.aspx?page=859schools.com/">NERT</a> (Neighborhood Emergency Response Team) certified by SFPD while I was living in San Francisco. One NERT tactic that I think would be translatable to the Haiti crisis response is the use of color-coding victims. NERT volunteers would tie different colored ribbons to the victims in order to categorize based on medical emergency. (yellow&lt;green&lt;red). This exact protocol could be used. We could also use a variation of this method by sending out teams with mobile devices that could take pictures and tag them with a respective color, text/email it back to home base, and ultimately have an accountable representation of what is truly occurring on the site and provide a better framework for the aid teams that are sent out.</p>
<p><img src="http://media.tumblr.com/tumblr_lbouzwFebU1qd8skp.png" alt="" /></p>
<p>Figure 1: Ushahidi&#8217;s current platform for Haiti crisis map</p>
<p><span><br />
</span></p>
]]></content:encoded>
			<wfw:commentRss>http://itsmehirumi.com/?feed=rss2&#038;p=425</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
