<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Joe Blog&#039;s &#187; Blog</title>
	<atom:link href="http://blog.joeb454.com/tag/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.joeb454.com</link>
	<description>A Day In The Life Of Your Average Joe</description>
	<lastBuildDate>Thu, 22 Jul 2010 19:47:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>Long Time No Blog</title>
		<link>http://blog.joeb454.com/2009/08/long-time-no-blog/</link>
		<comments>http://blog.joeb454.com/2009/08/long-time-no-blog/#comments</comments>
		<pubDate>Sat, 01 Aug 2009 23:07:10 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[Update]]></category>

		<guid isPermaLink="false">http://blog.joeb454.com/?p=325</guid>
		<description><![CDATA[Clearly I haven&#8217;t blogged for a while &#8211; this was evident by the fact I had a wordpress upgrade waiting to be done, and no less than 8 plugin upgrades! Now normally, I don&#8217;t mind being all long winded about plugin upgrades, because it&#8217;s usually just one or 2. Now because I&#8217;m picky and awkward, [...]]]></description>
			<content:encoded><![CDATA[<p>Clearly I haven&#8217;t blogged for a while &#8211; this was evident by the fact I had a wordpress upgrade waiting to be done, and no less than 8 plugin upgrades!</p>
<p>Now normally, I don&#8217;t mind being all long winded about plugin upgrades, because it&#8217;s usually just one or 2. Now because I&#8217;m picky and awkward, the WP auto-upgrade for plugins doesn&#8217;t seem to work on my server. Instead of fixing that, I simply wrote a bash script. The contents of which are:</p>
<pre>
<div class="codesnip-container" >
<div class="bash codesnip" style="font-family:monospace;">
<ol>
<li class="li1">
<div class="de1"><span class="co0">#!/bin/bash</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="kw1">if</span> <span class="br0">&#91;</span> <span class="re4">$#</span> == 2 <span class="br0">&#93;</span>; <span class="kw1">then</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="re2">new</span>=$2</div>
</li>
<li class="li1">
<div class="de1"><span class="kw1">else</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="re2">new</span>=$1</div>
</li>
<li class="li1">
<div class="de1"><span class="kw1">fi</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="kw1">if</span> <span class="br0">&#91;</span> <span class="re5">-d</span> $1 <span class="br0">&#93;</span>; <span class="kw1">then</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="kw2">rm</span> <span class="re5">-rf</span> .<span class="sy0">/</span>$1</div>
</li>
<li class="li1">
<div class="de1"><span class="kw1">fi</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="kw2">wget</span> http:<span class="sy0">//</span>downloads.wordpress.org<span class="sy0">/</span>plugin<span class="sy0">/</span><span class="re1">$new</span>.zip</div>
</li>
<li class="li1">
<div class="de1"><span class="kw2">unzip</span> .<span class="sy0">/*</span>.zip</div>
</li>
<li class="li1">
<div class="de1"><span class="kw2">rm</span> .<span class="sy0">/*</span>.zip</div>
</li>
</ol>
</div>
</div>
</pre>
<p>Not sure if anybody wants to use that &#8211; I&#8217;m sure it could be improved, but it satisfied 2 of my needs. I now have an easier way to update (and install, I guess) plugins, and a lesser desire to code things. I now have to think of my next blog topic so I can get back on track!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.joeb454.com/2009/08/long-time-no-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 2.8</title>
		<link>http://blog.joeb454.com/2009/06/wordpress-2-8/</link>
		<comments>http://blog.joeb454.com/2009/06/wordpress-2-8/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 01:14:59 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[upgrade]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[wp-config]]></category>

		<guid isPermaLink="false">http://blog.joeb454.com/?p=320</guid>
		<description><![CDATA[Normally these upgrades go well, but when you accidentally unzip/untar the new version over the top of your current install, things don&#8217;t quite go according to plan Though kudos to the WP Dev&#8217;s, I modified the wp-config file and set all the options (including a different database table prefix), and then I put all my [...]]]></description>
			<content:encoded><![CDATA[<p>Normally these upgrades go well, but when you accidentally unzip/untar the new version over the top of your current install, things don&#8217;t quite go according to plan <img src='http://blog.joeb454.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Though kudos to the WP Dev&#8217;s, I modified the wp-config file and set all the options (including a different database table prefix), and <em>then</em> I put all my plugins back in to place, and took the time to upgrade a couple I needed to do. Finally, after a deep breatth, I ran what would normally be the installer, which said &#8220;Your database needs updating&#8221;.</p>
<p>And that was all, so considering my potentially costly foul-up, things actually went very well <img src='http://blog.joeb454.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I&#8217;m quite impressed!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.joeb454.com/2009/06/wordpress-2-8/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>All Settled In</title>
		<link>http://blog.joeb454.com/2009/03/all-settled-in/</link>
		<comments>http://blog.joeb454.com/2009/03/all-settled-in/#comments</comments>
		<pubDate>Sun, 15 Mar 2009 00:59:13 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[8.04]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[Gb]]></category>
		<category><![CDATA[irc]]></category>
		<category><![CDATA[RAM]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[vps]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://blog.joeb454.com/?p=286</guid>
		<description><![CDATA[I&#8217;m running from my new VPS now. It has a healthy 1GB RAM (much better than the 384 I used to have!). And everything seems to be running smoothly. I did have possibly the most unusual method of moving my blog over &#8211; in that I zipped up the directory, moved it over to the [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m running from my new VPS now. It has a healthy 1GB RAM (<em>much</em> better than the 384 I used to have!). And everything seems to be running smoothly.</p>
<p>I did have possibly the most unusual method of moving my blog over &#8211; in that I zipped up the directory, moved it over to the new VPS, and imported the database, same for the apache2 settings. Luckily, 98% of it went without a hitch! A few issues with virtual hosts and mod_rewrite, but that&#8217;s all.</p>
<p>I now have a constant IRC presence, because I&#8217;m no longer limited by the VPS provider on what I can and can&#8217;t use (gotta love having a friend with a server!). And yes &#8211; it&#8217;s running Ubuntu 8.04 Server <img src='http://blog.joeb454.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.joeb454.com/2009/03/all-settled-in/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>New Home!</title>
		<link>http://blog.joeb454.com/2009/03/new-home/</link>
		<comments>http://blog.joeb454.com/2009/03/new-home/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 18:08:31 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Add new tag]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[comments]]></category>
		<category><![CDATA[emails]]></category>
		<category><![CDATA[New]]></category>
		<category><![CDATA[planet]]></category>
		<category><![CDATA[RAM]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://blog.joeb454.com/?p=262</guid>
		<description><![CDATA[As I posted earlier today (sorry for any Planet spam!), I planned on moving my Planet Ubuntu feed over to blog.joeb454.com later in the week. I changed my mind and did it about an hour after posting that last post. Hopefully I remembered to use the correct feed type for WordPress, else I&#8217;ll have to [...]]]></description>
			<content:encoded><![CDATA[<p>As I posted <a title="The Process Of Moving" href="http://joeb454.co.uk/2009/03/05/the-process-of-moving/">earlier today</a> (sorry for any Planet spam!), I planned on moving my <a title="Planet Ubuntu" href="http://planet.ubuntu.com">Planet Ubuntu</a> feed over to blog.joeb454.com later in the week.</p>
<p>I changed my mind and did it about an hour after posting that last post. Hopefully I remembered to use the correct feed type for WordPress, else I&#8217;ll have to edit it again!</p>
<p>From what I&#8217;ve seen though, the site seems to be holding up pretty well, It&#8217;s not using gross amounts of RAM just yet, but I&#8217;ll be keeping an eye on it <img src='http://blog.joeb454.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  The only real issue I&#8217;ve run into is that it doesn&#8217;t seem to want to email me when a comment is held for moderation, or when a comment is left at all.</p>
<p>I&#8217;m not sure why it doesn&#8217;t, because it sends out emails for registration.  I&#8217;ll have to wait and see how that one goes <img src='http://blog.joeb454.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.joeb454.com/2009/03/new-home/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Still Alive!</title>
		<link>http://blog.joeb454.com/2008/11/still-alive/</link>
		<comments>http://blog.joeb454.com/2008/11/still-alive/#comments</comments>
		<pubDate>Sat, 22 Nov 2008 00:33:57 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Uni]]></category>
		<category><![CDATA[absence]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[magazine]]></category>
		<category><![CDATA[university]]></category>

		<guid isPermaLink="false">http://joeb454.wordpress.com/?p=199</guid>
		<description><![CDATA[I know I&#8217;ve been neglecting anybody that reads this blog a lot recently, for which I apologize. I have 3 pieces of coursework for University due in around 2 weeks, I&#8217;m currently writing part of a magazine article for Linux Identity in the US (deadline is also 2 weeks!). But don&#8217;t worry, as soon as [...]]]></description>
			<content:encoded><![CDATA[<p>I know I&#8217;ve been neglecting anybody that reads this blog a lot recently, for which I apologize.</p>
<p>I have 3 pieces of coursework for University due in around 2 weeks, I&#8217;m currently writing part of a magazine article for Linux Identity in the US (deadline is also 2 weeks!).</p>
<p>But don&#8217;t worry, as soon as I get time, I&#8217;ll be back and blogging properly like normal <img src='http://blog.joeb454.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.joeb454.com/2008/11/still-alive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Famous Online!</title>
		<link>http://blog.joeb454.com/2008/07/famous-online/</link>
		<comments>http://blog.joeb454.com/2008/07/famous-online/#comments</comments>
		<pubDate>Sat, 12 Jul 2008 23:47:54 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Famous]]></category>
		<category><![CDATA[laptop]]></category>
		<category><![CDATA[Talk Toshiba]]></category>

		<guid isPermaLink="false">http://joeb454.wordpress.com/?p=128</guid>
		<description><![CDATA[I&#8217;ve just had a look over at TalkToshiba (I&#8217;m wondering if they have any small/portable notebooks for a trial&#8230;hint hint&#8230;) and I notice that my blog is listed there on their &#8220;sidebar&#8221; &#8211; admittedly it is at the bottom, but still, it&#8217;s nice to have some publicity, especially from there Anyway, if any of you [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just had a look over at <a title="TalkToshiba" href="http://www.talktoshiba.com">TalkToshiba</a> (I&#8217;m wondering if they have any small/portable notebooks for a trial&#8230;hint hint&#8230;) and I notice that my blog is listed there on their &#8220;sidebar&#8221; &#8211; admittedly it is at the bottom, but still, it&#8217;s nice to have some publicity, especially from there <img src='http://blog.joeb454.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>Anyway, if any of you guys from TT are reading this, let me know if you have some small/portable laptops for a trial (15&#8243; or less <img src='http://blog.joeb454.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> )</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.joeb454.com/2008/07/famous-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Blog</title>
		<link>http://blog.joeb454.com/2007/10/new-blog/</link>
		<comments>http://blog.joeb454.com/2007/10/new-blog/#comments</comments>
		<pubDate>Mon, 22 Oct 2007 01:08:00 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://joeb454.wordpress.com/2007/10/22/new-blog/</guid>
		<description><![CDATA[As I&#8217;m sure you gathered, it&#8217;s a new blog, and I&#8217;m going to be writing all sorts of random rubbish on here. I really don&#8217;t mind if anybody reads it, though if you do, then thats good, I&#8217;ll be posting about various things including: Linux Windows Xbox 360 Stuff My Uni Course (Computer Science) Various [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-size:100%;"><span style="font-family:verdana;">    As I&#8217;m sure you gathered, it&#8217;s a new blog, and I&#8217;m going to be writing all sorts of random rubbish on here.</span></span></p>
<p><span style="font-family:verdana;">I really don&#8217;t mind if anybody reads it, though if you do, then thats good, I&#8217;ll be posting about various things including:</span></p>
<ul>
<li><span style="font-size:100%;">Linux</span></li>
<li><span style="font-size:100%;">Windows</span></li>
<li><span style="font-size:100%;">Xbox 360 Stuff</span></li>
<li><span style="font-size:100%;">My Uni Course (Computer Science)</span></li>
<li><span style="font-size:100%;">Various things I&#8217;m trying out &#8211; for example, the next post</span></li>
</ul>
<p><span style="font-size:100%;"><span style="font-family:verdana;">So if &#8211;  for some reason you do read this blog, then you&#8217;re more tan welcome to comment. </span><br />
</span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.joeb454.com/2007/10/new-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
