<?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>Craig Loftus &#187; Website</title>
	<atom:link href="http://craigloftus.net/blog/category/personal/website/feed/" rel="self" type="application/rss+xml" />
	<link>http://craigloftus.net/blog</link>
	<description></description>
	<lastBuildDate>Tue, 25 Oct 2011 09:55:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Times change</title>
		<link>http://craigloftus.net/blog/2007/12/22/times-change/</link>
		<comments>http://craigloftus.net/blog/2007/12/22/times-change/#comments</comments>
		<pubDate>Sat, 22 Dec 2007 16:14:52 +0000</pubDate>
		<dc:creator>Craig</dc:creator>
				<category><![CDATA[Website]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Servelocity]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://craigloftus.net/blog/2007/12/22/times-change/</guid>
		<description><![CDATA[I have finally moved away from my previous website host, Servelocity. For too long I have been putting up with a very old and peculiar setup which has curtailed my fun to a great extent. Servelocity (and many others) seem positively backwards in their insistence on hanging on to legacy stable software. I&#8217;ve been developing [...]]]></description>
			<content:encoded><![CDATA[<p>I have finally moved away from my previous website host, <a rel="nofollow" href="http://servelocity.net/" title="The Servelocity website">Servelocity</a>.  For too long I have been putting up with a very old and peculiar setup which has curtailed my fun to a great extent.  Servelocity (and many others) seem positively backwards in their insistence on hanging on to <ins>legacy</ins> <del>stable</del> software.</p>
<p>I&#8217;ve been developing another section for my website, but I&#8217;ve been using XML processing features not available in PHP 4.  Now that I&#8217;ve shifted to a more modern host and the holidays have come along I can finish off the section and add it to my website <img src='http://craigloftus.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . It is something that I have been developing with help from some researchers at <a href="http://www.open.ac.uk/" title="The Open University homepage">The Open University</a> and hopefully will eventually be published on <a href="http://sourceforge.net/" title="SourceForge is the largest Open Source software development web site">SourceForge</a>.</p>
<p>During the switch I&#8217;ve also taken the chance to change to a much cheaper (and less flexible) hosting package.  This unfortunately means that I have had to say goodbye to a lot of content which I was hosting for various people.  Although I say &#8216;unfortunate&#8217; I am actually rather glad to be rid of them, as I no longer have to worry unduly about breaking my website on a whim.</p>
]]></content:encoded>
			<wfw:commentRss>http://craigloftus.net/blog/2007/12/22/times-change/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Not so new look</title>
		<link>http://craigloftus.net/blog/2007/04/21/not-so-new-look/</link>
		<comments>http://craigloftus.net/blog/2007/04/21/not-so-new-look/#comments</comments>
		<pubDate>Sat, 21 Apr 2007 13:16:34 +0000</pubDate>
		<dc:creator>Craig</dc:creator>
				<category><![CDATA[Information]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://craigloftus.net/blog/2007/04/21/not-so-new-look/</guid>
		<description><![CDATA[I changed the look of the website a little while back, as you may have noticed. It is quite a significant departure from the previous style and layout. The two main changes are the new colour scheme and the inclusion of a number of feeds on the index page. Colour scheme I was inspired to [...]]]></description>
			<content:encoded><![CDATA[<p>I changed the look of the website a little while back, as you may have noticed.  It is quite a significant departure from the previous style and layout.  The two main changes are the new colour scheme and the inclusion of a number of feeds on the index page.</p>
<h4>Colour scheme</h4>
<p>I was inspired to change to a much darker scheme having read an article on <a href="http://ecoiron.blogspot.com/2007/01/emergy-c-low-wattage-palette.html">how the colours effect the energy required to display a website</a>.  Essentially, bright and light colours require more energy from your monitor.</p>
<h4>Feeds</h4>
<p>These feeds represent online content which I have created.  Although in the case of recommended posts and bookmarks this <em>creation</em> might be considered a bit abstract.  This was an idea I had a <a href="http://craigloftus.net/blog/2006/12/25/what-am-i-reading-2/" title="My post called What am I reading">long while ago</a>, and then not so long ago came across a way of quickly and crudely implementing it.</p>
<p>Up until today the feeds have been read, parse and output each time the page was called.  This was causing significant delays in the page loading times.   As of today a static file containing the parsed feeds is generated every 12 hours.  The index page then calls on the static file when a request is made which means that no time is wasted on parsing the feed and preparing the output.</p>
<p>For those interested I&#8217;ve done this quite simply by writing taking a php file that was parsing the feeds and having it write the output to a static file.  I then have a <a href="http://en.wikipedia.org/wiki/Cron">cron</a> job run the php file at 9am and 9pm everyday:</p>
<p><code>0 9,21 * * * /usr/bin/php -q /<var>PATH</var>/generate_static_feeds.php > /dev/null</code></p>
<p>The last bit of that command &#8220;/dev/null&#8221; sends the output into the ether.  Without it the server will e-mail the output of the script&hellip;  which for some purposes can be rather useful.</p>
<p>In time I&#8217;ll be working on a more complex way of displaying the recommended posts, which will allow me to write a little note to go with each explaining why I have recommended them.</p>
]]></content:encoded>
			<wfw:commentRss>http://craigloftus.net/blog/2007/04/21/not-so-new-look/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Phew, that took a while</title>
		<link>http://craigloftus.net/blog/2006/08/26/phew-that-took-a-while/</link>
		<comments>http://craigloftus.net/blog/2006/08/26/phew-that-took-a-while/#comments</comments>
		<pubDate>Sat, 26 Aug 2006 16:30:57 +0000</pubDate>
		<dc:creator>Craig</dc:creator>
				<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://craigloftus.net/blog/2006/08/26/phew-that-took-a-while/</guid>
		<description><![CDATA[I&#8217;ve been working for quite a while on the launch of a new website for PhotoSoc. This is the largest site I&#8217;ve ever attempted and hopefully it won&#8217;t all come crashing down around my ears. The site consists of a single framework integrating a calendar (based on a heavily hacked WebCalendar), forum (using PunBB) and [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been working for quite a while on the launch of a new website for <a href="http://photosoc.craigloftus.net"><dfn title="The University of Bath Students' Union Photography Society">PhotoSoc</dfn></a>.</p>
<p>This is the largest site I&#8217;ve ever attempted and hopefully it won&#8217;t all come crashing down around my ears.  The site consists of a single framework integrating a calendar (based on a heavily hacked <a href="http://webcalendar.sourceforge.net/" title="The homepage of the WebCalendar project">WebCalendar</a>), forum (using <a href="http://punbb.org/" title="The homepage of the PunBB project">PunBB</a>) and a custom built photo gallery.  Working with WebCalendar has been a painful process, it is a very poorly written and required substantial hacking.  PunBB on the other hand has been almost trouble free, the website user system is based on the PunBB database and despite this the only customisation I&#8217;ve done has been entirely superficial.</p>
<p>Although as it stands the site is not complete or fully polished, I&#8217;ve just come across some <em>real work</em> so some features I was hoping to implement are going to have to wait, or just be forgotten.</p>
]]></content:encoded>
			<wfw:commentRss>http://craigloftus.net/blog/2006/08/26/phew-that-took-a-while/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New toys</title>
		<link>http://craigloftus.net/blog/2006/04/22/new-toys/</link>
		<comments>http://craigloftus.net/blog/2006/04/22/new-toys/#comments</comments>
		<pubDate>Sat, 22 Apr 2006 10:51:14 +0000</pubDate>
		<dc:creator>Craig</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://craigloftus.net/blog/2006/04/22/new-toys/</guid>
		<description><![CDATA[Over the Easter holiday I managed to find some time to tinker with a few new features for my website. Statistics Update This is no longer available This grew out of my insatiable curiosity which has meant I have sought to record visitors to my website for some time now. I forced myself around to [...]]]></description>
			<content:encoded><![CDATA[<p>Over the Easter holiday I managed to find some time to tinker with a few new features for my website.</p>
<h4>Statistics</h4>
<p><strong>Update</strong> This is no longer available</p>
<p>This grew out of my insatiable curiosity which has meant I have sought to record visitors to my website for some time now.  I forced myself around to doing so, managing to get it started by combining it with a new fascination for <a href="http://maps.google.com">Google Maps</a>.  There are quite a few features I would like to try to work into it, but I think the basics are there.  You are being watched! (But only if you visit the index page).</p>
<h4><a href="http://craigloftus.net/tools/polyliner/" title="The polyliner homepage">Polyliner</a></h4>
<p>A tool for drawing routes onto Google Maps, and associating information with it.  This is very much in development at the moment, and there are lot of things I&#8217;m not particularly happy with.  This came from a need to display migration routes of my ancestors to be place on the family website my dad <ins>was</ins> <del>is</del> developing.</p>
]]></content:encoded>
			<wfw:commentRss>http://craigloftus.net/blog/2006/04/22/new-toys/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spam</title>
		<link>http://craigloftus.net/blog/2006/03/06/spam/</link>
		<comments>http://craigloftus.net/blog/2006/03/06/spam/#comments</comments>
		<pubDate>Mon, 06 Mar 2006 21:01:33 +0000</pubDate>
		<dc:creator>Craig</dc:creator>
				<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://craigloftus.net/blog/2006/03/06/spam/</guid>
		<description><![CDATA[I put a contact form up for my website, so that folk can get in touch with me. Instead, the sort of people I don&#8217;t want to be associated with, started trying to use my form to send mass e-mails, and spam etc&#8230; as a result I had to take my form down for a [...]]]></description>
			<content:encoded><![CDATA[<p>I put a <a href="http://craigloftus.net/contact/" title="A page containing a form which can be used to e-mail me">contact form</a> up for my website, so that folk can get in touch with me.  Instead, the sort of people I don&#8217;t want to be associated with, started trying to use my form to send mass e-mails, and spam etc&#8230;  as a result I had to take my form down for a little while, but it is now back up, with an extra layer of &#8216;checks&#8217; added in.</p>
]]></content:encoded>
			<wfw:commentRss>http://craigloftus.net/blog/2006/03/06/spam/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Slow but inevitable</title>
		<link>http://craigloftus.net/blog/2006/02/03/slow-but-inevitable/</link>
		<comments>http://craigloftus.net/blog/2006/02/03/slow-but-inevitable/#comments</comments>
		<pubDate>Fri, 03 Feb 2006 19:55:17 +0000</pubDate>
		<dc:creator>Craig</dc:creator>
				<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://craigloftus.net/blog/?p=4</guid>
		<description><![CDATA[I haven&#8217;t been able to devote very much, if any time to my website for the last few months; the pressures of exams have kept me well and truely under the thumb. I do, however, hope to make some progress in restoring things to their proper form within the next two days&#8230; fingers crossed that [...]]]></description>
			<content:encoded><![CDATA[<p>I haven&#8217;t been able to devote very much, if any time to my website for the last few months; the pressures of exams have kept me well and truely under the thumb.  I do, however, hope to make some progress in restoring things to their proper form within the next two days&#8230;  fingers crossed that things will go smoothly and that the requiste energy shall bubble forth, consuming me, and pursuing these weary fingers into action.</p>
<p>To come:</p>
<ul>
<li>A proper index with links, snippets of buried content&#8230;</li>
<li>Application of my old blog theme, and its further improvement</li>
<li>Try to get my google indexing/sitemapping sorted so that people can have a chance of finding me.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://craigloftus.net/blog/2006/02/03/slow-but-inevitable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Welcome to .net-hood</title>
		<link>http://craigloftus.net/blog/2006/01/01/welcome-to-net-hood/</link>
		<comments>http://craigloftus.net/blog/2006/01/01/welcome-to-net-hood/#comments</comments>
		<pubDate>Sun, 01 Jan 2006 17:14:08 +0000</pubDate>
		<dc:creator>Craig</dc:creator>
				<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://craigloftus.net/blog/?p=3</guid>
		<description><![CDATA[I&#8217;ve just purchased a new domain, craigloftus.net, I intend to keep my .co.uk as well, however, it is currently tied up with the utterly incompetent easyspace.com.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just purchased a new domain, <a href="http://craigloftus.net">craigloftus.net</a>, I intend to keep my .co.uk as well, however, it is currently tied up with the utterly incompetent <a href="http://www.easyspace.com">easyspace.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://craigloftus.net/blog/2006/01/01/welcome-to-net-hood/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

