<?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>Simply Excited - Technology, Outdoor and Design &#187; Guides</title>
	<atom:link href="http://scoop.simplyexcited.co.uk/category/guides/feed/" rel="self" type="application/rss+xml" />
	<link>http://scoop.simplyexcited.co.uk</link>
	<description>Technology, Design and Outdoor</description>
	<lastBuildDate>Fri, 23 Dec 2011 11:33:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>HTTPS Generating Private Key and CSR For RapidSSL</title>
		<link>http://scoop.simplyexcited.co.uk/2007/12/03/https-generating-private-key-and-csr-for-rapidssl/</link>
		<comments>http://scoop.simplyexcited.co.uk/2007/12/03/https-generating-private-key-and-csr-for-rapidssl/#comments</comments>
		<pubDate>Mon, 03 Dec 2007 12:27:52 +0000</pubDate>
		<dc:creator>pyrat</dc:creator>
				<category><![CDATA[Guides]]></category>

		<guid isPermaLink="false">http://scoop.cheerfactory.co.uk/2007/12/03/https-generating-private-key-and-csr-for-rapidssl/</guid>
		<description><![CDATA[	
		Generate a private key
	

	
openssl genrsa -out domainname.key 1024




	
		Generate a certificate signing request
	

	
openssl req -new -key domainname.key -out domainname.csr




	When it asks for common name enter the fully qualified domain name. eg. www.racentries.com
 ]]></description>
			<content:encoded><![CDATA[	<ul>
		<li>Generate a private key</li>
	</ul>

	<p>
<div class="wp_syntax"><div class="code"><pre class="bash">openssl genrsa -out <span style="color: #c20cb9; font-weight: bold;">domainname</span>.key <span style="color: #000000;">1024</span></pre></div></div>
</p>



	<ul>
		<li>Generate a certificate signing request</li>
	</ul>

	<p>
<div class="wp_syntax"><div class="code"><pre class="bash">openssl req -new -key <span style="color: #c20cb9; font-weight: bold;">domainname</span>.key -out <span style="color: #c20cb9; font-weight: bold;">domainname</span>.csr</pre></div></div>
</p>



	<p>When it asks for common name enter the fully qualified domain name. eg. www.racentries.com</p>
 ]]></content:encoded>
			<wfw:commentRss>http://scoop.simplyexcited.co.uk/2007/12/03/https-generating-private-key-and-csr-for-rapidssl/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Deploying with Capistrano VPS</title>
		<link>http://scoop.simplyexcited.co.uk/2007/07/04/deploying-with-capistrano-vps/</link>
		<comments>http://scoop.simplyexcited.co.uk/2007/07/04/deploying-with-capistrano-vps/#comments</comments>
		<pubDate>Wed, 04 Jul 2007 11:21:32 +0000</pubDate>
		<dc:creator>pyrat</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://scoop.cheerfactory.co.uk/2007/07/04/deploying-with-capistrano-vps/</guid>
		<description><![CDATA[	

	It has taken me a while to move from the custom checkout scripts that I use for rails deployment to move to the capistrano way of doing things. I am so excited about it that I have decided to write this blog post.

	This is not a definitive guide to rails deployment with capistrano but is [...]]]></description>
			<content:encoded><![CDATA[	<p><img src="http://scoop.simplyexcited.co.uk/images/capistrano.jpg" /></p>

	<p>It has taken me a while to move from the custom checkout scripts that I use for rails deployment to move to the capistrano way of doing things. I am so excited about it that I have decided to write this blog post.</p>

	<p>This is not a definitive guide to rails deployment with capistrano but is the way I do things when deploying to <a href="http://www.slicehost.com">slicehost</a> for an application which we will be releasing in the not too distant future. This should work out for other vps servers and can be modified for shared hosting where you dont have as many permissions such as sudo access. Also I am basically a capistrano beginner so take what I say with a pinch of salt.</p>

	<p>Firstly, if you are not familiar with capistrano I recommend purchasing the <a href="http://www.peepcode.com">peepcode</a> episode titled <a href="http://peepcode.com/products/capistrano-concepts">Capistrano Concepts</a><br />
<h2>Your using source control right?</h2><br />
The first step is to make sure that you are using source control. The source control system of choice in the rails world is subversion. Capistrano works with quite a few other scm applications but subversion is by far the most common.</p>

	<p>So you need to have your application in a repository somewhere which your deployment box can access. You should also setup the repository to work with the rails app (ignore log files, ignore database.yml, ignore *.pid files etc.) There is a great rake task for <a href="http://pastie.caboo.se/73224.txt">setting up subversion on rails</a><br />
<h2>You have installed and setup your vps?</h2><br />
Lets say you have setup your vps and plan to deploy with an nginx / mongrel_cluster rails stack. There is a good guide at <a href="http://www.usefuljaja.com/">usefuljaja</a> for doing this.</p>

	<p>You have also setup ssh key authentication to avoid typing in passwords all the time. You are also just deploying to a single server and only have one mongrel process to start with.</p>

	<p>For installing and setting up nginx for your deployment its best just to install nginx from source and use the <a href="http://errtheblog.com/post/3908">nginx config generator</a>  to configure nginx for your deployment. I am also loving the no_www option which redirects requests to www.example.org&#226;&#8224;&#8217;example.org. Is it just me or do other people hate www.*</p>

	<p>Setting up a deploy user on the <span class="caps">VPS</span> is also recommended for cleanliness.<br />
<h2>You have setup a database and there is a domain you can run this off?</h2><br />
You need to setup the database in your production environment. A url to deploy to would also be nice, maybe you are still in development and you can use a static dyndns.org free domain to get started.<br />
<h2>Install capistrano and railsmachine</h2><br />
sudo gem install railsmachine &#226;&#8364;&#8221;include-dependencies</p>

	<p>This is a great little collection of capistrano tasks to organise the deployment by convention over configuration.<br />
<h2>Setup your rails app and deploy</h2><br />
cd {RAILS_ROOT}<br />
cap&#226;&#8364;&#8221;apply-to .</p>

	<p>This creates a deploy.rb in your /config directory where you can setup the deployment. My deployment script can be found over at <a href="http://pastie.caboo.se/75985">pastie</a></p>

	<p>The tasks defined in the two bottom tasks are defined in a mycaptasks.rb file which I can move around projects. You could also set it up as an svn:external in your project if you want to be more <span class="caps">DRY</span>. It is also up on <a href="http://pastie.caboo.se/75987">pastie</a></p>

	<p>Now run:<br />
cap setup</p>

	<p>This sets up the folder structure that capistrano uses.</p>

	<p>Now:<br />
cap cold_deploy</p>

	<p>To check everything is working ok.</p>

	<p>Now:<br />
cap deploy<em>_with_</em>migrations</p>

	<p>This will build up your new database assuming you work withe database migrations.</p>

	<p>From now on<br />
cap deploy</p>

	<p>To deploy your app.<br />
<h2>Its in source control</h2><br />
Because the deploy scripts are contained within the source control it works great in a distributed work environment so other developers can work with your project and deploy in a common way. It brings deployment into a convention rather than custom built and often nasty deployment methods which exist out there.<br />
<h2>Cheers for now</h2><br />
This has been a skim at deploying with capistrano and I urge you to check out the other and probably a lot better learning resources out there.</p>
 ]]></content:encoded>
			<wfw:commentRss>http://scoop.simplyexcited.co.uk/2007/07/04/deploying-with-capistrano-vps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Everyday Scripting with Ruby &#8211; Book Review</title>
		<link>http://scoop.simplyexcited.co.uk/2007/06/24/everyday-scripting-with-ruby-book-review/</link>
		<comments>http://scoop.simplyexcited.co.uk/2007/06/24/everyday-scripting-with-ruby-book-review/#comments</comments>
		<pubDate>Sun, 24 Jun 2007 20:19:19 +0000</pubDate>
		<dc:creator>pyrat</dc:creator>
				<category><![CDATA[Chat]]></category>
		<category><![CDATA[Guides]]></category>
		<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://scoop.cheerfactory.co.uk/2007/06/24/everyday-scripting-with-ruby-book-review/</guid>
		<description><![CDATA[	

	I recently finished Everyday Scripting with Ruby   written by Brian Marick

	Apart from using the pickaxe as a reference this is the first book on pure ruby that I have read. One big advantage that this book has is it uses ruby in a different context instead of the &#226;&#8364;&#339;rails way&#226;&#8364;? that I am [...]]]></description>
			<content:encoded><![CDATA[	<p><img src="http://scoop.simplyexcited.co.uk/images/evsr.jpg" /></p>

	<p>I recently finished <a href="http://www.pragmaticprogrammer.com/titles/bmsft/">Everyday Scripting with Ruby</a>   written by <a href="http://www.testing.com/">Brian Marick</a></p>

	<p>Apart from using the pickaxe as a reference this is the first book on pure ruby that I have read. One big advantage that this book has is it uses ruby in a different context instead of the &#226;&#8364;&#339;rails way&#226;&#8364;? that I am used to.</p>

	<p>Over the last year I have been writing more and more scripts; mostly in Ruby and Bash. I have written everything from basic copy scripts to a more complicated website crawler called the harvester. I wont speak any more about the harvester as I am not proud of its application! It was great to read a book about the black art of scripting and get a strong grasp of how Ruby can be utilised in this context.</p>

	<p>I thoroughly recommend getting this book and reading it cover to cover. The book starts easy then progresses in difficulty so is more of a cover to cover read than a reference. Apart from the chapter on regular expressions which is the most detailed description of ruby regular expressions I have seen to date.<br />
<h2><span class="caps">TDD</span></h2><br />
Brian also mentions <a href="http://en.wikipedia.org/wiki/Test_driven_development"><span class="caps">TDD</span></a> very early on and manages to do well to enforce it throughout the book. I definitely go for the <span class="caps">TDD</span> approach when developing rails applications and plugins (wrote my first last week!) but have yet to use it for script development.</p>

	<p>I am of the mind that <span class="caps">TDD</span> is great if you go as far as to start extracting methods to a class. If however, you are just writing a simple single stream script as I mostly do, it is not worthwhile writing tests for something simple and throw-away.<br />
<h2>Driving the Browser</h2><br />
(http://www.openqa.org/selenium/)<br />
There is an interesting section in browser control which I did not know about. There is <a href="http://wtr.rubyforge.org/">Watir</a> and <a href="http://www.openqa.org/selenium/">Selenium</a> which can be used to control browsers from within ruby.</p>

	<p>There is also the <strong>mechanize</strong> ruby gem which can be used to build simple crawlers. This is interesting when you think about what is possible. I remember back in the day Alistair Burns and I wrote a bot for planetarion which would login every few hours and then send an email to your phone if you were under attack. We wrote it in <span class="caps">PHP4</span> and it was a fairly dirty script. Nowadays you could do the same in ruby in an embarrassingly little amount of lines.<br />
<h2>Modules, Classes and Monkey Patching</h2><br />
There is a great description of the above and when you should do each. Shoud what you are writing be a module or a class. Do you just monkey patch to solve the problem? All is explained here.</p>

	<p>Top marks for this book. Buy it if you can.</p>
 ]]></content:encoded>
			<wfw:commentRss>http://scoop.simplyexcited.co.uk/2007/06/24/everyday-scripting-with-ruby-book-review/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Buachaille Etive Mor and Mountain Navigation</title>
		<link>http://scoop.simplyexcited.co.uk/2007/06/04/buchaille-etive-mor-and-mountain-navigation/</link>
		<comments>http://scoop.simplyexcited.co.uk/2007/06/04/buchaille-etive-mor-and-mountain-navigation/#comments</comments>
		<pubDate>Mon, 04 Jun 2007 08:48:24 +0000</pubDate>
		<dc:creator>pyrat</dc:creator>
				<category><![CDATA[Chat]]></category>
		<category><![CDATA[Guides]]></category>
		<category><![CDATA[Outdoor]]></category>

		<guid isPermaLink="false">http://scoop.cheerfactory.co.uk/2007/06/04/buchaille-etive-mor-and-mountain-navigation/</guid>
		<description><![CDATA[	

	Buachaille Etive Mor (The big herdsman of the glen) is an iconic scottish hill / ridge line in glencoe.

	It makes a great point to point hill run as I found out yesterday with Robert Munro.

	

	As you can see by the route it is a point to point run starting at Lagangarbh and finishing at Dalness. [...]]]></description>
			<content:encoded><![CDATA[	<p><img src="http://scoop.simplyexcited.co.uk/images/buchaille-etive-mor.jpg" /></p>

	<p>Buachaille Etive Mor (The big herdsman of the glen) is an iconic scottish hill / ridge line in glencoe.</p>

	<p>It makes a great point to point hill run as I found out yesterday with Robert Munro.</p>

	<p><a href="http://farm2.static.flickr.com/1065/529388386_8cc92def00_o.jpg"><img src="http://farm2.static.flickr.com/1065/529388386_0ac96c6f3f_m.jpg" /></a></p>

	<p>As you can see by the route it is a point to point run starting at Lagangarbh and finishing at Dalness. We achievied this using 2 cars but you could quite as easily drive to dalness with one car then hitch a lift to the start.</p>

	<p>In terms of the details of the route, there is a fairly good path the whole way to keep you right.</p>

	<p>However, the mist was down yesterday and a word of warning, a map and compass is required for this route and it was very handy yesterday in the thick mist.</p>

	<p>You can see by the route that we made a couple of errors on the tops. After we arrived at the summits we did not check our direction the first few times and this caused us to run down the wrong ridge / corrie.<br />
<ul></p>
	<p><li>Always check your compass when you are about to descend.</li><br />
</ul></p>
	<p>The run took 3 hours 5 minutes; a good jaunt for a Sunday.</p>

	<p>We stopped at the <a href="http://www.incallander.co.uk/realfood.htm">Real Food Cafe</a> on the way back for some tasty food. I had a top class Lamb Burger.</p>

	<p>I was thinking about getting a soup but then saw that it was &#194;&#163;3.25!! so I went hungry and ate smart price bourbons in the car instead.</p>
 ]]></content:encoded>
			<wfw:commentRss>http://scoop.simplyexcited.co.uk/2007/06/04/buchaille-etive-mor-and-mountain-navigation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Freelancing&#8230;from a beginner&#8217;s perspective</title>
		<link>http://scoop.simplyexcited.co.uk/2007/04/18/freelancingfrom-a-beginners-perspective/</link>
		<comments>http://scoop.simplyexcited.co.uk/2007/04/18/freelancingfrom-a-beginners-perspective/#comments</comments>
		<pubDate>Wed, 18 Apr 2007 10:18:52 +0000</pubDate>
		<dc:creator>pyrat</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Freelancing]]></category>
		<category><![CDATA[Guides]]></category>

		<guid isPermaLink="false">http://scoop.cheerfactory.co.uk/2007/04/18/freelancingfrom-a-beginners-perspective/</guid>
		<description><![CDATA[	As I said in my last post, I have recently become self-employed, freelancing my design skills.

	I thought I would cover some of the issues I have come across so far, and some of the resources I have found helpful.

	First, the problems/issues:

	It can be lonely. I am very happy in my own company. I always have [...]]]></description>
			<content:encoded><![CDATA[	<p>As I said in my last post, I have recently become self-employed, freelancing my design skills.</p>

	<p>I thought I would cover some of the issues I have come across so far, and some of the resources I have found helpful.</p>

	<p>First, the problems/issues:</p>

	<p><strong>It can be lonely.</strong> I am very happy in my own company. I always have been. But sometimes you just want people to bounce ideas off, or just banter with for 5 minutes when the particular task you are trying to achieve is driving you crazy. I find that this can be overcome by completely switching off from what you were doing, just like you would be if you wandered over to chat to a colleague for 5 minutes. For smaller problems, I find checking my personal email, looking at design inspiration websites, or looking at friends&#8217; sites or flickr accounts is enough to get me back on track. For severe mental block, either a trip to the living room to watch half an hour of recorded TV shows, or a 30 min walk will do the trick. Which brings me to&#8230;</p>

	<p><strong>Motivating yourself could become a problem.</strong> It can be hard to define boundaries when you work from home. Your living space and work space become a little too close for comfort sometimes. It could (and I have to say that so far this has not happened to me) become very easy to get up late, finish early, watch a little too much daytime TV, let a friend stay a little too long when he stops by, etc. On occasion, these are perks of working for yourself, granted. But if they occur too often, you won&#8217;t get anything done. Working in the field that I do, I could feasibly work any hours I wanted to, but I dont think my girlfriend would be too impressed if I became nocturnal. And neither would my clients, I assume. They (generally) work &#8216;office&#8217; hours, so they (quite rightly) expect me to be available at the same time. I have deliberately set out to start off on the right foot, keeping &#8216;office&#8217; hours at least. I generally work longer than that though.  Which leads nicely to&#8230;</p>

	<p><strong>It can be hard to switch off.</strong> With the work/home divide so blurred, it could be easy to go the other way, and never be able to switch off. There is always time to send one last email, make one last change to that document, etc. It is all to easy to answer the business phone at 11pm. But I really do agree with a lot of articles I have read that advise freelancers to beware of communication with clients outside normal working hours. The idea being that once the client gets one or two communications from you outside normal hours, they will think it is OK to contact you any time. There are always exceptions to this, where communications at 11pm need to take place, but try and keep them to a minimum. And the more you do little bits of work at night, the less you will be able to relax, and that will ultimately make you less productive during your proper working days. I also always keep a Sunday work free. I think this is very important. It is not good for anyone to work 7 days a week for any extended period of time. You need one day of relaxation and fun and not worrying about work at all.</p>

	<p>These are just a few of the issues I have come across so far. I&#8217;m positive there are many more lurking around the corner, not least the anxiety about money and the problems of getting paid. I am learning all the time, not just about design now, but also about business. I hope to talk about these issues here as and when they arise.<br />
I found these articles very helpful with regard to these issues:<br />
<a target="_blank" title="Working From Home Tips" href="http://www.lifehack.org/articles/lifehack/five-common-working-at-home-problems-solved.html">Five Common Working At Home Problems Solved</a></p>

	<p><a target="_blank" href="http://webworkerdaily.com/2007/04/12/be-productively-unproductive-online-without-guilt/">Being Productively Unproductive</a></p>

	<p><a target="_blank" href="http://webworkerdaily.com/2007/04/04/five-steps-to-productive-mood/">Five steps to get yourself in a mood to work </a></p>

	<p>And now the upsides. Do I really need to discuss the upsides? Flexible hours, no boss, no potentially characterless dingy office, no irritation coworkers, your own music (this is a big thing for me), the list goes on.</p>

	<p>And finally a couple of sites which I am finding particularly helpful while starting up on my own:</p>

	<p><a target="_blank" href="http://webworkerdaily.com">Web Worker Daily</a></p>

	<p><a target="_blank" href="http://freelanceswitch.com">Freelance Switch</a></p>

	<p>and a giant resource worth checking out:</p>

	<p><a title="Permanent Link to 101 Essential Freelancing Resources" rel="bookmark" href="http://freelanceswitch.com/general/101-essential-freelancing-resources/">101 Essential Freelancing Resources</a></p>

	<p>I hope this article has helped someone who is starting out, or thinking about it. Coming soon: more problems, solutions, resources and possibly an anecdote or two.</p>
 ]]></content:encoded>
			<wfw:commentRss>http://scoop.simplyexcited.co.uk/2007/04/18/freelancingfrom-a-beginners-perspective/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A life online: living decentralised still hot</title>
		<link>http://scoop.simplyexcited.co.uk/2007/02/12/a-life-online-living-decentralised-still-hot/</link>
		<comments>http://scoop.simplyexcited.co.uk/2007/02/12/a-life-online-living-decentralised-still-hot/#comments</comments>
		<pubDate>Mon, 12 Feb 2007 12:55:39 +0000</pubDate>
		<dc:creator>pyrat</dc:creator>
				<category><![CDATA[Guides]]></category>

		<guid isPermaLink="false">http://scoop.cheerfactory.co.uk/2007/02/12/a-life-online-living-decentralised-still-hot/</guid>
		<description><![CDATA[	I wrote a white paper for Mercurytide, the company I used to work for almost a year ago titled A life online: living decentralised and it is still hot according to google blog search.

	

	Essentially it discusses &#8220;how to use Web 2.0 applications to create an online platform&#8221;
http://www.mercurytide.com/whitepapers/life-online/
 ]]></description>
			<content:encoded><![CDATA[	<p>I wrote a white paper for <a href="http://www.mercurytide.com">Mercurytide</a>, the company I used to work for almost a year ago titled <strong>A life online: living decentralised</strong> and it is still hot according to google blog search.</p>

	<p><img src="/images/javaforfood.jpg" /></p>

	<p>Essentially it discusses &#8220;how to use Web 2.0 applications to create an online platform&#8221;<br />
<a href="http://www.mercurytide.com/whitepapers/life-online/">http://www.mercurytide.com/whitepapers/life-online/</a></p>
 ]]></content:encoded>
			<wfw:commentRss>http://scoop.simplyexcited.co.uk/2007/02/12/a-life-online-living-decentralised-still-hot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple Google Analytics Guide</title>
		<link>http://scoop.simplyexcited.co.uk/2007/01/10/simple-google-analytics-guide/</link>
		<comments>http://scoop.simplyexcited.co.uk/2007/01/10/simple-google-analytics-guide/#comments</comments>
		<pubDate>Wed, 10 Jan 2007 17:51:59 +0000</pubDate>
		<dc:creator>pyrat</dc:creator>
				<category><![CDATA[Guides]]></category>

		<guid isPermaLink="false">http://scoop.cheerfactory.co.uk/?p=3</guid>
		<description><![CDATA[	Welcome to the cheer factory blog as an initial post I am covering the bare essentials to getting your site setup with Google Analytics.

	Google analytics is a free service to provide website statistics. To get started you need a google account, then create an analytics account using this username / password.

	From here you can add [...]]]></description>
			<content:encoded><![CDATA[	<p>Welcome to the cheer factory blog as an initial post I am covering the bare essentials to getting your site setup with Google Analytics.</p>

	<p><a title="Google analytics" href="http://www.google.com/analytics/">Google analytics</a> is a free service to provide website statistics. To get started you need a <a title="Google accounts" href="https://www.google.com/accounts/Login">google account</a>, then create an analytics account using this username / password.</p>

	<p>From here you can add a website profile as shown below.</p>

	<p><img width="360" height="213" alt="add website profile" title="add website profile" src="http://www.cheerfactory.co.uk/images/blog/add_website_profile.jpg" /><br />
<span style="font-size: 12pt; font-family: Arial">This takes you to a simple page which contains the following form.</span></p>

	<p><span style="font-size: 12pt; font-family: Arial"><img width="350" height="148" alt="create new profile" title="create new profile" src="http://www.cheerfactory.co.uk/images/blog/create_new_profile.jpg" /></span></p>

	<p>Tracking code is then generated. This should appear on every page on the site that you want to be tracked. Is the site has been well developed there should be only one or two layout templates and hopefully only one footer. Hopefully this should only need pasted in one location if you work by <a title="dont repeat yourself<a href="//en.wikipedia.org/wiki/Don%27t_repeat_yourself"><span class="caps">DRY</span></a" title=""> href=</a>> as much as possible.</p>

	<p><img width="343" height="122" alt="example tracking code" title="example tracking code" src="http://www.cheerfactory.co.uk/images/blog/example_tracking_code.jpg" /></p>

	<p>After the site is setup and gathering stats you can go in a view the stats. Also, user accounts can be added to specific sites so you can give clients direct access to the statistics. An example overview page is shown below.</p>

	<p><img width="302" height="219" alt="example overview" title="example overview" src="http://www.cheerfactory.co.uk/images/blog/example_overview_stats.jpg" /></p>

	<p>Thats all for now! Thanks for reading.</p>
 ]]></content:encoded>
			<wfw:commentRss>http://scoop.simplyexcited.co.uk/2007/01/10/simple-google-analytics-guide/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

