<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>ian jenkins</title>
	
	<link>http://www.jenkins-web.co.uk/blog</link>
	<description>"Life's too serious to be taken seriously..." - Mike Leonard</description>
	<lastBuildDate>Wed, 24 Aug 2011 22:22:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Jenkins-web" /><feedburner:info uri="jenkins-web" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Simple WordPress Columns</title>
		<link>http://feedproxy.google.com/~r/Jenkins-web/~3/QyYNLnVuw5k/</link>
		<comments>http://www.jenkins-web.co.uk/blog/?p=263#comments</comments>
		<pubDate>Wed, 24 Aug 2011 22:21:10 +0000</pubDate>
		<dc:creator>Jenko</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[columns]]></category>

		<guid isPermaLink="false">http://www.jenkins-web.co.uk/blog/?p=263</guid>
		<description><![CDATA[Recently I needed to display some content in WordPress in two columns, I couldn&#8217;t find any easy way of doing this, other than going nuts in the wysiwyg editor. So I wrote some simple code to get some quick and dirty columns within a wordpress page/post. I may turn this in to a dirt simple [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I needed to display some content in WordPress in two columns, I couldn&#8217;t find any easy way of doing this, other than going nuts in the wysiwyg editor.</p>
<p>So I wrote some simple code to get some quick and dirty columns within a wordpress page/post. I may turn this in to a dirt simple plugin, but for now this has sorted my basic need.  There may well be an easier way to do this, and if you know of one, please feel free to let me know via the comments.</p>
<p>The shortcode is [columns][/columns] and it requires the the &#8216;more&#8217; element of the wysiwyg to be used to &#8216;split&#8217; the columns.</p>
<pre class="brush: html">
    [columns]
        Content for column 1
        &lt;span id=&quot;more-263&quot;&gt;&lt;/span&gt;
        Content for column 2
    [/columns]
</pre>
<p>The code for this which you can drop in to your custom theme&#8217;s functions.php or equivalent.</p>
<pre class="brush: php">
// split content at the more tag and return an array
function split_content($content) {

    $content = preg_split(&#039;/&lt;span id=&quot;more-\d+&quot;&gt;&lt;\/span&gt;/i&#039;, $content);
    for($c = 0, $csize = count($content); $c &lt; $csize; $c++) {
        $content[$c] = apply_filters(&#039;the_content&#039;, $content[$c]);
    }
    return $content;
}

// Parse the columns shortcode
function columns_shortcode( $atts, $content = null ) {
    $content = split_content($content);
    $output = &#039;&#039;;

    if (count($content) &gt; 1) {
        $output .= &#039;&lt;div id=&quot;column1&quot;&gt;&#039;. array_shift($content). &#039;&lt;/div&gt;&#039;;
        // output remaining content sections in column2
        $output .= &#039;&lt;div id=&quot;column2&quot;&gt;&#039;. implode($content). &#039;&lt;/div&gt;&#039;;
    } else {
        $output .= $content[0];
    }

    return $output;
}

add_shortcode( &#039;columns&#039;, &#039;columns_shortcode&#039; );
</pre>
<p>This is obviously limited to just 2 columns, so is not perfect, but for a quick 2 column display, which is just what I needed, this worked just fine.</p>
<p>For completeness, my CSS then looks something like this..</p>
<pre class="brush: css">
#main #column1 {
    float: left;
    width: 50%;
    padding: 10px;
    margin-bottom: 10px;
    margin-right: 10px;
}

#main #column2 {
    float: left;
    width: 50%;
    padding: 10px;
    margin-bottom: 10px;
}
</pre>
<p>So there you go, simple columns within a wordpress page/post, let me know if you found this useful <img src='http://www.jenkins-web.co.uk/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<img src="http://feeds.feedburner.com/~r/Jenkins-web/~4/QyYNLnVuw5k" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jenkins-web.co.uk/blog/?feed=rss2&amp;p=263</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.jenkins-web.co.uk/blog/?p=263</feedburner:origLink></item>
		<item>
		<title>mysql: save query to file</title>
		<link>http://feedproxy.google.com/~r/Jenkins-web/~3/kp26wW4F-_A/</link>
		<comments>http://www.jenkins-web.co.uk/blog/?p=264#comments</comments>
		<pubDate>Mon, 11 Jul 2011 13:02:07 +0000</pubDate>
		<dc:creator>Jenko</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.jenkins-web.co.uk/blog/?p=264</guid>
		<description><![CDATA[Courtesy of @BenjaminDavies mysql -u [username] -p [dbname] -e [query] > query.txt]]></description>
			<content:encoded><![CDATA[<p>Courtesy of <a href="http://twitter.com/BenjaminDavies" target="_blank">@BenjaminDavies</a></p>
<p><code>mysql -u [username] -p [dbname] -e [query] > query.txt</code></p>
<img src="http://feeds.feedburner.com/~r/Jenkins-web/~4/kp26wW4F-_A" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jenkins-web.co.uk/blog/?feed=rss2&amp;p=264</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.jenkins-web.co.uk/blog/?p=264</feedburner:origLink></item>
		<item>
		<title>my big list of things to do</title>
		<link>http://feedproxy.google.com/~r/Jenkins-web/~3/vtHX3AqbAZs/</link>
		<comments>http://www.jenkins-web.co.uk/blog/?p=224#comments</comments>
		<pubDate>Wed, 04 May 2011 22:24:06 +0000</pubDate>
		<dc:creator>Jenko</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Me]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[mid-life crisis]]></category>

		<guid isPermaLink="false">http://www.jenkins-web.co.uk/blog/?p=224</guid>
		<description><![CDATA[So now that I&#8217;m getting on a bit, I&#8217;m starting to panic about not fitting in all the stuff I wanted to do with my life before I get old, I think others call this a mid-life crisis. I started writing this list about a year ago, although I haven&#8217;t particularly spent much time on [...]]]></description>
			<content:encoded><![CDATA[<p>So now that I&#8217;m getting on a bit, I&#8217;m starting to panic about not fitting in all the stuff I wanted to do with my life before I get old, I think others call this a mid-life crisis.</p>
<p>I started writing this list about a year ago, although I haven&#8217;t particularly spent much time on it, mostly been jotting things down as and when they come to me, however, I thought I may as well bung the list on line so people can laugh at me and see how much of a loser I really am.</p>
<p>The list is about 50 or so items at the moment and I intend to expand on this as I see fit.  I haven&#8217;t added all items from my list to the online version, as some are too personal to share. </p>
<p>Of the items I have shared, some are tiny, some are big, some are ridiculous and some are a bit embarrassing.  However, I think all of them are achievable, hence why there&#8217;s no &#8216;fly to the moon&#8217; or anything on there.</p>
<p>So it may take me 5, 10, 25 years to complete the list, and it will be expanding as I get older, but I think it will be useful to have a list of things to achieve, I&#8217;m scared to death of being old and regretting how I lived my life.</p>
<p>I&#8217;ve closed the comments on this post as the actual page itself has comments on, so please add any comments you want to that.</p>
<p>Yep, I&#8217;ve given this bad boy it&#8217;s own page, and now the moment you&#8217;ve been waiting for (or more likely scrolled down to see) the link to my big list of things to do with my life&#8230;</p>
<p><a href="http://lifelist.jenkins-web.co.uk/">http://lifelist.jenkins-web.co.uk/</a></p>
<p>I&#8217;ve added a progress bar to the list to keep track of how much I actually achieve, at the time of writing, I need to pull my bloody finger out!</p>
<img src="http://feeds.feedburner.com/~r/Jenkins-web/~4/vtHX3AqbAZs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jenkins-web.co.uk/blog/?feed=rss2&amp;p=224</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.jenkins-web.co.uk/blog/?p=224</feedburner:origLink></item>
		<item>
		<title>tools for freelance collaboration part 1: project management</title>
		<link>http://feedproxy.google.com/~r/Jenkins-web/~3/hRqXnpvahp0/</link>
		<comments>http://www.jenkins-web.co.uk/blog/?p=220#comments</comments>
		<pubDate>Wed, 09 Feb 2011 22:25:26 +0000</pubDate>
		<dc:creator>Jenko</dc:creator>
				<category><![CDATA[Freelance]]></category>
		<category><![CDATA[Me]]></category>
		<category><![CDATA[Project Management]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[collaboration]]></category>
		<category><![CDATA[freelance]]></category>
		<category><![CDATA[projectmanagement]]></category>

		<guid isPermaLink="false">http://www.jenkins-web.co.uk/blog/?p=220</guid>
		<description><![CDATA[So, I don&#8217;t really do much freelance, I do bits here and there, whenever I get asked really, but I find myself continually searching for tools to use and help me, particularly when collaborating with another developer, or more commonly, a designer. I&#8217;m gonna write a series of posts on the search for these tools, [...]]]></description>
			<content:encoded><![CDATA[<p>So, I don&#8217;t really do much freelance, I do bits here and there, whenever I get asked really, but I find myself continually searching for tools to use and help me, particularly when collaborating with another developer, or more commonly, a designer.</p>
<p>I&#8217;m gonna write a series of posts on the search for these tools, what I find good, bad etc&#8230; </p>
<p>Like I said I&#8217;m a bit part freelancer, so if I miss out some tools (likely) or you feel there are better things to use as to what I suggest then let me know and I&#8217;ll take a looks.</p>
<h2>part 1: project management</h2>
<p>Warning: cheesy ass stock image coming up (its the cheesiest I could find)</p>
<div align="center"><img src="http://www.jenkins-web.co.uk/blog/wp-content/uploads/2011/02/project-management-training.jpg" alt="Cheesy Project Management Stock Image" title="project-management-training" width="400" height="300" class="aligncenter size-full wp-image-239" /></div>
<p>The few freelance projects I do are nearly always a collaborative effort, usually between a designer and myself.  I always find myself at the start of the project searching for a decent project management tool to assist us in this collaboration.  So for the first part in this series, I&#8217;ll be looking at project management tools to keep everything organised and as a way to make it easier between myself and the designer (or other developer).</p>
<p>My requirements for this were thus: -</p>
<ul>
<li>must be free &#8211; I don&#8217;t do enough freelance to justify paying a monthly fee or anything</li>
<li>must have somewhere to dump files</li>
<li>must have milestone support</li>
<li>must have task creation and assignment support</li>
<li>must have a dicussion board or similar</li>
<li>must have to do list support</li>
<li>code repository would be a bonus</li>
<li>issue tracking would also be a bonus</li>
</ul>
<p>Here are the apps I have tried up until now&#8230;</p>
<h3>huddle &#8211; <a href="http://www.huddle.com/">http://www.huddle.com</a></h3>
<p>pros</p>
<p>- good calendar<br />
- nice idea of workspaces<br />
- whiteboards is very cool<br />
- excellent file support</p>
<p>cons</p>
<p>- has gone under a redesign since, but when I looked at it, it was very busy and confusing<br />
- almost too many features<br />
- it seems free accounts have gone? only free account is a limited trial period it seems<br />
- no svn support<br />
- no issue tracker</p>
<h3>basecamp &#8211; <a href="http://basecamphq.com">http://basecamphq.com</a></h3>
<p>pros</p>
<p>- simple to use<br />
- excellent support for to do lists<br />
- excellent milestone support<br />
- super cool writeboards<br />
- excellent messaging system<br />
- free option<br />
- can integrate with the other 37 signals apps and has api which lots of <a href="http://www.springloops.com/v2/" target="_blank">other systems hook into if you need things like svn support</a> etc..</p>
<p>cons</p>
<p>- free option is very limited<br />
- no native svn support<br />
- no native issue tracker<br />
- mention the word gannt chart and they may kill you*</p>
<p><small>* This is untrue, they will not harm you in any way</small></p>
<h3>teamlab &#8211; <a href="http://teamlab.com">http://teamlab.com</a></h3>
<p>pros</p>
<p>- task and milestone creation is nice and easy<br />
- file sharing is excellent<br />
- good dicussion feature<br />
- time tracking with useful reports feature<br />
- simple and smart interface<br />
- free!<br />
- nice instant messaging feature</p>
<p>cons</p>
<p>- dashboard can be a little confusing, particularly if you have more than 1 project<br />
- no svn support<br />
- no issue tracking support</p>
<h3>reverb &#8211; <a href="http://reverbapp.com">http://reverbapp.com</a></h3>
<p>pros </p>
<p>- free<br />
- looks beautiful<br />
- easy to use<br />
- file sharing support<br />
- dicussion support<br />
- milestones and tasks work a treat<br />
- did I mention it looks nice?</p>
<p>cons</p>
<p>- limited to 10mb of space<br />
- no svn support<br />
- no issue tracker<br />
- no option to upgrade to get more space etc.</p>
<h3>unfuddle &#8211; <a href="http://unfuddle.com">http://unfuddle.com</a></h3>
<p>- free option<br />
- svn support!!<br />
- issue tracking support!!<br />
- milestone support<br />
- dicussion support<br />
- tasks (through tickets) and milestone support<br />
- plenty of options to upgrade should you need to</p>
<p>cons</p>
<p>- free option is quite limited<br />
- ajaxified to the point of it almost being annoying<br />
- the ticketing is excellent but it almosts takes away the essence of project management through tasks and setting timeframes</p>
<h2>conclusion</h2>
<p>If you require svn (or git) support and/or a decent issue tracker as an all in one solution, then unfuddle is definitely worth a look.  The problem here is the limits of the free account. What you may find yourself doing is hosting your subversion/issue tracker yourself or separately and just looking for a kick ass project management tool.</p>
<p>If this is the case, then I don&#8217;t think you can go wrong with any of the above, if I was pushed to pick one, I might be tempted to go for reverb, but that&#8217;s just me being a sucker for a pretty web app.</p>
<h3><a href="http://freedcamp.com">freedcamp</a></h3>
<p>I have only just come across this one, and haven&#8217;t really had chance to use it before this blog post, but it looks excellent.  The fact that it seems to be focussing on a free project management tool for &#8220;people who just love to collaborate on ideas&#8221;, suits me down to the ground.  If I get chance to have a proper look and play, I will update this post I&#8217;m sure.</p>
<img src="http://feeds.feedburner.com/~r/Jenkins-web/~4/hRqXnpvahp0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jenkins-web.co.uk/blog/?feed=rss2&amp;p=220</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.jenkins-web.co.uk/blog/?p=220</feedburner:origLink></item>
		<item>
		<title>useful bits when using wordpress as a cms</title>
		<link>http://feedproxy.google.com/~r/Jenkins-web/~3/UeHakNbA7xQ/</link>
		<comments>http://www.jenkins-web.co.uk/blog/?p=205#comments</comments>
		<pubDate>Tue, 18 Jan 2011 00:03:41 +0000</pubDate>
		<dc:creator>Jenko</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[freelance]]></category>

		<guid isPermaLink="false">http://www.jenkins-web.co.uk/blog/?p=205</guid>
		<description><![CDATA[What a catchy blog post title Anyways, been working on a wordpress cms site and have found a few bits and bobs useful, so thought I&#8217;d blog about it. Mostly for my own benefit for future reference, but if someone can make use of it, then cool. useful plugins Found the following plugins very handy [...]]]></description>
			<content:encoded><![CDATA[<p>What a catchy blog post title <img src='http://www.jenkins-web.co.uk/blog/wp-includes/images/smilies/icon_confused.gif' alt=':-?' class='wp-smiley' /> </p>
<p>Anyways, been working on a wordpress cms site and have found a few bits and bobs useful, so thought I&#8217;d blog about it.  Mostly for my own benefit for future reference, but if someone can make use of it, then cool.</p>
<h3><strong>useful plugins</strong></h3>
<p>Found the following plugins very handy when using wordpress as a cms&#8230;</p>
<p><a href="http://wordpress.org/extend/plugins/cms/" target="_blank">cms</a> &#8211; The hint is in the title, but it&#8217;s really excellent.  It basically removes all the confusing cruft that wordpress has in order to focus more on it&#8217;s CMS bits.  Simplifies the admin massively and allows you to turn things off in the admin such as posts/comments etc.</p>
<p><a href="http://wordpress.org/extend/plugins/cms-tree-page-view/" target="_blank">cms page tree view</a> &#8211; Another must for a cms wordpress.  Allows you to view the pages in a tree like structure.  It does it really nicely too, with nice little hovers and a clean, simple interface.</p>
<p><a href="http://wordpress.org/extend/plugins/more-fields/" target="_blank">more fields</a> &#8211; The site I was working on required a sidebar which contained lots of different bits of functionality.  Images, content, lists etc.  This plugin allows you to specify different fields to use for different sections.  It is based around custom fields, but makes them so much easier to use and manage and gives you things like a content editor for them.</p>
<p><a href="http://wordpress.org/extend/plugins/wp-list-tweets/" target="_blank">wp list tweets</a> &#8211; Like every site in the world right about now, I needed to list the latest tweets.  There are <a href="http://wordpress.org/extend/plugins/search.php?q=tweets" target="_blank">hundreds</a> of plugins to list tweets, but I found this one was the smallest, simplest and did exactly what I wanted to with minimum fuss.  Basically you chuck it a twitter username and it displays the latest X tweets, simples.</p>
<p><a href="http://wordpress.org/extend/plugins/cleaner-gallery/" target="_blank">cleaner gallery</a> &#8211; A gallery page was also required for the site and I found this gallery plugin excellent. The lightbox integration is particularly useful.</p>
<p><a href="http://wordpress.org/extend/plugins/wp-contact-form/">wp contact form</a> &#8211; Needed a small and simple contact form, again there are lots of contact form plugins, but they all seemed to complicated for my liking.  This one is dead simple, the only drawback is that it has no anti-span functionality, so if your site has a fair bit of traffic and you don&#8217;t want spam, maybe this isn&#8217;t for you.  However, there do seem to be <a href="http://wordpress.org/extend/plugins/wp-contact-form-iii/" target="_blank">re-hashed versions of this which have anti-spam features such as captcha included</a>.</p>
<p><a href="http://wordpress.org/extend/plugins/tubepress/" target="_blank">tubepress</a> &#8211; There were a ruck of videos on a youtube channel, which needed to be brought into the website and displayed in a gallery. This plugin does exactly that. Nice.</p>
<p><a href="http://wordpress.org/extend/plugins/exclude-pages/" target="_blank">exclude pages</a> &#8211; Dead simple, if you want to exclude a page from the navigation, this allows you to do so.</p>
<h3><strong>setting it up</strong></h3>
<p>Did the following things in the admin in order to make it work.  The site I was working on was to be used primarily as a cms with a single page being used for it&#8217;s blog.</p>
<p><strong>settings > reading </strong></p>
<p>Front displays as a static page with my &#8216;home&#8217; page set as the front page and my &#8216;blog&#8217; page set up as the posts page.  Home and blog are just the names of the pages, they could be named whatever.</p>
<p><strong>cms plugin settings</strong> </p>
<p>Only turn on the posts component.  Only because I needed to have a blog page, otherwise this would have been turned off also.</p>
<p><strong>more fields plugin settings</strong> </p>
<p>- New input box &#8216;Sidebar&#8217;.<br />
- Used only for pages (not posts)<br />
- Added sidebar-image field as a file-list. A file list is a dropdown of media items.<br />
- Added sidebar-title field as a text box. This allows the administrator to add a title in the sidebar (duh!)<br />
- Added sidebar-content field as a content editor.  This allows the administrator to put whatever the hell content they want in their sidebar (to appear under the sidebar image and title)</p>
<h3><strong>custom theme</strong></h3>
<p>I created a custom theme, just to keep all the stuff I was doing neatly contained within its own theme.  For this I used <a href="http://twitter.com/#!/elliotjaystocks" target="_blank">Elliot Jay Stocks</a> <a href="http://starkerstheme.com/" target="_blank">Starkers Theme</a>.  I can&#8217;t recommend this highly enough. If you are creating a theme from scratch, then use this theme as a base, done.</p>
<h3><strong>codes fiddlings</strong></h3>
<p>Mostly amends to the sidebar.  I was never going to use the widgets on the sidebar, so if you are, then my changes may not be that advisable.</p>
<p>So here is the code I added to my sidebar.php.  You can read the code comments to see what&#8217;s going on.  Also, note that the mismatch of code and html is not something I&#8217;d encourage, but this is wordpress remember.</p>
<pre class="brush: php">
		&lt;?php
		global $wp_query;		

		/**
		 * If we are on a single blog page or a blog category page, we won&#039;t
		 * have the blog listing page within wp_query. So use the get_option()
		 * function to get the page id of the page we specified to list posts.
		 * Otherwise we can get the page_id from the wp_query.
		 */
		if (is_single() || is_category()) {
			$page_id = get_option(&#039;page_for_posts&#039;);
		} else {
			$page_id = $wp_query-&gt;queried_object-&gt;ID;
		}		

		/**
		 * Get our custom field sidebar-image and display that shit
		 */
		if ($sidebarImage = get_post_meta($page_id, &#039;sidebar-image&#039;, true)) {
		?&gt;
			&lt;div class=&quot;sidebar-image&quot;&gt;
				&lt;img src=&quot;&lt;?php echo $sidebarImage; ?&gt;&quot; alt=&quot;Alt text here&quot; /&gt;
			&lt;/div&gt;
		&lt;?php
		}
		?&gt;

		&lt;?php
		/**
		 * Sidebar content we want to display latest tweets if on the home page,
		 * otherwise show the sidebar title, sidebar content and any children pages
		 * we may have
		 */
		?&gt;
		&lt;div class=&quot;sidebar-content&quot;&gt;

			&lt;?php
			/**
			 * If we&#039;re on the homepage, then we want to show the latest tweets.
			 */
			if (is_front_page()) {
			?&gt;
				&lt;div id=&quot;footersm&quot; style=&quot;padding-top: 10px&quot;&gt;
            		&lt;a href=&quot;http://twitter.com/yourtwitteraccount&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;&lt;?php bloginfo(&#039;template_directory&#039;); ?&gt;/images/twitter-20x20.png&quot; alt=&quot;Follow us on Twitter&quot; title=&quot;Follow us on Twitter&quot;&gt;&lt;/a&gt;
            	&lt;/div&gt;
				&lt;h2&gt;@yourtwitteraccount feed&lt;/h2&gt;
			&lt;?php
				wp_list_tweets();
			} else {
			?&gt;

				&lt;h2&gt;&lt;?php echo get_post_meta($page_id, &#039;sidebar-title&#039;, true); ?&gt;&lt;/h2&gt;

				&lt;?php echo get_post_meta($page_id, &#039;sidebar-content&#039;, true); ?&gt;

				&lt;?php 

				/**
				 * Wanted to list children pages in sidebar, so check if the current
				 * page has a parent and if so, get the root page id.
				 * Otherwise just use the current page_id as the parent
				 */
				if ($wp_query-&gt;queried_object-&gt;post_parent)	{
					$ancestors = get_post_ancestors($page_id);
					$root = count($ancestors)-1;
					$parent = $ancestors[$root];
				} else {
					$parent = $page_id;
				}		

				/**
				 * wp_list_pages() will get us list of pages under a certain page_id
				 */
				wp_list_pages( array( &#039;child_of&#039;=&gt;$parent,
					&#039;title_li&#039;=&gt;&#039;&#039;,
					&#039;depth&#039;=&gt;1 ) );
			}
			?&gt;
		&lt;/div&gt;
</pre>
<p>Needed to bring out the latest 2 posts on the homepage as well, wanted to keep code to a minimum and not introduce any functions/classes, but if you have a better set up than me then put this in your functions file or better still a nice little helper class or something, but here is what I used to pull out latest 2 posts on the home page&#8230;</p>
<pre class="brush: php">
                    &lt;?php if ( is_front_page() ) { ?&gt;
                        &lt;div id=&quot;latest-posts&quot;&gt;
                            &lt;?php
                            /** Set up our options, i.e. 2 latest posts */
                            $options = array(&#039;numberposts&#039; =&gt; 2,
                                                &#039;orderby&#039; =&gt; &#039;post_date&#039;,
                                                &#039;order&#039; =&gt; &#039;desc&#039;);
                            $i = 1;
                            foreach (get_posts($options) as $post) {
                            ?&gt;
                                &lt;div class=&quot;post num-&lt;?php echo $i; ?&gt;&quot;&gt;
                                    &lt;h3&gt;&lt;?php echo $post-&gt;post_title; ?&gt;&lt;/h3&gt;
                                    &lt;span class=&quot;date&quot;&gt;Posted on &lt;?php echo date(&quot;D, j M Y&quot;, strtotime($post-&gt;post_date)); ?&gt;&lt;/span&gt;
                                    &lt;div class=&quot;content&quot;&gt;
                                        &lt;?php echo (strlen($post-&gt;post_content) &gt; 200) ?
                                            substr($post-&gt;post_content,0,200).&#039; &lt;a href=&quot;&#039;.get_permalink($post-&gt;ID).&#039;&quot;&gt;Read more...&lt;/a&gt;&#039; : $post-&gt;post_content?&gt;
                                    &lt;/div&gt;
                                &lt;/div&gt;
                            &lt;?php
                                ++$i;
                            }
                            ?&gt;
                        &lt;/div&gt;
                    &lt;?php } ?&gt;
</pre>
<p>And, that&#8217;s pretty much it! Nothing too advanced or crazy, but just some useful things for me to remember for next time.  I&#8217;m also not quite finished, so I may add to this list.</p>
<img src="http://feeds.feedburner.com/~r/Jenkins-web/~4/UeHakNbA7xQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jenkins-web.co.uk/blog/?feed=rss2&amp;p=205</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://www.jenkins-web.co.uk/blog/?p=205</feedburner:origLink></item>
		<item>
		<title>2011 please kick 2010′s ass</title>
		<link>http://feedproxy.google.com/~r/Jenkins-web/~3/KwdmFUYSD_A/</link>
		<comments>http://www.jenkins-web.co.uk/blog/?p=183#comments</comments>
		<pubDate>Fri, 31 Dec 2010 11:04:13 +0000</pubDate>
		<dc:creator>Jenko</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Me]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[depressing]]></category>
		<category><![CDATA[happiness]]></category>
		<category><![CDATA[new years]]></category>
		<category><![CDATA[resolutions]]></category>

		<guid isPermaLink="false">http://www.jenkins-web.co.uk/blog/?p=183</guid>
		<description><![CDATA[2010 wasn&#8217;t a great year for me and I fully intend on not letting that happen again in 2011. I basically need to upgrade to Jenko v2.0. Unfortunately, as with most major upgrades, their will undoubtedly be some downtime whilst this occurs. Anyway here are (20)11 things I need to try and keep to in [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.jenkins-web.co.uk/blog/wp-content/uploads/2010/12/happy_new_year_2011_button-p145003748186034798t5sj_400-150x150.jpg" alt="" title="happy_new_year_2011_button-p145003748186034798t5sj_400" width="150" height="150" class="alignright size-thumbnail wp-image-201" />2010 wasn&#8217;t a great year for me and I fully intend on not letting that happen again in 2011.  I basically need to upgrade to Jenko v2.0.  Unfortunately, as with most major upgrades, their will undoubtedly be some downtime whilst this occurs.  </p>
<p>Anyway here are (20)11 things I need to try and keep to in 2011 to ensure it&#8217;s not another shitfest.  Some may call them resolutions, but I&#8217;m going for the much more catchy &#8216;things I should stick to in order to have a better year&#8217;.</p>
<p><strong>If you can&#8217;t be arsed to read the entire (depressing) list then in short, in 2011 I want to try and achieve something I failed to in 2010.  Happiness.</strong></p>
<h3>1. find some confidence</h3>
<p>For various reasons, my confidence has taken a bit of a battering in 2010.  I need to regain my confidence and start being awesome again.</p>
<h3>2. be less selfish, but more self centred</h3>
<p>Not sure if this should be the other way round or not, but the point is, I need to start looking after number one.  I often put other people before myself and I need to stop doing that, I get little reward for it.  On the other hand, there have probably been times in 2010 where I have been too selfish, this needs to stop also.  I appreciate this seems a bit contradictory but it makes sense to me&#8230;kinda.</p>
<h3>3. stop being &#8216;nice&#8217;</h3>
<p>Linked to the above, but I&#8217;m kind of bored being the nice, safe guy all the time.  I don&#8217;t wanna become a <a href="http://en.wikipedia.org/wiki/Paris_Hilton" target="_blank">dick</a>, but I want to start enjoying life more and if this means pissing off a few people on the way, then I need to stop worrying about that.  Being &#8216;nice&#8217; just seems to be an open invitation for people to take advantage of you.</p>
<h3>4. have more fun</h3>
<p>I can probably count on one hand the number of times I had real, laugh out loud, fun, in 2010.  Life&#8217;s too short for that, I need to take steps to make sure I have fun.</p>
<h3>5. take in more live music</h3>
<p>Finally one that&#8217;s not mega depressing!  Historically I&#8217;ve not gone to many gigs, mostly due to costs and effort I think, but I need to start taking in more live music in 2011.  I saw <a href="http://imogenheap.com/" target="_blank">Imogen Heap</a> at the tail end of last year and absolutely loved it.  I&#8217;ve booked to go see <a href="http://benfolds.com/" target="_blank">Ben Folds</a>, but there are plenty of other gigs I wanna go to, so I need to put my hand in my pocket and get out there.</p>
<h3>6. properly learn the piano</h3>
<p>Ok, I learnt &#8216;<a href="http://en.wikipedia.org/wiki/Fr%C3%A8re_Jacques" target="_blank">Frère Jacques</a>&#8216;, big deal, I need to start learning proper songs.</p>
<h3>7. socialise more</h3>
<p>Again, due to various reasons, I didn&#8217;t socialise much in 2010.  This sucks, because socialising is like totally rad.  I need to go out with friends and colleagues much more often in 2011.</p>
<h3>8. take an exercise class</h3>
<p>This is like a proper resolution.  Loads of reasons this is a good idea.  A friend recommended I try yoga due to my stupid ass back problems, but I&#8217;m also tempted by the bike one, ermm what&#8217;s it called, can&#8217;t remember, but you&#8217;re on an exercise bike and there&#8217;s music and someone shouting at you.</p>
<h3>9. read more</h3>
<p>Yep, pretty self explanatory.</p>
<h3>10. take a frickin&#8217; holiday</h3>
<p>I need to go abroad and take in some sun, not happened in over 3 years, not sure I can handle another holiday within this country.  Winning £2.50 on a 5p gambler should be a lowlight of a holiday, not a highlight!  An option is to go stay with my friend who&#8217;s just moved to Hong Kong.  His name is Tony Wong, and he lives in Hong Kong&#8230;chyer I know!</p>
<h3>11. finish a personal project!</h3>
<p>If you go into the root directory of my home web server there must be about 30 folders of personal projects I&#8217;ve started but not finished.  I get loads of stupid ideas of web apps and stuff, I write a bit of code, get bored and never finish it.  I need to finish one of these some day.</p>
<p>Ok, I think that&#8217;s everything, a bit depressing, but there you go, onwards and upwards, 2011 you have a lot to live up to!</p>
<img src="http://feeds.feedburner.com/~r/Jenkins-web/~4/KwdmFUYSD_A" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jenkins-web.co.uk/blog/?feed=rss2&amp;p=183</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.jenkins-web.co.uk/blog/?p=183</feedburner:origLink></item>
		<item>
		<title>staying motivated during a large project</title>
		<link>http://feedproxy.google.com/~r/Jenkins-web/~3/3deyeuT62h0/</link>
		<comments>http://www.jenkins-web.co.uk/blog/?p=163#comments</comments>
		<pubDate>Mon, 01 Mar 2010 18:10:58 +0000</pubDate>
		<dc:creator>Jenko</dc:creator>
				<category><![CDATA[Career]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[motivation]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[project management]]></category>

		<guid isPermaLink="false">http://www.jenkins-web.co.uk/blog/?p=163</guid>
		<description><![CDATA[I will try to keep this as brief as possible so you&#8217;re not left thinking you need to read an article about staying motivated during a large blog post! I am nearing the end of a particularly large development project. The project has been over a year in development and seen a number of developers [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.jenkins-web.co.uk/blog/wp-content/uploads/2009/11/mr-motivator.jpg" alt="mr-motivator" title="mr-motivator" width="289" height="289" class="alignright size-full wp-image-166" /><br />
I will try to keep this as brief as possible so you&#8217;re not left thinking you need to read an article about staying motivated during a large blog post!</p>
<p>I am nearing the end of a particularly large development project.  The project has been over a year in development and seen a number of developers working on it.</p>
<p>When working on a project for this length of time it is easy to find yourself losing motivation for the task at hand.  Obviously this is undesirable, because as we all know a motivated worker is a productive one.</p>
<p>So how do you maintain motivation during this mammoth task and keep yourself from losing your sanity?</p>
<p>Well, there are few ways I found that helped a great deal and I would like to share these with you..</p>
<h3><strong>1.  Break tasks down into small chunks</strong></h3>
<p>Perhaps an obvious one but by breaking behemoth tasks into small achievable steps you instantly increase the motivation.  The smaller the step the better.   Spending a few days on something small does not weigh you down as much as having to spend months on one laborious task.</p>
<h3><strong>2.  Share the workload</strong></h3>
<p>Having a massive project solely on your back is not nice and will only damage the project.  By choosing a number of developers to work on the task you instantly remove the pressure of one person having to deliver.  This doesn&#8217;t mean throw your whole dev team at the problem, but simply share tasks based around spare time in the developers schedule.  You should determine the development team for the project at the start of the project and it is important to note that if the project is running late, <a href="http://www.codesqueeze.com/adding-people-to-a-late-project-makes-it-later/" target="_blank">adding more developers to it is not the answer</a>.</p>
<h3><strong>3.  Use the right tools</strong></h3>
<p>Using things like <a href="http://subversion.tigris.org/" target="_blank">version control</a> and a good <a href="http://trac.edgewall.org/" target="_blank">issue tracker</a> are always good practice, but they become even more important when you have multiple developers working on a large project.  By using the right tools you will ease the pain that can often arise when multiple developers are working on a project and thus increase the motivation of the developers working on it.</p>
<h3><strong>4.  Take a break</strong></h3>
<p>There&#8217;s nothing more de-motivating that getting stressed over a particular task.  If things are getting stressful or you are struggling with a particular problem, take a break.  You would be amazed what 5 minutes away from the screen can do.  You often find coming back to a problem with a clear head can solve it almost instantly.</p>
<h3><strong>5. Forget about it</strong></h3>
<p>Said in my best american/italian gangster accent, &#8216;fuggedaboutit&#8217;.  Don&#8217;t take work home, try not to think about the project when not in work.  Make sure you spend your weekends doing something as far away from the project as possible.  This allows you to come in fresh the next day refreshed and motivated to get on with your (small) task.</p>
<p>This list is by no means exhaustive, but like I said, I tried to keep it as brief as possible.  Indeed there are many things you can learn and take from working on a large project and I tried to make the experience a positive one rather than a negative one.</p>
<img src="http://feeds.feedburner.com/~r/Jenkins-web/~4/3deyeuT62h0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jenkins-web.co.uk/blog/?feed=rss2&amp;p=163</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.jenkins-web.co.uk/blog/?p=163</feedburner:origLink></item>
		<item>
		<title>tips for life</title>
		<link>http://feedproxy.google.com/~r/Jenkins-web/~3/ootkUlTS0GI/</link>
		<comments>http://www.jenkins-web.co.uk/blog/?p=147#comments</comments>
		<pubDate>Wed, 23 Sep 2009 13:46:13 +0000</pubDate>
		<dc:creator>Jenko</dc:creator>
				<category><![CDATA[George]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Me]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[inspirational]]></category>
		<category><![CDATA[son]]></category>

		<guid isPermaLink="false">http://www.jenkins-web.co.uk/blog/?p=147</guid>
		<description><![CDATA[On the 21st November 2009, my son, George, will be 1 year old. Just before he was born I had an urge to write down all the things in life I wish I had been told before I embarked on this mad little journey. However, because I&#8217;m a lazy arse, I never got round to [...]]]></description>
			<content:encoded><![CDATA[<p>On the 21st November 2009, my son, George, will be 1 year old.  Just before he was born I had an urge to write down all the things in life I wish I had been told before I embarked on this mad little journey.  However, because I&#8217;m a lazy arse, I never got round to it.</p>
<p>So now that his first birthday is fast approaching, I&#8217;m about to get all philisophical and share my tips for life.  In this first post I will list all of my tips, I will then elaborate on each one in subsequent posts.</p>
<p>It is also worth noting that I left out some obvious points such as &#8216;Live every day as if its your last&#8217; and &#8216;Life&#8217;s too short&#8217;, these I consider to be pre-requisites!</p>
<p>I want to give a bit of recognition to an excellent post which inspired this one a little bit.  So make sure you check out <a href="http://www.dragosroua.com/100-ways-to-live-a-better-life/" target="_blank">100 ways to live a better life</a>.</p>
<p>And finally, here are my tips for life:</p>
<ol>
<li>Silence often says more than any words.</li>
<li>Learn something from every single person you meet.</li>
<li>Be kind and sharing but ultimately be selfish.</li>
<li>Support <a href="http://www.lfc.tv" target="_blank">Liverpool F.C.</a></li>
<li>Don&#8217;t take yourself (or anything for that matter) too seriously.</li>
<li><a href="http://www.typcut.com/wp-content/uploads/2009/08/Areyouhappy_a2_web_1024-600x848.jpg" target="_blank">If you&#8217;re happy, carry on what you&#8217;re doing, if you&#8217;re unhappy, change whatever it is you&#8217;re doing.</a></li>
<li>Be humble.</li>
<li>Appreciate how lucky you are.</li>
<li>Be confident.</li>
<li>Ask questions.</li>
<li>Be reflective.</li>
<li>See the good in everyone.</li>
<li>Rise above adversity.</li>
<li>Support <a href="http://www.lfc.tv" target="_blank">Liverpool F.C.</a></li>
<li>Don&#8217;t take things personally or get defensive.</li>
<li>School will be the best years of your life despite how you feel at the time, but remember school is only a small part of your life.</li>
<li>Enjoy being a child/don&#8217;t grow up too quickly.</li>
<li>Observe.</li>
<li>Do things for you.</li>
<li>Support <a href="http://www.lfc.tv" target="_blank">Liverpool F.C.</a></li>
<li>If you cant say anything nice dont say anything at all.</li>
</ol>
<p>Now listen to <a href="http://open.spotify.com/track/1TQ6a2NEA8LmKfgf0yeBvT" target="_blank">this classic</a> (<a href="http://homepage.ntlworld.com/gary.hart/lyricsl/luhrmann.html" target="_blank">lyrics</a>).</p>
<img src="http://feeds.feedburner.com/~r/Jenkins-web/~4/ootkUlTS0GI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jenkins-web.co.uk/blog/?feed=rss2&amp;p=147</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.jenkins-web.co.uk/blog/?p=147</feedburner:origLink></item>
		<item>
		<title>do the simple things well</title>
		<link>http://feedproxy.google.com/~r/Jenkins-web/~3/WTxVl3mH3Yc/</link>
		<comments>http://www.jenkins-web.co.uk/blog/?p=133#comments</comments>
		<pubDate>Fri, 17 Apr 2009 18:20:50 +0000</pubDate>
		<dc:creator>Jenko</dc:creator>
				<category><![CDATA[Career]]></category>
		<category><![CDATA[Football]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[personal development]]></category>
		<category><![CDATA[simple]]></category>

		<guid isPermaLink="false">http://www.jenkins-web.co.uk/blog/?p=133</guid>
		<description><![CDATA[If any young web developer (of which I am one myself) should be stupid enough to ask me for advice, it would be to do the simple things well. When I was an up and coming footballer (soccer-er), many a coach told me to &#8216;do the simple things well&#8217;. A player who can control the [...]]]></description>
			<content:encoded><![CDATA[<p>If any young web developer (of which I am one myself) should be stupid enough to ask me for advice, it would be to <strong>do the simple things well</strong>.</p>
<p>When I was an up and coming footballer (soccer-er), many a coach told me to &#8216;do the simple things well&#8217;.  A player who can control the ball well, pass the ball simply and do all the basics well will get a lot further than the player who tries to do too much, tries to take on too many players and tries to score the perfect goal.</p>
<p>Of course there are the odd exception to the rule, but then even players who are known for their skills such as <a href="http://en.wikipedia.org/wiki/Cristiano_Ronaldo" target=_blank">Ronaldo</a>  have benefited from being reigned in a bit.  <a href="http://en.wikipedia.org/wiki/Alex_Ferguson" target="_blank">Alex Ferguson</a> is often credited with turning Ronaldo from a spectacular player with no end product to an all round superstar (for the record I hate Ronaldo, Fergusan and all thgins Manchester United).</p>
<p>Going back to my original point, if you can do the simple things well then you can go places.  This is not only true for football of course, but is also true with web development and indeed most things in life.</p>
<h3>Here come the acronyms</h3>
<p>Unless you have been living under a web development rock for the last decade you will be familiar with the term <a href="http://en.wikipedia.org/wiki/KISS_principle" target="_blank">KISS</a>.  Just to remind us this stands for <a href="http://www.techcrunch.com/2009/04/28/keep-it-simple-stupid/" target="_blank">Keep It Simple Stupid</a>.  As much as it is now a bit of a cliche (and I hate Cliche&#8217;s) never has an acronym rung so true.  </p>
<p>I would take a web developer who comments their code well, organises things well with sensible directory structure and naming schemes over some web developer &#8216;guru&#8217; who ignores these assets any day.</p>
<p>It all boils down to what makes a good web developer.  Where some people may argue that experience and a good understanding of advanced methodologies make a good web developer, I think all of this is in vain if they cannot do the simple things well.</p>
<p>It is true and some what essential that you are constantly learning new things and expanding your knowledge on a daily basis, but this will all be built on a better grounding if you can do the basics and indeed the simple things well.  In effect you don&#8217;t want to leave any demons behind when you move on to the next stage of your development as they may come back and bite you in the ass.</p>
<img src="http://feeds.feedburner.com/~r/Jenkins-web/~4/WTxVl3mH3Yc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jenkins-web.co.uk/blog/?feed=rss2&amp;p=133</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.jenkins-web.co.uk/blog/?p=133</feedburner:origLink></item>
		<item>
		<title>spotify = music heaven</title>
		<link>http://feedproxy.google.com/~r/Jenkins-web/~3/UIjHrhp78wI/</link>
		<comments>http://www.jenkins-web.co.uk/blog/?p=113#comments</comments>
		<pubDate>Mon, 19 Jan 2009 12:33:30 +0000</pubDate>
		<dc:creator>Jenko</dc:creator>
				<category><![CDATA[Me]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[last.fm]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[spotify]]></category>

		<guid isPermaLink="false">http://www.jenkins-web.co.uk/blog/?p=113</guid>
		<description><![CDATA[I recently started using spotify after I saw someone I was following on twitter rave about it, and all I can say is&#8230;awesome. Spotify is basically a music player, much like itunes, where you can search tracks and listen to music. The greatest thing about spotify is that you can listen to (almost) any track [...]]]></description>
			<content:encoded><![CDATA[<p>I recently started using <a href="http://www.spotify.com/" target="_blank">spotify</a> after I saw someone I was following on <a href="https://twitter.com/jenqo" target="_blank">twitter</a> rave about it, and all I can say is&#8230;awesome.</p>
<p><img src="http://www.jenkins-web.co.uk/blog/wp-content/uploads/2009/01/logo.png" alt="logo" title="logo" width="108" height="116" class="alignright size-full wp-image-122" /></p>
<p>Spotify is basically a music player, much like <a href="http://www.apple.com/itunes/" target="_blank">itunes</a>, where you can search tracks and listen to music.  The greatest thing about spotify is that you can listen to (almost) any track in the world!  It is just like having your own personal radio.  You even get the annoying adverts, which in actual fact, aren&#8217;t nearly as annoying as you might think.  You hardly notice a short audio advert, and I much prefer it to having a great big flashing banner hit me in the face whilst searching for tracks.</p>
<p>It&#8217;s catalogue of tunes is seriously huge, imagine having an ipod with every song in the world (almost) on it and that&#8217;s what spotify is.  What makes it even more great, is a sweet ass interface and search.</p>
<h3>it even scrobbles!</h3>
<p>Yep, after numerous requests and <a href="http://code.google.com/p/scrobblify/" target="_blank">attempted plugins</a>, spotify finally added <a href="http://www.last.fm/" target="_blank">last.fm</a> scrobbling support.  This is a killer feature for me as I am a keen user of last.fm.  Would love to see more last.fm integration, such as being able to &#8216;love&#8217; a track directly form spotify, but then we get in to the realms of just recreating last.fm, which is not what it&#8217;s trying to do.</p>
<p>If you haven&#8217;t checked out spotify then I urge you to, invite only at the moment for the free version (I got 4 invites left, drop me a comment if you want 1).  If, like me, you spend all day at a desk, listening to tunes whilst you tap away at a keyboard, then this is perfect for you.</p>
<img src="http://feeds.feedburner.com/~r/Jenkins-web/~4/UIjHrhp78wI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jenkins-web.co.uk/blog/?feed=rss2&amp;p=113</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.jenkins-web.co.uk/blog/?p=113</feedburner:origLink></item>
	</channel>
</rss>

