<?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>Steven Hughes</title>
	<atom:link href="http://www.stevenhughes.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.stevenhughes.net</link>
	<description>UI, UX, Interactive Media, Web Strategy, Design + Code</description>
	<lastBuildDate>Wed, 17 Apr 2013 14:32:31 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>type designers pay homage to Bowie</title>
		<link>http://www.stevenhughes.net/2013/02/28/type-designers-pay-homage-to-bowie/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=type-designers-pay-homage-to-bowie</link>
		<comments>http://www.stevenhughes.net/2013/02/28/type-designers-pay-homage-to-bowie/#comments</comments>
		<pubDate>Thu, 28 Feb 2013 17:05:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Art & Design]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Typography]]></category>

		<guid isPermaLink="false">http://www.stevenhughes.net/?p=681</guid>
		<description><![CDATA[via wallpaper Graphic designer Blam &#8211; of Print-process and Blanka &#8211; recently tapped 100 design luminaries to render Bowie’s name in a typeface of their choosing or creation. The results have been gathered onto a limited release print in anticipation of the impending &#8216;David Bowie is&#8217; retrospective at the V&#038;A, opening on 23 March. ‘The [...]]]></description>
				<content:encoded><![CDATA[
<a href='http://www.stevenhughes.net/2013/02/28/type-designers-pay-homage-to-bowie/5_bowie_poster_1/' title='5_Bowie_poster_1'><img width="200" height="150" src="http://www.stevenhughes.net/wp-content/uploads/5_Bowie_poster_1-200x150.jpg" class="attachment-thumbnail" alt="The limited edition poster features typefaces selected or designed by Blam and leading artists and designers, screen-printed in matt white onto rainbow holographic paper" /></a>
<a href="http://www.wallpaper.com/design/designers-contribute-typography-to-the-the-changing-faces-of-bowie-poster/6372#prclt-61I1xbYs" target="_blank">via wallpaper</a></p>
<p>Graphic designer Blam &#8211; of Print-process and Blanka &#8211; recently tapped 100 design luminaries to render Bowie’s name in a typeface of their choosing or creation. The results have been gathered onto a limited release print in anticipation of the impending &#8216;David Bowie is&#8217; retrospective at the V&#038;A, opening on 23 March.</p>
<p>‘The changing faces of Bowie’ poster features contributions from the likes of Pentagram, Trevor Jackson, Anthony Burrill, Stockholm Design Lab and Wallpaper*, the fonts as stylistically eclectic as the musician they pay tribute to. The prints will be available to buy from the museum’s shop, priced at £45. Each artwork comes with a certificate and an insert with insights from the contributors on their submissions.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stevenhughes.net/2013/02/28/type-designers-pay-homage-to-bowie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Desktop Notifications</title>
		<link>http://www.stevenhughes.net/2013/02/20/desktop-notifications/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=desktop-notifications</link>
		<comments>http://www.stevenhughes.net/2013/02/20/desktop-notifications/#comments</comments>
		<pubDate>Wed, 20 Feb 2013 19:07:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.stevenhughes.net/?p=670</guid>
		<description><![CDATA[Soon, I&#8217;ll migrate this blog over to my new site, TBA. The new blog will focus more on development, which will allow for this blog to be more general in nature, and hopefully even one day be a place for my photography. via smartjava Just a short article this time, since I&#8217;m kind of swamped [...]]]></description>
				<content:encoded><![CDATA[<p><em>Soon, I&#8217;ll migrate this blog over to my new site, TBA.  The new blog will focus more on development, which will allow for this blog to be more general in nature, and hopefully even one day be a place for my photography.</em></p>
<p>via <a href="http://www.smartjava.org/content/chrome-and-firefox-desktop-notifications">smartjava</a></p>
<p>Just a short article this time, since I&#8217;m kind of swamped with work and the start of a new book on Three.js I&#8217;m writing for Packt. In this article we&#8217;ll very quickly look at the state of desktop notifications. For desktop notifications there is currently a W3C specification, but there aren&#8217;t any implementations of this standard yet.</p>
<p>However, Chrome does have support for Desktop notifications, but for an old version (2006) of the specification. Nevertheless, there are a couple of sites out there that detect whether you&#8217;re running Chrome, and if so ask your permission to show desktop notifications.</p>
<p>Creating desktop notifications using this old Chrome API actually is very easy and consists out of two steps:</p>
<p>    First, you have to ask permission from the user, whether this site is allowed to send notifications to the destkop</p>
<p><a href="http://www.stevenhughes.net/wp-content/uploads/Simple-Webkit-notification-example.png"><img src="http://www.stevenhughes.net/wp-content/uploads/Simple-Webkit-notification-example-300x149.png" alt="Simple Webkit notification example" width="300" height="149" class="aligncenter size-medium wp-image-673" /></a><br />
    If you&#8217;ve got this permission, you can create a simple notification using the API provided by Chrome.</p>
<p>I&#8217;ve created a very simple sample, that you can use to test this functionality:<br />
To accomplish this you only need a couple of lines of code:</p>
<pre class="text geshifilter-text" style="font-family:monospace;">&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
    &lt;title&gt;Simple Webkit notification example&lt;/title&gt;
&lt;/head&gt;
&nbsp;
&lt;h2&gt;First click the 'request permission' button&lt;/h2&gt;
&lt;button id="request"&gt;Request permission&lt;/button&gt;
&lt;h2&gt;After permission is granted, click the 'show notification' button&lt;/h2&gt;
&lt;button id="show"&gt;Show notification&lt;/button&gt;
&nbsp;
&lt;script type="text/javascript"&gt;
&nbsp;
&nbsp;
    document.getElementById('request').addEventListener('click', function() {
        window.webkitNotifications.requestPermission();
    }, false);
&nbsp;
&nbsp;
    document.getElementById('show').addEventListener('click', function() {
        showNotification();
    }, false);
&nbsp;
    function showNotification() {
        // only show if we've got the correct permissions
        if (window.webkitNotifications.checkPermission() === 0) {
            // note the show()
            window.webkitNotifications.createNotification('images/email.jpg', 'Plain Text Notification', 'Notification from the browser!').show();
        }
    }
&lt;/script&gt;
&lt;/html&gt;</pre>
<p>As you can see in the code, by first clicking on the &#8216;request permission&#8217; button, we ask the user, through the requestPermission() call, to allow our site to create desktop notifications (as you can see in the previous figure)</p>
<p>
      As you can see in the code, by first clicking on the &#8216;request permission&#8217; button, we ask the user, through the requestPermission() call, to allow our site to create desktop notifications (as you can see in the previous figure). Next we can click on the &#8216;show notification&#8217; button and a simple notification will be shown:</p>
<p><a href="http://www.stevenhughes.net/wp-content/uploads/Skitch.png"><img src="http://www.stevenhughes.net/wp-content/uploads/Skitch-300x77.png" alt="Skitch" width="300" height="77" class="aligncenter size-medium wp-image-675" /></a></p>
<p>And that&#8217;s all you have to do! At least for those of you who run Chrome. If you run firefox you can still get desktop notifications, but you need an additional plugin: https://addons.mozilla.org/en-us/firefox/addon/html-notifications/</p>
<p>With this plugin, firefox will understand the chrome/webkit provided API and show the permission interface:</p>
<p><img src="http://www.stevenhughes.net/wp-content/uploads/Simple-Webkit-notification-example-1-300x210.png" alt="Simple Webkit notification example-1" width="300" height="210" class="aligncenter size-medium wp-image-676" /></p>
<p>And allow you to also send desktop notifications to firefox users:<br />
<img src="http://www.stevenhughes.net/wp-content/uploads/GrowlHelperApp-300x78.png" alt="GrowlHelperApp" width="300" height="78" class="aligncenter size-medium wp-image-677" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.stevenhughes.net/2013/02/20/desktop-notifications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yes, I want this&#8230;</title>
		<link>http://www.stevenhughes.net/2013/01/08/yes-i-want-this/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=yes-i-want-this</link>
		<comments>http://www.stevenhughes.net/2013/01/08/yes-i-want-this/#comments</comments>
		<pubDate>Tue, 08 Jan 2013 23:47:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Product Design]]></category>

		<guid isPermaLink="false">http://www.stevenhughes.net/?p=629</guid>
		<description><![CDATA[]]></description>
				<content:encoded><![CDATA[<p><img src="http://www.stevenhughes.net/wp-content/uploads/YR7RI.jpg" alt="Steve-opoly" /><br />
<img src="http://www.stevenhughes.net/wp-content/uploads/XvPSU.jpg" alt="Steveopoly" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.stevenhughes.net/2013/01/08/yes-i-want-this/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>R.I.P. Bungee the Cat</title>
		<link>http://www.stevenhughes.net/2013/01/08/r-i-p-bungee-the-cat/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=r-i-p-bungee-the-cat</link>
		<comments>http://www.stevenhughes.net/2013/01/08/r-i-p-bungee-the-cat/#comments</comments>
		<pubDate>Tue, 08 Jan 2013 17:47:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://www.stevenhughes.net/?p=624</guid>
		<description><![CDATA[In October, 4 years ago, I inherited this awesome cat of 19 years, Bungee. She avoided me year after year and visit after visit to my parents&#8217; house, but once we became roommates, we became best friends. We became so close that sometimes even my fiancee became jealous. She was old, she seemed slightly grumpy [...]]]></description>
				<content:encoded><![CDATA[<p><img src="http://www.stevenhughes.net/wp-content/uploads/bungee-photo-edit.png" alt="R.I.P. Bungee the Cat" class="aligncenter size-medium wp-image-625" /><br />
<span id="more-624"></span><br />
In October, 4 years ago, I inherited this awesome cat of 19 years, Bungee.  She avoided me year after year and visit after visit to my parents&#8217; house, but once we became roommates, we became best friends.  We became so close that sometimes even my fiancee became jealous.</p>
<p>She was old, she seemed slightly grumpy to others at times, but she was an awesome cat. It&#8217;s weird working from home and not have her attempting to distract me in exchange for brushing. She did, however live a long and wonderful life.  In life, we celebrate, Bungee the Cat! </p>
]]></content:encoded>
			<wfw:commentRss>http://www.stevenhughes.net/2013/01/08/r-i-p-bungee-the-cat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>rebuilding chernobyl &#8211; cleaning up a nuclear disaster</title>
		<link>http://www.stevenhughes.net/2012/12/27/rebuilding-chernobyl-cleaning-up-a-nuclear-disaster/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=rebuilding-chernobyl-cleaning-up-a-nuclear-disaster</link>
		<comments>http://www.stevenhughes.net/2012/12/27/rebuilding-chernobyl-cleaning-up-a-nuclear-disaster/#comments</comments>
		<pubDate>Thu, 27 Dec 2012 20:40:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.stevenhughes.net/?p=620</guid>
		<description><![CDATA[via designboom &#8216;rebuilding chernobyl &#8211; cleaning up a nuclear disaster&#8217; all images © volodymyr shuvayev, igor kostin/sygma/corbis, european bank for reconstruction and development 26 years after the reactor explosion at chernobyl in the ukraine, an effort to confine the radioactivity at the disaster site has proven to be successful despite the dangers involved in containing [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.stevenhughes.net/wp-content/uploads/chernobyl01.jpg"><img class="aligncenter size-medium wp-image-621" alt="Rebuilding Chernobyl" src="http://www.stevenhughes.net/wp-content/uploads/chernobyl01-300x177.jpg" width="300" height="177" /></a><br />
<span id="more-620"></span><br />
via <a title="design boom - rebuilding chernobyl" href="http://www.designboom.com/architecture/rebuilding-chernobyl-cleaning-up-a-nuclear-disaster/" target="_blank">designboom</a></p>
<p>&#8216;rebuilding chernobyl &#8211; cleaning up a nuclear disaster&#8217;<br />
all images © volodymyr shuvayev, igor kostin/sygma/corbis, european bank for reconstruction and development</p>
<p>26 years after the reactor explosion at chernobyl in the ukraine, an effort to confine the radioactivity at the disaster site has proven<br />
to be successful despite the dangers involved in containing the scattered deadly materials. using remote controlled equipment,<br />
the ruins are dismantled with plans for permanent storage, sealing the site for over 100 years. with infrastructure valued at<br />
over 2 billion USD in place, MIT has documented a look at the processes involved in cleaning up one of the world&#8217;s worst nuclear<br />
disasters.</p>
<p>since the most recent nuclear disaster in japan, designboom has covered an emergency robot by toshiba, capable of withstanding<br />
high radiation and working in nuclear environments for situations like these.</p>
<p>26 years after the reactor explosion at chernobyl in the ukraine, an effort to confine the radioactivity at the disaster site has proven<br />
to be successful despite the dangers involved in containing the scattered deadly materials. using remote controlled equipment,<br />
the ruins are dismantled with plans for permanent storage, sealing the site for over 100 years. with infrastructure valued at<br />
over 2 billion USD in place, MIT has documented a look at the processes involved in cleaning up one of the world&#8217;s worst nuclear<br />
disasters.</p>
<p>since the most recent nuclear disaster in japan, designboom has covered an emergency robot by toshiba, capable of withstanding<br />
high radiation and working in nuclear environments for situations like these.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stevenhughes.net/2012/12/27/rebuilding-chernobyl-cleaning-up-a-nuclear-disaster/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>google chrome canary &#8211; for developers</title>
		<link>http://www.stevenhughes.net/2012/11/26/google-chrome-canary-for-developers/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=google-chrome-canary-for-developers</link>
		<comments>http://www.stevenhughes.net/2012/11/26/google-chrome-canary-for-developers/#comments</comments>
		<pubDate>Mon, 26 Nov 2012 15:41:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Canary]]></category>
		<category><![CDATA[Chrome]]></category>

		<guid isPermaLink="false">http://www.stevenhughes.net/?p=599</guid>
		<description><![CDATA[Google Canary has been released and &#8220;promises&#8221; to be a useful tool for developers. I&#8217;m still on the fence but since you can run Google Chrome and Google Canary side by side, I see no risk. What’s all the hubbub, bub? Chrome Canary is like of a mash-up mix of the Google Chrome developer build [...]]]></description>
				<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-600" title="resolve_static-canary-mac" src="http://www.stevenhughes.net/wp-content/uploads/resolve_static-canary-mac.png" alt="" width="530" height="390" /><br />
Google Canary has been released and &#8220;promises&#8221; to be a useful tool for developers.<span id="more-599"></span>  I&#8217;m still on the fence but since you can run Google Chrome and Google Canary side by side, I see no risk.</p>
<h3>What’s all the hubbub, bub?</h3>
<p>Chrome Canary is like of a mash-up mix of the Google Chrome developer build and Chromium snapshot builds. Also, Canary can run alongside your current Chrome install, which is a new feature. This means that it isn’t linked to your other Chrome application and will run alternate profiles, themes, apps, and use different configurations.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stevenhughes.net/2012/11/26/google-chrome-canary-for-developers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Heaps Decent – Hey Hey Hey, Wilcannia, September 2012</title>
		<link>http://www.stevenhughes.net/2012/11/19/heaps-decent-hey-hey-hey-wilcannia-september-2012/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=heaps-decent-hey-hey-hey-wilcannia-september-2012</link>
		<comments>http://www.stevenhughes.net/2012/11/19/heaps-decent-hey-hey-hey-wilcannia-september-2012/#comments</comments>
		<pubDate>Tue, 20 Nov 2012 02:08:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Heaps Decent]]></category>

		<guid isPermaLink="false">http://www.stevenhughes.net/?p=587</guid>
		<description><![CDATA[Heaps Decent – Hey Hey Hey, Wilcannia, September 2012.]]></description>
				<content:encoded><![CDATA[<p><a href='http://s147194.gridserver.com/2012/11/18/heaps-decent-hey-hey-hey-wilcannia-september-2012/#.UKrl2hbEOWo.wordpress'>Heaps Decent – Hey Hey Hey, Wilcannia, September 2012</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stevenhughes.net/2012/11/19/heaps-decent-hey-hey-hey-wilcannia-september-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>feathered piranha by julien salaud</title>
		<link>http://www.stevenhughes.net/2012/11/11/juliensalaud/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=juliensalaud</link>
		<comments>http://www.stevenhughes.net/2012/11/11/juliensalaud/#comments</comments>
		<pubDate>Sun, 11 Nov 2012 21:30:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Art & Design]]></category>
		<category><![CDATA[Bird]]></category>
		<category><![CDATA[Julien Salaud]]></category>
		<category><![CDATA[Piranha]]></category>

		<guid isPermaLink="false">http://www.stevenhughes.net/?p=569</guid>
		<description><![CDATA[ "..french artist julien salaud has created the quintessential frankenfish - corroborating humankind's ability to manipulate nature..."]]></description>
				<content:encoded><![CDATA[<p>via <a href="http://www.designboom.com/art/feathered-piranah-by-julien-salaud/" title="design boom" target="_blank">designboom</a><br />
french artist julien salaud is well known for his confronting taxidermic assemblages &#8211; using a &#8216;mixing and matching&#8217; approach by combining various parts of animals. &#8216;vieux piraï emplumé&#8217; could be considered the acme of this unusual craft, where salaud embeds budgerigar feathers into a specially preserved piranha &#8211; carefully arranging the plumage to reflect the original patterning along the fish. merging the features of flighted and subaqueous creatures, salaud has created the quintessential frankenfish &#8211; corroborating humankind&#8217;s ability to manipulate nature and remain at the top of the food chain.<br />
<div id="attachment_571" class="wp-caption aligncenter" style="width: 828px"><img src="http://www.stevenhughes.net/wp-content/uploads/salaud04.jpg" alt="" title="the fish prior to intervention " width="818" height="553" class="size-full wp-image-571" /><p class="wp-caption-text">the fish prior to intervention</p></div>
<div id="attachment_572" class="wp-caption aligncenter" style="width: 828px"><img src="http://www.stevenhughes.net/wp-content/uploads/salaud02.jpg" alt="beginning the &#039;feathering&#039; process" title="salaud02" width="818" height="545" class="size-full wp-image-572" /><p class="wp-caption-text">beginning the &#8216;feathering&#8217; process</p></div>
<div id="attachment_573" class="wp-caption aligncenter" style="width: 828px"><img src="http://www.stevenhughes.net/wp-content/uploads/salaud03.jpg" alt="" title="salaud03" width="818" height="545" class="size-full wp-image-573" /><p class="wp-caption-text">the project corroborates humankind&#8217;s ability to manipulate nature and remain at the top of the food chain</p></div>
<div id="attachment_574" class="wp-caption aligncenter" style="width: 828px"><img src="http://www.stevenhughes.net/wp-content/uploads/salaud00.jpg" alt="the complete &#039;piranha-bird&#039;" title="salaud00" width="818" height="579" class="size-full wp-image-574" /><p class="wp-caption-text">the complete &#8216;piranha-bird&#8217;</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.stevenhughes.net/2012/11/11/juliensalaud/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>DJ AM</title>
		<link>http://www.stevenhughes.net/2012/11/11/dj-am/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=dj-am</link>
		<comments>http://www.stevenhughes.net/2012/11/11/dj-am/#comments</comments>
		<pubDate>Sun, 11 Nov 2012 19:23:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[throwback]]></category>
		<category><![CDATA[Adam Goldstein]]></category>
		<category><![CDATA[Crazy Town]]></category>
		<category><![CDATA[Deckstar]]></category>
		<category><![CDATA[DJ AM]]></category>

		<guid isPermaLink="false">http://www.stevenhughes.net/?p=554</guid>
		<description><![CDATA[R.I.P. DJ AM]]></description>
				<content:encoded><![CDATA[<p>R.I.P. DJ AM<br />
<div class="row flex-video widescreen youtube" data-id=""></div>
]]></content:encoded>
			<wfw:commentRss>http://www.stevenhughes.net/2012/11/11/dj-am/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Will Ferrell will do anything&#8230;</title>
		<link>http://www.stevenhughes.net/2012/11/05/will-ferrell-will-do-anything/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=will-ferrell-will-do-anything</link>
		<comments>http://www.stevenhughes.net/2012/11/05/will-ferrell-will-do-anything/#comments</comments>
		<pubDate>Mon, 05 Nov 2012 15:10:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[lulz]]></category>
		<category><![CDATA[Politics]]></category>
		<category><![CDATA[Funny]]></category>
		<category><![CDATA[Mitt Romney]]></category>
		<category><![CDATA[Obama]]></category>
		<category><![CDATA[Will Ferrell]]></category>

		<guid isPermaLink="false">http://www.stevenhughes.net/?p=544</guid>
		<description><![CDATA[via egotrip [video]http://www.youtube.com/v/6rGaE5je7vE[/video]]]></description>
				<content:encoded><![CDATA[<p><img src="http://www.stevenhughes.net/wp-content/uploads/will-ferrell-vote.jpg" alt="" title="will-ferrell-vote" width="600" height="370" class="aligncenter size-full wp-image-545" /><br />
via <a href="http://ww.egotripland.com">egotrip</a><br />
<span id="more-544"></span><br />
[video]http://www.youtube.com/v/6rGaE5je7vE[/video]
]]></content:encoded>
			<wfw:commentRss>http://www.stevenhughes.net/2012/11/05/will-ferrell-will-do-anything/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
