<?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>Dakin Design</title>
	<atom:link href="http://www.dakindesign.com/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.dakindesign.com/blog</link>
	<description>Tales of Amaranthine Wanderlust</description>
	<lastBuildDate>Mon, 02 Aug 2010 05:42:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>JavaScript switch statement uses type checking</title>
		<link>http://www.dakindesign.com/blog/?p=141</link>
		<comments>http://www.dakindesign.com/blog/?p=141#comments</comments>
		<pubDate>Mon, 02 Aug 2010 05:38:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.dakindesign.com/blog/?p=141</guid>
		<description><![CDATA[It looks like the switch statement uses type checking (i.e. ===, not ==).]]></description>
			<content:encoded><![CDATA[<p>I was just bitten by this:</p>
<pre>
    var foo = "2";
    var bar = 2;

    switch (parseInt(foo)) {
        case bar:
            alert("match");
            break;
        default:
            alert("no match");
    }
</pre>
<p>That code should alert &#8220;match&#8221; &#8211; but take out the parseInt, and you get &#8220;no match.&#8221;</p>
<p>It looks like the switch statement uses type checking (i.e. ===, not ==) in FireFox 3.6.8 for Mac (haven&#8217;t tried other browsers).</p>
<div style='display:none' id="post-refEl-141"></div>]]></content:encoded>
			<wfw:commentRss>http://www.dakindesign.com/blog/?feed=rss2&amp;p=141</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fun with Google Voice</title>
		<link>http://www.dakindesign.com/blog/?p=138</link>
		<comments>http://www.dakindesign.com/blog/?p=138#comments</comments>
		<pubDate>Thu, 22 Apr 2010 01:54:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.dakindesign.com/blog/?p=138</guid>
		<description><![CDATA[Love it.]]></description>
			<content:encoded><![CDATA[<p><object type="application/x-shockwave-flash" data="https://clients4.google.com/voice/embed/webCallButton" width="230" height="85"><param name="wmode" value="transparent"><param name="FlashVars" value="id=073ffe621c229cce902576377c4850cc4fc283da&#038;style=0" /></object><br />
<br />
Love it.</p>
<div style='display:none' id="post-refEl-138"></div>]]></content:encoded>
			<wfw:commentRss>http://www.dakindesign.com/blog/?feed=rss2&amp;p=138</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best Homepage of the Day</title>
		<link>http://www.dakindesign.com/blog/?p=136</link>
		<comments>http://www.dakindesign.com/blog/?p=136#comments</comments>
		<pubDate>Tue, 20 Apr 2010 06:52:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.dakindesign.com/blog/?p=136</guid>
		<description><![CDATA[http://miketaylr.com]]></description>
			<content:encoded><![CDATA[<p><a href="http://miketaylr.com">http://miketaylr.com</a></p>
<div style='display:none' id="post-refEl-136"></div>]]></content:encoded>
			<wfw:commentRss>http://www.dakindesign.com/blog/?feed=rss2&amp;p=136</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery Event Delegation and Nested Tables</title>
		<link>http://www.dakindesign.com/blog/?p=122</link>
		<comments>http://www.dakindesign.com/blog/?p=122#comments</comments>
		<pubDate>Sat, 06 Feb 2010 23:31:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[event delegation]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.dakindesign.com/blog/?p=122</guid>
		<description><![CDATA[A solution for dealing with nested DOM elements of the same type when implementing event delegation with jQuery.]]></description>
			<content:encoded><![CDATA[<p>I was reading a <a href="http://www.learningjquery.com/2008/03/working-with-events-part-1">blog post about jQuery event delegation</a> by Karl Swedberg yesterday. One corner case I found in his examples is dealing with nested DOM elements of the same type (e.g. divs within divs, or in the following example tables within tables).</p>
<p>Here&#8217;s a solution (albeit possibly not the best) that makes use of jQuery&#8217;s <a href="http://api.jquery.com/parentsUntil/">parentsUntil()</a> method, added in version 1.4:</p>
<p style="font-family: monospace; ">&lt;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Strict//EN&#8221;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#8221;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&#8221;&gt;<br />
&lt;html xmlns=&#8221;http://www.w3.org/1999/xhtml&#8221; xml:lang=&#8221;en-us&#8221; lang=&#8221;en-us&#8221;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;xmlns:v=&#8221;urn:schemas-microsoft-com:vml&#8221;&gt;<br />
&nbsp;&nbsp;&lt;head profile=&#8221;http://www.w3.org/2005/10/profile&#8221;&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$(function() {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$(&#8220;#outer&#8221;).click(function(event) {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;var parentCells = $(event.target).parentsUntil(this).filter(&#8220;td&#8221;);<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;var outermostCell = $.merge($(event.target), parentCells).last();<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$(&#8220;#output&#8221;).text(outermostCell.text());<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;});<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;});<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/script&gt;<br />
&nbsp;&nbsp;&lt;/head&gt;<br />
&nbsp;&nbsp;&lt;body&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;div id=&#8221;output&#8221;&gt;[Nothing clicked]&lt;/div&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;br /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;table id=&#8221;outer&#8221; border=&#8221;1&#8243; cellpadding=&#8221;15&#8243;&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td&gt;a&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td&gt;b&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td&gt;c&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td&gt;d&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;table id=&#8221;inner&#8221; border=&#8221;1&#8243; cellpadding=&#8221;15&#8243;&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td&gt;i&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td&gt;ii&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td&gt;iii&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td&gt;iv&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td&gt;v&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td&gt;vi&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td&gt;vii&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td&gt;viii&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td&gt;ix&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/table&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td&gt;e&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td&gt;f&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td&gt;g&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;td&gt;h&lt;/td&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tr&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/table&gt;<br />
&nbsp;&nbsp;&lt;/body&gt;<br />
&lt;/html&gt;</p>
<div style='display:none' id="post-refEl-122"></div>]]></content:encoded>
			<wfw:commentRss>http://www.dakindesign.com/blog/?feed=rss2&amp;p=122</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Deleting Multiple Items from a JavaScript Array</title>
		<link>http://www.dakindesign.com/blog/?p=119</link>
		<comments>http://www.dakindesign.com/blog/?p=119#comments</comments>
		<pubDate>Wed, 18 Nov 2009 20:02:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://www.dakindesign.com/blog/?p=119</guid>
		<description><![CDATA[Here&#8217;s a handy way to delete multiple items (that may not be contiguous) from a JavaScript array. This hinges around using splice() in a for() loop. The trouble is that every time you slice, the index of each of the following items in the array gets decremented but you&#8217;re still increasing your index variable with [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a handy way to delete multiple items (that may not be contiguous) from a JavaScript array.</p>
<p>This hinges around using splice() in a for() loop. The trouble is that every time you slice, the index of each of the following items in the array gets decremented but you&#8217;re still increasing your index variable with each iteration.</p>
<p>For example:</p>
<p><code><br />
var arr = [<br />
    { name: 'a', active: true },<br />
    { name: 'b', active: false },<br />
    { name: 'c', active: true },<br />
    { name: 'd', active: false },<br />
    { name: 'e', active: true }<br />
];</p>
<p>// let's kill the inactive objects<br />
var kill = [];<br />
for (var i = 0; i < arr.length; i++) {<br />
    if (!arr[i].active)<br />
        kill.push(i);<br />
}</p>
<p>// now 'kill' contains [1, 3]<br />
</code></p>
<p>We're fine so far: now we have the indexes that we want to remove. Here's where the trouble starts:</p>
<p><code><br />
// remove inactive elements from array - BAD<br />
for (var i = 0; i < kill.length; i++)<br />
    arr.splice(kill[i], 1);<br />
</code></p>
<p>As mentioned above, this is bad because each time you remove an element from the array, the following elements will all have their indexes decremented. That means that the next "kill" index you come across will reference the wrong element!</p>
<p>Here's a simple way to mitigate:</p>
<p><code><br />
// remove inactive elements from array - GOOD<br />
for (var i = 0; i < kill.length; i++)<br />
    arr.splice(kill[i] - i, 1);<br />
</code></p>
<p>Note the change in the splice index from "kill[i]" to "kill[i] - i", which accounts for the decremented array indexes.</p>
<p>By the way, you may be asking, "Why not use 'delete'?" Well, delete leaves holes in your array, which we don't want.</p>
<p>You may also be asking, "Why not use foreach() instead of for(), thereby, bypassing the need for an index variable?" Well, it's unsafe to use foreach() on an array. You should only ever use foreach() on an object, for reasons that I won't get into here.</p>
<p>Hope this helps someone.</p>
<div style='display:none' id="post-refEl-119"></div>]]></content:encoded>
			<wfw:commentRss>http://www.dakindesign.com/blog/?feed=rss2&amp;p=119</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://www.dakindesign.com/blog/?p=112</link>
		<comments>http://www.dakindesign.com/blog/?p=112#comments</comments>
		<pubDate>Fri, 14 Aug 2009 19:46:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://www.dakindesign.com/blog/?p=112</guid>
		<description><![CDATA[Question: Who can get Eric Clapton to join him for a sold-out modern day blues show at the prestigious Royal Albert Hall in London? Answer: &#160;]]></description>
			<content:encoded><![CDATA[<p><b>Question:</b></p>
<blockquote><p>Who can get Eric Clapton to join him for a sold-out modern day blues show at the prestigious Royal Albert Hall in London?</p></blockquote>
<p><b>Answer:</b></p>
<p><a href="http://www.jbonamassa.com/affiliates/idevaffiliate.php?id=1276_0_1_50" target="_blank"><img border="0" src="http://www.jbonamassa.com/affiliates/banners/250X250WPRELOGO.jpg" width="250" height="250"></a></p>
<p>&nbsp;</p>
<div style='display:none' id="post-refEl-112"></div>]]></content:encoded>
			<wfw:commentRss>http://www.dakindesign.com/blog/?feed=rss2&amp;p=112</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Project On 3D Geometry</title>
		<link>http://www.dakindesign.com/blog/?p=105</link>
		<comments>http://www.dakindesign.com/blog/?p=105#comments</comments>
		<pubDate>Mon, 08 Jun 2009 16:40:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.dakindesign.com/blog/?p=105</guid>
		<description><![CDATA[Awesome: http://vvvv.org/tiki-index.php?page=How+To+Project+On+3D+Geometry]]></description>
			<content:encoded><![CDATA[<p><a href="http://vvvv.org/tiki-index.php?page=How+To+Project+On+3D+Geometry"><img class="alignnone size-full wp-image-108" title="3D Image on Geometric Surface" src="http://www.dakindesign.com/blog/wp-content/uploads/2009/06/projected-desktop.jpg" alt="3D Image on Geometric Surface" /></a></p>
<p>Awesome: <a href="http://vvvv.org/tiki-index.php?page=How+To+Project+On+3D+Geometry">http://vvvv.org/tiki-index.php?page=How+To+Project+On+3D+Geometry</a></p>
<div style='display:none' id="post-refEl-105"></div>]]></content:encoded>
			<wfw:commentRss>http://www.dakindesign.com/blog/?feed=rss2&amp;p=105</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Obama at ASU</title>
		<link>http://www.dakindesign.com/blog/?p=103</link>
		<comments>http://www.dakindesign.com/blog/?p=103#comments</comments>
		<pubDate>Sun, 24 May 2009 06:56:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.dakindesign.com/blog/?p=103</guid>
		<description><![CDATA[President Obama gave the 2009 commencement speech at the Arizona State University. Here&#8217;s an excerpt that I highly agree with: &#8220;We&#8217;ve become accustomed to our economic dominance in the world, forgetting that it wasn&#8217;t reckless deals and get-rich-quick schemes that got us where we are, but hard work and smart ideas, quality products, and wise [...]]]></description>
			<content:encoded><![CDATA[<p><span>President Obama gave the 2009 commencement speech at </span><span>the Arizona State University. Here&#8217;s an excerpt that I highly agree with:<br />
</span></p>
<blockquote><p>&#8220;We&#8217;ve become accustomed to our economic dominance in the world, forgetting that it wasn&#8217;t reckless deals and get-rich-quick schemes that got us where we are, but hard work and smart ideas, quality products, and wise investments.</p>
<p>&#8220;We started taking shortcuts. We started living on credit instead of building up savings. We saw businesses focus more on rebranding and repackaging than innovating and developing new ideas that improve our lives.&#8221;</p></blockquote>
<p>It&#8217;s no surprise that the tech world is getting hit so hard by this recession. Instead of developing quality products and innovating on new ideas, so many companies have been lusting after the quick venture: a slightly different way of targeted advertising, a flailing landrush for Facebook integration, and more useless iPhone applications.</p>
<p>As Tim O&#8217;Reilly says: <a href="http://radar.oreilly.com/2009/01/work-on-stuff-that-matters-fir.html">work on stuff that matters</a>. Keep an eye on the companies that survive this recession; they&#8217;re likely to come out of it with guns blazing.</p>
<p>Toward the end of his speech, President Obama commented on giving back:</p>
<blockquote><p>&#8220;One student said it best when she spoke about her senior engineering project building medical devices for people with disabilities in a village in Africa. Her professor showed a video of the folks they had been helping, and she said, &#8216;When we saw the people on the videos, we began to feel a connection to them. It made us want to be successful for them.&#8217;</p>
<p>&#8220;Think about that. <em>It made us want to be successful for them</em>. That&#8217;s a great motto for all of us. Find somebody to be successful for. Raise their hopes. Rise to their needs.&#8221;</p></blockquote>
<p>SCU kids: sound familiar? Those comments summarize the foundation of Jesuit education: do well to do good.</p>
<p>Obama&#8217;s full speech, with introduction by the president of ASU: http://www.youtube.com/v/Qbel5MhtDq4</p>
<p><object width="425" height="344" data="http://www.youtube.com/v/Qbel5MhtDq4&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/Qbel5MhtDq4&amp;hl=en&amp;fs=1" /><param name="allowfullscreen" value="true" /></object></p>
<div style='display:none' id="post-refEl-103"></div>]]></content:encoded>
			<wfw:commentRss>http://www.dakindesign.com/blog/?feed=rss2&amp;p=103</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Robert Plant totally looks like King Theoden</title>
		<link>http://www.dakindesign.com/blog/?p=92</link>
		<comments>http://www.dakindesign.com/blog/?p=92#comments</comments>
		<pubDate>Fri, 24 Apr 2009 06:51:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General Ramblings]]></category>
		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://www.dakindesign.com/blog/?p=92</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignnone" style="width: 410px"><a style="margin: 6px;" href="http://totallylookslike.com/2008/10/02/robert-plant-totally-looks-like-king-theoden/"><img title="Robert Plant totally looks like King Theoden" src="http://totallylookslike.files.wordpress.com/2008/08/robert-plant.jpg" alt="Robert Plant totally looks like King Theoden" width="400" height="271" /></a><p class="wp-caption-text">Doesn&#39;t he?</p></div>
<div style='display:none' id="post-refEl-92"></div>]]></content:encoded>
			<wfw:commentRss>http://www.dakindesign.com/blog/?feed=rss2&amp;p=92</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rembering Shane</title>
		<link>http://www.dakindesign.com/blog/?p=87</link>
		<comments>http://www.dakindesign.com/blog/?p=87#comments</comments>
		<pubDate>Fri, 03 Apr 2009 01:01:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Sports]]></category>

		<guid isPermaLink="false">http://www.dakindesign.com/blog/?p=87</guid>
		<description><![CDATA[Tribute to Shane McConkey]]></description>
			<content:encoded><![CDATA[<p><embed src="http://tv.skinet.com/embed/small_wide2/405/16705/" width="576" height="344" wmode="transparent"  allowfullscreen="true" /><br />
<a href="http://tv.skinet.com/tv/405/video-Warren-Miller-Tribute-to--mid-16705-vid-405-cID--c--page-.html?video_id=16705">Tribute to Shane McConkey</a></p>
<div style='display:none' id="post-refEl-87"></div>]]></content:encoded>
			<wfw:commentRss>http://www.dakindesign.com/blog/?feed=rss2&amp;p=87</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
