<?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>George Pearce - iamPearce</title>
	<atom:link href="http://iampearce.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://iampearce.com</link>
	<description>Homepage of 18 year old internet nerd, George Pearce.</description>
	<lastBuildDate>Tue, 27 Jul 2010 23:30:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Life in The Cloud &#8211; Take Two</title>
		<link>http://iampearce.com/2010/07/life-in-the-cloud-take-two/</link>
		<comments>http://iampearce.com/2010/07/life-in-the-cloud-take-two/#comments</comments>
		<pubDate>Tue, 27 Jul 2010 23:30:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[wp super cache]]></category>

		<guid isPermaLink="false">http://iampearce.com/?p=1945</guid>
		<description><![CDATA[In the past few weeks, I&#8217;ve been experimenting with Cloud Servers, from RackSpace. I posted a couple of days ago with the news that I&#8217;d gotten a nice server up and running &#8211; Ubuntu with Apache. Well it turned out pretty quickly that for anything more than.. a hit an hour, the Apache server was [...]]]></description>
			<content:encoded><![CDATA[<p>In the past few weeks, I&#8217;ve been experimenting with Cloud Servers, from RackSpace. I posted a couple of days ago with the news that I&#8217;d gotten a nice server up and running &#8211; Ubuntu with Apache.</p>
<p>Well it turned out pretty quickly that for anything more than.. a hit an hour, the Apache server was going to be very slow (I didn&#8217;t go for a very powerful server, granted) so I started looking around for something with performance more in mind.</p>
<p>I&#8217;m now running a CentOS server, with nginx as my webserver &#8211; with built in rules to handle wp-super-cache. I spent hours reading various posts online about different ways of doing it, and ended up doing a combination of all of them &#8211; with much improvisation and <strong>many </strong>failed attempts. I am very pleased with the speed difference though, generation times are fractions of a second on this server, rather than four or five with Apache/Ubuntu.</p>
<p>It&#8217;s also highlighted just how handy the functions in RackSpace Cloud Servers are &#8211; reimaging instantly, paying per hour, and taking disk images- all of which made what I was doing this past week (mostly on Sunday) so much easier.</p>
<p>I plan to write a little more about what I&#8217;ve been doing as and when I get a chance (and once I make sure it can handle all four of my blogs) <img src='http://iampearce.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://iampearce.com/2010/07/life-in-the-cloud-take-two/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing phpMyAdmin with Nginx</title>
		<link>http://iampearce.com/2010/07/installing-phpmyadmin-with-nginx/</link>
		<comments>http://iampearce.com/2010/07/installing-phpmyadmin-with-nginx/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 23:42:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[phpMyAdmin]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://iampearce.com/?p=1939</guid>
		<description><![CDATA[phpMyAdmin, by default is configured to work with Apache and Lighttpd (not positive of the last one) &#8211; and not nginx. This website&#8217;s server runs on nginx, I tracked down a way of making it work &#8211; assuming you have some way of loading PHP, like FastCGI (post coming soon) installed. Firstly, install phpMyAdmin (I [...]]]></description>
			<content:encoded><![CDATA[<p>phpMyAdmin, by default is configured to work with Apache and Lighttpd (not positive of the last one) &#8211; and not nginx. This website&#8217;s server runs on nginx, I tracked down a way of making it work &#8211; assuming you have some way of loading PHP, like FastCGI (post coming soon) installed.</p>
<p>Firstly, install phpMyAdmin (I used centOS / Ubuntu so I ran # yum install phpMyAdmin  or apt-get install phpmyadmin respectively).</p>
<p>Once that&#8217;s done, open up the virtual host config file for nginx &#8211; in CentOS it&#8217;s /etc/nginx/conf.d/virtual.conf and add the following:</p>
<p><code><br />
server {<br />
listen (IP ADDRESS):80;<br />
server_name phpmyadmin.domainname.com;</p>
<p>location / {<br />
root /usr/share/phpmyadmin;<br />
index index.php;<br />
}</p>
<p>location ~ \.php$ {<br />
fastcgi_pass   127.0.0.1:9000;<br />
fastcgi_index  index.php;<br />
fastcgi_param  SCRIPT_FILENAME  /usr/share/phpmyadmin$fastcgi_script_name;<br />
include fastcgi_config;<br />
}<br />
}<br />
</code></p>
<p>Notes- </p>
<p>/usr/share/phpmyadmin should be replaced by the directory that phpMyAdmin is installed in, run<br />
<code># whereis phpmyadmin </code><br />
to locate. </p>
<p>The latter section is specific to the FastCGI process I&#8217;m using and may be different for different PHP handlers &#8211; but in general that&#8217;s how it works.</p>
<p>Save that file, and reload nginx, head over to phpmyadmin.domainname.com and boom &#8211; phpMyAdmin running on nginx. <img src='http://iampearce.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://iampearce.com/2010/07/installing-phpmyadmin-with-nginx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Review: Incipio Feather for iPhone 4</title>
		<link>http://iampearce.com/2010/07/review-incipio-feather-for-iphone-4/</link>
		<comments>http://iampearce.com/2010/07/review-incipio-feather-for-iphone-4/#comments</comments>
		<pubDate>Fri, 23 Jul 2010 10:15:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Incipio]]></category>
		<category><![CDATA[iPhone 4]]></category>

		<guid isPermaLink="false">http://iampearce.com/?p=1932</guid>
		<description><![CDATA[Even before I decided to order an iPhone 4, I knew I&#8217;d need a case for it. Sure, it&#8217;s a shame to cover up the very thing that makes Apple products quite so special- the design, but I knew it&#8217;d be necessary, if only to protect it from my lifestyle. The same day I ordered [...]]]></description>
			<content:encoded><![CDATA[<p>Even before I decided to order an iPhone 4, I knew I&#8217;d need a case for it. Sure, it&#8217;s a shame to cover up the very thing that makes Apple products quite so special- the design, but I knew it&#8217;d be necessary, if only to protect it from my lifestyle.</p>
<p><img class="alignleft" src="http://recdn.iampearce.com/iampearce/content/incipiofeather1-23.07.2010.jpg" alt="incipio feather" width="320" height="320" />The same day I ordered my phone, I settled on the Feather, by Incipio (on the advice of a  customer support rep from Natwest &#8211; best rep <strong>ever</strong>)</p>
<p>It actually arrived before the iPhone did &#8211; I ordered it at 2pm on a Friday and it turned up the next morning &#8211; which is impressive. It came from an Amazon Marketplace Seller, called eoutlet-uk &#8211; with free delivery. All in all, it worked out at about £18.</p>
<p>This was all, of course, before I found out that Apple were going to offer free cases to everyone &#8211; even though I doubt I&#8217;ll be claiming one.</p>
<p>The Incipio Feather protects the entire back of the phone (with a hole for the camera) as well as the sides &#8211; as you can see in the picture. It&#8217;s made of a rigid plastic which is ~1mm thick.</p>
<p>When my iPhone did arrive, one of the first things I did was to pop the case on, and I have to say it feels nicer to use and type on with the case (although that might be me &#8211; I have huge hands).</p>
<p>Paired with a screen protector, despite the best part of two weeks *very heavy* use, my iPhone has yet to sustain a single scratch.</p>
<p>With that in mind though, the matte finishing on some of the corners is scratching away &#8211; it&#8217;s so small it&#8217;s barely noticable, but it does look as though it&#8217;s just rubbed away in my pocket. Which is a shame, my case is less than two weeks old and it looks somewhat tarnished.</p>
<p>Apart from that though, it&#8217;s definitely the best case I&#8217;ve seen so far, and accordingly I won&#8217;t be applying for a free case from Apple &#8211; I don&#8217;t need one.</p>
<p><em>The incipio feather is available from <a href="http://www.amazon.co.uk/gp/product/B003QGKW5I?ie=UTF8&amp;tag=gpe-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=B003QGKW5I">Amazon UK</a> for £18.39.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://iampearce.com/2010/07/review-incipio-feather-for-iphone-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>No More Thesis</title>
		<link>http://iampearce.com/2010/07/no-more-thesis/</link>
		<comments>http://iampearce.com/2010/07/no-more-thesis/#comments</comments>
		<pubDate>Sun, 18 Jul 2010 12:04:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[GPL]]></category>
		<category><![CDATA[Thesis]]></category>

		<guid isPermaLink="false">http://iampearce.com/?p=1904</guid>
		<description><![CDATA[In the past week; a &#8216;debate&#8217; has been raging between WordPress (chiefly @photomatt) and the developer of the well known Thesis theme, Chris Pearson (@pearsonified), about whether the Thesis theme, being a derivative of WordPress, must follow the same GPL-2 licensing. Legally, because Thesis contains code from WordPress itself (and runs as part of WordPress) [...]]]></description>
			<content:encoded><![CDATA[<p>In the past week; a &#8216;debate&#8217; has been raging between WordPress (chiefly @<a href="http://twitter.com/photomatt">photomatt</a>) and the developer of the well known Thesis theme, Chris Pearson (@<a href="http://twitter.com/pearsonified">pearsonified</a>), about whether the Thesis theme, being a derivative of WordPress, must follow the same GPL-2 licensing. Legally, because Thesis contains code from WordPress itself (and runs <em>as part of</em> WordPress) the WordPress people say it should be, and I agree.</p>
<p>However, Chris Pearson believes himself exempt from these licenses, and refuses to license the theme under GPL-2 (which would make it open source) &#8211; presumably for income protection reasons (although several other premium theme producers have gone GPL and not looked back).</p>
<p>For this reason, I&#8217;m taking the Thesis theme (that I bought) down from my blog, and for the time being I will use the Twenty-Ten theme &#8211; until I sufficiently develop the new design I&#8217;ve been planning anyway. My understanding of or involvement in GPL is very limited indeed, but having read some <a href="http://news.ycombinator.com/item?id=1516950">choice quotes</a> from a <a href="http://mixergy.com/chris-pearson-matt-mullenweg/">conversation between Chris Pearson and Matt Mullenweg</a>, I was astounded by the arrogance of Pearson, and the argument presented by the WordPress team is sound. Thus, he has lost my support.</p>
<p>As it is, I love the Twenty-Ten theme, and if I didn&#8217;t want to have my own custom layout and design, I might have stuck with it.</p>
]]></content:encoded>
			<wfw:commentRss>http://iampearce.com/2010/07/no-more-thesis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Living in the Cloud</title>
		<link>http://iampearce.com/2010/07/living-in-the-cloud/</link>
		<comments>http://iampearce.com/2010/07/living-in-the-cloud/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 17:55:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Cloud]]></category>
		<category><![CDATA[Rackspace]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://iampearce.com/?p=1893</guid>
		<description><![CDATA[Today (and yesterday), I did something I&#8217;ve been wanting to for a long time. I sat down, created a virtual server with Rackspace, based on Ubuntu 10.04, and had a play. I irreparably damaged my first attempt while playing with things I don&#8217;t yet understand, but on the second go, I got LAMP up and [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" src="http://recdn.iampearce.com/iampearce/2010-07-07.rackspacecloud.jpg" alt="Rackspace Cloud" width="619" height="95" /></p>
<p>Today (and yesterday), I did something I&#8217;ve been wanting to for a long time.</p>
<p>I sat down, created a virtual server with Rackspace, based on Ubuntu 10.04, and had a play. I irreparably damaged my first attempt while playing with things I don&#8217;t yet understand, but on the second go, I got LAMP up and running, and then created some virtualhosts.</p>
<p>Result? <a href="http://plusphysics.com">PlusPhysics</a> is currently running from a cloud instance server. It&#8217;s pretty damn fast, fun to maintain and adminster, and so far only super caching isn&#8217;t working (I&#8217;ve yet to figure that one out &#8211; normal wp-cache is fine, but super cache just does nothing).</p>
<p>Currently, I host about half my sites with MediaTemple, on a (gs), and half with ThisWebHost, on regular shared hosting. MediaTemple are wonderful, but the (gs) platform has serious performance flaws, and even though the (cs) is coming, it&#8217;s not here yet (and hasn&#8217;t been for years since it was announced). As for ThisWebHost &#8211; I love them. I have no complaints at all, and for simpe budget hosting, they will be my recommendation for a long time to come.</p>
<p>But I want to use something more advanced. Something that doesn&#8217;t come with a pretty control panel.</p>
<p>I did consider the (ve) that MediaTemple now provide &#8211; but the equivelant Cloud Server instance from Rackspace is approximately a third of the cost &#8211; and their support does trump MediaTemple, without a doubt.</p>
<p>I&#8217;d like to thank <a href="http://donaldkelly.co.uk">Donald Kelly</a> for poking me in the right direction with this &#8211; he has actually moved his website onto the Rackspace Cloud already.</p>
<p>[update] It looks like Donald has written a post with an identical title to mine, and a very similar post structure. Oops.</p>
]]></content:encoded>
			<wfw:commentRss>http://iampearce.com/2010/07/living-in-the-cloud/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 3.0 Custom Post Types</title>
		<link>http://iampearce.com/2010/04/wordpress-3-0-custom-post-types/</link>
		<comments>http://iampearce.com/2010/04/wordpress-3-0-custom-post-types/#comments</comments>
		<pubDate>Sat, 10 Apr 2010 22:36:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[BlogPremiere]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://iampearce.com/?p=1882</guid>
		<description><![CDATA[One of my favourite features of the upcoming WordPress 3.0 (so far) is the custom post types functionality, which means I can create a whole new post type, with a whole new permalink structure (and single post design / archive) to my main set of posts. I&#8217;ve spent a little of the last couple of [...]]]></description>
			<content:encoded><![CDATA[<p>One of my favourite features of the upcoming WordPress 3.0 (so far) is the custom post types functionality, which means I can create a whole new post type, with a whole new permalink structure (and single post design / archive) to my main set of posts.</p>
<p>I&#8217;ve spent a little of the last couple of days reading around online, and having a little play-  I&#8217;m going to write a proper post about it on BlogPremiere at some point in the next week or so, before the official launch sometime at the start of May.</p>
<p>I&#8217;d like to go through how anyone can use a custom post type on their blog, and how easy they are to get setup &#8211; because they really are and they could add an extra dimension to a WordPress site (as well as making a multi-user site far easier to manage).</p>
<p>I&#8217;ve added a new post type on iamPearce called photos, I&#8217;m going to see how that works out, and then extend it for use on BlogPremiere &#8211; I have a couple of ideas for new features that could be separate from the main blog, and beneficial to the site users.</p>
<p>I&#8217;ve yet to work out how to enable categories in the custom post types, but I&#8217;ve got tags &#8211; I love the challenge of learning new stuff about what I consider myself an expert at <img src='http://iampearce.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Expect a post on BlogPremiere sometime in the next couple of weeks!</p>
]]></content:encoded>
			<wfw:commentRss>http://iampearce.com/2010/04/wordpress-3-0-custom-post-types/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Large Hadron Collider Hits 7TeV</title>
		<link>http://iampearce.com/2010/03/large-hadron-collider-hits-7tev/</link>
		<comments>http://iampearce.com/2010/03/large-hadron-collider-hits-7tev/#comments</comments>
		<pubDate>Wed, 31 Mar 2010 10:35:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Science]]></category>
		<category><![CDATA[LHC]]></category>
		<category><![CDATA[physics]]></category>

		<guid isPermaLink="false">http://iampearce.com/?p=1856</guid>
		<description><![CDATA[Today, the Large Hadron Collider, a CERN project, finally acheived a sustained 7 tera-electron-volt partile beam (which was scheduled to happen last year, I believe), and it also successfully collided protons at this speed (which is record-breaking already, and it&#8217;s not even close to full power). With these record-shattering collision energies, the LHC experiments are [...]]]></description>
			<content:encoded><![CDATA[<p>Today, the Large Hadron Collider, a CERN project, finally acheived a sustained 7 tera-electron-volt partile beam <img class="size-full wp-image-1858 alignright" title="lhc" src="http://iampearce.com/media/uploads/2010/03/lhc.jpg" alt="" width="260" height="190" />(which was scheduled to happen last year, I believe), and it also successfully collided protons at this speed (which is record-breaking already, and it&#8217;s not even close to full power).</p>
<blockquote><p>With these record-shattering collision energies, the LHC experiments are  propelled into a vast region to explore, and the hunt begins for dark  matter, new forces, new dimensions and the Higgs boson. The fact that  the experiments have published papers already on the basis of last  year’s data bodes very well for this first physics run.</p></blockquote>
<p>- ATLAS Collaboration Spokesperson Fabiola Gianotti</p>
<p>I&#8217;ve always been interested in the LHC project, I actually attended a video-conference about how its run in the last couple of months- I&#8217;m looking forward to seeing it operate at it&#8217;s full capacity, and maybe just redefine everything we think we know about Physics.</p>
<p>I&#8217;d love to (once I do my degree) have a chance to work with the engineers on the LHC, it&#8217;d be an amazing experience and something amazing to say I&#8217;d been part of.</p>
]]></content:encoded>
			<wfw:commentRss>http://iampearce.com/2010/03/large-hadron-collider-hits-7tev/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moving to This* Web Host</title>
		<link>http://iampearce.com/2010/03/moving-to-this-web-host/</link>
		<comments>http://iampearce.com/2010/03/moving-to-this-web-host/#comments</comments>
		<pubDate>Fri, 26 Mar 2010 23:28:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[GoDaddy]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[thiswebhost]]></category>

		<guid isPermaLink="false">http://iampearce.com/?p=1832</guid>
		<description><![CDATA[A couple of days ago, on impulse, I picked up a hosting package from ThisWebHost, just to have a play around with. I did so on the advice of a friend, Donald Kelly, because while their virtually unheard of, he thinks the world of them. My hosting time with GoDaddy is coming to an end [...]]]></description>
			<content:encoded><![CDATA[<p>A couple of days ago, on impulse, I picked up a hosting package from<a href="http://www.thiswebhost.com/"> ThisWebHost</a>, just to have a play around with. I did so on the advice of a friend, Donald Kelly, because while their virtually unheard of, he thinks the world of them. My hosting time with GoDaddy is coming to an end (after a month and a half, and I&#8217;ll post to explain why soon), somewhere new was needed.</p>
<p>I was attracted by the fact that they don&#8217;t oversell, they don&#8217;t pretend to be anything their not, and on Donald&#8217;s word, their servers really are monsters.</p>
<p>So far, I&#8217;m pretty impressed (although, I was the same with GoDaddy. Then it slowed down to a halt), the support was quick and they even offered to move my sites, although I&#8217;m still only playing with two other domains on there at the moment.</p>
<p>The other attractive thing about this*, is the lack of negative reviews. I can&#8217;t find one. For a company that&#8217;s been in business two years, that isn&#8217;t bad at all.</p>
<p>My great plan, is that I have a months hosting with them- normally after a month I know whether I like a host or not, and if I do like them, then I&#8217;ll move a couple more domains and shut down my GoDaddy account, stick with This* for the time being. With my exams coming up, I can see that happening.</p>
]]></content:encoded>
			<wfw:commentRss>http://iampearce.com/2010/03/moving-to-this-web-host/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Skins &#8211; Whole New Direction?</title>
		<link>http://iampearce.com/2010/03/skins-whole-new-direction/</link>
		<comments>http://iampearce.com/2010/03/skins-whole-new-direction/#comments</comments>
		<pubDate>Sat, 13 Mar 2010 20:57:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<guid isPermaLink="false">http://iampearce.com/?p=1805</guid>
		<description><![CDATA[(as a note, this entire post is a HUGE spoiler to Skins series 4 episode 7, don&#8217;t read if you haven&#8217;t watched it and intend to). I just watched the most recent Skins episode on e4 OD, and it&#8217;s really hit home on what I&#8217;ve been thinking about series 3 and 4 &#8211; it&#8217;s not [...]]]></description>
			<content:encoded><![CDATA[<p>(as a note, this entire post is a HUGE spoiler to Skins series 4 episode 7, don&#8217;t read if you haven&#8217;t watched it and intend to).</p>
<p>I just watched the most recent <a href="http://www.e4.com/skins">Skins</a> episode on e4 OD, and it&#8217;s really hit home on what I&#8217;ve been thinking about series 3 and 4 &#8211; it&#8217;s not like it used to be. The relaxed, funny attitude of the series 1 and 2 episodes isn&#8217;t there anymore, it&#8217;s gotten very dark (this episode culminated in the bludgeoning to *presumed* death of one of the main characters).</p>
<p>It&#8217;ll be interesting to see the finale next week, and as E4 just commissioned the creation of two more series&#8217;, I hope they&#8217;ll return to the spirit of the original two, s 3 &amp; 4 have been very dark indeed. They also killed off the character that is probably the public&#8217;s favourite, which is an interesting move, and has been met with varying degrees of fury on the &#8220;condolence&#8221; page.</p>
<p>I&#8217;m looking forward to seeing next weeks episode, but I wish it would be more like series 1 &amp; 2.</p>
]]></content:encoded>
			<wfw:commentRss>http://iampearce.com/2010/03/skins-whole-new-direction/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why I Left MediaTemple</title>
		<link>http://iampearce.com/2010/03/why-i-left-mediatemple/</link>
		<comments>http://iampearce.com/2010/03/why-i-left-mediatemple/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 21:01:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[(mt)experiment]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[MediaTemple]]></category>
		<category><![CDATA[support]]></category>

		<guid isPermaLink="false">http://iampearce.com/?p=1802</guid>
		<description><![CDATA[Yesterday, after over a year with them, I closed my MediaTemple account. I&#8217;m now hosted on much cheaper European servers for the time being &#8211; and this is why I decided to move away from MT. - Speed. Over the last six months, I&#8217;ve found that speeds for anything other than standard HTML/Image files have [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday, after over a year with them, I closed my MediaTemple account. I&#8217;m now hosted on much cheaper European servers for the time being &#8211; and this is why I decided to move away from MT.</p>
<p>- Speed. Over the last six months, I&#8217;ve found that speeds for anything other than standard HTML/Image files have decreased massively, and the load times for my (dynamic) blog have increased beyond what I&#8217;m happy with. I know I could have used caching and I will be on this host, but I didn&#8217;t expect to need to.</p>
<p>- Support. The MediaTemple support is *amazing*. I would still recommend them to anyone. Thing is, it&#8217;s slow. 24/7/365 support is all good, but with 18 hour response times, I&#8217;m finding it less easy to believe. Granted, I sometimes ask complicated questions, but a note that they&#8217;ve read my note and are working on it would be appreciated.</p>
<p>- Price. $20 a month (granted, I had a discount), is paying for stuff that I don&#8217;t need or use. My traffic levels aren&#8217;t massive; and I&#8217;m a student. All my income goes into my &#8220;uni pot&#8221;, so I decided that MediaTemple were too expensive for what I was looking for.</p>
<p>That said, I love MT. Their products are amazing (and I&#8217;m looking forward to seeing the CS product). I would recommend them to anyone; but the drawbacks I found after a year of service caused me to move on.</p>
]]></content:encoded>
			<wfw:commentRss>http://iampearce.com/2010/03/why-i-left-mediatemple/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.203 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2010-07-29 22:04:34 -->
