<?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>iamacyborg &#187; Digital Narrative</title>
	<atom:link href="http://www.iamacyborg.com/category/second-year/digital-narrative/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.iamacyborg.com</link>
	<description>Don&#039;t call me, I&#039;m too expensive</description>
	<lastBuildDate>Tue, 11 Oct 2011 20:34:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Jamie</title>
		<link>http://www.iamacyborg.com/jamie/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=jamie</link>
		<comments>http://www.iamacyborg.com/jamie/#comments</comments>
		<pubDate>Thu, 09 Jun 2011 14:37:28 +0000</pubDate>
		<dc:creator>Jacques Corby-Tuech</dc:creator>
				<category><![CDATA[Digital Narrative]]></category>

		<guid isPermaLink="false">http://www.iamacyborg.com/second-year/digital-narrative/jamie</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><img style="display:block;margin-right:auto;margin-left:auto;" alt="image" src="http://www.iamacyborg.com/wp-content/uploads/2011/06/wpid-1307630185648.jpg" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.iamacyborg.com/jamie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Final Piece</title>
		<link>http://www.iamacyborg.com/final-piece/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=final-piece</link>
		<comments>http://www.iamacyborg.com/final-piece/#comments</comments>
		<pubDate>Mon, 24 May 2010 09:23:46 +0000</pubDate>
		<dc:creator>Jacques Corby-Tuech</dc:creator>
				<category><![CDATA[Digital Narrative]]></category>
		<category><![CDATA[Second Year]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[Processing]]></category>

		<guid isPermaLink="false">http://iamacyborg.com/blog/?p=545</guid>
		<description><![CDATA[Digital Narrative Final Piece from Jacques Corby-Tuech on Vimeo.]]></description>
			<content:encoded><![CDATA[<p><object width="640" height="480"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=11984006&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=ffffff&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=11984006&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=ffffff&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="640" height="480"></embed></object>
<p><a href="http://vimeo.com/11984006">Digital Narrative Final Piece</a> from <a href="http://vimeo.com/iamacyborg">Jacques Corby-Tuech</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iamacyborg.com/final-piece/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cleaning up the code</title>
		<link>http://www.iamacyborg.com/cleaning-up-the-code/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=cleaning-up-the-code</link>
		<comments>http://www.iamacyborg.com/cleaning-up-the-code/#comments</comments>
		<pubDate>Fri, 21 May 2010 13:34:24 +0000</pubDate>
		<dc:creator>Jacques Corby-Tuech</dc:creator>
				<category><![CDATA[Digital Narrative]]></category>
		<category><![CDATA[Second Year]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Processing]]></category>

		<guid isPermaLink="false">http://iamacyborg.com/blog/?p=538</guid>
		<description><![CDATA[Just cleaned it up a little, and added some extra float values so I could use more than one at any one time. float myTime; float mySpeed; float myHeart; int index; // The global index variable String[] time; String[] heart; String[] speed; void setup(){ size (1200, 1000); smooth(); frameRate(15); time = loadStrings(“time.csv”); heart = loadStrings(“heart_rate.csv”); [...]]]></description>
			<content:encoded><![CDATA[<p>Just cleaned it up a little, and added some extra float values so I could use more than one at any one time.</p>
<p><code>float myTime;<br />
float mySpeed;<br />
float myHeart;<br />
int index; // The global index variable<br />
String[] time;<br />
String[] heart;<br />
String[] speed;</p>
<p>void setup(){</p>
<p>  size (1200, 1000);<br />
  smooth();<br />
  frameRate(15);</p>
<p>  time = loadStrings(“time.csv”);<br />
  heart = loadStrings(“heart_rate.csv”);<br />
  speed = loadStrings(“speed.csv”);</p>
<p>}</p>
<p>void draw(){<br />
    fill (255, 7);<br />
    rect (0, 0, width, height);</p>
<p>    mySpeed = 10 * (new Float(speed[index]));<br />
    myTime = 10 * (new Float(time[index]));<br />
    myHeart = 10 * (new Float(time[index]));</p>
<p>    noFill();</p>
<p>    fill (myHeart, 100, myHeart);<br />
    rect(index * 10, mySpeed * 6, myHeart * 6, myHeart * 1);<br />
    ellipse(index * 10, myTime * 20, myTime * 5, myTime * 5);</p>
<p>    index = index +1; // Check when reaching 120, stop or restart at 0<br />
    if (index &gt; 119) {<br />
    index = 0;<br />
  }<br />
  noFill();<br />
} </code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.iamacyborg.com/cleaning-up-the-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Got the loop in</title>
		<link>http://www.iamacyborg.com/got-the-loop-in/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=got-the-loop-in</link>
		<comments>http://www.iamacyborg.com/got-the-loop-in/#comments</comments>
		<pubDate>Fri, 21 May 2010 10:34:50 +0000</pubDate>
		<dc:creator>Jacques Corby-Tuech</dc:creator>
				<category><![CDATA[Digital Narrative]]></category>
		<category><![CDATA[Second Year]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Processing]]></category>

		<guid isPermaLink="false">http://iamacyborg.com/blog/?p=536</guid>
		<description><![CDATA[Sorted the loop, it was relatively simple, just a case of adding this to the end. index = index +1; // Check when reaching 120, stop or restart at 0 if (index > 119) { index = 0;]]></description>
			<content:encoded><![CDATA[<p>Sorted the loop, it was relatively simple, just a case of adding this to the end.</p>
<p><code>index = index +1; // Check when reaching 120, stop or restart at 0<br />
    if (index > 119) {<br />
    index = 0; </code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.iamacyborg.com/got-the-loop-in/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Useful frogs.</title>
		<link>http://www.iamacyborg.com/useful-frogs/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=useful-frogs</link>
		<comments>http://www.iamacyborg.com/useful-frogs/#comments</comments>
		<pubDate>Fri, 21 May 2010 09:50:08 +0000</pubDate>
		<dc:creator>Jacques Corby-Tuech</dc:creator>
				<category><![CDATA[Digital Narrative]]></category>
		<category><![CDATA[Second Year]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Processing]]></category>

		<guid isPermaLink="false">http://iamacyborg.com/blog/?p=534</guid>
		<description><![CDATA[Thanks to a very helpful Frenchman on the Processing forums, my code now makes sense/runs as I wanted it to. Zing! float myValue; int index; // The global index variable String[] time; String[] heart; String[] speed; void setup(){ size (1200, 1000); frameRate(10); time = loadStrings(“time.csv”); heart = loadStrings(“heart_rate.csv”); speed = loadStrings(“speed.csv”); } void draw(){ float [...]]]></description>
			<content:encoded><![CDATA[<p>Thanks to a very helpful Frenchman on the Processing forums, my code now makes sense/runs as I wanted it to.<br />
Zing!</p>
<p><code>float myValue;<br />
int index; // The global index variable<br />
String[] time;<br />
String[] heart;<br />
String[] speed;</p>
<p>void setup(){</p>
<p>  size (1200, 1000);<br />
  frameRate(10);</p>
<p>  time = loadStrings(“time.csv”);<br />
  heart = loadStrings(“heart_rate.csv”);<br />
  speed = loadStrings(“speed.csv”);</p>
<p>}</p>
<p>void draw(){<br />
    float a = new Float(speed[index]);<br />
    line(index * 10, a * 100, a * 50, a * 50);</p>
<p>    myValue = 10 * (new Float(time[index]));<br />
    ellipse(index * 10, myValue * 20, myValue * 5, myValue * 5);</p>
<p>    index++; // Check when reaching 120, stop or restart at 0<br />
} </code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.iamacyborg.com/useful-frogs/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Processing.</title>
		<link>http://www.iamacyborg.com/processing/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=processing</link>
		<comments>http://www.iamacyborg.com/processing/#comments</comments>
		<pubDate>Thu, 20 May 2010 17:48:21 +0000</pubDate>
		<dc:creator>Jacques Corby-Tuech</dc:creator>
				<category><![CDATA[Digital Narrative]]></category>
		<category><![CDATA[Second Year]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Processing]]></category>

		<guid isPermaLink="false">http://iamacyborg.com/blog/?p=529</guid>
		<description><![CDATA[I hate it. Well, not so much now that I’ve got things sort of working. float myValue; void setup(){ size (1200, 800); background (0); frameRate(15); } void draw(){ String[] time = loadStrings(“time.csv”); String[] heart = loadStrings(“heart_rate.csv”); String[] speed = loadStrings(“speed.csv”); for (int i = 0; i &#60; 120; i++){ myValue = 10 *( Float.valueOf(speed[i]).floatValue()); stroke(random(255), [...]]]></description>
			<content:encoded><![CDATA[<p>I hate it.<br />
Well, not so much now that I’ve got things sort of working.</p>
<p><code>float myValue;</p>
<p>void setup(){</p>
<p>  size (1200, 800);<br />
  background (0);<br />
  frameRate(15);</p>
<p>}</p>
<p>void draw(){<br />
  String[] time = loadStrings(“time.csv”);<br />
  String[] heart = loadStrings(“heart_rate.csv”);<br />
  String[] speed = loadStrings(“speed.csv”);</p>
<p>for (int i = 0; i &lt; 120; i++){</p>
<p>    myValue = 10 *( Float.valueOf(speed[i]).floatValue());<br />
    stroke(random(255), random(255), random(255), myValue * 3);<br />
    line(i * 10, i * 10, i * 10, i * 12);</p>
<p>  }</p>
<p>for (int a = 0; a &lt; 120; a++){</p>
<p>    myValue = 10 *( Float.valueOf(time[a]).floatValue());<br />
    stroke(random(255), random(255), random(255), myValue * 3);<br />
    fill(random(255), random(255), random(255), myValue * 3);<br />
    ellipse(a * 10, myValue * 20, myValue * 5, myValue * 5);</p>
<p>  }</p>
<p>}</code></p>
<p><a href="http://iamacyborg.com/wp-content/uploads/2010/05/processing.jpg"><img src="http://iamacyborg.com/wp-content/uploads/2010/05/processing-650x362.jpg" alt="" title="processing" width="650" height="362" class="alignleft size-large wp-image-530" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.iamacyborg.com/processing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stalker and the zone of alienation</title>
		<link>http://www.iamacyborg.com/stalker-and-the-zone-of-alienation/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=stalker-and-the-zone-of-alienation</link>
		<comments>http://www.iamacyborg.com/stalker-and-the-zone-of-alienation/#comments</comments>
		<pubDate>Mon, 17 May 2010 10:18:05 +0000</pubDate>
		<dc:creator>Jacques Corby-Tuech</dc:creator>
				<category><![CDATA[Digital Narrative]]></category>
		<category><![CDATA[Second Year]]></category>
		<category><![CDATA[Virtual Space]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://iamacyborg.com/blog/?p=547</guid>
		<description><![CDATA[An awesome article by Jim Rossignol about Chernobyl and how the charged narrative found in both the film and the game are a result of the history behind the zone. During the period in which 3D videogames began to use textures imported from photography, rather than hand-drawn pixel tiles, it became common to hear game [...]]]></description>
			<content:encoded><![CDATA[<p>An awesome article by Jim Rossignol about Chernobyl and how the charged narrative found in both the film and the game are a result of the history behind the zone.</p>
<blockquote><p>During the period in which 3D videogames began to use textures imported from photography, rather than hand-drawn pixel tiles, it became common to hear game developers discuss their photo references. </p>
<p>Drew Markham, director of Return To Castle Wolfenstein, spent the 2001 pre-release press tour for his game talking about the time he had spent in Europe, sourcing textures from “real” locations that had played host to the war. Crumbling French flagstones, Teutonic concretes, and other useful built surfaces: these details would add a certain level of authenticity that other games lacked. When the Wolfenstein sequel finally arrived, British gaming journalists were amused to see the ubiquitous British “H” fire hydrant signs scattered deep within the occult bunkers of Himmler’s SS Paranormal Division.</p></blockquote>
<p><a href="http://bldgblog.blogspot.com/2010/05/ghosts-of-future-borrowing-architecture.html">Link.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.iamacyborg.com/stalker-and-the-zone-of-alienation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sigh</title>
		<link>http://www.iamacyborg.com/sigh/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=sigh</link>
		<comments>http://www.iamacyborg.com/sigh/#comments</comments>
		<pubDate>Tue, 11 May 2010 16:31:16 +0000</pubDate>
		<dc:creator>Jacques Corby-Tuech</dc:creator>
				<category><![CDATA[Digital Narrative]]></category>
		<category><![CDATA[Second Year]]></category>
		<category><![CDATA[2010]]></category>

		<guid isPermaLink="false">http://iamacyborg.com/blog/?p=519</guid>
		<description><![CDATA[Because heart rate data is fucking impossible to find. I’ve found something, but it’s not downloadable. Joy of joys’ I’m writing it down manually. http://www.trainingpeaks.com/sw/4B556C664F4B4F6B77664B776A4138633635306D4F673D3D The GPS data also afford some interesting possibilities.]]></description>
			<content:encoded><![CDATA[<p>Because heart rate data is fucking impossible to find.<br />
I’ve found something, but it’s not downloadable. Joy of joys’ I’m writing it down manually.</p>
<p><a href="http://www.trainingpeaks.com/sw/4B556C664F4B4F6B77664B776A4138633635306D4F673D3D">http://www.trainingpeaks.com/sw/4B556C664F4B4F6B77664B776A4138633635306D4F673D3D</a></p>
<p>The GPS data also afford some interesting possibilities.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iamacyborg.com/sigh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Presentation</title>
		<link>http://www.iamacyborg.com/presentation/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=presentation</link>
		<comments>http://www.iamacyborg.com/presentation/#comments</comments>
		<pubDate>Tue, 20 Apr 2010 19:11:18 +0000</pubDate>
		<dc:creator>Jacques Corby-Tuech</dc:creator>
				<category><![CDATA[Digital Narrative]]></category>
		<category><![CDATA[Second Year]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[presentation]]></category>

		<guid isPermaLink="false">http://iamacyborg.com/blog/?p=484</guid>
		<description><![CDATA[http://prezi.com/vsxxj2rrphf_/digital-narrative-assignment-2/ http://docs.google.com/Doc?id=dhtbwbwk_11ck7fk7g4 JCT_DN_Ass2Pt1]]></description>
			<content:encoded><![CDATA[<p><a href="http://prezi.com/vsxxj2rrphf_/digital-narrative-assignment-2/">http://prezi.com/vsxxj2rrphf_/digital-narrative-assignment-2/</a></p>
<p><a href="http://docs.google.com/Doc?id=dhtbwbwk_11ck7fk7g4">http://docs.google.com/Doc?id=dhtbwbwk_11ck7fk7g4</a></p>
<p><a href='http://iamacyborg.com/wp-content/uploads/2010/04/Jacques_Corby_Tuech.pdf'>JCT_DN_Ass2Pt1</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.iamacyborg.com/presentation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Awesome</title>
		<link>http://www.iamacyborg.com/awesome/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=awesome</link>
		<comments>http://www.iamacyborg.com/awesome/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 21:47:53 +0000</pubDate>
		<dc:creator>Jacques Corby-Tuech</dc:creator>
				<category><![CDATA[Digital Narrative]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[Filth]]></category>

		<guid isPermaLink="false">http://iamacyborg.com/blog/?p=383</guid>
		<description><![CDATA[Saigon… shit; I’m still only in Saigon… Every time I think I’m gonna wake up back in the jungle. When I was home after my first tour, it was worse. I’d wake up and there’d be nothing. I hardly said a word to my wife, until I said “yes” to a divorce. When I was [...]]]></description>
			<content:encoded><![CDATA[<p>Saigon… shit; I’m still only in Saigon… Every time I think I’m gonna wake up back in the jungle.<br />
When I was home after my first tour, it was worse. I’d wake up and there’d be nothing. I hardly said a word to my wife, until I said “yes” to a divorce. When I was home after my first tour, it was worse.<br />
I’d wake up and there’d be nothing. I hardly said a word to my wife, until I said “yes” to a divorce. When I was here, I wanted to be there; when I was there, all I could think of was getting back into the jungle. I’m here a week now… waiting for a mission… getting softer. Every minute I stay in this room, I get weaker, and every minute Charlie squats in the bush, he gets stronger. Each time I looked around the walls moved in a little tighter.</p>
<p><object width="640" height="385"><param name="movie" value="http://www.youtube.com/v/ZzM4D2_uOP0&#038;hl=en_GB&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/ZzM4D2_uOP0&#038;hl=en_GB&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.iamacyborg.com/awesome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

