<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>dec norton</title>
	<atom:link href="http://decnorton.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://decnorton.wordpress.com</link>
	<description>the life of a digital art and technology student.</description>
	<lastBuildDate>Thu, 23 Feb 2012 02:00:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='decnorton.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>dec norton</title>
		<link>http://decnorton.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://decnorton.wordpress.com/osd.xml" title="dec norton" />
	<atom:link rel='hub' href='http://decnorton.wordpress.com/?pushpress=hub'/>
		<item>
		<title>FTP delete a folder using PHP</title>
		<link>http://decnorton.wordpress.com/2012/02/23/ftp-delete-a-folder-using-php/</link>
		<comments>http://decnorton.wordpress.com/2012/02/23/ftp-delete-a-folder-using-php/#comments</comments>
		<pubDate>Thu, 23 Feb 2012 02:00:25 +0000</pubDate>
		<dc:creator>decnorton</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://decnorton.wordpress.com/?p=149</guid>
		<description><![CDATA[Had to do this for a project recently. If you&#8217;ve any experience with FTP you&#8217;ll know it&#8217;s not the most efficient of protocols. If you want to make changes to a file or folder you have to deal with each file individually. In the case of removing a folder, you have to first make sure &#8230; <a href="http://decnorton.wordpress.com/2012/02/23/ftp-delete-a-folder-using-php/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decnorton.wordpress.com&amp;blog=28083132&amp;post=149&amp;subd=decnorton&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Had to do this for a project recently. If you&#8217;ve any experience with FTP you&#8217;ll know it&#8217;s not the most efficient of protocols. If you want to make changes to a file or folder you have to deal with each file individually.</p>
<p>In the case of removing a folder, you have to first make sure that it&#8217;s empty and in order to do that you have to loop through each file and delete each one in turn.</p>
<p>Wanted to keep note of it somewhere and figured here was as good of a place as any!</p>
<p><code><br />
function removeFolder($ftpConnection, $path)<br />
{<br />
	static $log = "";<br />
	$contents = ftp_nlist($ftpConnection, $path);<br />
	if(!$contents)<br />
	{<br />
		// Nothing in the folder<br />
		ftp_rmdir($path);<br />
		$log .= "Removed {$path}";<br />
	} else {<br />
		// Loop through each of the files<br />
		foreach($contents as $currentFile)<br />
		{<br />
			if($currentFile != "." &amp;&amp; $currentFile != "..")<br />
			{<br />
				// Assuming it's a folder and there's no dot in the name<br />
				if (strpos($currentFile, '.') === false)<br />
				{<br />
					// It's a folder, so call itself<br />
					removeFolder($ftpConnection, $path."/".$currentFile);<br />
					// Once all files are gone delete the folder<br />
					ftp_rmdir($ftpConnection, $path."/".$currentFile);<br />
				} else {<br />
					// If it's a file delete it<br />
					ftp_delete($ftpConnection, $path."/".$currentFile);<br />
				}<br />
				$log .= "Removed {$path}/{$currentFile}\n";<br />
			}<br />
		}<br />
		ftp_rmdir($path);<br />
	}<br />
	return $log;<br />
}<br />
</code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/decnorton.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/decnorton.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/decnorton.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/decnorton.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/decnorton.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/decnorton.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/decnorton.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/decnorton.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/decnorton.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/decnorton.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/decnorton.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/decnorton.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/decnorton.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/decnorton.wordpress.com/149/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decnorton.wordpress.com&amp;blog=28083132&amp;post=149&amp;subd=decnorton&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://decnorton.wordpress.com/2012/02/23/ftp-delete-a-folder-using-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7fa66d2796dd1daa292f4624caf6b2df?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">decnorton</media:title>
		</media:content>
	</item>
		<item>
		<title>Battleships</title>
		<link>http://decnorton.wordpress.com/2011/12/13/battleships/</link>
		<comments>http://decnorton.wordpress.com/2011/12/13/battleships/#comments</comments>
		<pubDate>Tue, 13 Dec 2011 16:47:04 +0000</pubDate>
		<dc:creator>decnorton</dc:creator>
				<category><![CDATA[dat105]]></category>
		<category><![CDATA[battleships game]]></category>

		<guid isPermaLink="false">http://decnorton.wordpress.com/?p=140</guid>
		<description><![CDATA[Managed to finish my Battleships game and get the majority of the features completed. I left it quite late as I was busy with other work so as a result the graphics were somewhat neglected. I may not have come up with the most efficient way of coding it, but it got the job done. &#8230; <a href="http://decnorton.wordpress.com/2011/12/13/battleships/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decnorton.wordpress.com&amp;blog=28083132&amp;post=140&amp;subd=decnorton&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Managed to finish my Battleships game and get the majority of the features completed. I left it quite late as I was busy with other work so as a result the graphics were somewhat neglected. I may not have come up with the most efficient way of coding it, but it got the job done. Included everything bar networking; doesn&#8217;t tickle my fancy just yet.</p>
<p><a href="http://decnorton.files.wordpress.com/2011/12/screen-shot-2011-12-13-at-16-40-19.png"><img class="size-full wp-image-141 aligncenter" title="Screen Shot 2011-12-13 at 16.40.19" src="http://decnorton.files.wordpress.com/2011/12/screen-shot-2011-12-13-at-16-40-19.png?w=510&#038;h=346" alt="" width="510" height="346" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/decnorton.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/decnorton.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/decnorton.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/decnorton.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/decnorton.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/decnorton.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/decnorton.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/decnorton.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/decnorton.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/decnorton.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/decnorton.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/decnorton.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/decnorton.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/decnorton.wordpress.com/140/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decnorton.wordpress.com&amp;blog=28083132&amp;post=140&amp;subd=decnorton&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://decnorton.wordpress.com/2011/12/13/battleships/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7fa66d2796dd1daa292f4624caf6b2df?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">decnorton</media:title>
		</media:content>

		<media:content url="http://decnorton.files.wordpress.com/2011/12/screen-shot-2011-12-13-at-16-40-19.png" medium="image">
			<media:title type="html">Screen Shot 2011-12-13 at 16.40.19</media:title>
		</media:content>
	</item>
		<item>
		<title>Digital Tattoo</title>
		<link>http://decnorton.wordpress.com/2011/12/01/digital-tattoo/</link>
		<comments>http://decnorton.wordpress.com/2011/12/01/digital-tattoo/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 21:15:37 +0000</pubDate>
		<dc:creator>decnorton</dc:creator>
				<category><![CDATA[dat103]]></category>

		<guid isPermaLink="false">http://decnorton.wordpress.com/?p=130</guid>
		<description><![CDATA[With this task, I wanted to keep it relatively simple and concentrate on making it look like an actual tattoo. Whereas other have filled the entire area with text, I chose to include just a few words. It&#8217;s definitely not the best photoshopped tattoo but it&#8217;s not too bad considering the brief and the time &#8230; <a href="http://decnorton.wordpress.com/2011/12/01/digital-tattoo/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decnorton.wordpress.com&amp;blog=28083132&amp;post=130&amp;subd=decnorton&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://decnorton.files.wordpress.com/2011/12/tattoo1.jpg"><img class="size-full wp-image-135 aligncenter" title="tattoo" src="http://decnorton.files.wordpress.com/2011/12/tattoo1.jpg?w=510&#038;h=340" alt="" width="510" height="340" /></a></p>
<p>With this task, I wanted to keep it relatively simple and concentrate on making it look like an actual tattoo. Whereas other have filled the entire area with text, I chose to include just a few words.</p>
<p>It&#8217;s definitely not the best photoshopped tattoo but it&#8217;s not too bad considering the brief and the time in which I did it.</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/decnorton.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/decnorton.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/decnorton.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/decnorton.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/decnorton.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/decnorton.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/decnorton.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/decnorton.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/decnorton.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/decnorton.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/decnorton.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/decnorton.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/decnorton.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/decnorton.wordpress.com/130/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decnorton.wordpress.com&amp;blog=28083132&amp;post=130&amp;subd=decnorton&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://decnorton.wordpress.com/2011/12/01/digital-tattoo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7fa66d2796dd1daa292f4624caf6b2df?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">decnorton</media:title>
		</media:content>

		<media:content url="http://decnorton.files.wordpress.com/2011/12/tattoo1.jpg" medium="image">
			<media:title type="html">tattoo</media:title>
		</media:content>
	</item>
		<item>
		<title>Blog Review</title>
		<link>http://decnorton.wordpress.com/2011/11/21/blog-review/</link>
		<comments>http://decnorton.wordpress.com/2011/11/21/blog-review/#comments</comments>
		<pubDate>Mon, 21 Nov 2011 11:51:08 +0000</pubDate>
		<dc:creator>decnorton</dc:creator>
				<category><![CDATA[dat101]]></category>

		<guid isPermaLink="false">http://decnorton.wordpress.com/?p=120</guid>
		<description><![CDATA[Since starting this module, we&#8217;ve covered topics I&#8217;d expected but a lot more came as a surprise. In the first week we were asked to explore the idea of being a &#8220;cyborg&#8221;, exploring the definition to a point I hadn&#8217;t considered before. We thought about the extent that we would consider different technologies to be &#8230; <a href="http://decnorton.wordpress.com/2011/11/21/blog-review/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decnorton.wordpress.com&amp;blog=28083132&amp;post=120&amp;subd=decnorton&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Since starting this module, we&#8217;ve covered topics I&#8217;d expected but a lot more came as a surprise. In the first week we were asked to explore the idea of being a &#8220;cyborg&#8221;, exploring the definition to a point I hadn&#8217;t considered before. We thought about the extent that we would consider different technologies to be part of our lives. Whether we would think of them as a cognitive or a physical prosthesis. I found this a little strange at first, but it was only a taster of things to come.</p>
<p>In a way this module&#8217;s pushed me out of my comfort zone a bit and forced me to explore ideas and movements that I wouldn&#8217;t have considered before. For example, one that really made me feel uncomfortable was the art intervention. Our group decided to place stickers around town spreading the idea of being watched constantly by CCTV. It wasn&#8217;t really a subject I was passionate about, and though I&#8217;m quite outgoing normally, the idea of expressing this in public made me feel uneasy.</p>
<p>In all, we&#8217;ve covered some really interesting topics and it&#8217;s helped further my insight into the world of digital art. When I (and no doubt others) signed up, I&#8217;d assumed digital art referred to the digital creation of art. This is covered but it&#8217;s much more about trying to inspire us and find an area we want to expand in.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/decnorton.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/decnorton.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/decnorton.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/decnorton.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/decnorton.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/decnorton.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/decnorton.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/decnorton.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/decnorton.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/decnorton.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/decnorton.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/decnorton.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/decnorton.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/decnorton.wordpress.com/120/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decnorton.wordpress.com&amp;blog=28083132&amp;post=120&amp;subd=decnorton&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://decnorton.wordpress.com/2011/11/21/blog-review/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7fa66d2796dd1daa292f4624caf6b2df?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">decnorton</media:title>
		</media:content>
	</item>
		<item>
		<title>Monk abuse</title>
		<link>http://decnorton.wordpress.com/2011/11/18/monk-abuse/</link>
		<comments>http://decnorton.wordpress.com/2011/11/18/monk-abuse/#comments</comments>
		<pubDate>Fri, 18 Nov 2011 20:28:41 +0000</pubDate>
		<dc:creator>decnorton</dc:creator>
				<category><![CDATA[dat102]]></category>

		<guid isPermaLink="false">http://decnorton.wordpress.com/?p=110</guid>
		<description><![CDATA[Stumbled across this nice little story whilst researching the electrical telegraph: &#8220;Jean-Antoine Nollet, the Abbot of the Grand Convent of the Carthusians in Paris decided to test his theory that electricity traveled far and fast. He did the natural thing on a fine spring day in 1746, sending 200 of his monks out in a &#8230; <a href="http://decnorton.wordpress.com/2011/11/18/monk-abuse/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decnorton.wordpress.com&amp;blog=28083132&amp;post=110&amp;subd=decnorton&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Stumbled across this nice little story whilst researching the electrical telegraph:</p>
<p>&#8220;Jean-Antoine Nollet, the Abbot of the Grand Convent of the Carthusians in Paris decided to test his theory that electricity traveled far and fast. He did the natural thing on a fine spring day in 1746, sending 200 of his monks out in a line 1 mile long. Between each pair of monks was a 25-foot iron wire.</p>
<blockquote><p>Once the reverend fathers were properly aligned, Nollet hooked up a battery to the end of the line and noted with satisfaction that all the monks started swearing, contorting, or otherwise reacting simultaneously to the shock.</p></blockquote>
<p><strong></strong> A successful experiment: an electrical signal can travel a mile and it does so quickly. Of course, this is the kind of experiment you can only run once as your monks may prove less-than-cooperative the second time around. So, in another demonstration he discharged a Leyden jar in front of King Louis XV at Versailles by sending current through a chain of 180 Royal Guards. The King was both impressed and amused as the soldiers all jumped simultaneously when the circuit was completed. &#8220;</p>
<p>Source: <a href="http://web.archive.org/web/20091017202737/http://chem.ch.huji.ac.il/history/nollet.html">http://chem.ch.huji.ac.il/history/nollet.html</a></p>
<p>Can&#8217;t see that being very popular by modern scientific standards, though I suppose that&#8217;s why these people are considered pioneers. They come up with a crazy idea and just go with it.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/decnorton.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/decnorton.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/decnorton.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/decnorton.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/decnorton.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/decnorton.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/decnorton.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/decnorton.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/decnorton.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/decnorton.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/decnorton.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/decnorton.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/decnorton.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/decnorton.wordpress.com/110/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decnorton.wordpress.com&amp;blog=28083132&amp;post=110&amp;subd=decnorton&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://decnorton.wordpress.com/2011/11/18/monk-abuse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7fa66d2796dd1daa292f4624caf6b2df?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">decnorton</media:title>
		</media:content>
	</item>
		<item>
		<title>Public Intervention</title>
		<link>http://decnorton.wordpress.com/2011/11/10/public-intervention/</link>
		<comments>http://decnorton.wordpress.com/2011/11/10/public-intervention/#comments</comments>
		<pubDate>Thu, 10 Nov 2011 18:20:31 +0000</pubDate>
		<dc:creator>decnorton</dc:creator>
				<category><![CDATA[dat101]]></category>

		<guid isPermaLink="false">http://decnorton.wordpress.com/?p=100</guid>
		<description><![CDATA[We had a couple of cool ideas for this, we settled on creating stickers to raise awareness of public surveillance. It&#8217;s not something I feel particularly strongly about and I felt pretty uncomfortable putting the stickers up. I wasn&#8217;t a massive fan of this task.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decnorton.wordpress.com&amp;blog=28083132&amp;post=100&amp;subd=decnorton&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>We had a couple of cool ideas for this, we settled on creating stickers to raise awareness of public surveillance.</p>
<p>It&#8217;s not something I feel particularly strongly about and I felt pretty uncomfortable putting the stickers up. I wasn&#8217;t a massive fan of this task.</p>
<p><span style="text-align:center; display: block;"><a href="http://decnorton.wordpress.com/2011/11/10/public-intervention/"><img src="http://img.youtube.com/vi/Lnfcf114giw/2.jpg" alt="" /></a></span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/decnorton.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/decnorton.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/decnorton.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/decnorton.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/decnorton.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/decnorton.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/decnorton.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/decnorton.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/decnorton.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/decnorton.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/decnorton.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/decnorton.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/decnorton.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/decnorton.wordpress.com/100/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decnorton.wordpress.com&amp;blog=28083132&amp;post=100&amp;subd=decnorton&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://decnorton.wordpress.com/2011/11/10/public-intervention/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7fa66d2796dd1daa292f4624caf6b2df?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">decnorton</media:title>
		</media:content>

		<media:content url="http://img.youtube.com/vi/Lnfcf114giw/2.jpg" medium="image" />
	</item>
		<item>
		<title>The Hangover &#8211; in four minutes</title>
		<link>http://decnorton.wordpress.com/2011/11/10/the-hangover-in-four-minutes/</link>
		<comments>http://decnorton.wordpress.com/2011/11/10/the-hangover-in-four-minutes/#comments</comments>
		<pubDate>Thu, 10 Nov 2011 18:02:30 +0000</pubDate>
		<dc:creator>decnorton</dc:creator>
				<category><![CDATA[dat101]]></category>

		<guid isPermaLink="false">http://decnorton.wordpress.com/?p=98</guid>
		<description><![CDATA[This was supposed to be a crowd sourcing project, but I suppose our group jumped the gun a bit when we were shown &#8216;sweding&#8217;. We just wanted to have a laugh. We set out with a rough plan, giddy at the thought of Andy in a jockstrap being on YouTube for everyone to see. We&#8217;d &#8230; <a href="http://decnorton.wordpress.com/2011/11/10/the-hangover-in-four-minutes/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decnorton.wordpress.com&amp;blog=28083132&amp;post=98&amp;subd=decnorton&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This was supposed to be a crowd sourcing project, but I suppose our group jumped the gun a bit when we were shown <a title="sweding" href="http://en.wikipedia.org/wiki/Be_Kind_Rewind#.22Sweded.22" target="_blank">&#8216;sweding&#8217;</a>. We just wanted to have a laugh.</p>
<p>We set out with a rough plan, giddy at the thought of Andy in a jockstrap being on YouTube for everyone to see. We&#8217;d managed to get the majority of filming done before the next session, where we were shown sites/projects such as the <a title="Johnny Cash Project" href="http://www.thejohnnycashproject.com/" target="_blank">Johnny Cash Project</a>. A lot of other groups decided to base there&#8217;s on the same concept, posting messages and events on Facebook to try and get people involved.</p>
<p>It was too late to try and change our game plan so we stuck with it and filmed a few more scenes. You can see the result below:</p>
<p><object width="510" height="287"><param name="movie" value="http://www.youtube.com/v/loeiRrwPdNU?version=3&#038;feature=oembed"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/loeiRrwPdNU?version=3&#038;feature=oembed" type="application/x-shockwave-flash" width="510" height="287" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>It&#8217;s not exactly viral, but it&#8217;s got close to 100 views! Though I&#8217;ve got a feeling Andy may be the majority, checking himself out.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/decnorton.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/decnorton.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/decnorton.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/decnorton.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/decnorton.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/decnorton.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/decnorton.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/decnorton.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/decnorton.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/decnorton.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/decnorton.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/decnorton.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/decnorton.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/decnorton.wordpress.com/98/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decnorton.wordpress.com&amp;blog=28083132&amp;post=98&amp;subd=decnorton&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://decnorton.wordpress.com/2011/11/10/the-hangover-in-four-minutes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7fa66d2796dd1daa292f4624caf6b2df?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">decnorton</media:title>
		</media:content>
	</item>
		<item>
		<title>Digital Signature</title>
		<link>http://decnorton.wordpress.com/2011/11/10/digital-signature/</link>
		<comments>http://decnorton.wordpress.com/2011/11/10/digital-signature/#comments</comments>
		<pubDate>Thu, 10 Nov 2011 17:44:11 +0000</pubDate>
		<dc:creator>decnorton</dc:creator>
				<category><![CDATA[dat103]]></category>

		<guid isPermaLink="false">http://decnorton.wordpress.com/?p=88</guid>
		<description><![CDATA[I chose the font Helvetica as it&#8217;s widely regarded the most legible of typefaces, and is generally nice looking. Didn&#8217;t realise we were allowed to use colour, so I used a cutout effect to make it a bit more interesting to look at. Chose to make it all lower-case as it&#8217;s informal and approachable, much &#8230; <a href="http://decnorton.wordpress.com/2011/11/10/digital-signature/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decnorton.wordpress.com&amp;blog=28083132&amp;post=88&amp;subd=decnorton&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a title="Declan Norton by idat107, on Flickr" href="http://www.flickr.com/photos/pollenmagic/6264623386/"><img class="alignright size-full wp-image-95" title="digital signature" src="http://decnorton.files.wordpress.com/2011/11/digital-signature.png?w=510&#038;h=80" alt="" width="510" height="80" /></a></p>
<p>I chose the font Helvetica as it&#8217;s widely regarded the most legible of typefaces, and is generally nice looking.</p>
<p>Didn&#8217;t realise we were allowed to use colour, so I used a cutout effect to make it a bit more interesting to look at. Chose to make it all lower-case as it&#8217;s informal and approachable, much like myself <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/decnorton.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/decnorton.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/decnorton.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/decnorton.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/decnorton.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/decnorton.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/decnorton.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/decnorton.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/decnorton.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/decnorton.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/decnorton.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/decnorton.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/decnorton.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/decnorton.wordpress.com/88/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decnorton.wordpress.com&amp;blog=28083132&amp;post=88&amp;subd=decnorton&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://decnorton.wordpress.com/2011/11/10/digital-signature/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7fa66d2796dd1daa292f4624caf6b2df?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">decnorton</media:title>
		</media:content>

		<media:content url="http://decnorton.files.wordpress.com/2011/11/digital-signature.png" medium="image">
			<media:title type="html">digital signature</media:title>
		</media:content>
	</item>
		<item>
		<title>One Page Website &#8211; The Process</title>
		<link>http://decnorton.wordpress.com/2011/10/16/one-page-website/</link>
		<comments>http://decnorton.wordpress.com/2011/10/16/one-page-website/#comments</comments>
		<pubDate>Sun, 16 Oct 2011 20:32:54 +0000</pubDate>
		<dc:creator>decnorton</dc:creator>
				<category><![CDATA[dat104]]></category>

		<guid isPermaLink="false">http://decnorton.wordpress.com/?p=58</guid>
		<description><![CDATA[Just putting the finishing touches on my one page website, thought I&#8217;d write a post about the kind of process I went through in designing and making it. Admittedly, I&#8217;ve been doing stuff like this for a few years now so I&#8217;ve got a bit of a head-start on most, though that&#8217;s not to say &#8230; <a href="http://decnorton.wordpress.com/2011/10/16/one-page-website/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decnorton.wordpress.com&amp;blog=28083132&amp;post=58&amp;subd=decnorton&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="attachment_75" class="wp-caption aligncenter" style="width: 520px"><a href="http://decnorton.com"><img class="size-full wp-image-75 " title="decnorton.com" src="http://decnorton.files.wordpress.com/2011/10/screen-shot.png?w=510&#038;h=325" alt="" width="510" height="325" /></a><p class="wp-caption-text">decnorton.com</p></div>
<p>Just putting the finishing touches on my one page website, thought I&#8217;d write a post about the kind of process I went through in designing and making it.</p>
<p>Admittedly, I&#8217;ve been doing stuff like this for a few years now so I&#8217;ve got a bit of a head-start on most, though that&#8217;s not to say everything is perfect.</p>
<p><span id="more-58"></span></p>
<p>First of all, I had to come up with a design, or at least a theme. I wasn&#8217;t very imaginative with this, you can probably find hundreds of similar concepts &#8211; notes/pages stuck up with tape. It&#8217;s quite aesthetically pleasing as it brings physical objects into a digital environment and it looks different to a standard website. I created a basic layout on paper so I had a rough idea of what I wanted it to look like.</p>
<div id="attachment_80" class="wp-caption alignright" style="width: 310px"><img class="size-medium wp-image-80 " style="border-color:initial;border-style:initial;" title="Photoshop" src="http://decnorton.files.wordpress.com/2011/10/screen-shot-2011-10-16-at-20-46-13.png?w=300&#038;h=149" alt="" width="300" height="149" /><p class="wp-caption-text">Use guides!</p></div>
<p>Next I created a mockup, which I did in Photoshop. It&#8217;s important to get the dimensions right in your mockup, it makes thing a whole lot easier later on when you&#8217;re putting it all together. Of course you don&#8217;t need to do it in Photoshop at all, you can do it with a pen and paper or even in Microsoft Paint if it tickles your fancy. I use Photoshop as it allows me to create a pixel for pixel reference. I can grab elements and put them into a webpage in seconds.</p>
<p>To get the background I spent a little while searching the google for a texture I liked. Came across this by someone who goes by the name of &#8216;bittbox&#8217;. <img class="alignright" title="Paper Texture" src="http://farm3.static.flickr.com/2060/2118260561_91a169fd30_s.jpg" alt="" width="75" height="75" /> He&#8217;d released it under the Creative Commons license and allowed people to remix it and use it for commercial purposes. Played about with it in Photoshop (woo!) to make it a bit lighter.</p>
<p>Next I used an article I had come across to create a background tile out of it.</p>
<p><a href="http://designfestival.com/creating-seamless-textures-without-even-leaving-your-browser/" target="_blank">Creating Seamless Textures Without Even Leaving Your Browser</a></p>
<p>By this point I had everything I needed to start coding the site. I had my finalised design, I had my background tile and I had my brain.</p>
<p>I started by thinking about what kind of containers I would need to house the content. The HTML ended up looking something like this:</p>
<p><img class="alignnone size-full wp-image-72" title="layout-code" src="http://decnorton.files.wordpress.com/2011/10/layout-code1.png?w=510" alt=""   /></p>
<p>Next I start adding the different elements, the sticky tape, the icons etc. and pretty soon I had it finished and had a chance to play around with a bit of CSS!</p>
<p>Things like the shadows, rotation, gradients, fonts etc. are all achieved with CSS.</p>
<p>With the social media icons I used a couple of CSS3 properties to get a funky rollover effect going on. Czech it out!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/decnorton.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/decnorton.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/decnorton.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/decnorton.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/decnorton.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/decnorton.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/decnorton.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/decnorton.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/decnorton.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/decnorton.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/decnorton.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/decnorton.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/decnorton.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/decnorton.wordpress.com/58/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decnorton.wordpress.com&amp;blog=28083132&amp;post=58&amp;subd=decnorton&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://decnorton.wordpress.com/2011/10/16/one-page-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7fa66d2796dd1daa292f4624caf6b2df?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">decnorton</media:title>
		</media:content>

		<media:content url="http://decnorton.files.wordpress.com/2011/10/screen-shot.png" medium="image">
			<media:title type="html">decnorton.com</media:title>
		</media:content>

		<media:content url="http://decnorton.files.wordpress.com/2011/10/screen-shot-2011-10-16-at-20-46-13.png?w=300" medium="image">
			<media:title type="html">Photoshop</media:title>
		</media:content>

		<media:content url="http://farm3.static.flickr.com/2060/2118260561_91a169fd30_s.jpg" medium="image">
			<media:title type="html">Paper Texture</media:title>
		</media:content>

		<media:content url="http://decnorton.files.wordpress.com/2011/10/layout-code1.png" medium="image">
			<media:title type="html">layout-code</media:title>
		</media:content>
	</item>
		<item>
		<title>Burning House</title>
		<link>http://decnorton.wordpress.com/2011/10/09/burning-house/</link>
		<comments>http://decnorton.wordpress.com/2011/10/09/burning-house/#comments</comments>
		<pubDate>Sun, 09 Oct 2011 22:11:52 +0000</pubDate>
		<dc:creator>decnorton</dc:creator>
				<category><![CDATA[dat101]]></category>
		<category><![CDATA[burning house]]></category>

		<guid isPermaLink="false">http://decnorton.wordpress.com/?p=43</guid>
		<description><![CDATA[Flat mates are burning fish fingers again; what should I try and save this time? Name: Declan Norton Age: 19 Location: Plymouth, UK Occupation: Student Phone &#8211; First and foremost. I think we&#8217;d all be lost without one! Wallet Blue Folder &#8211; a folder containing mementos from different places I&#8217;ve been, including a rather large &#8230; <a href="http://decnorton.wordpress.com/2011/10/09/burning-house/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decnorton.wordpress.com&amp;blog=28083132&amp;post=43&amp;subd=decnorton&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Flat mates are burning fish fingers again; what should I try and save this time?</p>
<p>Name: Declan Norton<br />
Age: 19<br />
Location: Plymouth, UK<br />
Occupation: Student</p>
<ul>
<li>Phone &#8211; First and foremost. I think we&#8217;d all be lost without one!</li>
<li>Wallet</li>
<li>Blue Folder &#8211; a folder containing mementos from different places I&#8217;ve been, including a rather large collection of beer labels!</li>
<li>External Hard-Drive</li>
<li>Laptop</li>
</ul>
<p>While phone, wallet and laptop can easily be replaced, but the mementos I have stored in the folder and on my hard-drive are irreplaceable to me. I would never be able to get those back.</p>
<p><a href="http://decnorton.files.wordpress.com/2011/10/img_20111009_225932.jpg"><img class="aligncenter size-medium wp-image-49" title="Burning House items" src="http://decnorton.files.wordpress.com/2011/10/img_20111009_225932.jpg?w=300&#038;h=225" alt="items" width="300" height="225" /></a></p>
<p style="text-align:center;">
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/decnorton.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/decnorton.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/decnorton.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/decnorton.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/decnorton.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/decnorton.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/decnorton.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/decnorton.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/decnorton.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/decnorton.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/decnorton.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/decnorton.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/decnorton.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/decnorton.wordpress.com/43/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decnorton.wordpress.com&amp;blog=28083132&amp;post=43&amp;subd=decnorton&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://decnorton.wordpress.com/2011/10/09/burning-house/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7fa66d2796dd1daa292f4624caf6b2df?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">decnorton</media:title>
		</media:content>

		<media:content url="http://decnorton.files.wordpress.com/2011/10/img_20111009_225932.jpg?w=300" medium="image">
			<media:title type="html">Burning House items</media:title>
		</media:content>
	</item>
	</channel>
</rss>
