<?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>mitch&#039;s meanderings &#187; technology</title>
	<atom:link href="http://mitchcontla.com/tag/technology/feed/" rel="self" type="application/rss+xml" />
	<link>http://mitchcontla.com</link>
	<description>thoughts on life, technology, and running; links, photos, and videos</description>
	<lastBuildDate>Wed, 19 May 2010 04:58:16 +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>Bash: It&#8217;s the little things</title>
		<link>http://mitchcontla.com/2007/06/27/bash-its-the-little-things/</link>
		<comments>http://mitchcontla.com/2007/06/27/bash-its-the-little-things/#comments</comments>
		<pubDate>Wed, 27 Jun 2007 19:47:50 +0000</pubDate>
		<dc:creator>mitch</dc:creator>
				<category><![CDATA[Geekery]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[gnu]]></category>
		<category><![CDATA[hints]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://mitch.contlafamily.com/2007/06/27/bash-its-the-little-things/</guid>
		<description><![CDATA[The Bash shell always amazes me. I needed to create a Maildir using the typical Maildir/cur, Maildir/new, Maildir/tmp structure and stumbled on this:



$ mkdir -m 0700 -p Maildir/{cur,new,tmp}



The -m and -p options are no-brainers, but the {cur,new,tmp} was new to me. It was easy to figure out what was going to happen&#8230; one command to [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://www.gnu.org/software/bash/" title="Bash - GNU Project">Bash</a> shell always amazes me. I needed to create a <a href="http://en.wikipedia.org/wiki/Maildir" title="Wikipedia: Maildir">Maildir</a> using the typical <code>Maildir/cur</code>, <code>Maildir/new</code>, <code>Maildir/tmp</code> structure and stumbled on this:</p>



<pre class="example"><code>$ mkdir -m 0700 -p Maildir/{cur,new,tmp}</code></pre>



<p>The <code>-m</code> and <code>-p</code> options are no-brainers, but the <code>{cur,new,tmp}</code> was new to me. It was easy to figure out what was going to happen&#8230; one command to create the Maildir directory, and the three subdirectories, I was simply unfamiliar with the syntax. A quick look at the <a href="http://www.gnu.org/software/bash/" title="Bash - GNU Project">Bash</a> man page and I discovered <a href="http://www.gnu.org/software/bash/manual/bashref.html#SEC27" title="Bash Reference Manual: Brace Expansion">Brace Expansion</a>:</p>

<blockquote>Brace expansion is a mechanism by which arbitrary strings may be generated.</blockquote>

<p>A comma separated list between opening and closing braces is expanded by the shell including any preamble (in my case Maildir/) or postscript. Brace expansion can also generate ranges:</p>



<pre class="example"><code>$ echo {1..10}
1 2 3 4 5 6 7 8 9 10</code></pre>



<p>Cool, huh?</p>]]></content:encoded>
			<wfw:commentRss>http://mitchcontla.com/2007/06/27/bash-its-the-little-things/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Tip of the Day: Cleaning An LCD Display</title>
		<link>http://mitchcontla.com/2007/04/23/tip-of-the-day-cleaning-an-lcd-display/</link>
		<comments>http://mitchcontla.com/2007/04/23/tip-of-the-day-cleaning-an-lcd-display/#comments</comments>
		<pubDate>Mon, 23 Apr 2007 18:26:13 +0000</pubDate>
		<dc:creator>mitch</dc:creator>
				<category><![CDATA[Geekery]]></category>
		<category><![CDATA[hints]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://mitch.contlafamily.com/2007/04/23/tip-of-the-day-cleaning-an-lcd-display/</guid>
		<description><![CDATA[After cleaning my laptop&#8217;s LCD several times with Windex, a fair amount of streaking built up, making the display far less than perfect. A quick search suggested a 50/50 mix of isopropyl alcohol and distilled water was the best solution for safely, and effectively cleaning LCD displays.

After mixing a batch, and tearing up an old [...]]]></description>
			<content:encoded><![CDATA[<p>After cleaning my laptop&#8217;s <acronym title="Liquid Crystal Display">LCD</acronym> several times with <a href="http://www.windex.com/" title="Glass Cleaner by Windex">Windex</a>, a fair amount of streaking built up, making the display far less than perfect. A quick <a href="http://www.google.com/search?q=clean+lcd+screen" title="Google: clean lcd screen">search</a> suggested a 50/50 mix of <a href="http://en.wikipedia.org/wiki/Isopropyl_alcohol" title="Wikipedia: isopropyl alcohol">isopropyl alcohol</a> and distilled water was the best solution for safely, and effectively cleaning <span class="caps">LCD </span>displays.</p>

<p>After mixing a batch, and tearing up an old cotton T-shirt, I gave it a try. At first pass, the streaking was minimized, but still there. I applied a more generous amount of solution to the cloth and went at it again. After some light rubbing the streaks were gone, and the display is good as new.</p>]]></content:encoded>
			<wfw:commentRss>http://mitchcontla.com/2007/04/23/tip-of-the-day-cleaning-an-lcd-display/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IMified Up (Temporary Fix)</title>
		<link>http://mitchcontla.com/2007/03/12/imified-up-temporary-fix/</link>
		<comments>http://mitchcontla.com/2007/03/12/imified-up-temporary-fix/#comments</comments>
		<pubDate>Tue, 13 Mar 2007 04:31:51 +0000</pubDate>
		<dc:creator>mitch</dc:creator>
				<category><![CDATA[Asides]]></category>
		<category><![CDATA[Geekery]]></category>
		<category><![CDATA[imified]]></category>
		<category><![CDATA[outage]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://mitch.contlafamily.com/2007/03/12/imified-up-temporary-fix/</guid>
		<description><![CDATA[Looks like you can use an alternate screen name to connect to IMified via GTalk/Jabber while they work through some growing pains.]]></description>
			<content:encoded><![CDATA[<p>Looks like you can use an <a href="http://blog.imified.com/index.php/2007/03/12/temporary-fix-for-gtalkjabber-users-imified2gmailcom/" title="Temporary Fix for Gtalk/Jabber Users - IMified2@gmail.com">alternate screen name</a> to connect to <a href="http://www.imified.com" title="IMified: Instant Productivity">IMified</a> via GTalk/Jabber while they work through some growing pains.</p>]]></content:encoded>
			<wfw:commentRss>http://mitchcontla.com/2007/03/12/imified-up-temporary-fix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IMified Down</title>
		<link>http://mitchcontla.com/2007/03/12/imified-down/</link>
		<comments>http://mitchcontla.com/2007/03/12/imified-down/#comments</comments>
		<pubDate>Tue, 13 Mar 2007 03:27:11 +0000</pubDate>
		<dc:creator>mitch</dc:creator>
				<category><![CDATA[Asides]]></category>
		<category><![CDATA[Geekery]]></category>
		<category><![CDATA[imified]]></category>
		<category><![CDATA[outage]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://mitch.contlafamily.com/2007/03/12/imified-down/</guid>
		<description><![CDATA[Just as I begin to rely on it, IMified is down. It was hit-and-miss for me all weekend, and completely down today. I guess that&#8217;s why it&#8217;s called beta.]]></description>
			<content:encoded><![CDATA[<p>Just as I begin to rely on it, <a href="http://www.imified.com/index.htm" title="IMified: Instant Productivity">IMified</a> is <a href="http://blog.imified.com/index.php/2007/03/11/gtalkjabber-buddy-down/" title="Gtalk/Jabber Buddy Down">down</a>. It was hit-and-miss for me all weekend, and completely down today. I guess that&#8217;s why it&#8217;s called beta.</p>]]></content:encoded>
			<wfw:commentRss>http://mitchcontla.com/2007/03/12/imified-down/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Have We Lost The Spam War?</title>
		<link>http://mitchcontla.com/2007/03/06/have-we-lost-the-spam-war/</link>
		<comments>http://mitchcontla.com/2007/03/06/have-we-lost-the-spam-war/#comments</comments>
		<pubDate>Tue, 06 Mar 2007 22:02:55 +0000</pubDate>
		<dc:creator>mitch</dc:creator>
				<category><![CDATA[Geekery]]></category>
		<category><![CDATA[Talk]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://mitch.contlafamily.com/2007/03/06/have-we-lost-the-spam-war/</guid>
		<description><![CDATA[This post on Jeremy Zawodny&#8217;s blog got me thinking about spam. I feel Jeremy&#8217;s pain, the problem he describes is troublesome,

It used to be a rare occurrence that a message I sent didn&#8217;t make it to the intended recipient&#8217;s inbox because of some overly aggressive filtering. No more. It seems to be happening on a [...]]]></description>
			<content:encoded><![CDATA[<p>This <a href="http://jeremy.zawodny.com/blog/archives/008681.html" title="Email as we know it is doomed">post</a> on <a href="http://jeremy.zawodny.com/blog/" title="Jeremy Zawodny's blog">Jeremy Zawodny&#8217;s blog</a> got me thinking about spam. I feel Jeremy&#8217;s pain, the problem he describes is troublesome,</p>

<blockquote><p>It used to be a rare occurrence that a message I sent didn&#8217;t make it to the intended recipient&#8217;s inbox because of some overly aggressive filtering. No more. It seems to be happening on a weekly (almost daily) basis now.</p></blockquote>

<p>What happens when messages you originate no longer make it to the inbox, but instead are dumped into a Junk mail folder with dozens (or hundreds) of other messages? Is everyone diligent about routinely scanning through spam to make sure nothing is overlooked? How can you be sure it won&#8217;t be missed among so much garbage?</p>

<p>It&#8217;s all fun and games until your outgoing messages are lost.</p>

<p>In <a href="http://radar.oreilly.com/archives/2007/03/another_war_wer.html" title="Another War We're Not Winning: Us vs Spam">Another War We&#8217;re Not Winning: Us vs Spam</a>, after learning how much spam hits the servers at <span class="caps">O&#8217;R</span>eilly, Dave Doughtery asks,</p>

<blockquote><p>[Is] the situation as bad as I thought it might be? In short, the answer is yes, which only makes me wonder why more people aren&#8217;t talking about it.</p></blockquote>

<p>Why aren&#8217;t people talking about it? Because we&#8217;ve accepted it.</p>

<p>The email inbox is one of the most accurate virtual instances of a real life object &#8212; the traditional mail box. Junk mail has always been part of the package, and we have all been perfectly willing to sort through coupons, advertisements, credit card applications, real estate ads, catalogues (from the store we bought something at years ago), and anything else our friendly postal carrier can stuff in the box. It&#8217;s just a fact of life. Why would email be any different?</p>

<p>I don&#8217;t think we&#8217;ve lost the war&#8230; I don&#8217;t think it was a war. We are simply faced with a reality that comes with almost every form of communication in a world where so many vie for our attention.</p>

<p>I still walk to my mail box every day, I still answer my phone, and even after filtering and sifting through the spam, I still read and respond to my email. And I know that there are smart people out there that will find ways to make email more reliable. While I realize that none of the solutions proposed so far have gained much acceptance or momentum, I think things will change. As <a href="http://en.wikipedia.org/wiki/Eric_Allman" title="Eric Allman">Eric Allman</a> summarized,</p>

<blockquote><p>I still get junk phone calls, but the phone system is reasonably usable today. I think that spam can get to that level.</p></blockquote>

<p>I agree.</p>

<p>There is no doubt the system needs work. Alternate forms of communication like <acronym title="Instant Messaging">IM</acronym>, <acronym title="Short Messaging Service">SMS</acronym> will gain mind share and acceptance, but I still like to know &#8220;I&#8217;ve got mail&#8221;.</p>

<p><span class="caps">PS.</span> Please check your inbox, I forwarded you an email from a Nigerian prince whose father has been dethroned but has some stock tips and a large amount of Viagra he&#8217;d like to get out of the country. I think we can help him.</p>]]></content:encoded>
			<wfw:commentRss>http://mitchcontla.com/2007/03/06/have-we-lost-the-spam-war/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Steve Jobs On Digital Rights Management (DRM)</title>
		<link>http://mitchcontla.com/2007/02/06/steve-jobs-on-digital-rights-management-drm/</link>
		<comments>http://mitchcontla.com/2007/02/06/steve-jobs-on-digital-rights-management-drm/#comments</comments>
		<pubDate>Wed, 07 Feb 2007 02:48:37 +0000</pubDate>
		<dc:creator>mitch</dc:creator>
				<category><![CDATA[Geekery]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Talk]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://mitch.contlafamily.com/2007/02/06/steve-jobs-on-digital-rights-management-drm/</guid>
		<description><![CDATA[Today Steve Jobs takes on the controversial topic of DRM. In a post on Apple&#8217;s website, Steve Jobs provides some background on DRM and the role it plays in Apple&#8217;s ability to offer music in the iTunes Store. He concludes by offering some compelling reasons to scrap DRM.

Jobs cites figures regarding the number of iPods [...]]]></description>
			<content:encoded><![CDATA[<p>Today <a href="http://www.apple.com/pr/bios/jobs.html" title="Steve Jobs">Steve Jobs</a> takes on the controversial topic of <acronym title="Digital Rights Management">DRM</acronym>. In a <a href="http://www.apple.com/hotnews/thoughtsonmusic/" title="Thoughts on Music">post on Apple&#8217;s website</a>, Steve Jobs provides some background on <span class="caps">DRM </span>and the role it plays in Apple&#8217;s ability to offer music in the <a href="http://www.apple.com/itunes/store/" title="iTunes Store">iTunes Store</a>. He concludes by offering some compelling reasons to scrap <span class="caps">DRM.</span></p>

<p>Jobs cites figures regarding the number of iPods sold, and the number of songs sold through the iTunes store. Perhaps most interesting is the number of songs sold online, compared to the number of songs sold on <span class="caps">CD.</span> According to Jobs, the figures for 2006 are:</p>


<ul>
<li>&#60; 2 billion songs sold online worldwide (with <span class="caps">DRM</span>)</li>
<li>&#62; 20 billion songs sold completely <span class="caps">DRM</span>-free on unprotected on CDs by the music companies themselves</li>
</ul>



<p>If these figures are valid, <span class="caps">DRM </span>is protecting <em>less than 10%</em> of all the songs sold last year. There is absolutely nothing to stop anyone from ripping 90% of all the music sold last year into completely <span class="caps">DRM</span>-free tracks, and distributing them illegally. It appears that <span class="caps">DRM </span>has simply managed to make it more difficult to use and enjoy a small number of legally purchased songs.</p>

<p>Jobs talks about the practicality and impact of <span class="caps">DRM </span>in it&#8217;s current state, and some of the technical problems that come with developing and maintaining a <span class="caps">DRM </span>system. He outlines three possible alternatives going forward, but ultimately calls on the big music companies to &#8220;abolish&#8221; DRM, saying:</p>

<blockquote><p>Imagine a world where every online store sells <span class="caps">DRM</span>-free music encoded in open licensable formats. In such a world, any player can play music purchased from any store, and any store can sell music which is playable on all players. This is clearly the best alternative for consumers, and Apple would embrace it in a heartbeat.</p></blockquote>

<p>The big question is, why should the recording industry dump <span class="caps">DRM</span>? The simple answer according to Jobs is, because it doesn&#8217;t work. What benefits are gained from <span class="caps">DRM</span>? Jobs says:</p>

<blockquote><p>There appear to be none. If anything, the technical expertise and overhead required to create, operate and update a <span class="caps">DRM </span>system has limited the number of participants selling <span class="caps">DRM </span>protected music. If such requirements were removed, the music industry might experience an influx of new companies willing to invest in innovative new stores and players. This can only be seen as a positive by the music companies.</p></blockquote>

<p>If that&#8217;s the case, why does the recording industry continue to shove <span class="caps">DRM </span>down the throats of online distributors and consumers alike?</p>

<p>One can assume that the music companies look forward to a day when all music will be sold exclusively online. If the recording industry never backs down, and <span class="caps">DRM </span>becomes firmly rooted and accepted by the consumer, they will have greater control over distribution, and personal choice than ever. </p>

<p>I hope that doesn&#8217;t happen. </p>]]></content:encoded>
			<wfw:commentRss>http://mitchcontla.com/2007/02/06/steve-jobs-on-digital-rights-management-drm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lunarpages Hosting Down</title>
		<link>http://mitchcontla.com/2006/04/24/lunarpages-hosting-down/</link>
		<comments>http://mitchcontla.com/2006/04/24/lunarpages-hosting-down/#comments</comments>
		<pubDate>Tue, 25 Apr 2006 01:36:48 +0000</pubDate>
		<dc:creator>mitch</dc:creator>
				<category><![CDATA[Asides]]></category>
		<category><![CDATA[Geekery]]></category>
		<category><![CDATA[Talk]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://mitch.contla.net/2006/04/24/lunarpages-hosting-down/</guid>
		<description><![CDATA[My site was down for most of the afternoon due to a power outage at my hosting provider. According to this post, since the outage only affected a single floor, backup generators did not come online as expected. I am not sure I understand why they couldn&#8217;t start them manually.]]></description>
			<content:encoded><![CDATA[<p>My site was down for most of the afternoon due to a power outage at my <a href="http://www.lunarpages.com">hosting provider</a>. According to <a href="http://www.lunarforums.com/forum/index.php?topic=32358.msg244475#msg244475">this post</a>, since the outage only affected a single floor, backup generators did not come online as expected. I am not sure I understand why they couldn&#8217;t start them manually.</p>]]></content:encoded>
			<wfw:commentRss>http://mitchcontla.com/2006/04/24/lunarpages-hosting-down/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>innerHTML Not So Evil After All?</title>
		<link>http://mitchcontla.com/2006/04/21/innerhtml-not-so-evil-after-all/</link>
		<comments>http://mitchcontla.com/2006/04/21/innerhtml-not-so-evil-after-all/#comments</comments>
		<pubDate>Fri, 21 Apr 2006 15:50:25 +0000</pubDate>
		<dc:creator>mitch</dc:creator>
				<category><![CDATA[Geekery]]></category>
		<category><![CDATA[Talk]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://mitch.contla.net/2006/04/21/innerhtml-not-so-evil-after-all/</guid>
		<description><![CDATA[There&#8217;s been some discussion about whether using the non-standard innerHTML is an acceptable way to add content. Coming to the defense of the maligned property is this article at Robert Nyman&#8217;s site, co-authored by Anne van Kesteren a member of the W3C, stating,

When it comes to having greater scalability in a web page, especially in [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s been <a href="http://domscripting.webstandards.org/?p=46">some</a> <a href="http://www.snook.ca/archives/000575.php">discussion</a> about whether using the non-standard <code>innerHTML</code> is an acceptable way to add content. Coming to the defense of the maligned property is <a href="http://www.robertnyman.com/2006/04/20/we-all-love-innerhtml">this article</a> at Robert Nyman&#8217;s site, co-authored by <a href="http://annevankesteren.nl/">Anne van Kesteren</a> a member of the <acronym title="World Wide Web Consortium">W3C</acronym>, stating,</p>

<blockquote><p>When it comes to having greater scalability in a web page, especially in <span class="caps">AJAX </span>scenarios, innerHTML offers unmatched flexibility. There has also been benchmark tests verifying that <code>innerHTML</code> is more efficient compared to using <span class="caps">DOM </span>methods.</p></blockquote>

<p>The benchmarks test referred to are <a href="http://www.quirksmode.org/dom/innerhtml.html">here</a>, and show a dramatic speed advantage when choosing <span>innerHTML</span> over <acronym title="Document Object Model">DOM</acronym> methods.</p>

<blockquote><p>The fact that it is not in a standard is simply because nobody got around to it. If you read the mailing list of the <span class="caps">W3C</span> Web <span class="caps">API</span>’s Working Group you can see that Opera, Mozilla and Apple want it to be standardized and we bet Microsoft would like the same thing.</p></blockquote>

<p>As <a href="http://www.snook.ca/archives/000575.php">snook pointed out</a>, the <span class="caps">XMLH</span>ttpRequest object isn&#8217;t standard (yet) either. Funny, no one complains about that.</p>

<p>Recognizing that there are some instances where using <span class="caps">DOM </span>methods may be more elegant, in many cases, I choose to use <code>innerHTML</code> to update content. It just seems natural, especially when the content is repeatedly generated using the same server-side code.</p>]]></content:encoded>
			<wfw:commentRss>http://mitchcontla.com/2006/04/21/innerhtml-not-so-evil-after-all/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linkto: Create Your Own Ajax Effects</title>
		<link>http://mitchcontla.com/2006/04/19/linkto-create-your-own-ajax-effects/</link>
		<comments>http://mitchcontla.com/2006/04/19/linkto-create-your-own-ajax-effects/#comments</comments>
		<pubDate>Thu, 20 Apr 2006 04:05:05 +0000</pubDate>
		<dc:creator>mitch</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Asides]]></category>
		<category><![CDATA[Geekery]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Talk]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[web2.0]]></category>

		<guid isPermaLink="false">http://mitch.contla.net/2006/04/19/linkto-create-your-own-ajax-effects/</guid>
		<description><![CDATA[Thomas Fuchs, creator of the Script.aculo.us JavaScript effects library shows you how to create your own Ajax effects. Roll your own fabulous Web 2.0 effects using the amazing Script.aculo.us effects engine.]]></description>
			<content:encoded><![CDATA[<p>Thomas Fuchs, creator of the <a href="http://script.aculo.us">Script.aculo.us</a> JavaScript effects library shows you how to <a href="http://www.thinkvitamin.com/features/ajax/create-your-own-ajax-effects">create your own Ajax effects</a>. Roll your own fabulous Web 2.0 effects using the amazing Script.aculo.us effects engine.</p>]]></content:encoded>
			<wfw:commentRss>http://mitchcontla.com/2006/04/19/linkto-create-your-own-ajax-effects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linkto: Rushi&#8217;s Weblog Client Review</title>
		<link>http://mitchcontla.com/2006/04/18/linkto-rushis-weblog-client-review/</link>
		<comments>http://mitchcontla.com/2006/04/18/linkto-rushis-weblog-client-review/#comments</comments>
		<pubDate>Wed, 19 Apr 2006 00:46:25 +0000</pubDate>
		<dc:creator>mitch</dc:creator>
				<category><![CDATA[Asides]]></category>
		<category><![CDATA[Blog Stuff]]></category>
		<category><![CDATA[Geekery]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[MovableType]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[blog-editors]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[weblog-clients]]></category>

		<guid isPermaLink="false">http://mitch.contla.net/2006/04/18/linkto-rushis-weblog-client-review/</guid>
		<description><![CDATA[Rushi quickly reviews a couple of weblog clients, or &#8220;blog editors&#8221;.]]></description>
			<content:encoded><![CDATA[<p><a href="http://rushi.wordpress.com/2006/04/17/blog-editors/trackback/">Rushi quickly reviews</a> a couple of weblog clients, or &#8220;blog editors&#8221;.</p>]]></content:encoded>
			<wfw:commentRss>http://mitchcontla.com/2006/04/18/linkto-rushis-weblog-client-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
