<?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>Dan Cryer - Leeds Web Developer &#187; Other Things</title>
	<atom:link href="http://www.dancryer.com/category/misc/feed" rel="self" type="application/rss+xml" />
	<link>http://www.dancryer.com</link>
	<description>Dan Cryer - Leeds Web Developer</description>
	<lastBuildDate>Thu, 01 Jul 2010 11:22:58 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/>		<item>
		<title>VPS.NET Auto Recovery Monitor</title>
		<link>http://www.dancryer.com/2010/06/vps-net-auto-recovery-monitor</link>
		<comments>http://www.dancryer.com/2010/06/vps-net-auto-recovery-monitor#comments</comments>
		<pubDate>Tue, 29 Jun 2010 18:26:47 +0000</pubDate>
		<dc:creator>Dan Cryer</dc:creator>
				<category><![CDATA[Other Things]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[servers]]></category>
		<category><![CDATA[vps.net]]></category>

		<guid isPermaLink="false">http://www.dancryer.com/?p=539</guid>
		<description><![CDATA[I&#8217;ve been using VPS.NET for months now, both for myself and for Media Wow. Whilst their platform is incredibly stable, and their automated failover is great, there are still occasionally times when a server will go down and not come back up by itself. 
The nicely integrated Server Density monitoring does a great job of [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using VPS.NET for months now, both for myself and for Media Wow. Whilst their platform is incredibly stable, and their automated failover is great, there are still occasionally times when a server will go down and not come back up by itself. </p>
<p>The nicely integrated Server Density monitoring does a great job of informing you if a server is down, but it can&#8217;t do anything about it. So I&#8217;ve created a script that I run on an external server to check all of the servers are up (via HTTP) and reboot those that are not. It&#8217;s fairly simple, the process is as follows:</p>
<ul>
<li>Get a list of VMs from VPS.NET.</li>
<li>For each VM, send a GET request to http://{hostname}.{domainname}/ and give it (by default) 5 seconds to respond.</li>
<li>If the server does not respond, it will check if it is marked as &#8220;running&#8221; on VPS.NET &#8211; by default it will then assume that there is simply a routing issue.</li>
<li>If it is not, it will check if the server is already in a power change state (i.e. startup, reboot).</li>
<li>Finally, if neither of the above are true, it will send a power on request to VPS.NET.</li>
<li>After all of that, it&#8217;ll (optionally) send you an email to let you know.</li>
</ul>
<p>The code is below. You can also <a href="/files/monitor.php.zip">download it here</a>. Let me know if you find it useful!</p>
<p><strong>Notes:</strong></p>
<ul>
<li>This script needs setting up as a cron job, on an off-site server / computer. I recommend running it every 5 minutes or so.</li>
<li>I don&#8217;t use the VPS.NET API PHP classes because they seem to be out of date.</li>
<li>This script *will* spam you to oblivion if there is a cloud issue and you set it up to email in all cases.</li>
</ul>
<div style="height: 300px; width: 100%; overflow: auto;">
<pre class="php" name="code">< ?php

//----
// Set up the monitoring script:
//----

define('MONITOR_MAIL_TO', '');     // Email address to send alerts to.
define('MONITOR_API_EMAIL', ''); // Email address associated with VPS.NET API account.
define('MONITOR_API_KEY', '');     // VPS.NET API key.
define('MONITOR_SEND_EMAILS', true);               // Whether or not to send emails if a server is flagged as down.
define('MONITOR_SEND_EMAILS_ON_NO_ACTION', true);  // Whether or not to send emails if no action is taken.
define('MONITOR_REBOOT_IF_RUNNING', true);         // If HTTP check fails, but VPS.NET says the server is up, reboot?
define('MONITOR_HTTP_TIMEOUT', 5);                 // Number of seconds to allow for a server response. 

//----
// Initialise API Class and get VMs:
//----
$api = new SimpleVpsApi();
$api->setApiEmail(MONITOR_API_EMAIL);
$api->setApiKey(MONITOR_API_KEY);
$vms = $api->getVMs();

//----
// Loop through all the VMs and check their status:
//----
$out     = '';
foreach($vms as $vm)
{
	$server = $vm['virtual_machine']['hostname'] . '.' . $vm['virtual_machine']['domain_name'];
	$id     = $vm['virtual_machine']['id'];

	$get = false;
	$get = @file_get_contents('http://'.$server.'/', false, stream_context_create(array('http' => array('timeout' => MONITOR_HTTP_TIMEOUT))));

	if(!$get)
	{
		$_out .= 'Server ' . $server . ' appears to be DOWN!'.PHP_EOL;

		$vm = $api->getVM($id);

		if($vm['power_action_pending'])
		{
			$_out .= '- VPS.NET is reporting that the server is rebooting already. Taking no action.'.PHP_EOL;

			if(!MONITOR_SEND_EMAILS_ON_NO_ACTION)
			{
				$_out = '';
			}
		}
		elseif($vm['running'] &#038;&#038; !MONITOR_REBOOT_IF_RUNNING)
		{
			$_out .= '- VPS.NET is reporting the server as running. Taking no action.'.PHP_EOL;

			if(!MONITOR_SEND_EMAILS_ON_NO_ACTION)
			{
				$_out = '';
			}
		}
		elseif($vm['running'] &#038;&#038; MONITOR_REBOOT_IF_RUNNING)
		{
			$api->rebootVM($id);
			$_out .= '- VPS.NET is reporting the server as running. Rebooting.'.PHP_EOL;
		}
		else
		{
			$api->bootVM($id);
			$_out .= '- Submitted an automated power on request to VPS.NET.'.PHP_EOL;
		}

		// If we've logged anything for this VM, append it to the log:
		if($_out)
		{
			if($out != '')
			{
				$out .= PHP_EOL;
			}

			$out .= $_out;
			$_out = '';
		}
	}
}

//----
// Emailing functionality, for notification of server downtime:
//----

$email = '<html>
	<body>
<div style="background: #ddd; font-family: arial, verdana, sans-serif; font-size: 13px; padding: 15px;">
		<strong style="font-size: 20px; margin-bottom: 15px">Server Monitoring Notice</strong>
<div style="background: #fff; border: 1px solid #ccc; color: #333; margin: 15px 0; padding: 15px">
			<!--content-->
		</div>
</div>

	</body>
</html>';

if($out != '' &#038;&#038; MONITOR_SEND_EMAILS)
{
	$email = str_replace('<!--content-->', nl2br($out), $email);
	mail(MONITOR_MAIL_TO, 'Server Monitoring Notice', $email, 'Content-Type: text/html'."\r\n");
}

//----
// Custom class for interacting with the VPS.NET API:
//----

class SimpleVpsApi
{
	const TYPE_GET  = 1;
	const TYPE_POST = 2;

	protected $apiUrl   = 'api.vps.net/';
	protected $apiEmail = null;
	protected $apiKey   = null;

	/**
	* Set the email address to use in requests:
	*/
	public function setApiEmail($email)
	{
		$this->apiEmail = $email;
	}

	/**
	* Set the API key to use in requests:
	*/
	public function setApiKey($key)
	{
		$this->apiKey = $key;
	}

	/**
	* Get a list of all VMs:
	*/
	public function getVMs()
	{
		$vm = $this->sendApiRequest('virtual_machines', 'GET');

		if($vm)
		{
			return $vm;
		}
		else
		{
			return array();
		}
	}

	/**
	* Sends a request to VPS.NET to load details about a VM:
	*/
	public function getVM($id)
	{
		$vm = $this->sendApiRequest('virtual_machines/'.$id, 'GET');

		if($vm)
		{
			return $vm['virtual_machine'];
		}
		else
		{
			return null;
		}
	}

	/**
	* Sends a request to VPS.NET to reboot a VM:
	*/
	public function rebootVM($id)
	{
		return $this->sendApiRequest('virtual_machines/'.$id.'/reboot', 'POST');
	}

	/**
	* Sends a request to VPS.NET to boot a VM:
	*/
	public function bootVM($id)
	{
		return $this->sendApiRequest('virtual_machines/'.$id.'/power_on', 'POST');
	}

	/**
	* Send an API request to VPS.NET
	*/
	protected function sendApiRequest($uri, $type = 'GET')
	{
		if(!$this->apiEmail || !$this->apiKey)
		{
			throw new Exception('You must set an API key and email address first.');
		}

		$opts = array(
		  'http'=>array(
		    'method'  => $type,
		    'header'  => 'Accept: application/json' . "\r\n" .
		                 'Content-Type: application/json' . "\r\n" .
						 'Authorization: Basic ' . base64_encode($this->apiEmail.':'.$this->apiKey) . "\r\n",

			'timeout' => 3,
		  )
		);

		$url      = 'https://'.$this->apiUrl.$uri.'.api10json';
		$context  = stream_context_create($opts);
		$response = @file_get_contents($url, false, $context);
		return json_decode($response, true);
	}
}</pre>
</div>
<p><!-- ec470a31331945bdb54f0b4c649e3e74 --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dancryer.com/2010/06/vps-net-auto-recovery-monitor/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>My New Job at Media Wow</title>
		<link>http://www.dancryer.com/2010/04/my-new-job-at-media-wow</link>
		<comments>http://www.dancryer.com/2010/04/my-new-job-at-media-wow#comments</comments>
		<pubDate>Thu, 08 Apr 2010 17:00:16 +0000</pubDate>
		<dc:creator>Dan Cryer</dc:creator>
				<category><![CDATA[Other Things]]></category>
		<category><![CDATA[media wow]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www.dancryer.com/?p=512</guid>
		<description><![CDATA[I posted last week about my last day at Stickyeyes, and as of today, I&#8217;ve been at Media Wow for a whole week. I&#8217;m not sure quite where the week has gone, it has absolutely flown. It could be due to the fact that I&#8217;m already knee deep in a couple of projects with a [...]]]></description>
			<content:encoded><![CDATA[<p>I posted last week about my last day at Stickyeyes, and as of today, I&#8217;ve been at <a rel="nofollow" href="http://www.mediawow.co.uk/">Media Wow</a> for a whole week. I&#8217;m not sure quite where the week has gone, it has absolutely flown. It could be due to the fact that I&#8217;m already knee deep in a couple of projects with a few more on the not-too-distant horizon.</p>
<p><a href="http://www.dancryer.com/wp/wp-content/uploads/2010/04/photo-1.jpg"><img class="size-medium wp-image-513 alignright" title="Media Wow Office" src="http://www.dancryer.com/wp/wp-content/uploads/2010/04/photo-1-300x225.jpg" alt="Media Wow Office" width="300" height="225" /></a><a href="http://www.dancryer.com/wp/wp-content/uploads/2010/04/photo.jpg"><img class="size-medium wp-image-514 alignright" title="My Desk at Media Wow" src="http://www.dancryer.com/wp/wp-content/uploads/2010/04/photo-300x225.jpg" alt="My Desk at Media Wow" width="300" height="225" /></a>The move over has been incredibly positive so far. I feel better about the company, the work is interesting and the people are great. I had my first client meeting this week and it went exceptionally well, we&#8217;re now starting to build their new web site, which I hope is going to be a vast improvement on their current one.</p>
<p>I&#8217;ve also been getting some things set up here for us as a company, including our new hosting environment, rebuilding the company site in WordPress, and a few other bits and bobs. The office itself and the area it&#8217;s in is pretty cool too, I&#8217;ve included a couple of pictures &#8211; one of the office building and one of my desk.</p>
<p>It&#8217;s an exciting time and I think I&#8217;m going to be busy for quite some time, but I&#8217;m feeling good about it and looking forward to the challenge.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dancryer.com/2010/04/my-new-job-at-media-wow/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Motion City Soundtrack &#8211; My First Gig!</title>
		<link>http://www.dancryer.com/2010/03/motion-city-soundtrack-my-first-gig</link>
		<comments>http://www.dancryer.com/2010/03/motion-city-soundtrack-my-first-gig#comments</comments>
		<pubDate>Mon, 29 Mar 2010 19:29:30 +0000</pubDate>
		<dc:creator>Dan Cryer</dc:creator>
				<category><![CDATA[Other Things]]></category>

		<guid isPermaLink="false">http://www.dancryer.com/?p=507</guid>
		<description><![CDATA[Emily took me to my first ever &#8220;proper band&#8221; gig on Saturday. Yes, my first. Seriously. I&#8217;d never been to one and I&#8217;m really not sure why. I had an amazing time, despite being absolutely terrified when she first dragged me into the middle where everyone was jumping around. I quickly got into it, though [...]]]></description>
			<content:encoded><![CDATA[<p>Emily took me to my first ever &#8220;proper band&#8221; gig on Saturday. Yes, my first. Seriously. I&#8217;d never been to one and I&#8217;m really not sure why. I had an amazing time, despite being absolutely terrified when she first dragged me into the middle where everyone was jumping around. I quickly got into it, though I probably looked like a spoon. It took until Sunday evening for my ears to stop ringing, which I took to be a good sign.</p>
<p><img class="aligncenter size-full wp-image-508" title="Motion City Soundtrack" src="http://www.dancryer.com/wp/wp-content/uploads/2010/03/mcs.jpg" alt="Motion City Soundtrack" width="400" height="225" /></p>
<p>The lead singer of the band was awesome, and his hair was quite immense. Though I can&#8217;t compare the gig to any others, if ever you want a fun gig with great music, definitely check out <a rel="nofollow" href="http://www.motioncitysoundtrack.com/">Motion City Soundtrack</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dancryer.com/2010/03/motion-city-soundtrack-my-first-gig/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moving on, part two.</title>
		<link>http://www.dancryer.com/2010/03/moving-on-part-two</link>
		<comments>http://www.dancryer.com/2010/03/moving-on-part-two#comments</comments>
		<pubDate>Mon, 29 Mar 2010 19:06:08 +0000</pubDate>
		<dc:creator>Dan Cryer</dc:creator>
				<category><![CDATA[Other Things]]></category>
		<category><![CDATA[media wow]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www.dancryer.com/?p=505</guid>
		<description><![CDATA[The day that felt so far away when I wrote about it six weeks ago, is here. Tomorrow will be my last day working at Stickyeyes. I&#8217;ve spent the last six weeks finishing everything up that I was working on, and pushing out a few small projects. The work has included a forum launch for [...]]]></description>
			<content:encoded><![CDATA[<p>The day that felt so far away when I <a href="/2010/02/moving-on-to-pastures-new">wrote about it six weeks ago</a>, is here. Tomorrow will be my last day working at Stickyeyes. I&#8217;ve spent the last six weeks finishing everything up that I was working on, and pushing out a few small projects. The work has included a forum launch for a big online department store, a cool new task management system for the company and rewriting a large chunk of the backend reporting code for Market Defender. I certainly haven&#8217;t had much opportunity to wind down and take it easy, but in a lot of ways I&#8217;m glad I haven&#8217;t.</p>
<p>On Thursday I start my new job at Media Wow and it promises to be an exciting experience. The work is already lining up, I know what I am going to be doing on my first day, I&#8217;ve picked up and configured my shiny new Macbook Pro and I&#8217;m raring to go. I&#8217;ll make sure to write about my first day on Thursday evening.</p>
<p>If you&#8217;re interested and haven&#8217;t done already, check out <a rel="nofollow" href="http://www.mediawow.co.uk/">the web site</a> or <a rel="nofollow" href="http://www.twitter.com/mediawowuk">follow Media Wow on Twitter</a>. I&#8217;m sure I&#8217;ll be posting to both when I&#8217;ve settled in.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dancryer.com/2010/03/moving-on-part-two/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Evans Halshaw: Credit Where It&#8217;s Due</title>
		<link>http://www.dancryer.com/2010/03/evans-halshaw-credit-where-its-due</link>
		<comments>http://www.dancryer.com/2010/03/evans-halshaw-credit-where-its-due#comments</comments>
		<pubDate>Wed, 10 Mar 2010 13:00:58 +0000</pubDate>
		<dc:creator>Dan Cryer</dc:creator>
				<category><![CDATA[Other Things]]></category>
		<category><![CDATA[car]]></category>
		<category><![CDATA[customer service]]></category>
		<category><![CDATA[evans halshaw]]></category>
		<category><![CDATA[leeds]]></category>
		<category><![CDATA[vauxhall]]></category>

		<guid isPermaLink="false">http://www.dancryer.com/?p=503</guid>
		<description><![CDATA[I wrote, back in October, about my poor experiences with Evans Halshaw Vauxhall in Leeds, and I&#8217;ve recently had another one, but finally I&#8217;ve also got a positive outcome.
My alternator broke, completely, at 6AM one morning driving back from Durham. When I bought the car, I was told it came with breakdown cover which I thought [...]]]></description>
			<content:encoded><![CDATA[<p>I wrote, back in October, about my <a href="/2009/10/evans-halshaw-vauxhall-leeds">poor experiences with Evans Halshaw Vauxhall in Leeds</a>, and I&#8217;ve recently had another one, but finally I&#8217;ve also got a positive outcome.</p>
<p>My alternator broke, completely, at 6AM one morning driving back from Durham. When I bought the car, I was told it came with breakdown cover which I thought was with the RAC, so I called them, to find they had no record of me or my car. Same result with the AA. So I had to sign up to the RAC at a cost of £130, who came out and got me to a local garage, <a rel="nofollow" href="http://www.fredhenderson.com/">Fred Henderson Ltd</a> (who were great, by the way!) My car was repaired before lunch time, but it cost me a further £275. As I was assured by the Evans Halshaw salesman that the warranty allowed such claims, I dutifully collected a full invoice with a detailed description of the work done.</p>
<p>I then contacted Evans Halshaw and was told that these kind of claims are not allowed, but that they&#8217;d contact the warranty company to &#8220;see what they could do.&#8221; Some weeks later, I got a definitive &#8220;no&#8221; response. I requested contact details for the warranty company, but never received a response.</p>
<p>Last week, I got frustrated and sent an email to both the branch manager in Leeds, and to Trevor Finn, the Chief Executive of Pendragon PLC, the company that own Evans Halshaw. I received two very different responses.</p>
<p>The branch manager called me to say that the policies are in place for a reason and that I should have read my documentation properly. As I told him on the phone, that&#8217;s all well and good, but when you&#8217;re 90 miles away from your warranty documentation in a broken down car in -4 degree cold, at 6am, three hours before Evans Halshaw open, you can&#8217;t be expected to follow policies.</p>
<p>Luckily, I was also called by Ian McCandlish, Pendragon PLC&#8217;s Divisional Managing Director of Group Finance and Insurance &#8211; the man in charge of the warranty division. Ian took a far more sensible and customer friendly approach to dealing with my complaint. Firstly, he read my email &#8211; which I&#8217;m not convinced the branch manager really did. Secondly, he set the policies aside and dealt with the problem using his own logic and a bit of empathy. Ian explained that there are policies in place, but that the priority is clearly the customer and sometimes you have to think outside of the box when dealing with it.</p>
<p>It&#8217;s a real shame I had to take the steps I did, to get the service I should have received in the first place, but Ian has now offered to reimburse the full cost of repair, plus the RAC sign up cost as a good faith gesture, for which I am very appreciative. His attitude may well be enough to convince me to at least consider using Evans Halshaw again in the future.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dancryer.com/2010/03/evans-halshaw-credit-where-its-due/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>I&#8217;m an uncle again!</title>
		<link>http://www.dancryer.com/2010/02/im-an-uncle-again</link>
		<comments>http://www.dancryer.com/2010/02/im-an-uncle-again#comments</comments>
		<pubDate>Fri, 26 Feb 2010 17:45:21 +0000</pubDate>
		<dc:creator>Dan Cryer</dc:creator>
				<category><![CDATA[Other Things]]></category>
		<category><![CDATA[life]]></category>

		<guid isPermaLink="false">http://www.dancryer.com/?p=495</guid>
		<description><![CDATA[I&#8217;m a bit late in making this post, as it&#8217;s almost week-old news, but I&#8217;ve been waiting for the pictures to go up on Facebook before I posted anything.
My sister had her second child on Saturday 20th February, baby Nathan. He weighed in at exactly eight pounds, with blond hair and apparently, big hands and [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-medium wp-image-496" title="Baby Nathan" src="http://www.dancryer.com/wp/wp-content/uploads/2010/02/nathan-300x225.jpg" alt="Baby Nathan" width="300" height="225" />I&#8217;m a bit late in making this post, as it&#8217;s almost week-old news, but I&#8217;ve been waiting for the pictures to go up on Facebook before I posted anything.</p>
<p>My sister had her second child on Saturday 20th February, baby Nathan. He weighed in at exactly eight pounds, with blond hair and apparently, big hands and feet!</p>
<p>So I&#8217;m &#8220;Uncle Dan&#8221; for a fourth time! It doesn&#8217;t matter how many times that happens, it&#8217;s still just as amazing and exciting as the first.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dancryer.com/2010/02/im-an-uncle-again/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moving on to pastures new</title>
		<link>http://www.dancryer.com/2010/02/moving-on-to-pastures-new</link>
		<comments>http://www.dancryer.com/2010/02/moving-on-to-pastures-new#comments</comments>
		<pubDate>Fri, 19 Feb 2010 19:01:26 +0000</pubDate>
		<dc:creator>Dan Cryer</dc:creator>
				<category><![CDATA[Other Things]]></category>
		<category><![CDATA[media wow]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www.dancryer.com/?p=470</guid>
		<description><![CDATA[I got a call a couple of weeks ago about a great opportunity at a small full-package media and marketing agency in Leeds, Media Wow. After a short, successful interview process, I was offered the job on Monday. I&#8217;m going to be helping them create a web development department from scratch to compliment their recent addition [...]]]></description>
			<content:encoded><![CDATA[<p>I got a call a couple of weeks ago about a great opportunity at a small full-package media and marketing agency in Leeds, <a href="http://www.mediawow.co.uk/">Media Wow</a>. After a short, successful interview process, I was offered the job on Monday. I&#8217;m going to be helping them create a web development department from scratch to compliment their recent addition of online marketing services and expand their digital offering. The job will include choosing the technologies we&#8217;ll use, setting up processes, meeting with clients and developing great things.</p>
<p>This is a bit of a strange post to write, as I&#8217;m naturally very excited about the challenge I&#8217;m going to be facing, but also sad to be leaving behind the great development team I&#8217;ve been working with at Stickyeyes. I&#8217;ve worked through some great challenges with the guys and learned a lot, I&#8217;m looking forward to doing the same and more in my new role.</p>
<p>Naturally, as with all my other posts, if anyone has any wisdom or advice they&#8217;d like to give, it would of course be greatly appreciated.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dancryer.com/2010/02/moving-on-to-pastures-new/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Twitter Profitable in 2009?</title>
		<link>http://www.dancryer.com/2009/12/twitter-profitable-in-2009</link>
		<comments>http://www.dancryer.com/2009/12/twitter-profitable-in-2009#comments</comments>
		<pubDate>Mon, 21 Dec 2009 16:44:58 +0000</pubDate>
		<dc:creator>Dan Cryer</dc:creator>
				<category><![CDATA[Other Things]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.dancryer.com/?p=353</guid>
		<description><![CDATA[We have a running discussion at work, generally brought up by Ben after a Twitter related story breaks. This is that Twitter&#8217;s great and all, but it doesn&#8217;t make any money. Our generally agreed assumptions have been that Twitter is free-loading off the back of Venture Capital and will flop as soon as it&#8217;s left [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.dancryer.com/wp/wp-content/uploads/2009/12/twitter_logo_outline.png"><img class="alignright size-medium wp-image-354" style="margin-left: 15px; margin-bottom: 15px; background: none;" title="Twitter Logo" src="http://www.dancryer.com/wp/wp-content/uploads/2009/12/twitter_logo_outline-300x78.png" alt="" width="210" height="55" /></a>We have a running discussion at work, generally brought up by <a rel="nofollow" href="http://www.restafarian.com/">Ben</a> after a Twitter related story breaks. This is that Twitter&#8217;s great and all, but it doesn&#8217;t make any money. Our generally agreed assumptions have been that Twitter is free-loading off the back of Venture Capital and will flop as soon as it&#8217;s left on it&#8217;s own, since advertising revenue probably couldn&#8217;t support it.</p>
<p>It seems we may be wrong. According to <a rel="nofollow" href="http://www.businessweek.com/technology/content/dec2009/tc20091220_549879.htm">a report by Business Week</a>, Twitter will be reporting a small profit for 2009. It has done this by cutting costs, such as carrier charges for it&#8217;s SMS services, and by generating new revenue via it&#8217;s deals with Google ($15M) and Microsoft ($10M) for their search integration.</p>
<p>I have to say, I&#8217;m impressed. I didn&#8217;t catch on at the time that they&#8217;d make a lot of money from that, but if the deals have given them the ability to fund their entire yearly operating costs, good work to them!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dancryer.com/2009/12/twitter-profitable-in-2009/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2009 Christmas Number One is&#8230; Not The X Factor!</title>
		<link>http://www.dancryer.com/2009/12/2009-christmas-number-one-is-not-the-x-factor</link>
		<comments>http://www.dancryer.com/2009/12/2009-christmas-number-one-is-not-the-x-factor#comments</comments>
		<pubDate>Mon, 21 Dec 2009 09:34:54 +0000</pubDate>
		<dc:creator>Dan Cryer</dc:creator>
				<category><![CDATA[Other Things]]></category>
		<category><![CDATA[2009]]></category>
		<category><![CDATA[christmas]]></category>
		<category><![CDATA[number one]]></category>
		<category><![CDATA[xfactor]]></category>

		<guid isPermaLink="false">http://www.dancryer.com/?p=335</guid>
		<description><![CDATA[If you read my blog regularly, which not many people do, you&#8217;d know that I wanted to get either Bruce Springsteen&#8217;s &#8220;Santa Claus is Coming to Town&#8221; or Chris Moyles&#8217; &#8220;Never Gonna Snow&#8221; to number one for Christmas instead of the X Factor winner, which turned out to be Joe McElderry. Of course, this was [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-medium wp-image-337" style="margin-left: 15px; margin-bottom: 15px;" title="Rage Against the Machine Christmas Number One" src="http://www.dancryer.com/wp/wp-content/uploads/2009/12/story53b19acdee54eca47a950bc5b91a33f5-300x225.jpg" alt="Rage Against the Machine Christmas Number One" width="240" height="180" />If you read my blog regularly, which not many people do, you&#8217;d know that I wanted to get <em>either </em>Bruce Springsteen&#8217;s &#8220;Santa Claus is Coming to Town&#8221; or Chris Moyles&#8217; &#8220;Never Gonna Snow&#8221; to number one for Christmas instead of the X Factor winner, which turned out to be Joe McElderry. Of course, this was nothing personal against Joe, as Wade and I posted about the campaign long, long before he won the competition. However, someone else had a similar, more successful idea.</p>
<p>Mr and Mrs Morter launched a campaign to get Rage Against The Machine&#8217;s &#8220;Killing in the Name&#8221; to number one for Christmas, hoping to inspire the British alternative music scene into taking on the might of the X Factor. And they did. And they won!</p>
<p>Of course, I do feel sorry for Joe McElderry, as he did work hard on the X Factor to win the show, but I am very happy that someone&#8217;s finally got the point across that they can&#8217;t just claim that number one spot every single year. It&#8217;s also a great year to do it, the last Christmas Number One of the decade has gone to someone other than the X Factor, it&#8217;s just a shame that it didn&#8217;t go to a more Christmassy song. I don&#8217;t think we&#8217;ll be listening to Rage around the Christmas dinner table with the kids.</p>
<p><strong>Buy the songs:</strong></p>
<ul>
<li>Rage Against the Machine: <a rel="nofollow" href="http://www.amazon.co.uk/gp/product/B001I4NZP4?ie=UTF8&amp;tag=dancryecom-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=B001I4NZP4">Killing In The Name [Explicit]</a><img style="background: none; border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.co.uk/e/ir?t=dancryecom-21&amp;l=as2&amp;o=2&amp;a=B001I4NZP4" border="0" alt="" width="1" height="1" /></li>
<li>Joe McElderry: <a rel="nofollow" href="http://www.amazon.co.uk/gp/product/B0030L0XLC?ie=UTF8&amp;tag=dancryecom-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=B0030L0XLC">The Climb</a><img style="background: none; border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.co.uk/e/ir?t=dancryecom-21&amp;l=as2&amp;o=2&amp;a=B0030L0XLC" border="0" alt="" width="1" height="1" /></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.dancryer.com/2009/12/2009-christmas-number-one-is-not-the-x-factor/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chris Moyles vs. The X Factor for Christmas Number One?</title>
		<link>http://www.dancryer.com/2009/12/chris-moyles-vs-the-x-factor-for-christmas-number-one</link>
		<comments>http://www.dancryer.com/2009/12/chris-moyles-vs-the-x-factor-for-christmas-number-one#comments</comments>
		<pubDate>Mon, 07 Dec 2009 19:48:35 +0000</pubDate>
		<dc:creator>Dan Cryer</dc:creator>
				<category><![CDATA[Other Things]]></category>
		<category><![CDATA[2009]]></category>
		<category><![CDATA[christmas]]></category>
		<category><![CDATA[number one]]></category>
		<category><![CDATA[xfactor]]></category>

		<guid isPermaLink="false">http://www.dancryer.com/?p=312</guid>
		<description><![CDATA[
Update: The Christmas Number One battle is over, the X Factor lost to Rage Against the Machine. I&#8217;ve posted about it here.
Buy the songs:

Rage Against the Machine: Killing In The Name [Explicit]
Joe McElderry: The Climb
Chris Moyles: Never Gonna Snow (At Christmas)

I posted a couple of weeks ago about getting a Christmas song to number one [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="nofollow" href="http://www.amazon.co.uk/gp/product/B002YGEEG4?ie=UTF8&amp;tag=dancryecom-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=B002YGEEG4"><img class="alignright size-thumbnail wp-image-316" style="margin-left: 15px; margin-bottom: 15px;" title="Chris Moyles - Never Gonna Snow" src="http://www.dancryer.com/wp/wp-content/uploads/2009/12/51H9j0-QPrL._SL500_AA280_-150x150.jpg" alt="Chris Moyles - Never Gonna Snow" width="150" height="150" /></a></p>
<p><strong><em>Update: </em></strong><em>The Christmas Number One battle is over, the X Factor lost to Rage Against the Machine. I&#8217;ve </em><a href="/2009/12/2009-christmas-number-one-is-not-the-x-factor"><em>posted about it here</em></a><em>.</em></p>
<p><strong>Buy the songs:</strong></p>
<ul>
<li>Rage Against the Machine: <a rel="nofollow" href="http://www.amazon.co.uk/gp/product/B001I4NZP4?ie=UTF8&amp;tag=dancryecom-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=B001I4NZP4">Killing In The Name [Explicit]</a><img style="background: none; border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.co.uk/e/ir?t=dancryecom-21&amp;l=as2&amp;o=2&amp;a=B001I4NZP4" border="0" alt="" width="1" height="1" /></li>
<li>Joe McElderry: <a rel="nofollow" href="http://www.amazon.co.uk/gp/product/B0030L0XLC?ie=UTF8&amp;tag=dancryecom-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=B0030L0XLC">The Climb</a><img style="background: none; border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.co.uk/e/ir?t=dancryecom-21&amp;l=as2&amp;o=2&amp;a=B0030L0XLC" border="0" alt="" width="1" height="1" /></li>
<li>Chris Moyles: <a rel="nofollow" href="http://www.amazon.co.uk/gp/product/B002YGEEG4?ie=UTF8&amp;tag=dancryecom-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=B002YGEEG4">Never Gonna Snow (At Christmas)</a></li>
</ul>
<p>I posted a couple of weeks ago about <a href="http://www.dancryer.com/2009/11/xfactor-2009-uk-christmas-number-one">getting a Christmas song to number one this year</a>, instead of letting the X Factor take the Christmas Number One spot for the fifth year in a row.</p>
<p>Whilst a few people have agreed with the idea, I&#8217;ve realised that really, I&#8217;m not popular enough to promote something like this. However, someone who is, is Radio 1 DJ Chris Moyles and his show&#8217;s 20 million strong audience.  Oh, and he is doing. The only thing is, he&#8217;s doing so by releasing his own Christmas single, &#8220;Never Gonna Snow (At Christmas).&#8221; As he&#8217;s got a much better chance of succeeding than Wade and I with our little campaign, I&#8217;ve decided to support his single instead.</p>
<p>The plan is the same as before, of course. You need to buy the single during the week of the 14th to the 20th of December, <em>instead </em>of buying the X Factor single. Buying both instead of just the X Factor helps a little, but buying just Chris&#8217; is much better.  You can buy the single to download from Amazon below.</p>
<ul>
<li><a rel="nofollow" href="http://www.amazon.co.uk/gp/product/B002YGEEG4?ie=UTF8&amp;tag=dancryecom-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=B002YGEEG4">Chris Moyles &#8211; Never Gonna Snow (At Christmas)</a> on Amazon UK.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.dancryer.com/2009/12/chris-moyles-vs-the-x-factor-for-christmas-number-one/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XFactor for 2009 UK Christmas Number One? Pfft.</title>
		<link>http://www.dancryer.com/2009/11/xfactor-2009-uk-christmas-number-one</link>
		<comments>http://www.dancryer.com/2009/11/xfactor-2009-uk-christmas-number-one#comments</comments>
		<pubDate>Mon, 09 Nov 2009 18:51:47 +0000</pubDate>
		<dc:creator>Dan Cryer</dc:creator>
				<category><![CDATA[Other Things]]></category>
		<category><![CDATA[2009]]></category>
		<category><![CDATA[christmas]]></category>
		<category><![CDATA[number one]]></category>
		<category><![CDATA[xfactor]]></category>

		<guid isPermaLink="false">http://www.dancryer.com/?p=275</guid>
		<description><![CDATA[Update 2: The Christmas Number One battle is over, the X Factor lost to Rage Against the Machine. I&#8217;ve posted about it here.
Update: Decided to back Chris Moyles&#8217; attempt to knock X Factor off the number one spot instead. See Chris Moyles vs. The X Factor for Christmas Number One? for details!
Buy the songs:

Rage Against [...]]]></description>
			<content:encoded><![CDATA[<p><strong><em>Update 2: </em></strong><em>The Christmas Number One battle is over, the X Factor lost to Rage Against the Machine. I&#8217;ve </em><a href="/2009/12/2009-christmas-number-one-is-not-the-x-factor"><em>posted about it here</em></a><em>.</em></p>
<p><span style="font-weight: bold;"><strong>Update: </strong></span><strong>Decided to back Chris Moyles&#8217; attempt to knock X Factor off the number one spot instead. See <a href="http://www.dancryer.com/2009/12/chris-moyles-vs-the-x-factor-for-christmas-number-one">Chris Moyles vs. The X Factor for Christmas Number One?</a> for details!</strong></p>
<p><strong>Buy the songs:</strong></p>
<ul>
<li>Rage Against the Machine: <a rel="nofollow" href="http://www.amazon.co.uk/gp/product/B001I4NZP4?ie=UTF8&amp;tag=dancryecom-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=B001I4NZP4">Killing In The Name [Explicit]</a><img style="background: none; border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.co.uk/e/ir?t=dancryecom-21&amp;l=as2&amp;o=2&amp;a=B001I4NZP4" border="0" alt="" width="1" height="1" /></li>
<li>Joe McElderry: <a rel="nofollow" href="http://www.amazon.co.uk/gp/product/B0030L0XLC?ie=UTF8&amp;tag=dancryecom-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=B0030L0XLC">The Climb</a><img style="background: none; border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.co.uk/e/ir?t=dancryecom-21&amp;l=as2&amp;o=2&amp;a=B0030L0XLC" border="0" alt="" width="1" height="1" /></li>
</ul>
<p><img class="alignright size-medium wp-image-276" style="background: transparent; margin-left: 15px; margin-bottom: 15px; border: 0px initial;" title="Bruce Springsteen" src="http://www.dancryer.com/wp/wp-content/uploads/2009/11/brucespringsteen-194x300.jpg" alt="Bruce Springsteen" width="116" height="180" />So, that time of year is fast approaching. It&#8217;s almost Christmas, and it&#8217;s very likely to be another Christmas number one for the winner of the X Factor. Just as it has been for <a rel="nofollow" href="http://en.wikipedia.org/wiki/That%27s_My_Goal">the</a> <a rel="nofollow" href="http://en.wikipedia.org/wiki/A_Moment_Like_This">last</a> <a rel="nofollow" href="http://en.wikipedia.org/wiki/When_You_Believe#Covers.23Leon_Jackson_version">four</a> <a rel="nofollow" href="http://en.wikipedia.org/wiki/Hallelujah_(Leonard_Cohen_song)#Alexandra_Burke">years</a>. We were talking about this at work earlier and we decided that it&#8217;s time to give an actual Christmas song a chance, for a change! To take that honour, we chose <a rel="nofollow" href="http://www.brucespringsteen.net/news/index.html">Bruce Springsteen</a>&#8217;s &#8220;<a rel="nofollow" href="http://www.amazon.co.uk/gp/product/B001GUDXMK?ie=UTF8&amp;tag=dancryecom-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=B001GUDXMK">Santa Claus is Coming to Town</a>.&#8221;<img style="background: transparent; border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.co.uk/e/ir?t=dancryecom-21&amp;l=as2&amp;o=2&amp;a=B001GUDXMK" border="0" alt="" width="1" height="1" /> We chose it, for no other reason than it&#8217;s cheery, Christmassy, and it&#8217;s not Mariah Carey!</p>
<p>Who really wants to spend Christmas listening to John and Edward murder another song, anyway? Or just as bad, who wants to spend it listening to Jamie Afro, Danyl Johnson, or any of the others singing about love, anyway? We all know there&#8217;s nothing better than sitting around with your family, having a drink and listening to cheesy Christmas classics. Don&#8217;t deprive the kids of that!</p>
<p>Now, our plan is as follows: We would like everyone, and I mean <em>everyone</em>, to forego buying this year&#8217;s XFactor single, and instead &#8211; pop onto iTunes or Amazon and instead, buy <strong>Santa Claus is Coming to Town</strong>. It&#8217;s important that you <strong>don&#8217;t do this now</strong>, you need to buy it during the week of the <strong>14th to the 20th of December</strong>, so we get it into the charts for the 2009 Christmas Number One.</p>
<p><img class="alignleft size-medium wp-image-277" style="margin-right: 15px; border: 0; background: none;" title="Santa Claus is Coming to Town" src="http://www.dancryer.com/wp/wp-content/uploads/2009/11/santa-reading283746234-300x238.gif" alt="Santa Claus is Coming to Town" width="180" height="143" />We know that a group of people tried to do this last year and got their song to number two, but that&#8217;s not going to put us off. We think that should only make everyone try harder to get Bruce Springsteen to number one for Christmas 2009! To help us do this, please re-blog this, linking to either this post, or <a rel="nofollow" href="http://www.xcitestudios.com/blog/2009/11/09/santa-claus-is-coming-to-town-for-christmas-number-one-2009-not-x-factor/">Wade&#8217;s post</a>. If you don&#8217;t have a blog, please tweet this post, or put it on Facebook. We will, of course, be posting about this a few more times between now and Christmas, so don&#8217;t worry about forgetting.</p>
<p><em>He&#8217;s makin&#8217; a list, checkin&#8217; it twice, gonna find out who&#8217;s naughty or nice&#8230; Santa Claus is comin&#8217; to town&#8230;</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dancryer.com/2009/11/xfactor-2009-uk-christmas-number-one/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Body-shop garages in Leeds?</title>
		<link>http://www.dancryer.com/2009/10/body-shop-garages-in-leeds</link>
		<comments>http://www.dancryer.com/2009/10/body-shop-garages-in-leeds#comments</comments>
		<pubDate>Fri, 30 Oct 2009 09:13:39 +0000</pubDate>
		<dc:creator>Dan Cryer</dc:creator>
				<category><![CDATA[Other Things]]></category>
		<category><![CDATA[car]]></category>
		<category><![CDATA[leeds]]></category>
		<category><![CDATA[vauxhall]]></category>

		<guid isPermaLink="false">http://www.dancryer.com/?p=272</guid>
		<description><![CDATA[Does anyone know of a garage in Leeds that could fix and respray my bonnet cheaply? Is bent and dented in the middle. I&#8217;m sure Evans Halshaw would do it, but it&#8217;d cost the soul of my first born child and seventeen goats to do.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.dancryer.com/wp/wp-content/uploads/2009/10/6kek.jpg"><img class="alignright size-thumbnail wp-image-273" style="margin: 0 0 15px 15px;" title="Damage on Astra bonnet" src="http://www.dancryer.com/wp/wp-content/uploads/2009/10/6kek-150x150.jpg" alt="Damage on Astra bonnet" width="150" height="150" /></a>Does anyone know of a garage in Leeds that could fix and respray my bonnet cheaply? Is bent and dented in the middle. I&#8217;m sure Evans Halshaw would do it, but it&#8217;d cost the soul of my first born child and seventeen goats to do.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dancryer.com/2009/10/body-shop-garages-in-leeds/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blackpool and the Blackpool Tower Circus</title>
		<link>http://www.dancryer.com/2009/10/blackpool-and-the-blackpool-tower-circus</link>
		<comments>http://www.dancryer.com/2009/10/blackpool-and-the-blackpool-tower-circus#comments</comments>
		<pubDate>Mon, 19 Oct 2009 16:35:24 +0000</pubDate>
		<dc:creator>Dan Cryer</dc:creator>
				<category><![CDATA[Other Things]]></category>
		<category><![CDATA[blackpool]]></category>
		<category><![CDATA[circus]]></category>
		<category><![CDATA[hotels]]></category>
		<category><![CDATA[rock making]]></category>

		<guid isPermaLink="false">http://www.dancryer.com/?p=251</guid>
		<description><![CDATA[Em and I went to Blackpool this weekend, as I said we were going to in my earlier post. We had a great weekend, fully embracing the epic tack-fest that is the nation&#8217;s &#8220;favourite&#8221; seaside resort. Surprisingly, for the whole of Saturday, it was actually sunny&#8230; We must have walked the length of the promenade at [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-252" style="margin: 0 0 15px 15px;" title="Blackpool Tower and Illuminations" src="http://www.dancryer.com/wp/wp-content/uploads/2009/10/784px-Blackpool_tower_and_illuminations.jpg" alt="784px-Blackpool_tower_and_illuminations" width="220" height="150" />Em and I went to Blackpool this weekend, as I said we were going to in my <a href="/2009/10/sunny-blackpool-what-to-do">earlier post</a>. We had a great weekend, fully embracing the epic tack-fest that is the nation&#8217;s &#8220;favourite&#8221; seaside resort. Surprisingly, for the whole of Saturday, it was actually sunny&#8230; We must have walked the length of the promenade at least five times over, visiting all three piers, most of the amusement arcades, one con man and Golden Isle Adventure Golf. The illuminations were a pretty impressive sight when they came on &#8211; if a little odd in places, and being a geek, I couldn&#8217;t help but wonder what their electricity bill is like.</p>
<p>We stayed in the world&#8217;s tiniest hotel room at the <a href="http://www.cheaphotels-blackpool.co.uk/hotel/73646/sandhurst-hotel">Sandhurst Hotel</a>, a place offering no mod cons (central heating is a feature,) but it was nice enough. The room and the hotel itself were clean and tidy, and the bed was comfy. It&#8217;s also very close to the beach, the Pleasure Beach and South Pier, which is just what you need for a short stay really.</p>
<p>Having met the hoopla con man so early in the day on Saturday, and lost a tenner to him, we both quickly became immune to their calls of &#8220;<em>Where you from mate?</em>&#8221; and &#8220;<em>Why don&#8217;t you win a teddy for the lovely girl?</em>&#8221;  My guaranteed prize on that first stand was a <em>very </em>expensive pack of non-brand alternative <a href="http://en.wikipedia.org/wiki/Pogs">Pogs</a>, styled with Pocahontas and Casper imagery &#8211; very now.</p>
<p>We chose not to go to the Pleasure Beach, or the water park, as we managed to fill our time without them. The Pleasure Beach was also going to be somewhere in the region of £30 each, which is a bit much, when you consider that Alton Towers is the same price.</p>
<p>A surprisingly cool, and interesting, part of the day was when we stumbled upon a rock making demonstration at the &#8220;Rock City&#8221; shop. They make all their own rock on site, and it&#8217;s all done as a public display for anyone that wants to watch. They start out with massive amounts of what appears to be a mostly sugar solution, which is cut and coloured as it cools. It&#8217;s then moulded using a variety of techniques (including some strange elbow based manoeuvres) into a gigantic version of what the eventual rock will look like. After that, the guy simply stretches it out to the size they sell in the shop, so simple, but I&#8217;d have never guessed how they did it. I&#8217;d definitely recommend watching, in if you get a chance.</p>
<p><img class="alignright size-full wp-image-254" style="margin: 0 0 15px 15px;" title="The Nanle Troupe at Blackpool Tower Circus" src="http://www.dancryer.com/wp/wp-content/uploads/2009/10/TheNanleTroupe.jpg" alt="TheNanleTroupe" width="220" height="150" />On Sunday, we spent most of the day in Blackpool Tower. We had a quick look around their aquarium, and Em was a little embarrassed to be as excited about the Nemo characters in the tanks as the kids around us. We also went to the top of the tower, looked out over the city and did the walk of faith &#8211; an obvious must. After all that, though, the main highlight of the day, and probably the stay as a whole, was the Blackpool Tower Circus. It was absolutely amazing. I was expecting it to be sub-par at best, a few simple acts and some stupid clowns perhaps, but actually, it seems to be a world-class circus.</p>
<p>They had a couple of acrobatic acts from China and Hungary that impressed me no end, moreso than any other part of the show. I was sat mouth wide open as they back-flipped, jumped through hoops, scaled ropes and stacked themselves up in pyramids. I&#8217;d say, before the Pleasure Beach, piers and amusements combined, if there&#8217;s one thing you need to do if you visit Blackpool, it&#8217;s the Circus.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dancryer.com/2009/10/blackpool-and-the-blackpool-tower-circus/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I don&#8217;t get Google Wave</title>
		<link>http://www.dancryer.com/2009/10/i-dont-get-google-wave</link>
		<comments>http://www.dancryer.com/2009/10/i-dont-get-google-wave#comments</comments>
		<pubDate>Fri, 16 Oct 2009 17:52:54 +0000</pubDate>
		<dc:creator>Dan Cryer</dc:creator>
				<category><![CDATA[Other Things]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[wave]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.dancryer.com/?p=248</guid>
		<description><![CDATA[Thought I&#8217;d quickly stick something up before I went away, in hope that I&#8217;ll get some responses whilst I&#8217;m away over the weekend.
I&#8217;ve been using Google Wave for a while now, as I was in the first round of invites, and the developer preview before that&#8230; but I say using in the loosest sense of [...]]]></description>
			<content:encoded><![CDATA[<p>Thought I&#8217;d quickly stick something up before I went away, in hope that I&#8217;ll get some responses whilst I&#8217;m away over the weekend.</p>
<p>I&#8217;ve been using Google Wave for a while now, as I was in the first round of invites, and the developer preview before that&#8230; but I say using in the loosest sense of the word, as I can&#8217;t actually find a use for it. It may be simply because barely anyone is on it yet, but nothing has struck me as a clear purpose.</p>
<p>That&#8217;s not to say I don&#8217;t like it, it&#8217;s a great application and it&#8217;s technologically outstanding. Features like drag and drop photo uploading and live typing are incredibly impressive, but I feel like I&#8217;m missing the point. I feel like I&#8217;m not using it properly, or that I&#8217;m expecting the wrong things from it.</p>
<p>What is Google Wave, and why should I be using it? I&#8217;d love to know what you all think!</p>
<p><em>P.s. Thank you to everyone who downloaded the Twitter extension yesterday, including the Googlers&#8230; I assume some of the Chrome team. <img src='http://www.dancryer.com/wp/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dancryer.com/2009/10/i-dont-get-google-wave/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sunny Blackpool &#8211; What to do?</title>
		<link>http://www.dancryer.com/2009/10/sunny-blackpool-what-to-do</link>
		<comments>http://www.dancryer.com/2009/10/sunny-blackpool-what-to-do#comments</comments>
		<pubDate>Tue, 13 Oct 2009 20:22:29 +0000</pubDate>
		<dc:creator>Dan Cryer</dc:creator>
				<category><![CDATA[Other Things]]></category>
		<category><![CDATA[blackpool]]></category>

		<guid isPermaLink="false">http://www.dancryer.com/?p=239</guid>
		<description><![CDATA[Em and I are going on a trip to Blackpool this weekend, to see the illuminations. This is the first time I&#8217;ve ever been to Blackpool, and so I don&#8217;t really know what there is to do there. Obviously, there&#8217;s the pleasure beach and the illuminations themselves, but I&#8217;m wondering if there&#8217;s anything less well [...]]]></description>
			<content:encoded><![CDATA[<p>Em and I are going on a trip to Blackpool this weekend, to see the illuminations. This is the first time I&#8217;ve ever been to Blackpool, and so I don&#8217;t really know what there is to do there. Obviously, there&#8217;s the pleasure beach and the illuminations themselves, but I&#8217;m wondering if there&#8217;s anything less well known. </p>
<p>So, during the day, what do people recommend to do in Blackpool? Do you have any suggestions for places to visit or things to see? Let me know!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dancryer.com/2009/10/sunny-blackpool-what-to-do/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
