<?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/"
	>

<channel>
	<title>Merde</title>
	<atom:link href="http://merde.existentialmedia.net/feed" rel="self" type="application/rss+xml" />
	<link>http://merde.existentialmedia.net</link>
	<description></description>
	<pubDate>Sun, 05 Jul 2009 16:01:58 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>jQuery: Not as hard as it sounds</title>
		<link>http://merde.existentialmedia.net/2009/06/jquery-not-as-hard-as-it-sounds</link>
		<comments>http://merde.existentialmedia.net/2009/06/jquery-not-as-hard-as-it-sounds#comments</comments>
		<pubDate>Sun, 21 Jun 2009 21:13:06 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
		
		<category><![CDATA[Internet]]></category>

		<category><![CDATA[full disclosure]]></category>

		<category><![CDATA[jQuery]]></category>

		<category><![CDATA[wp_enqueue_script]]></category>

		<guid isPermaLink="false">http://existentialmedia.net/merde/?p=297</guid>
		<description><![CDATA[For the new blogs page I wanted to put together an accordion-like feature for viewing the posts to make it feel somewhat like a feed reader. I looked at different javascript libraries for this and chose to go with jQuery, not that others wouldn&#8217;t work, but because I had some limited experience with&#160;it.
I started toying [...]]]></description>
			<content:encoded><![CDATA[<p>For the new <a href="http://existentialmedia.net/blogs/">blogs</a> page I wanted to put together an accordion-like feature for viewing the posts to make it feel somewhat like a feed reader. I looked at different javascript libraries for this and chose to go with <a href="http://jquery.com/">jQuery</a>, not that others wouldn&#8217;t work, but because I had some limited experience with&nbsp;it.</p>
<p>I started toying around with the slideToggle() function, but after a couple hours I had to look around the internet for some help. I couldn&#8217;t have done it without <a href="http://www.stevekrueger.com/jquery-accordion-tutorial/">Steve Krueger&#8217;s tutorial</a>. Although I didn&#8217;t follow it exactly, it helped be over a few&nbsp;hurtles.</p>
<p>Here is the code I ended up&nbsp;with.</p>
<p><code> </code></p>
<pre>jQuery(document).ready(function($){
	$('.story').hide();
	$('.title').click(function(){
	if($(this).is('.active')) {
		$(this).toggleClass('active');
  		$(this).next('.story').slideToggle('fast');
  		return false;
  	} else {
  		$('.story:visible').slideUp('fast');
		$('.title.active').removeClass('active');
		$(this).toggleClass('active');
  		$(this).next('.story').slideToggle();
  		return false;
		}
	});
});</pre>
<p>Also, as I was delving deeper into this project, I spent a lot of time around the <a href="http://codex.wordpress.org/">WordPress Codex</a>. I found this great function called <a href="http://codex.wordpress.org/Function_Reference/wp_enqueue_script">wp_enqueue_script</a> for loading javascript libraries. This is for use in WordPress plugins and themes so there is no conflicts or superfluous code. Pretty&nbsp;neat.</p>
<p><strong>Update - June 29</strong><br />
I edited the page so when opening an item it will scroll to the top of your window. So much better. Some help from <a href="http://www.learningjquery.com/2007/03/accordion-madness">Learning jQuery</a> and <a href="http://marcgrabanski.com/article/scrollto-next-article-button-jquery">Marc Grabanski</a>. I am using the <a href="http://flesler.blogspot.com/2007/10/jqueryscrollto.html">jQuery.ScrollTo</a>&nbsp;plugin.</p>
<p>Here is the updated&nbsp;code:</p>
<p><code> </code></p>
<pre>jQuery(document).ready(function($){
	var scrollTop = jQuery(window).scrollTop();
	$('#content &gt; div.story').hide();
	$('#content &gt; h2.title').click(function() {
		$('#content &gt; h2.title').removeClass('active');
		$(this).addClass('active');
		var $nextDiv = $(this).next();
		var $visibleSiblings = $nextDiv.siblings('div.story:visible');
		if ($visibleSiblings.length ) {
			$visibleSiblings.slideUp('fast', function() {
				$nextDiv.slideToggle('fast');
				jQuery('#content &gt; h2').each(function(i, h2){
				h2top = jQuery(h2).offset().top;
				if (scrollTop  h2').each(function(i, h2){
				h2top = jQuery(h2).offset().top;
				if (scrollTop &lt; h2top) {
					jQuery.scrollTo('.active', 300 );
					return false;
				}
			});
		}
	});
});</pre>
]]></content:encoded>
			<wfw:commentRss>http://merde.existentialmedia.net/2009/06/jquery-not-as-hard-as-it-sounds/feed</wfw:commentRss>
		</item>
		<item>
		<title>Word of the Day: Merde</title>
		<link>http://merde.existentialmedia.net/2009/04/word-of-the-day-merde</link>
		<comments>http://merde.existentialmedia.net/2009/04/word-of-the-day-merde#comments</comments>
		<pubDate>Wed, 15 Apr 2009 21:16:30 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
		
		<category><![CDATA[Rants]]></category>

		<category><![CDATA[merde]]></category>

		<guid isPermaLink="false">http://existentialmedia.net/merde/?p=255</guid>
		<description><![CDATA[As in, &#8220;Don&#8217;t be nervous! You&#8217;ll do great!&#160;Merde!&#8221;
I was just informed by a friend who works for a ballet, that it is customary to say &#8220;Merde!&#8221; to ballet dancers before they go on in lieu of &#8220;Good Luck!&#8221; or &#8220;Break a&#160;leg!&#8221;
(imagine yourself backstage&#8230;)
&#8220;Hey, merde.&#8221;&#160;&#8221;&#8230;thanks&#8221;
]]></description>
			<content:encoded><![CDATA[<p>As in, &#8220;Don&#8217;t be nervous! You&#8217;ll do great!&nbsp;<a href="http://www.urbandictionary.com/define.php?term=merde">Merde</a>!&#8221;</p>
<p>I was just informed by a friend who works for a ballet, that it is customary to say &#8220;Merde!&#8221; to ballet dancers before they go on in lieu of &#8220;Good Luck!&#8221; or &#8220;Break a&nbsp;leg!&#8221;</p>
<blockquote><p><em>(imagine yourself backstage&#8230;)</em><br />
&#8220;Hey, merde.&#8221;<br />&nbsp;&#8221;&#8230;thanks&#8221;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://merde.existentialmedia.net/2009/04/word-of-the-day-merde/feed</wfw:commentRss>
		</item>
		<item>
		<title>An ongoing investigation: Browsing the www</title>
		<link>http://merde.existentialmedia.net/2009/04/an-ongoing-investigation-browsing-the-www</link>
		<comments>http://merde.existentialmedia.net/2009/04/an-ongoing-investigation-browsing-the-www#comments</comments>
		<pubDate>Sat, 11 Apr 2009 23:23:02 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
		
		<category><![CDATA[Internet]]></category>

		<category><![CDATA[Rants]]></category>

		<category><![CDATA[Review]]></category>

		<category><![CDATA[Camino]]></category>

		<category><![CDATA[Firefox]]></category>

		<category><![CDATA[Safari]]></category>

		<guid isPermaLink="false">http://existentialmedia.net/merde/?p=258</guid>
		<description><![CDATA[I&#8217;ve had a very terrible couple of years coming up on the Internet. When it began, it was easy. I had my gateway laptop, I used IE until 2004 when I heard about Firefox. It was a simple choice. Firefox had tabs, it was faster, it had the luster of being open source. (In fact, [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve had a very terrible couple of years coming up on the Internet. When it began, it was easy. I had my gateway laptop, I used <span class="caps">IE</span> until 2004 when I heard about Firefox. It was a simple choice. Firefox had tabs, it was faster, it had the luster of being open source. (In fact, it inspired my fanaticism for all things open source). But in 2005 I got a tiny powerbook and Safari was so cute and new. I was disappointed with Firefox on my powerbook. The widgets were ugly and pixelated, nothing like aqua at all. At this point I was dedicated to Safari, only using Firefox for sites that rejected Safari for whatever&nbsp;reason.</p>
<p>But I wasn&#8217;t satisfied. I started flirting with other web browsers: <a href="http://existentialmedia.net/merde/wp-admin">Shiira</a>, <a href="http://www.opera.com/">Opera</a>, <a href="http://www.omnigroup.com/applications/omniweb/">OmniWeb</a>, <a href="http://caminobrowser.org/">Camino</a>, <a href="http://www.beatnikpad.com/">Optimized Firefox builds</a>&#8230; It was a confusing time. I experimented heavily. Eventually I began to fall in love with Camino. It had the tenderness of real mac app, but also the certain flare of being open source and dangerous like&nbsp;Firefox.</p>
<p>When I upgraded to Leopard, it was back to square one. I went with Safari for a while because Camino was struggling with 10.5. Then <a href="http://existentialmedia.net/merde/2008/06/i-helped/">Firefox 3</a> came around with its hype and fancy Smart Location Bar. I fell back into my old ways. I was using a <span class="caps">PC</span> at work, Firefox felt right, cutting edge, customizable,&nbsp;fun.</p>
<p>Since then I&#8217;ve not settled. I can&#8217;t decide. I&#8217;m switching weekly. Nobody has exactly everything I want. Here is where I stand&nbsp;now:</p>
<p><strong>Safari&nbsp;3</strong></p>
<ul>
<li>I love to use cmd-1, cmd-2, etc for links on the bookmarks&nbsp;bar</li>
<li>You cannot set Google Reader as your default feed&nbsp;reader</li>
<li>In general, works fine,&nbsp;but</li>
<li>is&nbsp;boring</li>
</ul>
<p><strong>Safari 4&nbsp;beta</strong></p>
<ul>
<li><span class="dquo"><span class="dquo">&#8220;</span></span>Smart Address Field&#8221;, similar to Firefox&#8217;s  Smart Location&nbsp;Bar</li>
<li>Top tabs, makes&nbsp;sense.</li>
<li>Developer Tools are very&nbsp;cool</li>
<li>Top Sites?&nbsp;Yuck!</li>
<li>Chokes here and there
<ul>
<li>Especially in&nbsp;<a title="safari 4 + wordpress = :(" href="http://existentialmedia.net/merde/files/2009/04/safari-wordpress-1024x666.png" rel="lightbox[258]">Wordpress</a></li>
<li>And with the Tumblr bookmarklet: when I use a keyboard shortcut to open, in my case cmd-1 because it is first on my bookmarks bar, it opens into a new tab instead of a new window. <em>Very</em>&nbsp;frustrating.</li>
</ul>
</li>
</ul>
<p><strong>Camino</strong></p>
<ul>
<li>Uses cmd-1, etc for bookmarks&nbsp;bar</li>
<li>Uses Keychain to save&nbsp;passwords</li>
<li>Feels very at home in <span class="caps">OS</span>&nbsp;X</li>
<li>But <a title="Ugly buttons" href="http://existentialmedia.net/merde/files/2009/04/camino-buttons.png" rel="lightbox[258]">buttons suck in&nbsp;Leopard</a></li>
<li>Some sites still reject&nbsp;Camino</li>
</ul>
<p><strong><a href="http://preview.caminobrowser.org/">Camino 2&nbsp;beta</a></strong></p>
<ul>
<li>Buttons fixed for&nbsp;Leopard</li>
<li>Del key no longer works for going back a&nbsp;page</li>
<li>Finally has draggable&nbsp;tabs</li>
<li>No smart location bar, which I&#8217;ve become very comfortable&nbsp;using</li>
</ul>
<p><strong>Firefox&nbsp;3</strong></p>
<ul>
<li>No keyboard shorcuts for the bookmarks bar <img src='http://merde.existentialmedia.net/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </li>
<li>Doesn&#8217;t use Keychain to save passwords, which is very&nbsp;annoying</li>
<li>One million awesome&nbsp;extensions</li>
</ul>
<p>So I have no idea what to do. I was using Firefox for the last month, but last week I went back to Safari. <a href="http://existentialmedia.net/merde/2007/10/an-organized-life/">It is hard to choose</a>. What are you feelings? Do you have such trouble&nbsp;deciding?</p>
]]></content:encoded>
			<wfw:commentRss>http://merde.existentialmedia.net/2009/04/an-ongoing-investigation-browsing-the-www/feed</wfw:commentRss>
		</item>
		<item>
		<title>The $1000 Seastead Design Contest</title>
		<link>http://merde.existentialmedia.net/2009/04/the-1000-seastead-design-contest</link>
		<comments>http://merde.existentialmedia.net/2009/04/the-1000-seastead-design-contest#comments</comments>
		<pubDate>Thu, 09 Apr 2009 00:17:15 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
		
		<category><![CDATA[Future]]></category>

		<category><![CDATA[Floating]]></category>

		<category><![CDATA[Seastead]]></category>

		<guid isPermaLink="false">http://existentialmedia.net/merde/?p=249</guid>
		<description><![CDATA[Or open source design for independent&#160;micronations. 
The idea is this: The Seasteading Institute, a non-profit organization conceived about a year ago by Patri Friedman and Wayne Gramlich, is proposing a framework that would make it possible to permanently settle on the ocean. Their vision, inspired by the culture of web 2.0, is to crowd-source the [...]]]></description>
			<content:encoded><![CDATA[<p>Or open source design for independent&nbsp;<a href="http://en.wikipedia.org/wiki/Micronation" target="_blank">micronations</a>. </p>
<p>The idea is this: <a href="http://seasteading.org/about-tsi/history" target="_blank">The Seasteading Institute</a>, a non-profit organization conceived about a year ago by Patri Friedman and Wayne Gramlich, is proposing a framework that would make it possible to permanently settle on the ocean. Their vision, inspired by the culture of web 2.0, is to crowd-source the development of&nbsp;government.</p>
<p><a href="http://existentialmedia.net/merde/files/2009/04/seastead1.jpg" rel="lightbox[249]"><img src="http://existentialmedia.net/merde/files/2009/04/seastead1-500x500.jpg" alt="seastead1" width="500" height="500" class="aligncenter size-medium wp-image-250" /></a><a href="http://www.flickr.com/photos/27160491@N06/2533754945/" target="_blank">seasteading</a></p>
<p>What they have done is designed a bare platform, called a seastead, that is about the size of a city block. They are encouraging everyone to share their idea for a permanent civilization on the ocean through <a href="http://www.seasteading.org/interact/design-contest" target="_blank">The $1000 Seastead Design Contest</a> (submissions due May 1st, 2009). Contestants are to expound upon the platform in any way they see fit – &#8220;It may be a hospital, a casino, a residential community, a cricket stadium, or something entirely different.&#8221; The idea is to share and to collectively reach this goal. Designs for the seasteads will be released under a Creative Commons&nbsp;license. </p>
<p><a href="http://existentialmedia.net/merde/files/2009/04/seastead2.jpg" rel="lightbox[249]"><img src="http://existentialmedia.net/merde/files/2009/04/seastead2-500x281.jpg" alt="seastead2" width="500" height="281" class="aligncenter size-medium wp-image-251" /></a><a href="http://www.flickr.com/photos/lizlacy/3348924955/in/pool-778412@N23" target="_blank">Wendy&nbsp;Sitler-Roddier</a></p>
<blockquote><p>[They are] hoping to create a platform in the sense that Linux is a platform: a base upon which people can build their own innovative forms of governance. The ultimate goal is to create standards and blueprints that can be easily adapted, allowing small communities to rapidly incubate and test new models of self-rule with the same ease that a programmer in his garage can whip up a Facebook app.<br />
–<a href="http://www.wired.com/techbiz/startups/magazine/17-02/mf_seasteading?currentPage=all" target="_blank"><span class="caps">WIRED</span></a> and&nbsp;<a href="http://bldgblog.blogspot.com/2009/02/seastead-design-competition.html" target="_blank"><span class="caps">BLDGBLOG</span></a></p></blockquote>
<p>As compared to other projects of this nature, The Seasteading Institute is trying to build a modular framework which allows for many different ideals. Because they don&#8217;t focus on one specific model that could fail, the project is much more sustainable. Although I do not particularly subscribe to Libertarianism, I have interest in projects like this for their forward thinking ideas. The Seasteading Institute is not responding as much to climate change, but to societal change. Maybe there is something we can learn from their&nbsp;model.</p>
]]></content:encoded>
			<wfw:commentRss>http://merde.existentialmedia.net/2009/04/the-1000-seastead-design-contest/feed</wfw:commentRss>
		</item>
		<item>
		<title>Waterpod Project – A Floating World</title>
		<link>http://merde.existentialmedia.net/2009/02/waterpod-project-%e2%80%93-a-floating-world</link>
		<comments>http://merde.existentialmedia.net/2009/02/waterpod-project-%e2%80%93-a-floating-world#comments</comments>
		<pubDate>Thu, 19 Feb 2009 18:27:45 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
		
		<category><![CDATA[Future]]></category>

		<category><![CDATA[Floating]]></category>

		<category><![CDATA[Global Warming]]></category>

		<category><![CDATA[Waterpod]]></category>

		<guid isPermaLink="false">http://existentialmedia.net/merde/?p=230</guid>
		<description><![CDATA[
Waterpod Project (renderings by James Halverson of Lux Visual Effects)
A recurring theme for the future seems to be alternative housing. The Waterpod Project intends to be a model for the future of architecture and living. It is concerned with the same basic problems as other projects, climate change and increasing world population, but takes a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://existentialmedia.net/merde/files/2009/02/waterpod_newstuff_v0003.jpg" rel="lightbox[230]"><img class="size-medium wp-image-232" src="http://existentialmedia.net/merde/files/2009/02/waterpod_newstuff_v0003-500x281.jpg" alt="waterpod_newstuff_v0003" width="500" height="281" /></a><br />
<em><a href="http://thewaterpod.org/news.html" target="_blank">Waterpod Project</a> (renderings by James Halverson of <a href="http://www.luxvfx.com/" target="_blank">Lux Visual Effects</a>)</em></p>
<p>A recurring theme for the future seems to be alternative housing. The Waterpod Project intends to be a model for the future of architecture and living. It is concerned with the same basic problems as other projects, climate change and increasing world population, but takes a different approach. Where <a href="http://spacecollective.org/mspencr/3389/Polar-Cities" target="_blank">Polar Cities</a> and <a href="http://spacecollective.org/mspencr/4024/Lilypad-a-floating-ecopolis-for-climate-refugees" target="_blank">Lilypad</a> are primarily concerned with physical survival, Waterpod is interested in creativity and&nbsp;expression.</p>
<p>The Waterpod is inspiring because it has moved past the hypothetical, it is currently being constructed in New York. Being a model for future building, sustainability is the key. The Waterpod is being built on a retired industrial barge using salvaged materials. It features three domes to be used for artistic space, sleeping quarters, and&nbsp;agriculture.</p>
<blockquote><p>It is currently scheduled to launch in New York in May, 2009, from the Newtown Creek between Brooklyn and Queens, navigate down the East River, explore the waters of New York Harbor, and stopping at each of the five boroughs it will dock at several Manhattan piers on the Hudson River, then beyond.<br />
—<a href="http://thewaterpod.org/structure.html" target="_blank">Waterpod&nbsp;Structure</a></p></blockquote>
<p><a href="http://existentialmedia.net/merde/files/2009/02/rowhouse_v0002_lo.jpg" rel="lightbox[230]"><img class="size-medium wp-image-231 alignnone" src="http://existentialmedia.net/merde/files/2009/02/rowhouse_v0002_lo-500x281.jpg" alt="rowhouse_v0002_lo" width="500" height="281" /></a><br />
<em>Waterpod artist residency&nbsp;building</em></p>
<p>To begin with there will be five residents who will live and work and be completely sustained on the barge. They plan to travel around to teach, give tours, and have exhibitions. They hope to be a model and inspiration for the future, to prepare and to encourage&nbsp;innovation.</p>
<blockquote><p>This forces me to focus on certain things that I have been putting off for too long, and forces me to live like we will probably all need to live sooner or later.<br />
—<a href="http://www.thewaterpod.org/mm.html" target="_blank">Mary&nbsp;Mattingly</a></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://merde.existentialmedia.net/2009/02/waterpod-project-%e2%80%93-a-floating-world/feed</wfw:commentRss>
		</item>
		<item>
		<title>Software that I paid money for</title>
		<link>http://merde.existentialmedia.net/2009/02/software-that-i-paid-money-for</link>
		<comments>http://merde.existentialmedia.net/2009/02/software-that-i-paid-money-for#comments</comments>
		<pubDate>Mon, 16 Feb 2009 05:07:54 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
		
		<category><![CDATA[Organization]]></category>

		<category><![CDATA[pirating]]></category>

		<category><![CDATA[purchases]]></category>

		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://existentialmedia.net/merde/?p=224</guid>
		<description><![CDATA[In response to all this hubbub about YACHT being a pirate, I&#8217;ve been thinking about what software I&#8217;ve purchased. So here, more or less, comprehensive as hell, my&#160;list:

Every &#8220;major&#8221; product that Panic has made including Transmit, Coda, and Unison. I used Unison a lot initially, but I can&#8217;t say I&#8217;ve opened it in a&#160;while.
BBEdit, which I [...]]]></description>
			<content:encoded><![CDATA[<p>In response to all this hubbub about <span class="caps">YACHT</span> being a pirate, I&#8217;ve been thinking about what software I&#8217;ve purchased. So here, more or less, comprehensive as hell, my&nbsp;list:</p>
<ul>
<li>Every &#8220;major&#8221; product that Panic has made including Transmit, Coda, and Unison. I used Unison a lot initially, but I can&#8217;t say I&#8217;ve opened it in a&nbsp;while.</li>
<li>BBEdit, which I bought a <em>long</em> time ago and has since retired from my applications folder. I loved&nbsp;it.</li>
<li>TextMate, which came as a replacement for BBEdit. Suckily, I found TextMate <em>just</em> before Coda came out. I still use it from time to time&nbsp;though.</li>
<li>Adobe <span class="caps">CS2</span>/Macromedia Stuff 8. (Before the merger, I haven&#8217;t delved into <span class="caps">CS4</span> yet, but I&#8217;ve heard many bad&nbsp;things.)</li>
<li>QuarkXPress 7, still my favorite page layout&nbsp;application.</li>
<li>Ecto, which I haven&#8217;t used in a long time, but it was <em>the</em> blogging tool for&nbsp;me.</li>
<li>I upgraded OmniOutliner from 2 to 3, and I&#8217;ve <em>almost</em> purchased OmniWeb several&nbsp;times.</li>
<li>Remember The Milk pro, for the Blackberry&nbsp;syncing. </li>
<li>And of course&nbsp;Flickr.</li>
</ul>
<p>(A lot of the other software I use is freeware&#8230; Also, I&#8217;ve been thinking about purchasing&nbsp;FontExplorer.)</p>
]]></content:encoded>
			<wfw:commentRss>http://merde.existentialmedia.net/2009/02/software-that-i-paid-money-for/feed</wfw:commentRss>
		</item>
		<item>
		<title>Use This: Vanilla</title>
		<link>http://merde.existentialmedia.net/2009/02/use-this-vanilla</link>
		<comments>http://merde.existentialmedia.net/2009/02/use-this-vanilla#comments</comments>
		<pubDate>Fri, 13 Feb 2009 18:25:23 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
		
		<category><![CDATA[Internet]]></category>

		<category><![CDATA[forum]]></category>

		<category><![CDATA[lussumo]]></category>

		<category><![CDATA[vanilla]]></category>

		<guid isPermaLink="false">http://existentialmedia.net/merde/?p=208</guid>
		<description><![CDATA[I frequent a handful of forums, and most of my favorites use Vanilla. Vanilla is great because the first view you see is a list of all recent discussions instead of categories, which is nice because it is only one click to read a thread rather than two or more. Also, the objective of Vanilla [...]]]></description>
			<content:encoded><![CDATA[<p>I frequent a handful of forums, and <em>most</em> of my favorites use <a href="http://getvanilla.com/">Vanilla</a>. Vanilla is great because the first view you see is a list of all recent discussions instead of categories, which is nice because it is only one click to read a thread rather than two or more. Also, the objective of Vanilla is to be a minimalist forum, not many default features, very fast, very extensible. Because Vanilla is very basic by default, it is fun to customize. I use it for&nbsp;<a href="http://existentialmedia.net/nice/">Nice</a>.</p>
<p><a href="http://existentialmedia.net/merde/files/2009/02/cargo-talk.png" rel="lightbox[208]"><img class="alignnone size-medium wp-image-210" src="http://existentialmedia.net/merde/files/2009/02/cargo-talk-500x341.png" alt="cargo-talk" width="500" height="341" /></a></p>
<p>These screenshots are of some really nicely designed forums that I like. They are used as support and bug reporting for different services. Similarly, I use a Vanilla powered forum to manage freelance work and other&nbsp;projects.</p>
<p><a href="http://existentialmedia.net/merde/files/2009/02/indxr-forum.png" rel="lightbox[208]"><img class="alignnone size-medium wp-image-211" src="http://existentialmedia.net/merde/files/2009/02/indxr-forum-500x341.png" alt="indxr-forum" width="500" height="341" /></a></p>
<p>Anyhow, use Vanilla, it is cool. Use&nbsp;it.</p>
]]></content:encoded>
			<wfw:commentRss>http://merde.existentialmedia.net/2009/02/use-this-vanilla/feed</wfw:commentRss>
		</item>
		<item>
		<title>More positive</title>
		<link>http://merde.existentialmedia.net/2009/02/more-positive</link>
		<comments>http://merde.existentialmedia.net/2009/02/more-positive#comments</comments>
		<pubDate>Sat, 07 Feb 2009 01:01:42 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
		
		<category><![CDATA[Bicycle]]></category>

		<category><![CDATA[Future]]></category>

		<category><![CDATA[Radio]]></category>

		<category><![CDATA[Bike Talk]]></category>

		<category><![CDATA[Fixpert]]></category>

		<category><![CDATA[Good Attitude]]></category>

		<category><![CDATA[KPFK]]></category>

		<category><![CDATA[Positive]]></category>

		<category><![CDATA[Sally Carson]]></category>

		<guid isPermaLink="false">http://existentialmedia.net/merde/?p=191</guid>
		<description><![CDATA[
I was listening to an interview with Sally Carson (Fixpert) on Bike Talk on KPFK today and she was saying cool stuff about the way you should act as a cyclist. About not being all aggro and flipping the bird, but just trucking along in all weather having a good time. When you send out positive vibes to drivers, you inspire [...]]]></description>
			<content:encoded><![CDATA[<p><a title="I just found out Sunday by Matthew Spencer, on Flickr" href="http://www.flickr.com/photos/existentialmedia/3256775860/"><img src="http://farm4.static.flickr.com/3077/3256775860_381f8aafea.jpg" alt="I just found out Sunday" width="500" height="313" /></a><br />
I was listening to an interview with Sally Carson (Fixpert) on <a href="http://www.fixpert.com/bike-lane/bike-talk-radio-kpfk-los-angeles/">Bike Talk</a> on <span class="caps">KPFK</span> today and she was saying cool stuff about the way you should act as a cyclist. About not being all aggro and flipping the bird, but just trucking along in all weather having a good time. When you send out positive vibes to drivers, you inspire them to bike because it looks so fun (<em>and</em> then you won&#8217;t inspire drivers to hate cyclists&nbsp;more). </p>
<p>I needed to hear that. I sometimes get really frustrated with cars and suvs cutting me off or almost hitting me and I yell and flip the bird. It can really get to me, about how cars have more rights, and can just run you off the road, and that the police or whoever would take their side. And how cars contribute to smog and exhaust just choking me and shortening my life.&nbsp;<em>Bitches.</em> </p>
<p>But like Laura tells me, it is not worth getting so mad and worked up over. Also, like Sally said, you can inspire them to ride bikes, which is like better for the whole world. And they were talking about on the show that anyone on any kind of bike (road, mountain, beach cruiser, fixed gear, whatever) is <span class="caps">GREAT</span> because it is <span class="caps">SO</span> <span class="caps">MUCH</span> <span class="caps">BETTER</span> than them driving around in SUVs. There is no reason to be an elitist about it. The main goals of the cycling community should always to have more people&nbsp;riding. </p>
<p>I have always been inspired by people like that, being so cool and nice to everyone. I feel like there are elitist and accepting cool people in any community. I would like to be more like that, not all aggro and elitist all the time, but be really cool, positive, and accepting. We all have a right to love life and not to be shamed for&nbsp;trying.</p>
]]></content:encoded>
			<wfw:commentRss>http://merde.existentialmedia.net/2009/02/more-positive/feed</wfw:commentRss>
		</item>
		<item>
		<title>I am prepared for amazing things to happen</title>
		<link>http://merde.existentialmedia.net/2009/01/i-am-prepared-for-amazing-things-to-happen</link>
		<comments>http://merde.existentialmedia.net/2009/01/i-am-prepared-for-amazing-things-to-happen#comments</comments>
		<pubDate>Sat, 10 Jan 2009 20:23:12 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
		
		<category><![CDATA[Bicycle]]></category>

		<category><![CDATA[Future]]></category>

		<category><![CDATA[Antarctica]]></category>

		<category><![CDATA[Lynne Cox]]></category>

		<category><![CDATA[Permaculture]]></category>

		<category><![CDATA[Solitude]]></category>

		<guid isPermaLink="false">http://existentialmedia.net/merde/?p=153</guid>
		<description><![CDATA[
Cyclist Takes Bed Along in Homemade Trailer (Oct,&#160;1940)
I am siked! Stoked! Wack! I don&#8217;t know. But I&#8217;m pretty pumped. We are at this crossroads in our life, our economy, etc etc and all that yucky stuff, where we can really do anything we want. WHAT HAVE WE GOT TO LOSE? Very little&#160;really.
This picture is maybe [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://existentialmedia.net/merde/files/2009/01/bed_trailer.jpg" rel="lightbox[153]"><img class="alignnone size-medium wp-image-154" src="http://existentialmedia.net/merde/files/2009/01/bed_trailer-500x360.jpg" alt="" width="500" height="360" /></a><br />
<cite><a href="http://blog.modernmechanix.com/2007/05/17/cyclist-takes-bed-along-in-homemade-trailer/">Cyclist Takes Bed Along in Homemade Trailer (Oct,&nbsp;1940)</a></cite></p>
<p>I am siked! Stoked! Wack! I don&#8217;t know. But I&#8217;m pretty pumped. We are at this crossroads in our life, our economy, etc etc and all that yucky stuff, where we can really do anything we want. <span class="caps">WHAT</span> <span class="caps">HAVE</span> <span class="caps">WE</span> <span class="caps">GOT</span> <span class="caps">TO</span> <span class="caps">LOSE</span>? Very little&nbsp;really.</p>
<p>This picture is maybe the third thing to really get me pumped this year so far. First was reading <em>Swimming to Antarctica</em> by <a href="http://www.lynnecox.org/">Lynne Cox</a>. I mean, she has to be the coolest most inspiring person. Like really <span class="caps">UP</span> <span class="caps">THERE</span> with Gandhi or Dr. King or Obama, you know? She has been swimming her whole life. She swam the Bering Strait! No wetsuit, no special warming nothing, she just swam it in her bathing suit. Not only that, she swam from the <span class="caps">USA</span> to the Soviet Union <a href="http://en.wikipedia.org/wiki/Bering_Strait#The_.22Ice_Curtain.22_border"><span class="caps">DURING</span> <span class="caps">THE</span> <span class="caps">COLD</span> <span class="caps">WAR</span></a>. How powerful and inspiring is that? Not only was she swimming in like 40° water, but she was swimming for diplomacy. And swimming the Bering Strait wasn&#8217;t her only or biggest accomplishment, she has set all kinds of world records and swam in all kinds of places where no one ever has. In short, read her book! Buy it or get it at the library or <a href="mailto:existentialmedia [at] gmail [dot] com?subject=I want to borrow SWIMMING TO ANTARCTICA">borrow mine</a>. It is very&nbsp;important.</p>
<p>So that was the first thing. The second thing isn&#8217;t as specific. It is a more general concept, or a movement really. <a href="http://existentialmedia.net/ladyparts/">L</a> has been getting pretty deep into the idea of permaculture (to over generalize and state the obvious). She has been an incredible wealth of knowledge and keeps sharing these mind-blowing things that people are doing. Like &#8220;&#8230;there is this <a href="http://www.coastroad.net/FreewheelinFarm/index.html">farm</a> run by two ladies near santa cruz and they deliver the <span class="caps">CSA</span> on bike.&#8221; Whoa! Right? And that is only the tip of the iceberg. There is a quote that maybe typifies the second&nbsp;thing.</p>
<blockquote><p>&#8230;cooking, sewing, washing, cleaning, reading, gardening, fixing, writing, drawing, crafting. woman&#8217;s work? perhaps. but i think its better than lining the pockets of someone else, working for basically nothing (for what end or purpose), probably harming the earth more (we have 30 less environment impact by me not working). this work i do at home benefits us, not some unknown corp exec and doesnt pollute the&nbsp;earth.</p>
<p>We have made the choice to live off of one salary (and my husband works only four days a week) and that means that we will always be poor. one car, less &#8220;stuff&#8221;, nothing new for years, but much more happier. that means we get to see and be part of her milestones, hear each new word uttered and each new task mastered.<br />
<cite>&thinsp;&#8212;&thinsp;<a href="http://www.flickr.com/photos/81951381@N00/3184612994/">permaculture of&nbsp;family</a></cite></p></blockquote>
<p>It is about making a choice, deciding what you want to live for or to work towards. This may be a painfully obvious and juvenile concept, but I feel like I&#8217;m realizing its meaning fully for the first&nbsp;time.</p>
<p>The third thing is, as I have stated, this image from the October 1940 issue of Popular Science. Chet Jr. traveled 1,200 miles in 14 days funding his trip by selling post cards? <span class="caps">WHAT</span>? Are you kidding? That is very awesome. <span class="caps">AND</span> he made that awesome trailer to sleep in? Can I do that please? But seriously, what is stopping us from living out our dreams and doing very cool things like Chet&nbsp;Jr.?</p>
<p>So for 2009, a year of &#8220;change&#8221;, I am resolved to really think through what I want to accomplish in my life and start doing&nbsp;it.</p>
]]></content:encoded>
			<wfw:commentRss>http://merde.existentialmedia.net/2009/01/i-am-prepared-for-amazing-things-to-happen/feed</wfw:commentRss>
		</item>
		<item>
		<title>Odetta died yesterday</title>
		<link>http://merde.existentialmedia.net/2008/12/odetta-died-yesterday</link>
		<comments>http://merde.existentialmedia.net/2008/12/odetta-died-yesterday#comments</comments>
		<pubDate>Thu, 04 Dec 2008 01:09:47 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
		
		<category><![CDATA[Photo]]></category>

		<category><![CDATA[Odetta]]></category>

		<guid isPermaLink="false">http://existentialmedia.net/merde/?p=132</guid>
		<description><![CDATA[
In November 2008, Odetta&#8217;s health began to decline and she began receiving treatment at Lenox Hill Hospital in New York. She was slated to perform at Barack Obama&#8217;s inauguration on January 20, 2009.&#160;via
]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-medium wp-image-131" src="http://existentialmedia.net/merde/files/2008/12/odetta.jpeg" alt="" width="500" /></p>
<blockquote><p>In November 2008, Odetta&#8217;s health began to decline and she began receiving treatment at <a title="Lenox Hill Hospital" href="http://en.wikipedia.org/wiki/Lenox_Hill_Hospital">Lenox Hill Hospital</a> in New York. She was slated to perform at <a title="Barack Obama" href="http://en.wikipedia.org/wiki/Barack_Obama">Barack Obama</a>&#8217;s inauguration on January 20, 2009.<br />&nbsp;<a href="http://en.wikipedia.org/wiki/Odetta">via</a></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://merde.existentialmedia.net/2008/12/odetta-died-yesterday/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
