<?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>Merde</title>
	<atom:link href="http://existentialmedia.org/merde/feed/" rel="self" type="application/rss+xml" />
	<link>http://existentialmedia.org/merde</link>
	<description></description>
	<lastBuildDate>Tue, 09 Mar 2010 04:32:23 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Public Repositories</title>
		<link>http://existentialmedia.org/merde/2010/03/public-repositories/</link>
		<comments>http://existentialmedia.org/merde/2010/03/public-repositories/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 04:32:23 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[git]]></category>

		<guid isPermaLink="false">http://existentialmedia.org/merde/?p=481</guid>
		<description><![CDATA[
Setting up and maintaining Existential Media I’ve learned some things that I would like to share. I’m adding my hacks and code that I’ve used for Existential Media to GitHub. This will include some WordPress themes and altered plugins initially, but I will be adding more. Transparency. Roll your own.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://existentialmedia.org/merde/files/2010/03/github.jpg" rel="lightbox[481]"><img src="http://existentialmedia.org/merde/files/2010/03/github-500x86.jpg" alt="" title="github" width="500" height="86" class="alignnone size-medium wp-image-482" /></a></p>
<p>Setting up and maintaining Existential Media I’ve learned some things that I would like to share. I’m adding my hacks and code that I’ve used for Existential Media to <a href="http://github.com/existentialmedia">GitHub</a>. This will include some WordPress themes and altered plugins initially, but I will be adding more. Transparency. Roll your own.</p>
]]></content:encoded>
			<wfw:commentRss>http://existentialmedia.org/merde/2010/03/public-repositories/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using suexec and mod_fcgid</title>
		<link>http://existentialmedia.org/merde/2010/03/using-suexec-and-mod_fcgid/</link>
		<comments>http://existentialmedia.org/merde/2010/03/using-suexec-and-mod_fcgid/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 03:29:45 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[LAMP]]></category>
		<category><![CDATA[mod_fcgid]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[suEXEC]]></category>
		<category><![CDATA[Web hosting talk]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://existentialmedia.org/merde/?p=469</guid>
		<description><![CDATA[
Since setting up our new server, I’ve been trying to figure out user/group permissions. I wanted WordPress to be able to write to the server (to create thumbnails, update plugins, etc), and at the same time I wanted to be able to write to the server logging in as my user in Transmit. I had [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://existentialmedia.org/merde/files/2010/03/suexec.jpg" rel="lightbox[469]"><img src="http://existentialmedia.org/merde/files/2010/03/suexec-500x72.jpg" alt="" title="suexec" width="500" height="72" class="alignnone size-medium wp-image-479" /></a></p>
<p>Since <a href="http://existentialmedia.org/merde/2010/02/setting-up-ubuntu-on-slicehost/">setting up</a> our new server, I’ve been trying to figure out user/group permissions. I wanted WordPress to be able to write to the server (to create thumbnails, update plugins, etc), and at the same time I wanted to be able to write to the server logging in as my user in Transmit. I had resolved to setting the user/group to www-data (the Apache user, so WordPress could write to the server). Then I added myself to the group www-data and set the permissions for all the files to 775. </p>
<p>That worked. But it didn’t seem right. On our shared server before this it wasn’t like this. This is when I discovered using suexec and mod_fcgid. Using suexec PHP can run as my user. That way I can have the correct file permissions and be the owner of my files. It took me a while to find information on how to set this up, and once I did I was definitely confused at points. I based my work on two tutorials.</p>
<p>The first tutorial I worked with was on <a href="http://www.howtoforge.com/how-to-set-up-apache2-with-mod_fcgid-and-php5-on-ubuntu-9.10">HowtoForge</a>. I skipped the steps on installing Apache and setting up virtual hosts. I followed the other instructions pretty closely. But once I had finished, the server was throwing up 500 errors.  </p>
<p><a href="http://typo3.org/development/articles/using-php-with-mod-fcgid/?tx_rlmpofficedocuments_pi1[view]=single&#038;cHash=45a565e1de">The second tutorial</a> I found to help me with where I hadn’t succeeded. The steps were fairly similar. The one difference I noticed that fixed my problem was to make the <code>php-fcgi-starter</code> executable. Wow. Simple. </p>
<pre><code>chmod a+x</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://existentialmedia.org/merde/2010/03/using-suexec-and-mod_fcgid/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Setting up Ubuntu on Slicehost</title>
		<link>http://existentialmedia.org/merde/2010/02/setting-up-ubuntu-on-slicehost/</link>
		<comments>http://existentialmedia.org/merde/2010/02/setting-up-ubuntu-on-slicehost/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 21:13:59 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[LAMP]]></category>
		<category><![CDATA[Web hosting talk]]></category>

		<guid isPermaLink="false">http://existentialmedia.org/merde/?p=443</guid>
		<description><![CDATA[
DIY. Punk. Whatever. DIT. Open source. I have been semi-successful in moving off of shared hosting to VPS hosting with Slicehost. I hope you don’t get the impression that this was easy and I could setup a server whenever with my eyes closed. I put some work into it. And that is why I’m writing [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://existentialmedia.org/merde/files/2010/02/Screen-shot-2010-02-13-at-5.52.29-PM-500x460.png" alt="" title="Screen shot 2010-02-13 at 5.52.29 PM" width="500" height="460" class="alignnone size-medium wp-image-452" /></p>
<p>DIY. Punk. Whatever. DIT. Open source. I have been semi-successful in moving off of shared hosting to VPS hosting with <a href="https://manage.slicehost.com/customers/new?referrer=e2c11d5ff103383a500c05d8682bfc5b">Slicehost</a>. I hope you don’t get the impression that this was easy and I could setup a server whenever with my eyes closed. I put some work into it. And that is why I’m writing this. This post is coming to you from <a href="http://www.ubuntu.com/">Ubuntu</a> 9.10, <a href="http://httpd.apache.org/">Apache</a> 2.2.12, <a href="http://www.mysql.com/">MySQL</a> 5.1.37, and <a href="http://php.net/">PHP</a> 5.2.10. All of which I installed with <code>apt-get</code>. I chose Ubuntu because I had a little experience with it already, and because since it is pretty popular that means a lot of people are working on it. </p>
<p>I chose to do this project because I thought it important to know more intricately how these kinds of things work. I had a pretty good understanding of the basics, but I wanted to delve deeper. Optimize. It was an art project for me. Roll your own. Also, I’m not going to lie, there was a monetary aspect to this as well. The price is the same as my old server, but the new server is much more well endowed. </p>
<p>Let’s talk about process. To setup the server, I followed <a href="http://wiki.slicehost.com/doku.php?id=get_started_with_your_new_ubuntu_slice">this tutorial</a> from the Slicehost wiki. I did some things differently because this tutorial is a little outdated. For example, they instruct you to build Apache from source, but I so much more easily installed the Ubuntu package. Also, this tutorial doesn’t really talk about setting up <a href="http://httpd.apache.org/docs/2.2/vhosts/">VirtualHosts</a> in Apache, which is necessary for adding domains. Here are my steps for doing this in Ubuntu. </p>
<ol>
<li>
<pre><code>cd /etc/apache2/sites-available</code></pre>
</li>
<li>
<pre><code>sudo cp default yourdomain.com</code></pre>
</li>
<li>
<pre><code>sudo nano yourdomain.com</code></pre>
</li>
<li>Add the line <code>ServerName yourdomain.com</code> and change the <code>DocumentRoot</code> and <code>Directory</code> to where your site resides on your server (i.e. /var/www or your home folder)</li>
<li>Ctrl-o to save your changes, then ctrl-x to exit.</li>
<li>Run <code>sudo a2ensite yourdomain.com</code> to add your domain to sites-enabled</li>
<li>Then reload Apache with <code>sudo /etc/init.d/apache2 reload</code></li>
</ol>
<p>This now means more of the responsibility for how things work is in my hands. No more relying on others. Taking care on my stuff. </p>
]]></content:encoded>
			<wfw:commentRss>http://existentialmedia.org/merde/2010/02/setting-up-ubuntu-on-slicehost/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lifetimes</title>
		<link>http://existentialmedia.org/merde/2009/12/lifetimes/</link>
		<comments>http://existentialmedia.org/merde/2009/12/lifetimes/#comments</comments>
		<pubDate>Thu, 31 Dec 2009 00:59:47 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://existentialmedia.org/merde/?p=433</guid>
		<description><![CDATA[
In a twist of fate, nothing really important. Different lifetimes. Oakhurst. San Diego. Los Angeles. Jet-setting. Whatever.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://existentialmedia.org/merde/files/2009/12/Photo-on-2010-12-30-at-16.38.jpg" rel="lightbox[433]"><img class="alignnone size-medium wp-image-435" title="Photo on 2010-12-30 at 16.38" src="http://existentialmedia.org/merde/files/2009/12/Photo-on-2010-12-30-at-16.38-500x375.jpg" alt="Photo on 2010-12-30 at 16.38" width="500" height="375" /></a></p>
<p>In a twist of fate, nothing really important. Different lifetimes. Oakhurst. San Diego. Los Angeles. Jet-setting. Whatever.</p>
]]></content:encoded>
			<wfw:commentRss>http://existentialmedia.org/merde/2009/12/lifetimes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Melody and narrative</title>
		<link>http://existentialmedia.org/merde/2009/12/melody-and-narrative/</link>
		<comments>http://existentialmedia.org/merde/2009/12/melody-and-narrative/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 22:58:20 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Literate]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Harry Potter]]></category>
		<category><![CDATA[Lee "Scratch" Perry]]></category>
		<category><![CDATA[Nathan Johnson]]></category>
		<category><![CDATA[Twilight]]></category>

		<guid isPermaLink="false">http://existentialmedia.org/merde/?p=391</guid>
		<description><![CDATA[I have to disclose a few facts to you before I can fully explain what I’m about to tell you. I’m a sucker for a book series. I have read Harry Potter, the Space Odyssey Series, the Time Odyssey Series, the Rama Series (including Bright Messengers and Double Full Moon Night), Lord of the Rings, [...]]]></description>
			<content:encoded><![CDATA[<p>I have to disclose a few facts to you before I can fully explain what I’m about to tell you. I’m a sucker for a book series. I have read <a href="http://en.wikipedia.org/wiki/Harry_Potter">Harry Potter</a>, <a href="http://en.wikipedia.org/wiki/Space_Odyssey">the Space Odyssey Series</a>, <a href="http://en.wikipedia.org/wiki/A_Time_Odyssey">the Time Odyssey Series</a>, <a href="http://en.wikipedia.org/wiki/Rendezvous_with_Rama">the Rama Series</a> (including <em>Bright Messengers</em> and <em>Double Full Moon Night</em>), <a href="http://en.wikipedia.org/wiki/Lord_of_the_rings">Lord of the Rings</a>, and most recently <a href="http://en.wikipedia.org/wiki/Twilight_%28series%29">Twilight</a>. There is something about series like these that interest me. Even if the story isn’t particularly good, I cannot walk away until I have finished everything. </p>
<p>Another fact I need to disclose is the method which I consume music. Although I honestly try to change it up, I usually enjoy listen to one album or song at a time over and over. Most recently that has been the album <a href="http://en.wikipedia.org/wiki/Wichita_Lineman_%28Glen_Campbell_album%29">Wichita Lineman</a> by Glen Campbell, but in the past has been <a href="http://www.emusic.com/album/Blackblack-Blackblack-MP3-Download/11273050.html">Blackblack</a>, <a href="http://www.amazon.com/Brothers-Original-Motion-Picture-Soundtrack/dp/B002A62PUA">The Brothers Bloom soundtrack</a>, or <a href="http://existentialmedia.org/merde/2008/12/songs-i-hum/">these songs</a>.</p>
<p>Sometimes these facts unexpectedly coexist. When a book series and an album intersect I cannot divorce the two. They are forever deeply connected in my mind. So much so that I feel like crying when I hear a song. It reminds me so vividly of the story that has a permanent place in my heart. It is the longing for that moment. The happy memory of your weekend on a Sunday afternoon. Or the lull after the high of summer. </p>
<p><img src="http://existentialmedia.org/merde/files/2009/12/lee-perry-500x283.jpg" alt="lee-perry" title="lee-perry" width="500" height="283" class="alignnone size-medium wp-image-412" /></p>
<p>The first time this happened to me was when I read the first four Harry Potter books during high school at our apartment in Clairemont, San Diego. I was really into dub at the time especially <a href="http://www.amazon.com/Scratch-Attack-Lee-Perry/dp/B000000PXG">Scratch Attack</a> by Lee Perry. I listened to that collection on repeat for the entire duration of the first four. Whenever I hear the song Scratch Walking I think of Harry saving Ginny in the Chamber of Secrets, of the despair of fighting against so much darkness, of having family in your close friends, of the mysteries of Hogwarts. </p>
<p>I later felt compelled to turn Scratch Attack on while I was reading the rest because I could not separate Harry Potter from Lee Perry.</p>
<p><img src="http://existentialmedia.org/merde/files/2009/12/edward-bella-twilight-500x333.jpg" alt="edward-bella-twilight" title="edward-bella-twilight" width="500" height="333" class="alignnone size-medium wp-image-411" /></p>
<p>This recently happened to me again. I saw the movie The Brothers Bloom and became obsessed with its soundtrack. I started listening to it on repeat all day. I also was persuaded to see the first Twilight movie. I can’t explain why, but seeing the movie gave me the want to read all of the Twilight books. And now, forever connected to the Department of Safety, the Northwest, the town of Forks, the beach at La Push, the Cullens’ House, missing Edward, the Volturi… is Penelope’s Theme by Nathan Johnson. A kind of “Bella’s Lullaby” if you will.</p>
<p>I had an Engish teacher in Jr. High who would play different music for each book we were reading to help us to remember it for the tests. Although that was more deliberate, the conclusion is similar. I believe the connection between the melody and the narrative enables me to remember the stories so much more intensely. It is an inadvertent psychological experiment. Have you had any experience like this? Have you had an unbreakable connection between certain melodies and narratives?</p>
]]></content:encoded>
			<wfw:commentRss>http://existentialmedia.org/merde/2009/12/melody-and-narrative/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://existentialmedia.org/merde/files/2009/12/07-Scratch-Walking.mp3" length="4492618" type="audio/mpeg" />
<enclosure url="http://existentialmedia.org/merde/files/2009/12/11-Penelopes-Theme.mp3" length="6633487" type="audio/mpeg" />
		</item>
		<item>
		<title>Drop City</title>
		<link>http://existentialmedia.org/merde/2009/10/drop-city/</link>
		<comments>http://existentialmedia.org/merde/2009/10/drop-city/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 00:23:30 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[Department of Safety]]></category>
		<category><![CDATA[Drop City]]></category>
		<category><![CDATA[intentional community]]></category>

		<guid isPermaLink="false">http://existentialmedia.org/merde/?p=375</guid>
		<description><![CDATA[
Drop City is a legendary microcommunity, it is a model, and, ultimately, an abandoned project. Drop City fascinates me and endearingly it reminds me of where I live. It started in a frenzy, it attracted famous artists and musicians, but after its height slowly fell into decay. After five years, it was abandoned, but many [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://existentialmedia.org/merde/files/2009/10/DropCity-1-500x164.jpg" alt="DropCity-1" title="DropCity-1" width="500" height="164" class="alignnone size-medium wp-image-378" /></p>
<p><a href="http://en.wikipedia.org/wiki/Drop_City" target="_blank">Drop City</a> is a legendary microcommunity, it is a model, and, ultimately, an abandoned project. Drop City fascinates me and endearingly it reminds me of <a href="http://departmentofsafety.com/" target="_blank">where I live</a>. It started in a frenzy, it attracted famous artists and musicians, but after its height slowly fell into decay. After five years, it was abandoned, but many of the original structures remain today.</p>
<p>Fueled by thoughts of the <a href="http://en.wikipedia.org/wiki/Cuban_Missile_Crisis" target="_blank">Cuban Missile Crisis</a> and the <a href="http://en.wikipedia.org/wiki/Vietnam_War" target="_blank">Vietnam War</a>, Drop City flourished. Domes were built for domestic purposes – a kitchen, living quarters, a theater – out of recycled products (for which they won the Buckminster Fuller’s Dymaxion award). Ideas thrived – reuse and solar power, drone and early electronic music, creative community. Many “happenings” happened. </p>
<p><img src="http://existentialmedia.org/merde/files/2009/10/good-icosa.preview-1-500x333.jpg" alt="good icosa.preview-1" title="good icosa.preview-1" width="500" height="333" class="alignnone size-medium wp-image-379" /></p>
<p>Located in <a href="http://stable.toolserver.org/geohack/geohack.php?pagename=Drop_City&#038;params=37_13_21.69_N_104_29_23.15_W_region:US-CO_type:landmark_scale:2000">Southern Colorado</a>, early in its history this “intentional community” was a close relation to utopia. Anyone and everyone was welcome, forever free and open. It was naive, but worked for a time.</p>
<blockquote><p>“How do they survive?”<br />
“They just do. Go live there a while and see for yourself.”<br />
“Anybody can just go live there?”<br />
“Anybody. Drop City is Utopia.”<br />
“Don’t believe it,” Frinki said.<br />
“I don’t believe it. Nobody believes in Utopia any more. At least not in Colorado.”<br />
“Okay, it isn’t Utopia,” Kugo said. “Utopia’s got rules. Drop City doesn’t have any rules.”<br />
“Up is down and down is up. Isn’t that right, Kugo? And the tooth fairy leaves Thai sticks under everybody’s pillow.”</p>
<p>—<a href="http://www.red-coral.net/DropCity1.html">Memories of DROP CITY</a></p></blockquote>
<p><img src="http://existentialmedia.org/merde/files/2009/10/Curl-dome.preview-1-500x333.jpg" alt="Curl-dome.preview-1" title="Curl-dome.preview-1" width="500" height="333" class="alignnone size-medium wp-image-377" /></p>
<p>But with notoriety comes problems. The founders, the original artists, eventually got burned out and moved onto other projects. People eventually began coming to Drop City not to contribute, but to take away, looking for fulfillment. The land was sold, most of the domes dismantled, but the model continues.</p>
<p><img src="http://existentialmedia.org/merde/files/2009/10/IMG00011-copy-filtered.preview-1-500x250.jpg" alt="IMG00011 copy-filtered.preview-1" title="IMG00011 copy-filtered.preview-1" width="500" height="250" class="alignnone size-medium wp-image-380" /></p>
<p>These structures – community, <a href="http://en.wikipedia.org/wiki/Open_source">openness</a>, cultural cannibalism – persist into our present. Can projects or ideas persist beyond its founding generation? Should they?</p>
]]></content:encoded>
			<wfw:commentRss>http://existentialmedia.org/merde/2009/10/drop-city/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It still feels incomplete</title>
		<link>http://existentialmedia.org/merde/2009/09/it-still-feels-incomplete/</link>
		<comments>http://existentialmedia.org/merde/2009/09/it-still-feels-incomplete/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 01:19:48 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://existentialmedia.org/merde/?p=363</guid>
		<description><![CDATA[
I think about it, more often than you would think. Not for revenge or with a sense of indignity, but with curiosity and discontentment. Did they know or care? Would it still make a profit? Did they think they would be able to work it out somehow?
When I lived in San Diego with my parents [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://existentialmedia.org/merde/files/2009/09/faceplateless.jpg" alt="faceplateless" title="faceplateless" width="429" height="249" class="alignnone size-full wp-image-370" /></p>
<p>I think about it, more often than you would think. Not for revenge or with a sense of indignity, but with curiosity and discontentment. Did they know or care? Would it still make a profit? Did they think they would be able to work it out somehow?</p>
<p>When I lived in San Diego with my parents I had a problem holding onto my car stereos. In fact, I had three stolen car stereos during a short time. It was rough. I looked into different expensive products including an alarm system for my car that would notify a keychain dongle if anything was amiss. </p>
<p>I started taking the faceplate into my room at night. It seemed like this would be the proper deterrent to further theft. I thought that if someone were thinking about taking my car stereo, they would look inside and see the faceplate missing and move on. Or they would still break in and look in the usual spots that they knew their victims would put the faceplate – in the glove compartment, under the seat, in the center console – and not finding it they would leave the stereo and move on to the next car. </p>
<p>But this did not work. One night, despite my logic that a faceplateless car stereo would be worthless, someone stole my car stereo. I think about this a lot. Did they go through all the effort of taking the stereo out and then realize that the faceplate wasn’t even in the car? Were they pissed? But why did they take it still? </p>
<p>I feel bad about this. I’m not even upset about the stereo being stolen anymore. I’m upset that forever the faceplate and stereo will be separated. It depresses me. I held onto the faceplate for a long time. It seemed too valuable of an object to just throw away. I wanted to somehow connect them again. No questions asked. It wasn’t even necessary for it to be returned to me. </p>
<p>Eventually, I think the faceplate was thrown out or was taken to a thrift store to sit and be useless. I’m not even sure. But I hope that wherever the worthless faceplate and the empty stereo went that they were destroyed and don’t continue to exist.</p>
]]></content:encoded>
			<wfw:commentRss>http://existentialmedia.org/merde/2009/09/it-still-feels-incomplete/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>KEYS</title>
		<link>http://existentialmedia.org/merde/2009/09/keys/</link>
		<comments>http://existentialmedia.org/merde/2009/09/keys/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 19:08:51 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://existentialmedia.org/merde/?p=352</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><object width="500" height="375"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=6577299&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=ffffff&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=6577299&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=ffffff&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="500" height="375"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://existentialmedia.org/merde/2009/09/keys/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>You’re wondering now</title>
		<link>http://existentialmedia.org/merde/2009/08/youre-wondering-now/</link>
		<comments>http://existentialmedia.org/merde/2009/08/youre-wondering-now/#comments</comments>
		<pubDate>Mon, 31 Aug 2009 21:50:40 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Photo]]></category>

		<guid isPermaLink="false">http://existentialmedia.org/merde/?p=342</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><a href="http://existentialmedia.org/merde/files/2009/08/cranberry.jpg" rel="lightbox[342]"><img src="http://existentialmedia.org/merde/files/2009/08/cranberry-500x397.jpg" alt="cranberry" width="500" height="397" class="alignnone size-medium wp-image-346" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://existentialmedia.org/merde/2009/08/youre-wondering-now/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>This is how it looked</title>
		<link>http://existentialmedia.org/merde/2009/08/this-is-how-it-looked/</link>
		<comments>http://existentialmedia.org/merde/2009/08/this-is-how-it-looked/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 04:21:00 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Space]]></category>

		<guid isPermaLink="false">http://existentialmedia.org/merde/?p=328</guid>
		<description><![CDATA[That day in the sky, but I don’t remember seeing them there. I didn’t know how to look yet. These stars are much older than the rest.

It was right after these. I’m told they were good for the city. Those stars are indicative of the eras passing and forming.

It was before these stars came around, [...]]]></description>
			<content:encoded><![CDATA[<p>That <a href="http://www.wolframalpha.com/input/?i=october+6%2C+1984">day</a> in the sky, but I don’t remember seeing them there. I didn’t know how to look yet. These stars are much older than the rest.</p>
<p><img class="alignnone size-medium wp-image-329" src="http://existentialmedia.org/merde/files/2009/08/simi-valley-500x312.png" alt="simi-valley" width="500" height="312" /></p>
<p>It was right after these. I’m told they were good for the city. Those stars are indicative of the eras passing and forming.</p>
<p><img class="alignnone size-full wp-image-330" src="http://existentialmedia.org/merde/files/2009/08/84summerolympicslogo.png" alt="84summerolympicslogo" width="284" height="254" /></p>
<p>It was before these stars came around, but it feels like they were present and helped.</p>
<p><img class="alignnone size-full wp-image-336" src="http://existentialmedia.org/merde/files/2009/08/early-simpsons-1987.jpg" alt="early-simpsons-1987" width="400" height="370" /></p>
<p>I’m sure that there are more and that these are only the beginning.</p>
<blockquote><p>The 21st century: mankind has colonized the last unexplored region on Earth; the ocean. As captain of the seaQuest and its crew, we are its guardians. For beneath the surface lies the future.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://existentialmedia.org/merde/2009/08/this-is-how-it-looked/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.864 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2010-03-16 18:32:36 -->
