<?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>bennettblog</title>
	<atom:link href="http://bennettweb.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://bennettweb.wordpress.com</link>
	<description></description>
	<lastBuildDate>Fri, 17 Jun 2011 12:29:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='bennettweb.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>bennettblog</title>
		<link>http://bennettweb.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://bennettweb.wordpress.com/osd.xml" title="bennettblog" />
	<atom:link rel='hub' href='http://bennettweb.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Copy and paste coders</title>
		<link>http://bennettweb.wordpress.com/2011/05/31/copy-and-paste-coders/</link>
		<comments>http://bennettweb.wordpress.com/2011/05/31/copy-and-paste-coders/#comments</comments>
		<pubDate>Tue, 31 May 2011 17:00:01 +0000</pubDate>
		<dc:creator>bennettweb</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bennettweb.wordpress.com/?p=31</guid>
		<description><![CDATA[Or cowboys as I like to call them Actually, that&#8217;s a little bit harsh. Just because you have a tendancy to use your clipboard a little bit more than most doesn&#8217;t necessarily make you a bad programmer, although it might shift the odds a little. That said, copy and paste coding is fast becoming one [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bennettweb.wordpress.com&amp;blog=19657260&amp;post=31&amp;subd=bennettweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Or cowboys as I like to call them <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://bennettweb.wordpress.com/2011/05/31/copy-and-paste-coders/4466482623_6aea29d90a_m/" rel="attachment wp-att-32"><img class="alignleft size-full wp-image-32" title="Copy and pasting code" src="http://bennettweb.files.wordpress.com/2011/06/4466482623_6aea29d90a_m.jpg?w=630" alt="Sample code in an IDE"   /></a>Actually, that&#8217;s a little bit harsh. Just because you have a tendancy to use your clipboard a little bit more than most doesn&#8217;t necessarily make you a bad programmer, although it might shift the odds a little.</p>
<p>That said, copy and paste coding is fast becoming one of the things that annoy me the most during my day-to-day software development job. I&#8217;m not going to pretend that I&#8217;m whiter than white and I can&#8217;t say that I&#8217;ve never done it myself, but that was a long time ago and I wasn&#8217;t as experienced as I am now. Plus I&#8217;ve been caught out by it, and I&#8217;m pretty sure that I don&#8217;t want it to happen again.</p>
<p>As more and more development libraries and APIs become available, Java developers are fast moving from being a skilled programmer, able to delicately craft and sculpt classes and methods, to a semi-skilled plumber who knows where to find the right libraries and knows a minimal amount of code to connect it all together. The problem is that these plumbergrammers don&#8217;t always create those pipe connections to the highest quality, instead choosing to copy the example from the API website or some newsgroup. No big deal, well not until the server room ends up getting flooded, the copy and paste coder doesn&#8217;t understand enough to know where the leak could be coming from.</p>
<p><span id="more-31"></span></p>
<p>It&#8217;s not only when using new libraries do copy and paste coders run into problems. In my experience, copy and paste coding is usually done for a couple of reasons. In the first instance, the coder is asked to extend a class or method to do something new, maybe for a new content type. The new functionality works in pretty much the same way as the existing code, so the exisitng functionality is copied into the new location. Maybe we get a little  bit of refactoring at this point, but don&#8217;t expect to see too many variable names change and worse still, you might only see content types change so that the variable name is no longer consistent with the underlying content type. The code runs and does what it&#8217;s supposed to do. Job done.</p>
<p>The other main reason I&#8217;ve come across for using the copy-and-paste pattern is to add a piece of functionality to code using a &#8220;tried and tested&#8221; method. I put quotes around tried and tested, as in most cases it&#8217;s not been tested that much and it&#8217;s more &#8220;seemed to work last time&#8221; code. Reuse of code, or a developers library, isn&#8217;t necessarily a bad thing but in most cases the code in question isn&#8217;t exactly bullet proof and might not be suitable in this instance.</p>
<p>And this brings me to my biggest bug-bear with copy and paste coders. It seems that some copy and paste coders (and I&#8217;m not going to say all) don&#8217;t really think about what they are doing. Just because something worked last time, or worked in a particular scenario doesn&#8217;t mean that it&#8217;ll work again and doesn&#8217;t mean that it&#8217;s applicable to the current situation. Everytime you hit that Ctrl-C Ctrl-V keystroke it&#8217;s likely that you&#8217;re doing something wrong and the stuff that you&#8217;re producing isn&#8217;t really the standard that it should be.</p>
<p>I&#8217;d like to extend this to code found on the internet. Google and <a href="http://www.stackoverflow.com">StackOverflow</a> are pretty much the Utimate development tools if used correctly, however copying code from the internet usually comes with a few downsides. Jeff Atwood looked at this problem on his <a href="http://www.codinghorror.com/blog/2009/04/a-modest-proposal-for-the-copy-and-paste-school-of-code-reuse.html">blog</a> and though I&#8217;m not really sure how viable adding a GUID to each code snippet on the web is the right way to go, I agree with the points that he makes. Code found on the internet has usually created to demonstrate a particular purpose and might not be production ready. If you take it, you won&#8217;t get any updates that the original developer makes and you might not even be copying the most recent version.</p>
<p>However on the flip side, whatever you&#8217;re doing it&#8217;s likely that somebody else has already done the hard thinking and got something up and running before you and fixed all the niggly issues you&#8217;d find developing it yourself. And chances are that using StackOverflow or Google and the right search terms that this code is going to be easy to find. If the site that you&#8217;re taking the code from has a particularly large audience then it&#8217;s probably going to get a more thorough code review than anything you write. If it&#8217;s taken from a blog, or other social platform, the comments around the code will give you an indicator of quality.</p>
<p>So the next time you head for that copy and paste keystroke, just think about what you are doing. Is it really the best option? Should you be refactoring this into a new class? Is there a better way of acheiving your goal? I&#8217;ve found that the majority of the time the answers to questions should lead you to another solution and stop you hitting Ctrl-V. If you still think that you must, make sure that you understand what the code that you are copying is doing. There&#8217;s not much worse than a developer that doesn&#8217;t understand their own code.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bennettweb.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bennettweb.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bennettweb.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bennettweb.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bennettweb.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bennettweb.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bennettweb.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bennettweb.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bennettweb.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bennettweb.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bennettweb.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bennettweb.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bennettweb.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bennettweb.wordpress.com/31/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bennettweb.wordpress.com&amp;blog=19657260&amp;post=31&amp;subd=bennettweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bennettweb.wordpress.com/2011/05/31/copy-and-paste-coders/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9706999c4ccd16fcb916d34d7853e728?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bennettweb</media:title>
		</media:content>

		<media:content url="http://bennettweb.files.wordpress.com/2011/06/4466482623_6aea29d90a_m.jpg" medium="image">
			<media:title type="html">Copy and pasting code</media:title>
		</media:content>
	</item>
		<item>
		<title>Android updates and Vodafone UK</title>
		<link>http://bennettweb.wordpress.com/2011/05/26/android-updates-and-vodafone-uk/</link>
		<comments>http://bennettweb.wordpress.com/2011/05/26/android-updates-and-vodafone-uk/#comments</comments>
		<pubDate>Thu, 26 May 2011 12:28:16 +0000</pubDate>
		<dc:creator>bennettweb</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bennettweb.wordpress.com/?p=40</guid>
		<description><![CDATA[I&#8217;m getting more and more annoyed with the way which Vodafone UK is treating it&#8217;s customers with the Google Nexus One. When I bought my Nexus One, I bought with the understanding that all updates to the Android operating system would be pushed to my phone. Not only would I get the software updates, but [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bennettweb.wordpress.com&amp;blog=19657260&amp;post=40&amp;subd=bennettweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m getting more and more annoyed with the way which Vodafone UK is treating it&#8217;s customers with the Google Nexus One. When I bought my Nexus One, I bought with the understanding that all updates to the Android operating system would be pushed to my phone. Not only would I get the software updates, but I would get them first.</p>
<p>A year or so later and my phone is starting to lag behind the official Google releases. When I got my phone it was Android 2.1. Shortly after getting the phone I received the Froyo update to take the phone to 2.2. Later that year (in December 2010) the 2.2.1 update was delivered over the air (OTA) to my Nexus One. This was delivered two and a half months after the official release from Google, so I should have really seen this as a sign of things to come.</p>
<p>And that&#8217;s where the OTA updates finished. My Nexus One is still at 2.2.1 even though 2.2.2 (January 2011) and two Gingerbread releases (2.3.3 &#8211; March 2011, 2.3.4 &#8211; May 2011) have been pushed OTA.</p>
<p>When I put this issue to Vodafone UK, they explained that they couldn&#8217;t give me specific information about when software updates would be released, or what the releases would contain. When I pushed them further on Twitter about the updates, they explained that the Firmware would be customised by Vodafone UK and then passed back to Google to distribute.</p>
<p>I&#8217;m not alone in thinking that this process is a shambles and feeling that I was missold my Nexus One, there are many threads on the Vodafone forums where many people share the same feelings.</p>
<p>Many users have taken it upon themselves to root their Nexus One and apply the uncustomised versions of the firmware in order to escape the Vodafone UK release process. This is something I&#8217;d like to try, but it would (according to Vodafone UK) invalidate the warranty on my phone.</p>
<p>I&#8217;d like to see something done about this, with network providers being made to provide software updates to mobile phone owners if they happen within their contract period. I&#8217;m not sure that this will ever happen, but it&#8217;d be nice to think that operators took their customers seriously.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bennettweb.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bennettweb.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bennettweb.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bennettweb.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bennettweb.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bennettweb.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bennettweb.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bennettweb.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bennettweb.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bennettweb.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bennettweb.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bennettweb.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bennettweb.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bennettweb.wordpress.com/40/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bennettweb.wordpress.com&amp;blog=19657260&amp;post=40&amp;subd=bennettweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bennettweb.wordpress.com/2011/05/26/android-updates-and-vodafone-uk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9706999c4ccd16fcb916d34d7853e728?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bennettweb</media:title>
		</media:content>
	</item>
		<item>
		<title>A cover for Fluval Chi fish tank</title>
		<link>http://bennettweb.wordpress.com/2011/01/22/a-cover-for-fluval-chi-fish-tank/</link>
		<comments>http://bennettweb.wordpress.com/2011/01/22/a-cover-for-fluval-chi-fish-tank/#comments</comments>
		<pubDate>Sat, 22 Jan 2011 17:55:38 +0000</pubDate>
		<dc:creator>bennettweb</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bennettweb.wordpress.com/2011/01/22/a-cover-for-fluval-chi-fish-tank</guid>
		<description><![CDATA[I recieved a fish tank for Christmas, however it was a hoodless version. After losing one fish (he was a jumper) and having to top up the water email every day I decided to look for a condensation tray for the tank. The manufacturer doesn&#8217;t offer this sort of accessory so I customised a standard [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bennettweb.wordpress.com&amp;blog=19657260&amp;post=5&amp;subd=bennettweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>    <a href='http://bennettweb.files.wordpress.com/2011/01/img_20110116_134220-scaled-1000.jpg'><img src="http://bennettweb.files.wordpress.com/2011/01/img_20110116_134220-scaled-1000.jpg?w=500&#038;h=667" width="500" height="667" /></a></p>
<p>I recieved a fish tank for Christmas, however it was a hoodless version. After losing one fish (he was a jumper) and having to top up the water email every day I decided to look for a condensation tray for the tank. </p>
<p>The manufacturer doesn&#8217;t offer this sort of accessory so I customised a standard condensation tray to fit. It seems to work well and the tank doesn&#8217;t lose (as much) water.</p>
<p>It&#8217;s not perfect but it does the job! </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bennettweb.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bennettweb.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bennettweb.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bennettweb.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bennettweb.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bennettweb.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bennettweb.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bennettweb.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bennettweb.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bennettweb.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bennettweb.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bennettweb.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bennettweb.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bennettweb.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bennettweb.wordpress.com&amp;blog=19657260&amp;post=5&amp;subd=bennettweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bennettweb.wordpress.com/2011/01/22/a-cover-for-fluval-chi-fish-tank/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9706999c4ccd16fcb916d34d7853e728?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bennettweb</media:title>
		</media:content>

		<media:content url="http://bennettweb.files.wordpress.com/2011/01/img_20110116_134220-scaled-1000.jpg?w=225" medium="image" />
	</item>
		<item>
		<title>HTML5 Video = Pain for content creators</title>
		<link>http://bennettweb.wordpress.com/2011/01/20/html5-video-pain-for-content-creators/</link>
		<comments>http://bennettweb.wordpress.com/2011/01/20/html5-video-pain-for-content-creators/#comments</comments>
		<pubDate>Thu, 20 Jan 2011 17:08:20 +0000</pubDate>
		<dc:creator>bennettweb</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bennettweb.wordpress.com/2011/01/20/html5-video-pain-for-content-creators</guid>
		<description><![CDATA[Recently I&#8217;ve been spending some time implementing HTML5 video for the new video channel at work. One of the main requirements was to enable the playback of all videos across the site using the HTML5 video container. The video container allows web developers to insert code into a webpage that will play video natively in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bennettweb.wordpress.com&amp;blog=19657260&amp;post=6&amp;subd=bennettweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Recently I&#8217;ve been spending some time implementing HTML5 video for the new video channel at work. One of the main requirements was to enable the playback of all videos across the site using the HTML5 video container. The video container allows web developers to insert code into a webpage that will play video natively in the browser, without the need for extra plugins such as flash. This sounds great, apart from when you look at the formats needed to ensure videos will playback across all browsers, using the HTML5 video container where it is supported.</p>
<p>The <a href="http://www.w3.org/TR/html5/video.html#video">HTML5 specification</a> shows how videos should be included in a HTML page, however it doesn&#8217;t specify the container that should be used to display videos. Unfortunately for developers and content creators the makers of the most popular browsers can&#8217;t agree on a standard format either. Apple, the makers of Safari have decided that the H.264 is the <a href="http://developer.apple.com/library/safari/#documentation/AudioVideo/Conceptual/Using_HTML5_Audio_Video/Introduction/Introduction.html">way to go</a>, and <a href="http://blogs.msdn.com/b/ie/archive/2010/04/29/html5-video.aspx">Microsoft seem to agree</a>, with Internet Explorer 9 only supporting this format.</p>
<p><a href="https://developer.mozilla.org/En/Using_audio_and_video_in_Firefox">Mozilla</a> and <a href="http://dev.opera.com/articles/view/introduction-html5-video/#codecs">Opera</a> have opted to throw their weight behind the <a href="http://www.theora.org/">Ogg Theora</a> video container mainly due to the cost of licensing the H.264 codec and in the spirit of all things open source.</p>
<p>Until <a href="http://blog.chromium.org/2011/01/html-video-codec-support-in-chrome.html">recently</a>, Google Chrome had fixed on the H.264 container however they decided to remove support for this codec in future versions of Chrome and will instead back their own horse, <a href="http://www.webmproject.org/">WebM</a>. WebM has the backing of Mozilla, and they have indicated that they will <a href="http://blog.mozilla.com/blog/2010/05/19/open-web-open-video-and-webm/">add WebM support</a> to the upcoming Firefox 4. In my opinion, this probably kills Ogg Theora as a online video container.</p>
<p>Until all browsers support HTML5 video and the majority of people online are using these new browsers, there will be a need to include a fallback option and most people are reverting to flash in the case where the browser can&#8217;t play the videos using the formats supplied.</p>
<p>All of this means that content creators must create multiple versions of their video content if they wish to move to HTML5 video. The big push for content creators to support HTML5 video is coming from Apple. Their iDevices, the iPad and iPhone, won&#8217;t play flash video (which is probably the leading way of showing video content online at the moment) leading to sites to move to HTML5 video. There are many gotcha&#8217;s in moving to HTML5 video, not least that all content must be encoding twice, once in H.264 (IE, Chrome now, Safari, iPad, iPhone) and then in another format that allows it to be played on other browsers (Firefox, future Chrome releases, Opera). And then of course, you still need to have a flash fallback player for older browsers. So what would I go for? &#8211; Well probably H.264 and WebM in the long run but realistically you&#8217;re going to need Ogg Theora as well for the time being.</p>
<p>This leads to some very hairy HTML code, and rather than go into it here, I&#8217;ll just point you over to <a href="http://camendesign.com/code/video_for_everybody">Video for Everybody</a>, which has some excellent examples of how to include HTML5 video in your own pages. It also has solutions to most of the common problems when including HTML5 video.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bennettweb.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bennettweb.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bennettweb.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bennettweb.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bennettweb.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bennettweb.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bennettweb.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bennettweb.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bennettweb.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bennettweb.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bennettweb.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bennettweb.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bennettweb.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bennettweb.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bennettweb.wordpress.com&amp;blog=19657260&amp;post=6&amp;subd=bennettweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bennettweb.wordpress.com/2011/01/20/html5-video-pain-for-content-creators/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9706999c4ccd16fcb916d34d7853e728?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bennettweb</media:title>
		</media:content>
	</item>
		<item>
		<title>Weeknotes didn&#8217;t work</title>
		<link>http://bennettweb.wordpress.com/2010/11/16/weeknotes-didnt-work/</link>
		<comments>http://bennettweb.wordpress.com/2010/11/16/weeknotes-didnt-work/#comments</comments>
		<pubDate>Tue, 16 Nov 2010 04:44:32 +0000</pubDate>
		<dc:creator>bennettweb</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[weeknotes]]></category>

		<guid isPermaLink="false">http://bennettweb.wordpress.com/2010/11/16/weeknotes-didnt-work</guid>
		<description><![CDATA[So I tried Weeknotes for a bit and as you can probably tell, it didn&#8217;t really work. I tried to write one once a week based on what I&#8217;d been up to, predominately focusing on my projects outside of work. Unfortunately I&#8217;ve not really had chance to really crack on with any of my ideas. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bennettweb.wordpress.com&amp;blog=19657260&amp;post=7&amp;subd=bennettweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So I tried Weeknotes for a bit and as you can probably tell, it didn&#8217;t really work. I tried to write one once a week based on what I&#8217;d been up to, predominately focusing on my projects outside of work. Unfortunately I&#8217;ve not really had chance to really crack on with any of my ideas. Truthfully, it&#8217;s probably because I wasn&#8217;t really passionate about any of them, probably because they weren&#8217;t there good! </p>
<p>I&#8217;ll stick to updating this whenever I learn something new or something that I think is worth sharing. </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bennettweb.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bennettweb.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bennettweb.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bennettweb.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bennettweb.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bennettweb.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bennettweb.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bennettweb.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bennettweb.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bennettweb.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bennettweb.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bennettweb.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bennettweb.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bennettweb.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bennettweb.wordpress.com&amp;blog=19657260&amp;post=7&amp;subd=bennettweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bennettweb.wordpress.com/2010/11/16/weeknotes-didnt-work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9706999c4ccd16fcb916d34d7853e728?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bennettweb</media:title>
		</media:content>
	</item>
		<item>
		<title>Holiday snaps from Tenerife</title>
		<link>http://bennettweb.wordpress.com/2010/07/02/holiday-snaps-from-tenerife/</link>
		<comments>http://bennettweb.wordpress.com/2010/07/02/holiday-snaps-from-tenerife/#comments</comments>
		<pubDate>Fri, 02 Jul 2010 15:12:00 +0000</pubDate>
		<dc:creator>bennettweb</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[photos]]></category>

		<guid isPermaLink="false">http://bennettweb.wordpress.com/2010/07/02/holiday-snaps-from-tenerife</guid>
		<description><![CDATA[A few holiday snaps taken in Tenerife.&#160; http://www.flickr.com/apps/slideshow/show.swf?v=71649<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bennettweb.wordpress.com&amp;blog=19657260&amp;post=8&amp;subd=bennettweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A few holiday snaps taken in Tenerife.&nbsp;</p>
<p><a href="http://www.flickr.com/apps/slideshow/show.swf?v=71649">http://www.flickr.com/apps/slideshow/show.swf?v=71649</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bennettweb.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bennettweb.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bennettweb.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bennettweb.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bennettweb.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bennettweb.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bennettweb.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bennettweb.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bennettweb.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bennettweb.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bennettweb.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bennettweb.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bennettweb.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bennettweb.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bennettweb.wordpress.com&amp;blog=19657260&amp;post=8&amp;subd=bennettweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bennettweb.wordpress.com/2010/07/02/holiday-snaps-from-tenerife/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9706999c4ccd16fcb916d34d7853e728?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bennettweb</media:title>
		</media:content>
	</item>
		<item>
		<title>weeknote #7</title>
		<link>http://bennettweb.wordpress.com/2010/07/01/weeknote-7/</link>
		<comments>http://bennettweb.wordpress.com/2010/07/01/weeknote-7/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 14:16:01 +0000</pubDate>
		<dc:creator>bennettweb</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bennettweb.wordpress.com/2010/07/01/weeknote-7</guid>
		<description><![CDATA[Change of plan. I&#8217;m putting songcompare.com on hold for the time being, and focussing on finishing another project I started a while ago around todo&#8217;s and tasks. As you can probably guess, it&#8217;s a todo list manager. I know that there are plenty of them out there, and used to be a big fan of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bennettweb.wordpress.com&amp;blog=19657260&amp;post=9&amp;subd=bennettweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>    Change of plan. I&#8217;m putting songcompare.com on hold for the time being, and focussing on finishing another project I started a while ago around todo&#8217;s and tasks. As you can probably guess, it&#8217;s a todo list manager. I know that there are plenty of them out there, and used to be a big fan of <a href="http://www.rememberthemilk.com">rememberthemilk.com</a>, but it no longer does exactly what I want it to. I want my todo list manager to be simple, without the option of due dates (which only lead to overdue items). I don&#8217;t want lots of different views, just one simple list, with the oldest stuff at the top. I want the freedom to move tasks wherever I want, from todo to done, and back again if necessary. I want the ability to see when I completed something. I want to be able to add wiki style notes to a task. I want a clean interface. I want search.</p>
<p>I&#8217;ve only just ported the code, but I&#8217;m thinking that the first version should be online to play with in the next couple of weeks all going well. I&#8217;ve shown an earlier cut of the functionality to a few people, and they seemed to like it &#8211; so now I need to focus of getting rid of the bugs and styling it up. And coming up with a name and logo&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bennettweb.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bennettweb.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bennettweb.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bennettweb.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bennettweb.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bennettweb.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bennettweb.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bennettweb.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bennettweb.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bennettweb.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bennettweb.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bennettweb.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bennettweb.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bennettweb.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bennettweb.wordpress.com&amp;blog=19657260&amp;post=9&amp;subd=bennettweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bennettweb.wordpress.com/2010/07/01/weeknote-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9706999c4ccd16fcb916d34d7853e728?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bennettweb</media:title>
		</media:content>
	</item>
		<item>
		<title>Weeknote #6</title>
		<link>http://bennettweb.wordpress.com/2010/06/18/weeknote-6/</link>
		<comments>http://bennettweb.wordpress.com/2010/06/18/weeknote-6/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 18:00:00 +0000</pubDate>
		<dc:creator>bennettweb</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[weeknotes]]></category>

		<guid isPermaLink="false">http://bennettweb.wordpress.com/2010/06/18/weeknote-6</guid>
		<description><![CDATA[Nothing to report &#8211; on holiday!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bennettweb.wordpress.com&amp;blog=19657260&amp;post=11&amp;subd=bennettweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>    Nothing to report &#8211; on holiday!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bennettweb.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bennettweb.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bennettweb.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bennettweb.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bennettweb.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bennettweb.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bennettweb.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bennettweb.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bennettweb.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bennettweb.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bennettweb.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bennettweb.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bennettweb.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bennettweb.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bennettweb.wordpress.com&amp;blog=19657260&amp;post=11&amp;subd=bennettweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bennettweb.wordpress.com/2010/06/18/weeknote-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9706999c4ccd16fcb916d34d7853e728?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bennettweb</media:title>
		</media:content>
	</item>
		<item>
		<title>Get my can out&#8230;</title>
		<link>http://bennettweb.wordpress.com/2010/06/11/get-my-can-out/</link>
		<comments>http://bennettweb.wordpress.com/2010/06/11/get-my-can-out/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 23:14:05 +0000</pubDate>
		<dc:creator>bennettweb</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bennettweb.wordpress.com/2010/06/11/get-my-can-out</guid>
		<description><![CDATA[So I tried to buy a can of Lilt from our overpriced vending machine at work and would you believe it, it gets stuck. Suggestion of how to remove it please, reply to @stevebennett with #getmycanout. Buying a bottle of diet coke (on the row above) is not an option because as we all know, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bennettweb.wordpress.com&amp;blog=19657260&amp;post=13&amp;subd=bennettweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>    So I tried to buy a can of Lilt from our overpriced vending machine at work and would you believe it, it gets stuck.</p>
<p><img src="http://bennettweb.files.wordpress.com/2010/06/media_httpbennettwebo_obefc-scaled500.jpg?w=300&#038;h=225" width="300" height="225" /></p>
<p>Suggestion of how to remove it please, reply to <a href="http://www.twitter.com/stevebennett">@stevebennett </a>with #getmycanout. Buying a bottle of diet coke (on the row above) is not an option because as we all know, everyone hates diet coke.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bennettweb.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bennettweb.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bennettweb.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bennettweb.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bennettweb.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bennettweb.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bennettweb.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bennettweb.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bennettweb.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bennettweb.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bennettweb.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bennettweb.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bennettweb.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bennettweb.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bennettweb.wordpress.com&amp;blog=19657260&amp;post=13&amp;subd=bennettweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bennettweb.wordpress.com/2010/06/11/get-my-can-out/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9706999c4ccd16fcb916d34d7853e728?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bennettweb</media:title>
		</media:content>

		<media:content url="http://bennettweb.files.wordpress.com/2010/06/media_httpbennettwebo_obefc-scaled500.jpg?w=300" medium="image" />
	</item>
		<item>
		<title>Weeknote #5</title>
		<link>http://bennettweb.wordpress.com/2010/06/11/weeknote-5/</link>
		<comments>http://bennettweb.wordpress.com/2010/06/11/weeknote-5/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 20:06:44 +0000</pubDate>
		<dc:creator>bennettweb</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[songcompare.com]]></category>
		<category><![CDATA[weeknotes]]></category>

		<guid isPermaLink="false">http://bennettweb.wordpress.com/2010/06/11/weeknote-5</guid>
		<description><![CDATA[Like last week, another week goes by where I don&#8217;t really get the time I&#8217;d like to work on songcompre. This is becoming too much like a regular habit! As such, this will be a pretty short update. In the spare time that I&#8217;ve had, I&#8217;ve tried to get some more work done on the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bennettweb.wordpress.com&amp;blog=19657260&amp;post=14&amp;subd=bennettweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>    Like last week, another week goes by where I don&#8217;t really get the time I&#8217;d like to work on songcompre. This is becoming too much like a regular habit! As such, this will be a pretty short update.</p>
<p>In the spare time that I&#8217;ve had, I&#8217;ve tried to get some more work done on the wireframes for the the main functional page of the site. It&#8217;s opened me up to a whole world of div and css nightmares and I&#8217;m not even thinking about cross browser compatibility at the moment.</p>
<p>Work has been pretty challenging recently as my team gears up for a major new release. It&#8217;s a pretty intense, yet at the same time exciting time that we&#8217;re working in, so I&#8217;m hoping that everything goes well over the next couple of weeks and we get the new stuff out on time. I&#8217;m not as hopeful as I was at the start of the week, but even so, I still think we could just pull it off!</p>
<p>I&#8217;m away for the next week, so they&#8217;ll be no real update to speak of. Finally, good luck to England in the 2010 World Cup that starts today!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bennettweb.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bennettweb.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bennettweb.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bennettweb.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bennettweb.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bennettweb.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bennettweb.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bennettweb.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bennettweb.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bennettweb.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bennettweb.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bennettweb.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bennettweb.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bennettweb.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bennettweb.wordpress.com&amp;blog=19657260&amp;post=14&amp;subd=bennettweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bennettweb.wordpress.com/2010/06/11/weeknote-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9706999c4ccd16fcb916d34d7853e728?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bennettweb</media:title>
		</media:content>
	</item>
	</channel>
</rss>
