<?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>Self Conclusion</title>
	<atom:link href="http://selfconclusion.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://selfconclusion.co.uk</link>
	<description></description>
	<lastBuildDate>Sun, 28 Jun 2009 01:01:14 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Tutorial: Display your Google Feedburner count on your Website</title>
		<link>http://selfconclusion.co.uk/2009/06/displaying-your-feedburner-count/</link>
		<comments>http://selfconclusion.co.uk/2009/06/displaying-your-feedburner-count/#comments</comments>
		<pubDate>Sun, 28 Jun 2009 00:59:28 +0000</pubDate>
		<dc:creator>Stu</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[feedburner]]></category>
		<category><![CDATA[rss count]]></category>
		<category><![CDATA[subscribers]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://selfconclusion.co.uk/?p=395</guid>
		<description><![CDATA[Following on from my tutorial that shows you how to display your latest Tweet on your website, I will now show you how to show of your Feedburner subscribers count in plain text on your website. Feedburner does already give you the option to display your count on your site using their 'chicklets' but these are widget like icons that aren't particularly customizable and for my site, they did not look right!]]></description>
			<content:encoded><![CDATA[<p>Following on from my tutorial that shows you how to display your latest Tweet on your website, I will now show you how to show of your Feedburner subscribers count in plain text on your website. Feedburner does already give you the option to display your count on your site using their &#8216;chicklets&#8217; but these are widget like icons that aren&#8217;t particularly customizable and for my site, they did not look right!</p>
<p>The advantage of been able to display your subscibers count in plain text is that you can customize it endlessly! You can even use jQuery to add the hover over &#8217;show count&#8217; effect you often see on RSS icons. Needless to say, this way is much better then the Feedburner chicklets.</p>
<p>Right, first thing you need to do is use a bit of code to pull the count, and second you need to display it on your site. This first bit of code needs to be somewere near the top of your page, like your header&#8230;</p>

<div class="wp_syntax"><div class="code"><pre class="php php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #000088;">$temp</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;https://feedburner.google.com/api/awareness/1.0/GetFeedData?uri=FEEDBURNERID&quot;</span>;
&nbsp;
<span style="color: #000088;">$ch</span> <span style="color: #339933;">=</span> curl_init<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>;
curl_setopt<span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #339933;">,</span> CURLOPT_RETURNTRANSFER<span style="color: #339933;">,</span> <span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span>;
curl_setopt<span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #339933;">,</span> CURLOPT_URL<span style="color: #339933;">,</span> <span style="color: #000088;">$temp</span><span style="color: #009900;">&#41;</span>;
<span style="color: #000088;">$data</span> <span style="color: #339933;">=</span> curl_exec<span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #009900;">&#41;</span>;
curl_close<span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #009900;">&#41;</span>;
<span style="color: #000088;">$xml</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> SimpleXMLElement<span style="color: #009900;">&#40;</span><span style="color: #000088;">$data</span><span style="color: #009900;">&#41;</span>;
&nbsp;
<span style="color: #000088;">$feedcount</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$xml</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">feed</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">entry</span><span style="color: #009900;">&#91;</span><span style="">'circulation'</span><span style="color: #009900;">&#93;</span>;
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>Don&#8217;t forget to change where it says <strong>FEEDBURNERID</strong> to the Feedburner ID relivant to your account. Now that you have the feed count in the variable <strong>$feedcount</strong> you are free to display it on your site, for example&#8230;</p>

<div class="wp_syntax"><div class="code"><pre class="php php" style="font-family:monospace;">There are currently <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #990000;">echo</span> <span style="color: #000088;">$feedcount</span>; <span style="color: #000000; font-weight: bold;">?&gt;</span> subscribers.</pre></div></div>

<p>The script requires PHP5, so if you are encountering any errors, then it is likely your are running an older version of PHP, otherwise, you may have used an incorrect Feedburner ID. Also please note that this script is for Google Feedburner accounts. Google acquired Feedburner a while back so if you haven&#8217;t converted your Feedburner account into a Google one then you will need to do so before you use this script.</p>
]]></content:encoded>
			<wfw:commentRss>http://selfconclusion.co.uk/2009/06/displaying-your-feedburner-count/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Postable &#8211; Life saver for them cut and paste jobs!</title>
		<link>http://selfconclusion.co.uk/2009/06/postable-for-cut-and-paste-jobs/</link>
		<comments>http://selfconclusion.co.uk/2009/06/postable-for-cut-and-paste-jobs/#comments</comments>
		<pubDate>Sat, 27 Jun 2009 23:56:22 +0000</pubDate>
		<dc:creator>Stu</dc:creator>
				<category><![CDATA[Bitesize]]></category>

		<guid isPermaLink="false">http://selfconclusion.co.uk/?p=391</guid>
		<description><![CDATA[I just came across this which I find very useful, its a site called Postable by Elliot Swan and it converts any text into code friendly text, which is great for them cut and paste jobs.
I often find myself making web updates for clients and having to copy large amounts of text from a Word [...]]]></description>
			<content:encoded><![CDATA[<p>I just came across this which I find very useful, its a site called Postable by <a href="http://www.elliotswan.com/">Elliot Swan</a> and it converts any text into code friendly text, which is great for them cut and paste jobs.</p>
<p>I often find myself making web updates for clients and having to copy large amounts of text from a Word document, and I usually find myself uploading the copy to find I have actually missed a cheeky ampersands or pound sign somewhere on the page and not converted into the proper code format (eg. &amp; or &pound;). This is where postable comes in handy, as all you do is copy your text into the box provided on the website and hit the &#8216;make it friendly&#8217; button. Postable will look for these things and convert the for you, saving a lot of time!</p>
<p>Check out the site at&#8230;</p>
<p><a href="http://www.elliotswan.com/postable/">http://www.elliotswan.com/postable/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://selfconclusion.co.uk/2009/06/postable-for-cut-and-paste-jobs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Grid Templates on the Fly</title>
		<link>http://selfconclusion.co.uk/2009/06/css-grid-templates-on-the-fly/</link>
		<comments>http://selfconclusion.co.uk/2009/06/css-grid-templates-on-the-fly/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 12:36:48 +0000</pubDate>
		<dc:creator>Stu</dc:creator>
				<category><![CDATA[Bitesize]]></category>

		<guid isPermaLink="false">http://selfconclusion.co.uk/?p=389</guid>
		<description><![CDATA[Came across this site yesterday, which lets you download custom CSS Grid templates made as you want them. You can choose number of columns, the column widths and the gutter width.
http://www.1kbgrid.com/
]]></description>
			<content:encoded><![CDATA[<p>Came across this site yesterday, which lets you download custom CSS Grid templates made as you want them. You can choose number of columns, the column widths and the gutter width.</p>
<p><a href="http://www.1kbgrid.com/">http://www.1kbgrid.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://selfconclusion.co.uk/2009/06/css-grid-templates-on-the-fly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Tools for Developers</title>
		<link>http://selfconclusion.co.uk/2009/06/css-tools-for-developers/</link>
		<comments>http://selfconclusion.co.uk/2009/06/css-tools-for-developers/#comments</comments>
		<pubDate>Sat, 20 Jun 2009 00:01:36 +0000</pubDate>
		<dc:creator>Stu</dc:creator>
				<category><![CDATA[Bitesize]]></category>

		<guid isPermaLink="false">http://selfconclusion.co.uk/?p=387</guid>
		<description><![CDATA[Here is a nice list of developer tools available to us Designer/Developer type :) based around CSS mainly tho, worth checking out! Thanks to W3Avenue for the list! :)
http://www.w3avenue.com/2009/05/04/list-of-really-useful-tools-for-css-developers/
]]></description>
			<content:encoded><![CDATA[<p>Here is a nice list of developer tools available to us Designer/Developer type :) based around CSS mainly tho, worth checking out! Thanks to <a href="http://www.w3avenue.com">W3Avenue</a> for the list! :)</p>
<p><a href="http://www.w3avenue.com/2009/05/04/list-of-really-useful-tools-for-css-developers/">http://www.w3avenue.com/2009/05/04/list-of-really-useful-tools-for-css-developers/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://selfconclusion.co.uk/2009/06/css-tools-for-developers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tutorial: Display your Latest Tweet on your Website</title>
		<link>http://selfconclusion.co.uk/2009/06/displaying-your-latest-tweet/</link>
		<comments>http://selfconclusion.co.uk/2009/06/displaying-your-latest-tweet/#comments</comments>
		<pubDate>Sat, 13 Jun 2009 16:11:11 +0000</pubDate>
		<dc:creator>Stu</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://selfconclusion.co.uk/?p=374</guid>
		<description><![CDATA[You will have noticed that I display my latest Tweet in the header of my website (look up). Until recently I have been using the Twitter for WordPress plug-in, but I was experiencing problems and 9/10 times my page loaded I would get the error message instead on my Tweet! This became increasingly frustrating, as my site would get featured on someone else's blog and the screenshot would contain this error message.]]></description>
			<content:encoded><![CDATA[<p>You will have noticed that I display my latest Tweet in the header of my website (look up). Until recently I have been using the <a href="http://rick.jinlabs.com/code/twitter/">Twitter for WordPress</a> plug-in, but I was experiencing problems and 9/10 times my page loaded I would get the error message instead on my Tweet! This became increasingly frustrating, as my site would get featured on someone else&#8217;s blog and the screenshot would contain this error message. After persevering with this plugin and contacting the author, I came to the conclusion I need to look elsewere.</p>
<p>Anyway, less of the chatter Stu! Here&#8217;s the code&#8230;.</p>

<div class="wp_syntax"><div class="code"><pre class="php php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #000088;">$username</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;TwitterUsername&quot;</span>; <span style="color: #666666; font-style: italic;">// Your twitter username.</span>
<span style="color: #000088;">$prefix</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;&quot;</span>; <span style="color: #666666; font-style: italic;">// Prefix - some text you want displayed before your latest tweet.</span>
<span style="color: #000088;">$suffix</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;&quot;</span>; <span style="color: #666666; font-style: italic;">// Suffix - some text you want display after your latest tweet.</span>
<span style="color: #000088;">$feed</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;http://search.twitter.com/search.atom?q=from:&quot;</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$username</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;&amp;rpp=1&quot;</span>;
&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> parse_feed<span style="color: #009900;">&#40;</span><span style="color: #000088;">$feed</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
<span style="color: #000088;">$stepOne</span> <span style="color: #339933;">=</span> <span style="color: #990000;">explode</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;&lt;content type=<span style="color: #000099; font-weight: bold;">\&quot;</span>html<span style="color: #000099; font-weight: bold;">\&quot;</span>&gt;&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$feed</span><span style="color: #009900;">&#41;</span>;
<span style="color: #000088;">$stepTwo</span> <span style="color: #339933;">=</span> <span style="color: #990000;">explode</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;&lt;/content&gt;&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$stepOne</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span>;
<span style="color: #000088;">$tweet</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$stepTwo</span><span style="color: #009900;">&#91;</span><span style="color:#800080;">0</span><span style="color: #009900;">&#93;</span>;
<span style="color: #000088;">$tweet</span> <span style="color: #339933;">=</span> <span style="color: #990000;">str_replace</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;&amp;lt;&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;&lt;&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$tweet</span><span style="color: #009900;">&#41;</span>;
<span style="color: #000088;">$tweet</span> <span style="color: #339933;">=</span> <span style="color: #990000;">str_replace</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;&amp;gt;&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;&gt;&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$tweet</span><span style="color: #009900;">&#41;</span>;
<span style="color: #b1b100;">return</span> <span style="color: #000088;">$tweet</span>;
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #000088;">$twitterFeed</span> <span style="color: #339933;">=</span> <span style="color: #990000;">file_get_contents</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$feed</span><span style="color: #009900;">&#41;</span>;
<span style="color: #990000;">echo</span> <span style="color: #990000;">stripslashes</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$prefix</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> parse_feed<span style="color: #009900;">&#40;</span><span style="color: #000088;">$twitterFeed</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #990000;">stripslashes</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$suffix</span><span style="color: #009900;">&#41;</span>;
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>Make sure you change the &#8216;<strong>TwitterUsername</strong>&#8216; to your own Twitter Username. If you want to keep your code clean, then you can move this script into your header tags, but you will need to change this line:</p>

<div class="wp_syntax"><div class="code"><pre class="php php" style="font-family:monospace;"><span style="color: #990000;">echo</span> <span style="color: #990000;">stripslashes</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$prefix</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> parse_feed<span style="color: #009900;">&#40;</span><span style="color: #000088;">$twitterFeed</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #990000;">stripslashes</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$suffix</span><span style="color: #009900;">&#41;</span>;</pre></div></div>

<p>to this:</p>

<div class="wp_syntax"><div class="code"><pre class="php php" style="font-family:monospace;"><span style="color: #000088;">$tweet</span> <span style="color: #339933;">=</span> <span style="color: #990000;">stripslashes</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$prefix</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> parse_feed<span style="color: #009900;">&#40;</span><span style="color: #000088;">$twitterFeed</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #990000;">stripslashes</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$suffix</span><span style="color: #009900;">&#41;</span>;</pre></div></div>

<p>Then you can just call this variable later on in your code where you want your Tweet to be displayed. Finally, I just want to mention that if you come across the following error:</p>
<p><strong>Warning: file_get_contents(): URL file-access is disabled</strong></p>
<p>You will need to do one of the following:</p>
<ul>
<li>Edit your PHP.ini file (usually located in /etc/php.ini) and make sure this line is in it:<br />
<strong>allow_url_fopen = On</strong></li>
<li>Create a file called &#8220;.htaccess&#8221; in your website root directory with the following line:<br />
<strong>php_value allow_url_fopen on</strong></li>
</ul>
<p>This should sort out the problem, but if you need any more help then leave a comment and I will gladly help! If the whole process went smoothly, then you should be appreciating your Latest Tweet on your website just like me!</p>
]]></content:encoded>
			<wfw:commentRss>http://selfconclusion.co.uk/2009/06/displaying-your-latest-tweet/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Twitter beta &#8216;Verified Accounts&#8217; feature</title>
		<link>http://selfconclusion.co.uk/2009/06/twitter-beta-verified-accounts-feature/</link>
		<comments>http://selfconclusion.co.uk/2009/06/twitter-beta-verified-accounts-feature/#comments</comments>
		<pubDate>Sat, 13 Jun 2009 14:38:49 +0000</pubDate>
		<dc:creator>Stu</dc:creator>
				<category><![CDATA[Social Networking]]></category>

		<guid isPermaLink="false">http://selfconclusion.co.uk/?p=370</guid>
		<description><![CDATA[Today I read of a new feature Twitter has announced, which is 'Verified Accounts'. This new feature will no doubt be Twitters attempt at minimizing impersonation and identity confusion, which is becoming more of a problem as more and more celebrities sign up to get an account.]]></description>
			<content:encoded><![CDATA[<p>Today I read of a new feature Twitter has announced, which is &#8216;Verified Accounts&#8217;. This new feature will no doubt be Twitters attempt at minimizing impersonation and identity confusion, which is becoming more of a problem as more and more celebrities sign up to get an account.</p>
<p>I have often found myself wondering if the celebs I am following are in fact actually them or just some crazed obsessed fan wanting 15 minutes of fame pretending to be there idol, and until now I have had no way of confirming my suspicitions.</p>
<p>The &#8216;Verified Account&#8217; feature will add a badge to your Twitter page showing you are in fact who you say you are, and I guess give all the followers of that person peice of mind. I think this is a really good step from Twitter and very well timed, as the sites popularity is still rocketing, this will help cut out the crap so to speak!</p>
<p>To become &#8216;Verified&#8217; you need to fill out a feedback form from the link below, but for now I think they are only dealing with users who have had re-occuring problems with people trying to impersonate them, or celebrity characters.</p>
<p><a href="http://twitter.com/help/verified">http://twitter.com/help/verified</a></p>
]]></content:encoded>
			<wfw:commentRss>http://selfconclusion.co.uk/2009/06/twitter-beta-verified-accounts-feature/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>For anyone who is also confused with Lost!</title>
		<link>http://selfconclusion.co.uk/2009/06/lost-timeline-recap/</link>
		<comments>http://selfconclusion.co.uk/2009/06/lost-timeline-recap/#comments</comments>
		<pubDate>Thu, 11 Jun 2009 23:36:08 +0000</pubDate>
		<dc:creator>Stu</dc:creator>
				<category><![CDATA[Bitesize]]></category>

		<guid isPermaLink="false">http://selfconclusion.co.uk/?p=366</guid>
		<description><![CDATA[If your like me and the hit TV show Lost has baffled you with all this time travel stuff then this is a good link for you! I think out of pure guilt that they have aired a show that hurts peoples heads, ABC have made a timeline for us to recap each episode!
Whats great [...]]]></description>
			<content:encoded><![CDATA[<p>If your like me and the hit TV show Lost has baffled you with all this time travel stuff then this is a good link for you! I think out of pure guilt that they have aired a show that hurts peoples heads, ABC have made a timeline for us to recap each episode!</p>
<p>Whats great about it is that on various episodes, you can view video clips showing you the most key things from that particular episode! Heres the link:</p>
<p><a href="http://abc.go.com/primetime/lost/index?pn=timeline">http://abc.go.com/primetime/lost/index?pn=timeline</a></p>
]]></content:encoded>
			<wfw:commentRss>http://selfconclusion.co.uk/2009/06/lost-timeline-recap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ace Form Validation with MooTools</title>
		<link>http://selfconclusion.co.uk/2009/06/ace-form-validation-with-mootools/</link>
		<comments>http://selfconclusion.co.uk/2009/06/ace-form-validation-with-mootools/#comments</comments>
		<pubDate>Thu, 11 Jun 2009 10:41:57 +0000</pubDate>
		<dc:creator>Stu</dc:creator>
				<category><![CDATA[Bitesize]]></category>

		<guid isPermaLink="false">http://selfconclusion.co.uk/?p=364</guid>
		<description><![CDATA[I&#8217;ve been using this on several sites that I have built lately where form validation is vital, especially when the forms are putting data into a database. It&#8217;s fairly easy to setup as long as you include all the files it says too! and it looks great in action.

http://mootools.floor.ch/en/
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using this on several sites that I have built lately where form validation is vital, especially when the forms are putting data into a database. It&#8217;s fairly easy to setup as long as you include all the files it says too! and it looks great in action.<br />
<a href="http://mootools.floor.ch/en/"><br />
http://mootools.floor.ch/en/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://selfconclusion.co.uk/2009/06/ace-form-validation-with-mootools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get Ego on your iPhone</title>
		<link>http://selfconclusion.co.uk/2009/06/ego-for-iphone/</link>
		<comments>http://selfconclusion.co.uk/2009/06/ego-for-iphone/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 23:32:07 +0000</pubDate>
		<dc:creator>Stu</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://selfconclusion.co.uk/?p=355</guid>
		<description><![CDATA[I came across an interesting application today for my iPhone, called Ego. It gives you up to date stats from your Google Analytics, Feedburner, Mint, Squarespace and Twitter accounts all in one neat little Application. The interface is really cool, and slick looking and its very simple to use.]]></description>
			<content:encoded><![CDATA[<p><img align="left" style="margin: 0px 20px 10px 0px;" src="http://selfconclusion.co.uk/images/posts/egoapp/ego.jpg" alt="Ego App" width="228" height="340" />I came across an interesting application today for my iPhone, called Ego. It gives you up to date stats from your Google Analytics, Feedburner, Mint, Squarespace and Twitter accounts all in one neat little Application. The interface is really cool, and slick looking and its very simple to use.</p>
<p>From the settings page, you add a new &#8216;Widget&#8217; which then gives you the option of which account you want to setup, for example, Google Analytics. From here you enter your account details and save, at which point you will get a nice colourful box on the main app screen which will show your accont details.</p>
<p>For me this is great, I have Ego setup to show my Analytics stats for <a href="http://selfconclusion.co.uk">selfconclusion.co.uk</a> as well as my SC feedburner figures and also my main Twitter account.</p>
<p>The default view for the Analytics Widget shows you your page views for that current day, which once tapped, moves onto show you your views for yesterday, then for the week, then for the month, and finally the year. On the left hand side of the box, you also get a unique visitors figure which is handy. I much prefer this app to the Analytics application, because it simplifies things down! When I am on the move I don&#8217;t need to see all my Analytic stats, seeing my page views is enough for me.</p>
<p>Moving onto the Feedburner widget, you are shown a figure that is your number of subscribers which is also joined with an arrow to show you if this figure is down or up on yesterdays figure. If you tap this figure then you get the difference in subscribers from that of yesterday (for example, +2).</p>
<p>Finally, for the Twitter widget, it shows you your latest tweet, and also how many followers you currently have. Once again if you tap this number, it changes, in this case to the number of people you are following, if you tap on it once more you see your total number of tweets to date :)</p>
<p>Anyways, I hope I have explained it simple enough! The app is well worth the £1.19 price tag on the App store! check it out by <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=306785502&#038;mt=8">clicking here</a> [App Store Link]</p>
]]></content:encoded>
			<wfw:commentRss>http://selfconclusion.co.uk/2009/06/ego-for-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pretty Pagination in WordPress</title>
		<link>http://selfconclusion.co.uk/2009/06/pretty-pagination-in-wordpress/</link>
		<comments>http://selfconclusion.co.uk/2009/06/pretty-pagination-in-wordpress/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 17:04:43 +0000</pubDate>
		<dc:creator>Stu</dc:creator>
				<category><![CDATA[Bitesize]]></category>

		<guid isPermaLink="false">http://selfconclusion.co.uk/?p=353</guid>
		<description><![CDATA[This plugin helped me create the nice pagination you see on this very site&#8230;

http://www.lesterchan.net/wordpress/readme/wp-pagenavi.html
]]></description>
			<content:encoded><![CDATA[<p>This plugin helped me create the nice pagination you see on this very site&#8230;<br />
<a href=" http://www.lesterchan.net/wordpress/readme/wp-pagenavi.html"><br />
http://www.lesterchan.net/wordpress/readme/wp-pagenavi.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://selfconclusion.co.uk/2009/06/pretty-pagination-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
