<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for erratica</title>
	<atom:link href="http://www.erratica.us/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://www.erratica.us</link>
	<description>parsing architecture, culture and design</description>
	<lastBuildDate>Mon, 01 Feb 2010 20:53:44 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
	<item>
		<title>Comment on mode[Lab] by El GP de Mercedes lanza el desafiador inaugural W01 en Valencia &#124; .:: MrCoi Blog ::.</title>
		<link>http://www.erratica.us/1195.html/comment-page-1#comment-198</link>
		<dc:creator>El GP de Mercedes lanza el desafiador inaugural W01 en Valencia &#124; .:: MrCoi Blog ::.</dc:creator>
		<pubDate>Mon, 01 Feb 2010 20:53:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.erratica.us/?p=1195#comment-198</guid>
		<description>[...] mode[lab] [...]</description>
		<content:encoded><![CDATA[<p>[...] mode[lab] [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Blue Marlin Lighting &#8211; Phase I by coche</title>
		<link>http://www.erratica.us/1099.html/comment-page-1#comment-195</link>
		<dc:creator>coche</dc:creator>
		<pubDate>Thu, 02 Apr 2009 14:37:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.erratica.us/?p=1099#comment-195</guid>
		<description>Thanks a bunch Franko. It was a pretty fun project to put together and we/ the client are definitely very happy with the final result. Now we really need to get some professional pictures taken though...</description>
		<content:encoded><![CDATA[<p>Thanks a bunch Franko. It was a pretty fun project to put together and we/ the client are definitely very happy with the final result. Now we really need to get some professional pictures taken though&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Blue Marlin Lighting &#8211; Phase I by Frank</title>
		<link>http://www.erratica.us/1099.html/comment-page-1#comment-194</link>
		<dc:creator>Frank</dc:creator>
		<pubDate>Thu, 02 Apr 2009 14:12:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.erratica.us/?p=1099#comment-194</guid>
		<description>Dude, this project came out really, really well.  Looks great!</description>
		<content:encoded><![CDATA[<p>Dude, this project came out really, really well.  Looks great!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Arduino Confetti by coche</title>
		<link>http://www.erratica.us/1094.html/comment-page-1#comment-193</link>
		<dc:creator>coche</dc:creator>
		<pubDate>Tue, 24 Mar 2009 22:41:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.erratica.us/?p=1094#comment-193</guid>
		<description>Hey Brandt
Yeah, it&#039;s running straight from Processing. I&#039;ve uploaded a short clip so you can take a peek at it. Now I&#039;ll come up with something less banal than just circles on the screen :)</description>
		<content:encoded><![CDATA[<p>Hey Brandt<br />
Yeah, it&#8217;s running straight from Processing. I&#8217;ve uploaded a short clip so you can take a peek at it. Now I&#8217;ll come up with something less banal than just circles on the screen <img src='http://www.erratica.us/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Arduino Confetti by brandt</title>
		<link>http://www.erratica.us/1094.html/comment-page-1#comment-192</link>
		<dc:creator>brandt</dc:creator>
		<pubDate>Tue, 24 Mar 2009 21:59:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.erratica.us/?p=1094#comment-192</guid>
		<description>Jose, that&#039;s awesome! So you&#039;re running that straight from Processing? You don&#039;t have to call the arduino library?</description>
		<content:encoded><![CDATA[<p>Jose, that&#8217;s awesome! So you&#8217;re running that straight from Processing? You don&#8217;t have to call the arduino library?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Two Leds, Two Resistors by coche</title>
		<link>http://www.erratica.us/1056.html/comment-page-1#comment-190</link>
		<dc:creator>coche</dc:creator>
		<pubDate>Sat, 14 Feb 2009 21:39:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.erratica.us/?p=1056#comment-190</guid>
		<description>My good friend Rocha, a scientist at Honda- after seeing my poor code, sent me this:

int LED1 = 11, LED2 = 12;
int RES1 = 0,  RES2 = 1;

void setup ()
{
 pinMode (LED1, OUTPUT);
 pinMode (LED2, OUTPUT);
}

void loop ()
{
 byte val1 = analogRead(RES1) &gt;&gt; 2;
 byte val2 = analogRead(RES2) &gt;&gt; 2;

 byte magic = (millis() &amp; 0xFC0) &gt;&gt; 6;

 digitalWrite(LED1, val1 &lt; magic);
 digitalWrite(LED2, val2 &lt; magic);

 delay(50);
}

I&#039;ll give it a shot on Monday</description>
		<content:encoded><![CDATA[<p>My good friend Rocha, a scientist at Honda- after seeing my poor code, sent me this:</p>
<p>int LED1 = 11, LED2 = 12;<br />
int RES1 = 0,  RES2 = 1;</p>
<p>void setup ()<br />
{<br />
 pinMode (LED1, OUTPUT);<br />
 pinMode (LED2, OUTPUT);<br />
}</p>
<p>void loop ()<br />
{<br />
 byte val1 = analogRead(RES1) >> 2;<br />
 byte val2 = analogRead(RES2) >> 2;</p>
<p> byte magic = (millis() &#038; 0xFC0) >> 6;</p>
<p> digitalWrite(LED1, val1 < magic);<br />
 digitalWrite(LED2, val2 < magic);</p>
<p> delay(50);<br />
}</p>
<p>I&#8217;ll give it a shot on Monday</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Arduino 02 by brandt</title>
		<link>http://www.erratica.us/1046.html/comment-page-1#comment-189</link>
		<dc:creator>brandt</dc:creator>
		<pubDate>Wed, 11 Feb 2009 22:50:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.erratica.us/?p=1046#comment-189</guid>
		<description>By, chance I&#039;m actually looking at it right now.  Carrie had an account, and I&#039;m trying to use my system as an input.  I only started looking at this option after I couldn&#039;t figure out how to ssh my mobileMe account.  Seems like a great option, but I&#039;m having trouble with it.</description>
		<content:encoded><![CDATA[<p>By, chance I&#8217;m actually looking at it right now.  Carrie had an account, and I&#8217;m trying to use my system as an input.  I only started looking at this option after I couldn&#8217;t figure out how to ssh my mobileMe account.  Seems like a great option, but I&#8217;m having trouble with it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Arduino 02 by coche</title>
		<link>http://www.erratica.us/1046.html/comment-page-1#comment-188</link>
		<dc:creator>coche</dc:creator>
		<pubDate>Wed, 11 Feb 2009 22:37:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.erratica.us/?p=1046#comment-188</guid>
		<description>I&#039;m not sure if you&#039;ve seen this site:
http://www.pachube.com/ . It&#039;s a service that allows you to share different sensor data over the web. It could come in handy... Had to run out and get me some of those alligator clips you got there.</description>
		<content:encoded><![CDATA[<p>I&#8217;m not sure if you&#8217;ve seen this site:<br />
<a href="http://www.pachube.com/" rel="nofollow">http://www.pachube.com/</a> . It&#8217;s a service that allows you to share different sensor data over the web. It could come in handy&#8230; Had to run out and get me some of those alligator clips you got there.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Arduino 02 by brandt</title>
		<link>http://www.erratica.us/1046.html/comment-page-1#comment-187</link>
		<dc:creator>brandt</dc:creator>
		<pubDate>Tue, 10 Feb 2009 23:33:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.erratica.us/?p=1046#comment-187</guid>
		<description>I&#039;m just getting data readouts at the moment that respond to the switches and sensors.  (The image is just my desktop)  Now I&#039;m working out how to pass the data from Processing to the web.</description>
		<content:encoded><![CDATA[<p>I&#8217;m just getting data readouts at the moment that respond to the switches and sensors.  (The image is just my desktop)  Now I&#8217;m working out how to pass the data from Processing to the web.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Arduino 02 by coche</title>
		<link>http://www.erratica.us/1046.html/comment-page-1#comment-186</link>
		<dc:creator>coche</dc:creator>
		<pubDate>Tue, 10 Feb 2009 19:19:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.erratica.us/?p=1046#comment-186</guid>
		<description>Nice! Are you just getting the readings from the sensors and switches or are you driving something with them at the moment? The image of the screen shows a field, are you generating that as well or is it just the numbers what is being shown? I need to get me some of those wiring clasps.</description>
		<content:encoded><![CDATA[<p>Nice! Are you just getting the readings from the sensors and switches or are you driving something with them at the moment? The image of the screen shows a field, are you generating that as well or is it just the numbers what is being shown? I need to get me some of those wiring clasps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on City Racks Competition by coche</title>
		<link>http://www.erratica.us/870.html/comment-page-1#comment-185</link>
		<dc:creator>coche</dc:creator>
		<pubDate>Tue, 02 Sep 2008 15:32:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.erratica.us/?p=870#comment-185</guid>
		<description>Epa pues claro que la cuenta sigue ahi, esperandolo... Y a ver, vendala alla, y ahi cuadramos!

C</description>
		<content:encoded><![CDATA[<p>Epa pues claro que la cuenta sigue ahi, esperandolo&#8230; Y a ver, vendala alla, y ahi cuadramos!</p>
<p>C</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on City Racks Competition by fabian</title>
		<link>http://www.erratica.us/870.html/comment-page-1#comment-184</link>
		<dc:creator>fabian</dc:creator>
		<pubDate>Tue, 02 Sep 2008 14:17:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.erratica.us/?p=870#comment-184</guid>
		<description>je, no lo puedo creer, sigo teniendo cuenta. yupi.
Me encanto el proyecto, la idea... y si la vendemos en baires !!!

abrazos</description>
		<content:encoded><![CDATA[<p>je, no lo puedo creer, sigo teniendo cuenta. yupi.<br />
Me encanto el proyecto, la idea&#8230; y si la vendemos en baires !!!</p>
<p>abrazos</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ITP by coche</title>
		<link>http://www.erratica.us/775.html/comment-page-1#comment-175</link>
		<dc:creator>coche</dc:creator>
		<pubDate>Mon, 16 Jun 2008 21:19:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.erratica.us/?p=775#comment-175</guid>
		<description>Hey Maria
Thanks for your comment and for your insider scoop.

Regarding the issue of the show being too packed, I don&#039;t necessarily think the solution would be to edit out students work.  As a former grad student myself (architecture - not too long ago), end of year shows are one of those things you look forward to, plus it is important to put your work out there and have the public view it, whether it is good, bad, complete, incomplete, etc.  I think there has to be a better way of insuring the work gets viewed - because being such a recognized program - it will always attract a lot of people, so perhaps it is more about having more space or having the projects on display for a longer time what would take care of that issue. The show in itself is a great thing (exposure for students, open forum for ideas, etc).

Regarding the conversation I overheard, I certainly hope that&#039;s what the student was referring to and looking in retrospect, yes, you are probably right. I will delete that segment from the post. 

Cheers

C</description>
		<content:encoded><![CDATA[<p>Hey Maria<br />
Thanks for your comment and for your insider scoop.</p>
<p>Regarding the issue of the show being too packed, I don&#8217;t necessarily think the solution would be to edit out students work.  As a former grad student myself (architecture &#8211; not too long ago), end of year shows are one of those things you look forward to, plus it is important to put your work out there and have the public view it, whether it is good, bad, complete, incomplete, etc.  I think there has to be a better way of insuring the work gets viewed &#8211; because being such a recognized program &#8211; it will always attract a lot of people, so perhaps it is more about having more space or having the projects on display for a longer time what would take care of that issue. The show in itself is a great thing (exposure for students, open forum for ideas, etc).</p>
<p>Regarding the conversation I overheard, I certainly hope that&#8217;s what the student was referring to and looking in retrospect, yes, you are probably right. I will delete that segment from the post. </p>
<p>Cheers</p>
<p>C</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ITP by maria</title>
		<link>http://www.erratica.us/775.html/comment-page-1#comment-174</link>
		<dc:creator>maria</dc:creator>
		<pubDate>Wed, 11 Jun 2008 01:33:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.erratica.us/?p=775#comment-174</guid>
		<description>As an ITP student and as the author of one of the pieces in the ITP show that you mention in this post, I am a bit surprised about some of your comments.

I agree with you that the show is way too packed and that the organizers should seriously consider narrowing down the number of projects for spatial and -perhaps more importantly- curatorial reasons. The conversation you overheard and posted is, however, a misunderstanding. 

My insiders&#039; guess is that the student was talking about OpenFrameworks, a C++ library for &quot;creative coding&quot;; the OpenFrameworks platform attempts to do with C++ what Processing did for Java, making it accessible to artists, architects, and designers.

I know in depth all the projects that were developed in that platform for the show, and I can tell you that all the authors worked very hard in their own code. Perhaps the student you overheard wanted to make clear that he/she wasn&#039;t the author of the OpenFrameworks platform, an open source project that has been developed by Zach Lieberman and Theo Watson.

I hope this very brief clarification  helps nuance a bit your perception of the show.

Cheers, 

maria</description>
		<content:encoded><![CDATA[<p>As an ITP student and as the author of one of the pieces in the ITP show that you mention in this post, I am a bit surprised about some of your comments.</p>
<p>I agree with you that the show is way too packed and that the organizers should seriously consider narrowing down the number of projects for spatial and -perhaps more importantly- curatorial reasons. The conversation you overheard and posted is, however, a misunderstanding. </p>
<p>My insiders&#8217; guess is that the student was talking about OpenFrameworks, a C++ library for &#8220;creative coding&#8221;; the OpenFrameworks platform attempts to do with C++ what Processing did for Java, making it accessible to artists, architects, and designers.</p>
<p>I know in depth all the projects that were developed in that platform for the show, and I can tell you that all the authors worked very hard in their own code. Perhaps the student you overheard wanted to make clear that he/she wasn&#8217;t the author of the OpenFrameworks platform, an open source project that has been developed by Zach Lieberman and Theo Watson.</p>
<p>I hope this very brief clarification  helps nuance a bit your perception of the show.</p>
<p>Cheers, </p>
<p>maria</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on I Want to Believe by coche</title>
		<link>http://www.erratica.us/759.html/comment-page-1#comment-173</link>
		<dc:creator>coche</dc:creator>
		<pubDate>Tue, 06 May 2008 13:55:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.erratica.us/?p=759#comment-173</guid>
		<description>Taken them anytime. I&#039;ll be posting some short clips later on too, plus my take on the show. Feel free to chip in.</description>
		<content:encoded><![CDATA[<p>Taken them anytime. I&#8217;ll be posting some short clips later on too, plus my take on the show. Feel free to chip in.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on I Want to Believe by jasonmcgee</title>
		<link>http://www.erratica.us/759.html/comment-page-1#comment-172</link>
		<dc:creator>jasonmcgee</dc:creator>
		<pubDate>Tue, 06 May 2008 05:36:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.erratica.us/?p=759#comment-172</guid>
		<description>im going to &quot;borrow&quot; your photos since i didnt have my camera on me. just so you know i havent forgotten, i still owe you some beers from that night</description>
		<content:encoded><![CDATA[<p>im going to &#8220;borrow&#8221; your photos since i didnt have my camera on me. just so you know i havent forgotten, i still owe you some beers from that night</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Portishead&#8217;s Third by coche</title>
		<link>http://www.erratica.us/690.html/comment-page-1#comment-168</link>
		<dc:creator>coche</dc:creator>
		<pubDate>Thu, 10 Apr 2008 03:53:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.erratica.us/2008/04/09/portisheads-third/#comment-168</guid>
		<description>I don&#039;t really know what you&#039;re talking about Rocha :P
The box set that is coming out though will definitely be one of those items I&#039;d like to get my hands on.</description>
		<content:encoded><![CDATA[<p>I don&#8217;t really know what you&#8217;re talking about Rocha <img src='http://www.erratica.us/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /><br />
The box set that is coming out though will definitely be one of those items I&#8217;d like to get my hands on.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Portishead&#8217;s Third by rocha</title>
		<link>http://www.erratica.us/690.html/comment-page-1#comment-167</link>
		<dc:creator>rocha</dc:creator>
		<pubDate>Thu, 10 Apr 2008 01:49:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.erratica.us/2008/04/09/portisheads-third/#comment-167</guid>
		<description>isn&#039;t it supposed to be in stores on april 28th...?  hmmmm :)</description>
		<content:encoded><![CDATA[<p>isn&#8217;t it supposed to be in stores on april 28th&#8230;?  hmmmm <img src='http://www.erratica.us/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bjork&#8217;s &#8216;Wanderlust&#8217; by coche</title>
		<link>http://www.erratica.us/675.html/comment-page-1#comment-166</link>
		<dc:creator>coche</dc:creator>
		<pubDate>Wed, 02 Apr 2008 16:44:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.erratica.us/2008/04/01/bjork-wanderlust/#comment-166</guid>
		<description>Well, after watching the video a couple times, I have to chip in.
Personally, I think the video is outstanding from the beginning up to minute 2&#039;15&quot;. The technique and overall look in the first section looks pretty depurated and works nicely. After that point (2&#039;15&quot;) though, it truly becomes that high school project you&#039;re talking about. In all fairness, it probably looks pretty interesting in 3D, but the doppelganger/mother nature crawler (or whatever it is) just doesn&#039;t cut it. I&#039;m sure they have some conceptual explanation as to why it makes perfect sense...

I watched the interview after the video and something I found cool is the just do it attitude they had. But this was of course wiped away by starting the interview with -oh we ate mushrooms to do this, it cannot be translated into words etc- that&#039;s just lame. If it cannot be translated into words, then how the hell did you tell all the people working on the project what it should look / feel / behave like? Maybe the mushrooms made you all connect to a collective unconscious where matter and energy became one seamless entity where  knowledge, thought and language are infinite and words aren&#039;t necessary. Blah.

I&#039;m connected to a parallel collective unconscious too, where I see this:
&lt;p style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://www.erratica.us/wp-content/uploads/2008/04/itchyandscratchy.jpg&quot; title=&quot;itchy and scratchy.jpg&quot; rel=&quot;nofollow&quot;&gt;&lt;img src=&quot;http://www.erratica.us/wp-content/uploads/2008/04/itchyandscratchy.jpg&quot; width=&quot;450&quot;  alt=&quot;itchy and scratchy.jpg&quot; class=&quot;imageframe imgaligncenter&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>Well, after watching the video a couple times, I have to chip in.<br />
Personally, I think the video is outstanding from the beginning up to minute 2&#8217;15&#8243;. The technique and overall look in the first section looks pretty depurated and works nicely. After that point (2&#8217;15&#8243;) though, it truly becomes that high school project you&#8217;re talking about. In all fairness, it probably looks pretty interesting in 3D, but the doppelganger/mother nature crawler (or whatever it is) just doesn&#8217;t cut it. I&#8217;m sure they have some conceptual explanation as to why it makes perfect sense&#8230;</p>
<p>I watched the interview after the video and something I found cool is the just do it attitude they had. But this was of course wiped away by starting the interview with -oh we ate mushrooms to do this, it cannot be translated into words etc- that&#8217;s just lame. If it cannot be translated into words, then how the hell did you tell all the people working on the project what it should look / feel / behave like? Maybe the mushrooms made you all connect to a collective unconscious where matter and energy became one seamless entity where  knowledge, thought and language are infinite and words aren&#8217;t necessary. Blah.</p>
<p>I&#8217;m connected to a parallel collective unconscious too, where I see this:</p>
<p style="text-align: center;"><a href="http://www.erratica.us/wp-content/uploads/2008/04/itchyandscratchy.jpg" title="itchy and scratchy.jpg" rel="nofollow"><img src="http://www.erratica.us/wp-content/uploads/2008/04/itchyandscratchy.jpg" width="450"  alt="itchy and scratchy.jpg" class="imageframe imgaligncenter" /></a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GAUD++ Opening Tonight by jasonmcgee</title>
		<link>http://www.erratica.us/654.html/comment-page-1#comment-165</link>
		<dc:creator>jasonmcgee</dc:creator>
		<pubDate>Tue, 01 Apr 2008 06:57:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.erratica.us/2008/03/31/gaud-opening-tonight/#comment-165</guid>
		<description>thanks for coming out tonight!</description>
		<content:encoded><![CDATA[<p>thanks for coming out tonight!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
