<?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>Mental X</title>
	<atom:link href="http://www.mentalx.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mentalx.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Fri, 02 Mar 2012 21:13:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Boom Boom Desktop</title>
		<link>http://www.mentalx.com/2012/03/boom-boom-desktop/</link>
		<comments>http://www.mentalx.com/2012/03/boom-boom-desktop/#comments</comments>
		<pubDate>Fri, 02 Mar 2012 21:13:08 +0000</pubDate>
		<dc:creator>Noah Larsen</dc:creator>
				<category><![CDATA[Desktops]]></category>
		<category><![CDATA[Mental X]]></category>

		<guid isPermaLink="false">http://www.mentalx.com/?p=486</guid>
		<description><![CDATA[I modified they Blossy Boom Boom code to make a more desktop Friendly version. Happy Friday! Download desktop versions of the piece below: 1280 x 800 1440 x 900 1680 x 1050 1920 x 1200 2560 x 1440 iPhone]]></description>
			<content:encoded><![CDATA[<p>I modified they Blossy Boom Boom code to make a more desktop Friendly version. Happy Friday!</p>
<p style="text-align: center;"><img class="aligncenter" title="OrnamentalX" src="http://www.mentalx.com/images/boom_desktop.jpg" alt="" width="676" height="423" /></p>
<p>Download desktop versions of the piece below:</p>
<ul class="post_list">
<li><a title="Boom 1280 x 800" href="http://www.mentalx.com/images/desktops/boom_1280.jpg" target="_blank">1280 x 800</a></li>
<li><a title="Boom 1440 x 900" href="http://www.mentalx.com/images/desktops/boom_1440.jpg" target="_blank">1440 x 900</a></li>
<li><a title="Boom 1680 x 1050" href="http://www.mentalx.com/images/desktops/boom_1680.jpg" target="_blank">1680 x 1050</a></li>
<li><a title="Boom 1920 x 1200" href="http://www.mentalx.com/images/desktops/boom_1920.jpg" target="_blank">1920 x 1200</a></li>
<li><a title="Boom 2560 x 1440" href="http://www.mentalx.com/images/desktops/boom_2560.jpg" target="_blank">2560 x 1440</a></li>
<li><a title="Boom iPhone" href="http://www.mentalx.com/images/desktops/boom_iPhone.jpg" target="_blank">iPhone</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.mentalx.com/2012/03/boom-boom-desktop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blossy Boom Boom</title>
		<link>http://www.mentalx.com/2012/02/blossy-boom-boom/</link>
		<comments>http://www.mentalx.com/2012/02/blossy-boom-boom/#comments</comments>
		<pubDate>Fri, 17 Feb 2012 22:21:12 +0000</pubDate>
		<dc:creator>Noah Larsen</dc:creator>
				<category><![CDATA[Mental X]]></category>

		<guid isPermaLink="false">http://www.mentalx.com/?p=479</guid>
		<description><![CDATA[Extracted Poem boom blossy, blossy, blossy boom boom boom explosiveness flows into ether expanding expanding expanding we watch awkwardly releasing releasing releasing obsessing explosiveness contemplate explosiveness pushing pushing explosiveness pushing awkwardly pushing, obsessing we awkwardly contemplate watch awkwardly contemplate everything flows into ether we, watch, everything everything explosiveness flows into ether Final Code / Pre-Extracted [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter" title="Explosive Flow Illustration" src="http://www.mentalx.com/images/explosive_01.jpg" alt="" width="676" height="541" /></p>
<h3>Extracted Poem</h3>
<pre>
boom

blossy, blossy, blossy

boom
	boom
		boom

explosiveness flows into ether

expanding
	expanding
		expanding

we watch awkwardly
	releasing
		releasing
			releasing

obsessing explosiveness
contemplate explosiveness

pushing
	pushing explosiveness
		pushing

awkwardly pushing, obsessing

we awkwardly contemplate

watch awkwardly
	contemplate
		everything
	flows into ether

we, watch, everything
				everything

explosiveness flows into ether
</pre>
<h3>Final Code / Pre-Extracted Poem</h3>
<pre><code>
void setup() {
  size(750, 600); smooth(); noLoop();
}

void draw() { 

background(0);

float boom = 0;
   for(int blossy = 1; blossy < 75; blossy += 1) {
     noStroke();
     fill(random(200), random(30), random(20), random(20));
     rect(boom, 0, boom, 900);
     boom += 5;
     noLoop();
   }

float explosiveness = 280;
float flows = random(255);
  float into = random(255);
  float ether = random(255);
for(int expanding = 0; expanding < 14; expanding += 1) {
  float we = random(750);
  float watch = random(200,400);
  float awkwardly = 0;
  for(int releasing = 0; releasing < 1; releasing += 1) {
    float obsessing = (2 * PI) / explosiveness;
    float contemplate = explosiveness;
    for(int pushing = 0; pushing < explosiveness; pushing++) {
      awkwardly = pushing * obsessing;
      we = width/2 + (cos(awkwardly) * contemplate);
      watch = height/2 + (sin(awkwardly) * contemplate);
      float everything = random(10,40);
    strokeWeight(.25);
    stroke(flows, into, ether, 255);
    fill(255,255,255, 100);
    ellipse(we, watch, everything, everything);
    }
  }
  explosiveness -= 20;
  flows += 10;
  into -= 20;
  ether -= 10;
}

}
</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.mentalx.com/2012/02/blossy-boom-boom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Bamboo Mounted Prints</title>
		<link>http://www.mentalx.com/2012/01/new-bamboo-mounted-prints/</link>
		<comments>http://www.mentalx.com/2012/01/new-bamboo-mounted-prints/#comments</comments>
		<pubDate>Thu, 12 Jan 2012 20:54:49 +0000</pubDate>
		<dc:creator>Noah Larsen</dc:creator>
				<category><![CDATA[Mental X]]></category>

		<guid isPermaLink="false">http://www.mentalx.com/?p=475</guid>
		<description><![CDATA[I&#8217;ll be having a couple new bamboo mounted prints from Plywerk coming my way. Below are the designs. These will be available at FACTORYmade in Boulder as soon as they&#8217;re in. #winning]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ll be having a couple new bamboo mounted prints from <a title="Plywerk" href="http://www.plywerk.com/">Plywerk</a> coming my way. Below are the designs. These will be available at <a title="FACTORYmade" href="http://factorymadeboulder.com/">FACTORYmade</a> in Boulder as soon as they&#8217;re in. #winning</p>
<p><img class="aligncenter" title="Summer Sketch Export" src="http://www.mentalx.com/images/summer_sketch.jpg" alt="" width="676" height="541" /></p>
<p><img class="aligncenter" title="OrnamentalX" src="http://www.mentalx.com/images/ornamentalx.jpg" alt="" width="676" height="541" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mentalx.com/2012/01/new-bamboo-mounted-prints/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OrnamentalX</title>
		<link>http://www.mentalx.com/2012/01/ornamentalx/</link>
		<comments>http://www.mentalx.com/2012/01/ornamentalx/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 23:46:24 +0000</pubDate>
		<dc:creator>Noah Larsen</dc:creator>
				<category><![CDATA[Desktops]]></category>
		<category><![CDATA[Mental X]]></category>

		<guid isPermaLink="false">http://www.mentalx.com/?p=471</guid>
		<description><![CDATA[So, here&#8217;s the inside scoop for all y&#8217;all mentalX fans. In the next week or two, I will be adding a few bamboo prints and iPhone cases to the wildly amazing collection of goods at FACTORYmade Creative Goods in Boulder. To celebrate, I&#8217;m dropping some new desktops. Keep an eye on the space for more [...]]]></description>
			<content:encoded><![CDATA[<p>So, here&#8217;s the inside scoop for all y&#8217;all mentalX fans. In the next week or two, I will be adding a few bamboo prints and iPhone cases to the wildly amazing collection of goods at <a href="http://factorymadeboulder.com/" title="Factorymade Boulder">FACTORYmade Creative Goods</a> in Boulder. To celebrate, I&#8217;m dropping some new desktops. Keep an eye on the space for more information.</p>
<p style="text-align: center;"><img class="aligncenter" title="OrnamentalX" src="http://www.mentalx.com/images/ornamentalx_desktop.jpg" alt="" width="676" height="541" /></p>
<p>Download desktop versions of the piece below:</p>
<ul class="post_list">
<li><a title="OrnamentalX 1280 x 800" href="http://www.mentalx.com/images/desktops/ornamentalx_1280.jpg" target="_blank">1280 x 800</a></li>
<li><a title="OrnamentalX 1440 x 900" href="http://www.mentalx.com/images/desktops/ornamentalx_1440.jpg" target="_blank">1440 x 900</a></li>
<li><a title="OrnamentalX 1680 x 1050" href="http://www.mentalx.com/images/desktops/ornamentalx_1680.jpg" target="_blank">1680 x 1050</a></li>
<li><a title="OrnamentalX 1920 x 1200" href="http://www.mentalx.com/images/desktops/ornamentalx_1920.jpg" target="_blank">1920 x 1200</a></li>
<li><a title="OrnamentalX 2560 x 1440" href="http://www.mentalx.com/images/desktops/ornamentalx_2560.jpg" target="_blank">2560 x 1440</a></li>
<li><a title="OrnamentalX iPhone" href="http://www.mentalx.com/images/desktops/ornamentalx_iphone.jpg" target="_blank">iPhone</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.mentalx.com/2012/01/ornamentalx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Watering Creativity Print on Bamboo</title>
		<link>http://www.mentalx.com/2012/01/watering-creativity-print-on-bamboo/</link>
		<comments>http://www.mentalx.com/2012/01/watering-creativity-print-on-bamboo/#comments</comments>
		<pubDate>Sat, 07 Jan 2012 05:00:19 +0000</pubDate>
		<dc:creator>Noah Larsen</dc:creator>
				<category><![CDATA[Mental X]]></category>

		<guid isPermaLink="false">http://www.mentalx.com/?p=468</guid>
		<description><![CDATA[Just got in an 8&#215;10, bamboo-mounted version of the Watering Creativity export. It&#8217;s available on Etsy for 75 bones. Dig it.]]></description>
			<content:encoded><![CDATA[<p>Just got in an 8&#215;10, bamboo-mounted version of the Watering Creativity export. <a href="http://www.etsy.com/listing/89936886/watering-creativity-print-on-bamboo">It&#8217;s available on Etsy for 75 bones.</a> Dig it.</p>
<p><img class="aligncenter" title="Watering mounted on bamboo" src="http://www.mentalx.com/images/watering_01.jpg" alt="" width="676" height="545" /></p>
<p><img class="aligncenter" title="Watering mounted on bamboo" src="http://www.mentalx.com/images/watering_02.jpg" alt="" width="676" height="400" /></p>
<p><img class="aligncenter" title="Watering mounted on bamboo" src="http://www.mentalx.com/images/watering_03.jpg" alt="" width="676" height="345" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mentalx.com/2012/01/watering-creativity-print-on-bamboo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2011 Happy Holidays Card</title>
		<link>http://www.mentalx.com/2012/01/2011-happy-holidays-card/</link>
		<comments>http://www.mentalx.com/2012/01/2011-happy-holidays-card/#comments</comments>
		<pubDate>Mon, 02 Jan 2012 22:17:33 +0000</pubDate>
		<dc:creator>Noah Larsen</dc:creator>
				<category><![CDATA[Mental X]]></category>

		<guid isPermaLink="false">http://www.mentalx.com/?p=464</guid>
		<description><![CDATA[I&#8217;ve been working on what I&#8217;m calling &#8220;Code Poems.&#8221; The basic idea is that variables are named in such a way to create a readable poem that relates to the exported art. The overall goal is to more closely tie code to art in an attempt to make the art form more understandable to non-nerds. [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been working on what I&#8217;m calling &#8220;Code Poems.&#8221; The basic idea is that variables are named in such a way to create a readable poem that relates to the exported art. The overall goal is to more closely tie code to art in an attempt to make the art form more understandable to non-nerds. In practice, the code ends up being simpler and procedural in nature.</p>
<p>The debut of this concept was on our 2011 holiday cards to friends and family as seen below. Click on image for a more readable version.</p>
<p><a href="http://www.mentalx.com/images/holiday_card_2011_lg.jpg"><img class="aligncenter" title="2011 Holiday Card art" src="http://www.mentalx.com/images/holiday_card_2011.jpg" alt="2011 Holiday Card art" width="676" height="955" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mentalx.com/2012/01/2011-happy-holidays-card/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Watering Creativity</title>
		<link>http://www.mentalx.com/2011/12/watering-creativity/</link>
		<comments>http://www.mentalx.com/2011/12/watering-creativity/#comments</comments>
		<pubDate>Mon, 12 Dec 2011 21:48:55 +0000</pubDate>
		<dc:creator>Noah Larsen</dc:creator>
				<category><![CDATA[Desktops]]></category>
		<category><![CDATA[Mental X]]></category>

		<guid isPermaLink="false">http://www.mentalx.com/?p=452</guid>
		<description><![CDATA[Download desktop versions of the piece below: 1280 x 800 1440 x 900 1680 x 1050 1920 x 1200 2560 x 1440 iPhone]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter" title="Watering Creativity Export" src="http://www.mentalx.com/images/watering.jpg" alt="" width="676" height="423" /></p>
<p>Download desktop versions of the piece below:</p>
<ul class="post_list">
<li><a title="Watering 1280 x 800" href="http://www.mentalx.com/images/desktops/watering_1280x800.jpg" target="_blank">1280 x 800</a></li>
<li><a title="Watering 1440 x 900" href="http://www.mentalx.com/images/desktops/watering_1440x900.jpg" target="_blank">1440 x 900</a></li>
<li><a title="Watering 1680 x 1050" href="http://www.mentalx.com/images/desktops/watering_1680x1050.jpg" target="_blank">1680 x 1050</a></li>
<li><a title="Watering 1920 x 1200" href="http://www.mentalx.com/images/desktops/watering_1920x1200.jpg" target="_blank">1920 x 1200</a></li>
<li><a title="Watering 2560 x 1440" href="http://www.mentalx.com/images/desktops/watering_2560x1440.jpg" target="_blank">2560 x 1440</a></li>
<li><a title="Watering iPhone" href="http://www.mentalx.com/images/desktops/watering_iPhone.jpg" target="_blank">iPhone</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.mentalx.com/2011/12/watering-creativity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Snow Code</title>
		<link>http://www.mentalx.com/2011/12/snow-code/</link>
		<comments>http://www.mentalx.com/2011/12/snow-code/#comments</comments>
		<pubDate>Thu, 08 Dec 2011 22:58:13 +0000</pubDate>
		<dc:creator>Noah Larsen</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.mentalx.com/?p=448</guid>
		<description><![CDATA[import processing.pdf.*; void setup() { size(1000, 1000); smooth(); noLoop(); beginRecord(PDF, &#8220;sketch_06.pdf&#8221;); } void draw() { //sets background color background(random(10, 25), random(10), random(10, 25)); for(int r=0; r]]></description>
			<content:encoded><![CDATA[<p>import processing.pdf.*;</p>
<p>void setup() {<br />
  size(1000, 1000);<br />
  smooth();<br />
  noLoop();<br />
beginRecord(PDF, &#8220;sketch_06.pdf&#8221;);<br />
}</p>
<p>void draw() {</p>
<p>//sets background color  </p>
<p>background(random(10, 25), random(10), random(10, 25));</p>
<p>for(int r=0; r<400; r+=1) {<br />
  float x1 = random(1000);<br />
  float y1 = random(1000);<br />
  float x2 = random(1000);<br />
  float y2 = random(1000);<br />
  float gcolor = random(255);<br />
  float angle = 0;<br />
  for(int u=0; u<1; u+=1) {<br />
    float wedge = (2 * PI) / 10;<br />
    float radius = 30;<br />
    for(int i = 1; i < 40; i++) {<br />
      angle = i * wedge;<br />
      x1 = x2 + (cos(angle) * radius);<br />
      y1 = y2 + (sin(angle) * radius);<br />
      float e2 = random(2, 20);<br />
      strokeWeight(1);<br />
      stroke(gcolor, gcolor, gcolor, random(10, 70));<br />
      fill(255, 255, 255, random(10, 70));<br />
      ellipse(x1, y1, e2, e2);<br />
    }<br />
  }<br />
}</p>
<p>for(int r=0; r<300; r+=1) {<br />
  float x1 = random(1000);<br />
  float y1 = random(1000);<br />
  float x2 = random(1000);<br />
  float y2 = random(1000);<br />
  float gcolor = random(255);<br />
  float angle = 0;<br />
  for(int u=0; u<1; u+=1) {<br />
    float wedge = (2 * PI) / 10;<br />
    float radius = 20;<br />
    for(int i = 1; i < 40; i++) {<br />
      angle = i * wedge;<br />
      x1 = x2 + (cos(angle) * radius);<br />
      y1 = y2 + (sin(angle) * radius);<br />
      float e2 = random(2, 10);<br />
      strokeWeight(1);<br />
      stroke(gcolor, gcolor, gcolor, random(10, 70));<br />
      ellipse(x1, y1, e2, e2);<br />
    }<br />
  }<br />
}</p>
<p>endRecord();</p>
<p>}</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mentalx.com/2011/12/snow-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Purple snow, purple snow</title>
		<link>http://www.mentalx.com/2011/10/purple-snow-purple-snow/</link>
		<comments>http://www.mentalx.com/2011/10/purple-snow-purple-snow/#comments</comments>
		<pubDate>Mon, 31 Oct 2011 23:28:03 +0000</pubDate>
		<dc:creator>Noah Larsen</dc:creator>
				<category><![CDATA[Desktops]]></category>
		<category><![CDATA[Mental X]]></category>

		<guid isPermaLink="false">http://www.mentalx.com/?p=443</guid>
		<description><![CDATA[New season. New export. New phone. New case. New desktops. Download desktop versions of the piece below: 1280 x 800 1440 x 900 1680 x 1050 1920 x 1200 2560 x 1440 iPhone]]></description>
			<content:encoded><![CDATA[<p>New season. New export. New phone. New case. New desktops.</p>
<p><img class="aligncenter" title="Purple Snow Export" src="http://www.mentalx.com/images/purple_snow.jpg" alt="" width="676" height="423" /></p>
<p><img class="aligncenter" title="Purple Snow Case" src="http://www.mentalx.com/images/purple_snow_phone.jpg" alt="" width="676" height="451" /></p>
<p>Download desktop versions of the piece below:</p>
<ul class="post_list">
<li><a title="Purple Snow 1280 x 800" href="http://www.mentalx.com/images/desktops/purple_snow_1280.jpg" target="_blank">1280 x 800</a></li>
<li><a title="Purple Snow 1440 x 900" href="http://www.mentalx.com/images/desktops/purple_snow_1440.jpg" target="_blank">1440 x 900</a></li>
<li><a title="Purple Snow 1680 x 1050" href="http://www.mentalx.com/images/desktops/purple_snow_1680.jpg" target="_blank">1680 x 1050</a></li>
<li><a title="Purple Snow 1920 x 1200" href="http://www.mentalx.com/images/desktops/purple_snow_1920.jpg" target="_blank">1920 x 1200</a></li>
<li><a title="Purple Snow 2560 x 1440" href="http://www.mentalx.com/images/desktops/purple_snow_2560.jpg" target="_blank">2560 x 1440</a></li>
<li><a title="Purple Snow iPhone" href="http://www.mentalx.com/images/desktops/purple_snow_iphone.jpg" target="_blank">iPhone</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.mentalx.com/2011/10/purple-snow-purple-snow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Birthday Art</title>
		<link>http://www.mentalx.com/2011/10/birthday-art/</link>
		<comments>http://www.mentalx.com/2011/10/birthday-art/#comments</comments>
		<pubDate>Tue, 18 Oct 2011 17:19:27 +0000</pubDate>
		<dc:creator>Noah Larsen</dc:creator>
				<category><![CDATA[Mental X]]></category>

		<guid isPermaLink="false">http://www.mentalx.com/?p=439</guid>
		<description><![CDATA[Made the following for a friend&#8217;s b-day gift. Three pics of the finished art mounted to aluminum, followed by the digital output (with bleed).]]></description>
			<content:encoded><![CDATA[<p>Made the following for a friend&#8217;s b-day gift. Three pics of the finished art mounted to aluminum, followed by the digital output (with bleed).</p>
<p><img class="aligncenter" title="B-day Art V01" src="http://www.mentalx.com/images/nene_01.jpg" alt="" width="676" height="511" /></p>
<p><img class="aligncenter" title="bday art 02" src="http://www.mentalx.com/images/nene_02.jpg" alt="" width="676" height="393" /></p>
<p><img class="aligncenter" title="bday art 03" src="http://www.mentalx.com/images/nene_03.jpg" alt="" width="676" height="331" /></p>
<p><img class="aligncenter" title="bday art - digital output" src="http://www.mentalx.com/images/nene_04.jpg" alt="" width="676" height="514" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mentalx.com/2011/10/birthday-art/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

