<?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>Alan Hart &#187; General</title>
	<atom:link href="http://www.alanhart.co.uk/archives/category/general/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.alanhart.co.uk</link>
	<description>web design... and other stuff</description>
	<lastBuildDate>Wed, 09 Jun 2010 14:49:54 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Change Juitter Time and Date Format</title>
		<link>http://www.alanhart.co.uk/archives/2010/06/09/change-juitter-time-and-date-format/</link>
		<comments>http://www.alanhart.co.uk/archives/2010/06/09/change-juitter-time-and-date-format/#comments</comments>
		<pubDate>Wed, 09 Jun 2010 11:50:31 +0000</pubDate>
		<dc:creator>Alan Hart</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[format date]]></category>
		<category><![CDATA[format time]]></category>
		<category><![CDATA[jquery.juitter.js]]></category>
		<category><![CDATA[juitter]]></category>
		<category><![CDATA[reformat date and time]]></category>

		<guid isPermaLink="false">http://www.alanhart.co.uk/?p=199</guid>
		<description><![CDATA[Here's how you can reformat the default juitter time and date format...]]></description>
			<content:encoded><![CDATA[<p>As you can see in the sidebar on the left i am using Juitter to retrieve my twitter feed, I didn&#8217;t like the default juitter date format because it&#8217;s rather long (&#8220;ddd,dd mm yyyy hh:mm:ss +0000&#8243;)</p>
<p>Here&#8217;s how you can reformat the default juitter time and date format&#8230;</p>
<p>Just insert the code below into the &#8220;jquery.juitter.js&#8221; file, underneath the line &#8220;var tweet = $.Juitter.filter(item.text);&#8221;</p>
<blockquote><p>// Re-format Date/Time<br />
//get Tweet date<br />
var d=new Date(item.created_at); //Default date/time is when the tweet was published<br />
var tweetdate=d.toLocaleDateString(); //rewrite date in a nicer way<br />
//get Tweet time<br />
var t=new Date(item.created_at);<br />
var tweettime=t.toLocaleTimeString().substr(0,5); //rewrite and remove seconds<br />
//pull it together<br />
var timestamp=&#8221;"+tweetdate+&#8221; at &#8220;+tweettime+&#8221;";<br />
// Reformat Date/Time</p></blockquote>
<p>Then in the few lines below this newly inserted code (the code that generates the HTML) replace &#8220;item.created_at&#8221; with &#8220;timestamp&#8221;</p>
<p>Simple!</p>
<p><em style="font-size: smaller;">main date conversion taken from: http://www.ibrii.com/n/f317z</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.alanhart.co.uk/archives/2010/06/09/change-juitter-time-and-date-format/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Some useful web design links</title>
		<link>http://www.alanhart.co.uk/archives/2010/06/08/a-few-useful-web-design-links/</link>
		<comments>http://www.alanhart.co.uk/archives/2010/06/08/a-few-useful-web-design-links/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 11:52:57 +0000</pubDate>
		<dc:creator>Alan Hart</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[brushes]]></category>
		<category><![CDATA[css tips]]></category>
		<category><![CDATA[CSS transparency]]></category>
		<category><![CDATA[geeky]]></category>
		<category><![CDATA[html tips]]></category>
		<category><![CDATA[icons]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[vector art]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.alanhart.co.uk/?p=189</guid>
		<description><![CDATA[Here are a few useful geeky/webdesign links i've stumble across/used recently]]></description>
			<content:encoded><![CDATA[<p>Here are some geeky/webdesign thinga-ma-bobs i&#8217;ve stumbled across/used recently:</p>
<h2>Regular Expressions Cheat Sheet</h2>
<p>a very handy quick reference guide for regular expressions, including symbols, ranges, grouping, assertions and some sample patterns for beginners.<br />
<a href="http://www.addedbytes.com/cheat-sheets/regular-expressions-cheat-sheet/">http://www.addedbytes.com/cheat-sheets/regular-expressions-cheat-sheet/</a></p>
<hr />
<h2>CSS Transparency</h2>
<p><strong><em>used on this site so you can see the background image behind content on smaller screen resoltions</em></strong><br />
Transparency is one of those weird things that is treated completely differently in all browsers.<br />
don&#8217;t forget to read the comments at the bottom of this article too:<br />
<a href="http://css-tricks.com/css-transparency-settings-for-all-broswers/">http://css-tricks.com/css-transparency-settings-for-all-broswers/</a></p>
<hr />
<h2>Twitter &#8220;Retweet&#8221; Button</h2>
<p>The <em>Retweet</em> button is for website and blog publishers that want to encourage their audience to retweet their content on <a href="http://www.twitter.com/" target="_blank">twitter</a>.<br />
Here&#8217;s a really smart bit of code using one simple piece of JavaScript to give up to date tweet counts and shorten your title and link for the retweets. Best of all it will work on any web page, anywhere!<br />
<a href="http://help.tweetmeme.com/2009/04/06/tweetmeme-button/">http://help.tweetmeme.com/2009/04/06/tweetmeme-button/</a></p>
<hr />
<h2>Dezignus.com</h2>
<p>Vector art, icons, brushes, textures, wallpapers, anime, girls, tutorials&#8230; nuff said!<br />
<a href="http://dezignus.com/">http://dezignus.com/</a></p>
<p>if you found any of these useful, please tweet/share.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alanhart.co.uk/archives/2010/06/08/a-few-useful-web-design-links/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>iamnotaspambot on Twitter</title>
		<link>http://www.alanhart.co.uk/archives/2010/05/25/iamnotaspambot/</link>
		<comments>http://www.alanhart.co.uk/archives/2010/05/25/iamnotaspambot/#comments</comments>
		<pubDate>Tue, 25 May 2010 16:19:46 +0000</pubDate>
		<dc:creator>Alan Hart</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[#iamnotaspambot]]></category>
		<category><![CDATA[i am not a spam bot]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.alanhart.co.uk/?p=168</guid>
		<description><![CDATA[Give @iamnotaspambot some love using the hashtag #iamnotaspambot and i'll try and give you a little bit of twitter love in return. ]]></description>
			<content:encoded><![CDATA[<p>Created a new twitter user and unique hashtag <a href="http://twitter.com/iamnotaspambot">@iamnotaspambot</a> and <a href="http://twitter.com/#search?q=%23iamnotaspambot">#iamnotaspambot</a>.</p>
<p>Hoping people may adopt it and maybe even get a trend going. Will have to wait and see how it does.</p>
<p>If you&#8217;re on Twitter why not give <a href="http://twitter.com/iamnotaspambot">@iamnotaspambot</a> some love using the hashtag <a href="http://twitter.com/#search?q=%23iamnotaspambot">#iamnotaspambot</a> and he will try and give you a little bit of twitter love in return.</p>
<p>Comments on this post are moderated so may not appear instantly.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alanhart.co.uk/archives/2010/05/25/iamnotaspambot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Modelio Photo Retouching</title>
		<link>http://www.alanhart.co.uk/archives/2010/04/30/modelio-photo-retouching/</link>
		<comments>http://www.alanhart.co.uk/archives/2010/04/30/modelio-photo-retouching/#comments</comments>
		<pubDate>Fri, 30 Apr 2010 14:16:53 +0000</pubDate>
		<dc:creator>Alan Hart</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Modelio]]></category>
		<category><![CDATA[Photo editing]]></category>
		<category><![CDATA[Photo Restoration]]></category>
		<category><![CDATA[Photo Retouching]]></category>
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://www.alanhart.co.uk/?p=156</guid>
		<description><![CDATA[Modelio photo editing and retouching, website update.]]></description>
			<content:encoded><![CDATA[<p>Have recently updated the <a href="http://www.modelio.co.uk" title="Modelio Photo Retouching and Editing">Modelio</a> website. Have changed the design slightly, and now have user registration and photo uploads for registered users. </p>
<p><a href="http://www.modelio.co.uk" title="Modelio Photo Editing and Retouching">Modelio photo editing</a> offer the following and much more:</p>
<p>Cleaning backgrounds (e.g. removing objects / people)<br />
complete background removal.<br />
Fixing digital camera photos that have weird colouration<br />
Level Adjustment<br />
Enhancing slightly blurry/fuzzy images<br />
red eye removal<br />
teeth whitening<br />
stray hair removal<br />
spot/blemish removal etc etc.</p>
<p>Check it out here: <a title="Modelio Professional Photo Editing and Retouching" href="http://www.modelio.co.uk">www.modelio.co.uk</a></p>
<p>Become a fan of <a href="http://www.facebook.com/modelio">Modelio on Facebook</a><br />
Also follow <a href="http://www.twitter.com/modelio">@Modelio</a> on Twitter and add <a href="http://www.myspace.com/modelio-photo-editing">Modelio on MySpace</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alanhart.co.uk/archives/2010/04/30/modelio-photo-retouching/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook too slow? try Facebook Lite, the low-fat facebook</title>
		<link>http://www.alanhart.co.uk/archives/2010/01/28/facebook-too-slow-try-facebook-lite/</link>
		<comments>http://www.alanhart.co.uk/archives/2010/01/28/facebook-too-slow-try-facebook-lite/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 09:50:37 +0000</pubDate>
		<dc:creator>Alan Hart</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[facebook lite]]></category>
		<category><![CDATA[faster facebook]]></category>
		<category><![CDATA[low-fat facebook]]></category>

		<guid isPermaLink="false">http://www.alanhart.co.uk/?p=143</guid>
		<description><![CDATA[That's right, Facebook Lite, a stripped-down version of Facebook that shrinks Facebook down into its core features, making for a much smoother facebook experience.]]></description>
			<content:encoded><![CDATA[<p>This lite version is now now longer available, Facebook decided to remove it.</p>
<p>That&#8217;s right, Facebook Lite, a stripped-down version of Facebook that shrinks Facebook down into its core features, making for a much smoother facebook experience.</p>
<p>This new version of the site is much more simple and cleaner in appearance and appears to be a better site for Facebook newbies or for anyone who finds the current site &#8220;too much&#8221; or noisy. It also does away with the old-school Facebook apps, which is just as well for the newest Facebook-connected services. (although farmtown/farmville addicts will still have to use full-fat facebook to harvest and plow!)</p>
<p>The major visual change in Facebook Lite, compared to the full-fat Facebook &#8220;Classic,&#8221; is simply that most of the the navigation and info page that was on the left of the page is now gone. The user is not distracted by the mostly superfluous details that resided there. The input box is also gone, replaced by buttons (Write, Post Photos, Post Video) that pop down the actual input forms only when needed. </p>
<p>The facebook chat feature is in there too, it&#8217;s not embedded in the facebook page but as a separate &#8220;pop-up&#8221; window instead.</p>
<p>Anyway enough from me, check it out for yourself&#8230; <a href="http://lite.facebook.com" title="facebook lite - low-fat facebook">lite.facebook.com</a></p>
<p>&#8230;enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alanhart.co.uk/archives/2010/01/28/facebook-too-slow-try-facebook-lite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook UnNamed App is not a spybot!</title>
		<link>http://www.alanhart.co.uk/archives/2010/01/27/facebook-un-named-app-is-not-a-spybot/</link>
		<comments>http://www.alanhart.co.uk/archives/2010/01/27/facebook-un-named-app-is-not-a-spybot/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 11:04:34 +0000</pubDate>
		<dc:creator>Alan Hart</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[spybot]]></category>
		<category><![CDATA[spyware]]></category>
		<category><![CDATA[status]]></category>
		<category><![CDATA[un named app]]></category>
		<category><![CDATA[unnamed app]]></category>

		<guid isPermaLink="false">http://www.alanhart.co.uk/?p=138</guid>
		<description><![CDATA[ALERT >>>>> Has your facebook been running slow lately? Go to "Settings" and select "application settings", change the dropdown box to "added to profile". If you see one in there called "un named app" delete it... Its an internal spybot. Pass it on. about a minute ago....i checked and it was on mine. it is NOT a virus or spyware, it is your "Boxes" tab]]></description>
			<content:encoded><![CDATA[<p>People are following the usual activity of updating their facebook status to inform others of scams etc but again by trying to warn others they are in fact doing exactly what the &#8220;scammers&#8221; want.</p>
<p>Here&#8217;s the latest, an &#8220;UnNamed App Internal SpyBot Hoax&#8221;&#8230;</p>
<blockquote><p>
ALERT >>>>> Has your facebook been running slow lately? Go to &#8220;Settings&#8221; and select &#8220;application settings&#8221;, change the dropdown box to &#8220;added to profile&#8221;. If you see one in there called &#8220;un named app&#8221; delete it&#8230; Its an internal spybot. Pass it on. about a minute ago&#8230;.i checked and it was on mine.</p></blockquote>
<p>it is NOT a virus or spyware, <del datetime="2010-01-28T09:03:46+00:00">it is your &#8220;Boxes&#8221; tab, and Facebook is going to be getting rid of it soon, you can remove it yourself from your edit applications list if you want&#8230; not sure if Facebook will be replacing it with something else yet.</del></p>
<p>&#8220;Due to a small bug, an application listed as &#8216;Unnamed App&#8217; appeared in some users&#8217; Applications Settings,&#8221; spokeswoman Malorie Lucich said in an e-mail to CNN. &#8220;No user accounts or data were lost or damaged.&#8221;</p>
<p>Source: <a href="http://edition.cnn.com/2010/TECH/01/27/facebook.bug/">http://edition.cnn.com/2010/TECH/01/27/facebook.bug/</a></p>
<p>Please also be aware that when searching for this on Google I ended up at a page which wil tell you that your pc needs a scan (this is malware/spyware). So please be careful, it seems that whoever started this facebook &#8220;status&#8221; is just trying to get people googling and direct you to this harmful page.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alanhart.co.uk/archives/2010/01/27/facebook-un-named-app-is-not-a-spybot/feed/</wfw:commentRss>
		<slash:comments>44</slash:comments>
		</item>
		<item>
		<title>Google Maps Streetview StoneHenge</title>
		<link>http://www.alanhart.co.uk/archives/2009/12/17/google-maps-streetview-stonehenge/</link>
		<comments>http://www.alanhart.co.uk/archives/2009/12/17/google-maps-streetview-stonehenge/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 16:13:20 +0000</pubDate>
		<dc:creator>Alan Hart</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[GoogleMaps]]></category>
		<category><![CDATA[Stonehenge]]></category>
		<category><![CDATA[StreetView]]></category>

		<guid isPermaLink="false">http://www.alanhart.co.uk/?p=132</guid>
		<description><![CDATA[Google have gone off-road with their StreetView camera and captured Stonehenge.]]></description>
			<content:encoded><![CDATA[<p>I might be a bit slow on this but thought it was interesting enough to blog about.<br />
Google have gone off-road with their StreetView camera and captured <a href="http://en.wikipedia.org/wiki/Stonehenge">Stonehenge</a>.<br />
<div class="wp-caption alignnone" style="width: 470px"><img alt=" Google Street View goes off-road to add Stonehenge  Photo: GETTY  " src="http://i.telegraph.co.uk/telegraph/multimedia/archive/01442/stonehenge_1442853c.jpg" title=" Google Street View goes off-road to add Stonehenge" width="460" height="288" /><p class="wp-caption-text"> Google Street View goes off-road to add Stonehenge  Photo: GETTY  </p></div> </p>
<p>See stonehenge streetview below or <a href="http://maps.google.com/maps?hl=en&#038;source=hp&#038;ie=UTF8&#038;q=stonehenge&#038;fb=1&#038;hq=Stonehenge&#038;hnear=Stonehenge&#038;cid=0,0,13789960888209009959&#038;ei=IVAqS8T7KYmh4QbK5aCKCQ&#038;ved=0CCAQnwIwAw&#038;z=16&#038;layer=c&#038;cbll=51.17889,-1.82635&#038;panoid=KssGXfe_lc-OO67MkXeL1A&#038;cbp=12,93.48,,0,-3.34">View Streetview Stonehenge outside of the blog. </a></p>
<p><iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://www.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=uk&amp;sll=37.0625,-95.677068&amp;sspn=48.956293,62.578125&amp;ie=UTF8&amp;hq=&amp;hnear=United+Kingdom&amp;ll=55.378051,-3.435973&amp;spn=0.019074,0.030556&amp;z=15&amp;layer=c&amp;cbll=51.179012,-1.826022&amp;panoid=n31gCoDp8me3-RAzijPzGA&amp;cbp=12,202.13,,0,1.46&amp;output=svembed"></iframe><br /><small><a href="http://www.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=uk&amp;sll=37.0625,-95.677068&amp;sspn=48.956293,62.578125&amp;ie=UTF8&amp;hq=&amp;hnear=United+Kingdom&amp;ll=55.378051,-3.435973&amp;spn=0.019074,0.030556&amp;z=15&amp;layer=c&amp;cbll=51.179012,-1.826022&amp;panoid=n31gCoDp8me3-RAzijPzGA&amp;cbp=12,202.13,,0,1.46" style="color:#0000FF;text-align:left">View Larger Map</a></small></p>
<p>Street View allows web users to view place as if walking along the street, exploring 360-degree images recorded from eye level.</p>
<p>But its cameras have also captured some embarrassing moments, including a man entering a sex shop and another being sick in the street.</p>
<p>The application allows users to access 360-degree views of roads and homes in 25 British towns and cities and includes photographs of millions of residential addresses, people and cars.</p>
<p>It has been hailed as a helpful tool for home hunters and tourists. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.alanhart.co.uk/archives/2009/12/17/google-maps-streetview-stonehenge/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Sesame Street 40th Anniversary Logo</title>
		<link>http://www.alanhart.co.uk/archives/2009/11/08/google-sesame-street-logos/</link>
		<comments>http://www.alanhart.co.uk/archives/2009/11/08/google-sesame-street-logos/#comments</comments>
		<pubDate>Sun, 08 Nov 2009 11:39:30 +0000</pubDate>
		<dc:creator>Alan Hart</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Bert & Ernie]]></category>
		<category><![CDATA[Bigbird]]></category>
		<category><![CDATA[Cookie Monster]]></category>
		<category><![CDATA[Elmo]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Logo]]></category>
		<category><![CDATA[Oscar the Grouch]]></category>
		<category><![CDATA[Sesame Street]]></category>
		<category><![CDATA[The Count]]></category>

		<guid isPermaLink="false">http://www.alanhart.co.uk/?p=113</guid>
		<description><![CDATA[So, this year marks the 40th Anniversary of Sesame Street. I used to watch it mostly when i was at school and occasionaly college.
I love the show and was therefore very happy to be greeted by some of my favourite Sesame Street characters on Google&#8217;s Logo this week. My absolute favourite being Elmo.
Here are all [...]]]></description>
			<content:encoded><![CDATA[<p>So, this year marks the 40th Anniversary of Sesame Street. I used to watch it mostly when i was at school and occasionaly college.<br />
I love the show and was therefore very happy to be greeted by some of my favourite Sesame Street characters on Google&#8217;s Logo this week. My absolute favourite being Elmo.</p>
<p>Here are all the Sesame Street Google logos from this week:</p>
<p><strong> Big Bird Google Logo &#8211; Wednesday 4th November</strong><br />
<img class="alignnone size-full wp-image-116" title="BigBird Google Logo" src="http://www.alanhart.co.uk/wp-content/uploads/2009/11/bigbird-hp.gif" alt="Big Bird Google Logo" width="302" height="150" /><br />
<a title="Sesame Street - BigBird on WikiPedia" href="http://en.wikipedia.org/wiki/Big_Bird" target="_blank"> More about BigBird</a></p>
<p><strong>Cookie Monster Google Logo &#8211; Thursday 5th November</strong><br />
<img class="alignnone size-full wp-image-117" title="Cookie Monster Google Logo" src="http://www.alanhart.co.uk/wp-content/uploads/2009/11/cookie_monster-hp.gif" alt="Cookie Monster Google Logo" width="303" height="122" /><br />
<a title="Sesame Street - Cookie Monster on WikiPedia" href="http://en.wikipedia.org/wiki/Cookie_Monster" target="_blank"> More about Cookie Monster</a></p>
<p><strong>Bert &amp; Ernie Google Logo &#8211; Friday 6th November</strong><br />
<img class="alignnone size-full wp-image-115" title="Bert &amp; Ernie Google Logo" src="http://www.alanhart.co.uk/wp-content/uploads/2009/11/bert_ernie-hp.gif" alt="Bert &amp; Ernie Google Logo" width="265" height="116" /><br />
<a title="Sesame Street - Bert and Ernie on WikiPedia" href="http://en.wikipedia.org/wiki/Bert_%26_Ernie" target="_blank"> More about Bert and Ernie</a></p>
<p><strong>Oscar the Grouch Google Logo &#8211; Saturday 7th November</strong><br />
<img class="alignnone size-full wp-image-114" title="Oscar the Grouch Google Logo" src="http://www.alanhart.co.uk/wp-content/uploads/2009/11/oscar-hp.gif" alt="Oscar the Grouch Google Logo" width="265" height="99" /><br />
<a title="Sesame Street - Oscar the Grouch on WikiPedia" href="http://en.wikipedia.org/wiki/Oscar_the_Grouch" target="_blank"> More about Oscar the Grouch</a></p>
<p><strong>Elmo Google Logo &#8211; Sunday 8th November</strong><br />
<img class="alignnone size-full wp-image-118" title="Elmo Google Logo" src="http://www.alanhart.co.uk/wp-content/uploads/2009/11/elmo-hp.gif" alt="Elmo Google Logo" width="250" height="131" /><br />
<a title="Sesame Street - Elmo on WikiPedia" href="http://en.wikipedia.org/wiki/Elmo" target="_blank"> More about Elmo</a></p>
<p><strong>The Count (Count von Count) Google Logo &#8211; Monday 9th November</strong><br />
<img class="alignnone size-full wp-image-118" title="The Count (Count von Count) Google Logo" src="http://www.alanhart.co.uk/wp-content/uploads/2009/11/count_von_count-hp.gif" alt="The Count (Count von Count) Google Logo" width="409" height="136" /><br />
<a title="Sesame Street - The Count on WikiPedia" href="http://en.wikipedia.org/wiki/Count_von_Count" target="_blank"> More about The Count</a></p>
<p><strong>Sesame Street Ensemble Google Logo &#8211; Tuesday 10th November</strong><br />
<img class="alignnone size-full wp-image-118" title="Sesame Street Ensemble Google Logo" src="http://www.alanhart.co.uk/wp-content/uploads/2009/11/sesame_street_ensemble-hp.jpg" alt="Sesame Street Ensemble Google Logo" width="304" height="149" /><br />
<a title="Sesame Street on WikiPedia" href="http://en.wikipedia.org/wiki/Sesame_street" target="_blank"> More about Sesame Street</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.alanhart.co.uk/archives/2009/11/08/google-sesame-street-logos/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Change New Facebook News Feed to give it the old facebook look</title>
		<link>http://www.alanhart.co.uk/archives/2009/10/26/change-facebook-news-feed-to-give-it-the-old-facebook-look/</link>
		<comments>http://www.alanhart.co.uk/archives/2009/10/26/change-facebook-news-feed-to-give-it-the-old-facebook-look/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 14:32:17 +0000</pubDate>
		<dc:creator>Alan Hart</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[news feed]]></category>
		<category><![CDATA[old facebook]]></category>
		<category><![CDATA[status updates]]></category>

		<guid isPermaLink="false">http://www.alanhart.co.uk/?p=93</guid>
		<description><![CDATA[If, like me, you don't like the new style Facebook Home / News feed why not change it to display only status updates, like the old facebook!
(this also get's rid of those annoying "Bored Friend took the blahblahblah quiz" posts etc)]]></description>
			<content:encoded><![CDATA[<p><script>function fbs_click() {u=location.href;t=document.title;window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&#038;t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');return false;}</script></p>
<style> html .fb_share_link { padding:2px 0 0 20px; height:16px; background:url(http://b.static.ak.fbcdn.net/images/share/facebook_share_icon.gif?8:26981) no-repeat top left; color:#3b5998; text-decoration:none;}
a:hover {text-decoration: underline;}
</style>
<p><a href="http://www.facebook.com/share.php?u=http://www.alanhart.co.uk/archives/2009/10/26/change-facebook-news-feed-to-give-it-the-old-facebook-look/" onclick="return fbs_click()" target="_blank" class="fb_share_link">Share this with your friends on Facebook</a></p>
<p>If, like me, you don&#8217;t like the new style Facebook Home / News feed why not change it to display only status updates, like the old facebook!<br />
(this also get&#8217;s rid of those annoying &#8220;Bored Friend took the blahblahblah quiz&#8221; posts etc)</p>
<p>here is how to get the old facebook look:&#8230;</p>
<p><strong>When logged into facebook Click &#8220;Home&#8221;</strong></p>
<p><strong>Look to the top left menu and click on More&#8230;</strong></p>
<p><img class="alignnone size-full wp-image-94" title="facebook-news-feed-1" src="http://www.alanhart.co.uk/wp-content/uploads/2009/10/facebook-news-feed-1.jpg" alt="facebook-news-feed-1" width="181" height="213" /></p>
<p><strong>Then drag &#8220;Status Updates&#8221; to the top&#8230;</strong></p>
<p><img class="alignnone size-full wp-image-95" title="facebook-news-feed-2" src="http://www.alanhart.co.uk/wp-content/uploads/2009/10/facebook-news-feed-2.jpg" alt="facebook-news-feed-2" width="181" height="213" /></p>
<p><strong>After dragging to top, click on it. It&#8217;s now your default facebook newsfeed, just like the old facebook. </strong></p>
<p>Simples!</p>
<p><script>function fbs_click() {u=location.href;t=document.title;window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&#038;t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');return false;}</script></p>
<style> html .fb_share_link { padding:2px 0 0 20px; height:16px; background:url(http://b.static.ak.fbcdn.net/images/share/facebook_share_icon.gif?8:26981) no-repeat top left; color:#3b5998; text-decoration:none;}
a:hover {text-decoration: underline;}
</style>
<p><a href="http://www.facebook.com/share.php?u=http://www.alanhart.co.uk/archives/2009/10/26/change-facebook-news-feed-to-give-it-the-old-facebook-look/" onclick="return fbs_click()" target="_blank" class="fb_share_link">Share this with your friends on Facebook</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.alanhart.co.uk/archives/2009/10/26/change-facebook-news-feed-to-give-it-the-old-facebook-look/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Shocking Video Of Train Slamming Into Pram!</title>
		<link>http://www.alanhart.co.uk/archives/2009/10/16/shocking-video-of-train-slamming-into-pram/</link>
		<comments>http://www.alanhart.co.uk/archives/2009/10/16/shocking-video-of-train-slamming-into-pram/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 12:43:33 +0000</pubDate>
		<dc:creator>Alan Hart</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.alanhart.co.uk/?p=82</guid>
		<description><![CDATA[A six-month-old boy has miraculously survived a train slamming into his pram after it rolled off an Australian railway platform.]]></description>
			<content:encoded><![CDATA[<p>A six-month-old boy has miraculously survived a train slamming into his pram after it rolled off an Australian railway platform.</p>
<div id="skynewsVideoContainer">
<p style="padding-top: 12px; padding-bottom: 0px;"><!-- Sky News video player start --><br />
<script type="text/javascript">// <![CDATA[
	AC_FL_RunContent(
	'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',
	'width', '512',
	'height', '326',
	'src', 'http://mediaweb.musicradio.com/inlinevideoplayer/1.0.0/InlineVideoPlayer.swf',
	'quality', 'high',
	'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
	'align', 'middle',
	'play', 'true',
	'loop', 'true',
	'scale', 'showall',
	'wmode', 'window',
	'devicefont', 'false',
	'id', 'InlineVideoPlayer',
	'bgcolor', '#ffffff',
	'name', 'InlineVideoPlayer',
	'menu', 'true',
	'allowFullScreen', 'true',
	'allowScriptAccess','always',
	'movie', 'http://mediaweb.musicradio.com/inlinevideoplayer/1.0.0/InlineVideoPlayer',
	'base', 'http://mediaweb.musicradio.com/inlinevideoplayer/1.0.0/',
	'FlashVars', 'video=http://static1.sky.com/feeds/skynews/latest/flash/ACT-BB-FR-BABY-FALLS-UNDER-TRAIN-CCTV-0700.flv&#038;image=http://mediaweb.musicradio.com/inlinevideoplayer/1.0.0/img/preview1.png&#038;data=http://adserver.adtech.de/?adrawdata/3.0/646.1/1975743/0/1725/noperf=1;cc=2;header=yes;alias=myalias;cookie=yes;adct=204;key=key1+key2;grp=[group];misc=[TIMESTAMP]',
	'salign', ''
	);</p>
<p>// ]]&gt;</script><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="512" height="326" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="name" value="InlineVideoPlayer" /><param name="bgcolor" value="#ffffff" /><param name="align" value="middle" /><param name="flashvars" value="video=http://static1.sky.com/feeds/skynews/latest/flash/ACT-BB-FR-BABY-FALLS-UNDER-TRAIN-CCTV-0700.flv&amp;image=http://mediaweb.musicradio.com/inlinevideoplayer/1.0.0/img/preview1.png&amp;data=http://adserver.adtech.de/?adrawdata/3.0/646.1/1975743/0/1725/noperf=1;cc=2;header=yes;alias=myalias;cookie=yes;adct=204;key=key1+key2;grp=[group];misc=[TIMESTAMP]" /><param name="src" value="http://mediaweb.musicradio.com/inlinevideoplayer/1.0.0/InlineVideoPlayer.swf" /><param name="wmode" value="window" /><param name="allowfullscreen" value="true" /><param name="quality" value="high" /><embed type="application/x-shockwave-flash" width="512" height="326" src="http://mediaweb.musicradio.com/inlinevideoplayer/1.0.0/InlineVideoPlayer.swf" quality="high" allowfullscreen="true" wmode="window" flashvars="video=http://static1.sky.com/feeds/skynews/latest/flash/ACT-BB-FR-BABY-FALLS-UNDER-TRAIN-CCTV-0700.flv&amp;image=http://mediaweb.musicradio.com/inlinevideoplayer/1.0.0/img/preview1.png&amp;data=http://adserver.adtech.de/?adrawdata/3.0/646.1/1975743/0/1725/noperf=1;cc=2;header=yes;alias=myalias;cookie=yes;adct=204;key=key1+key2;grp=[group];misc=[TIMESTAMP]" align="middle" bgcolor="#ffffff" name="InlineVideoPlayer"></embed></object><br />
<noscript>&amp;lt;br /&amp;gt; 		&amp;lt;span class=&#8221;mceItemObject&#8221;  id=&#8221;InlineVideoPlayer&#8221; width=&#8221;512&#8243; height=&#8221;326&#8243; classid=&#8221;clsid:d27cdb6e-ae6d-11cf-96b8-444553540000&#8243; codebase=&#8221;http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0&#8243;&amp;gt;&amp;lt;br /&amp;gt; &amp;lt;span  name=&#8221;base&#8221; value=&#8221;http://mediaweb.musicradio.com/inlinevideoplayer/1.0.0/&#8221; class=&#8221;mceItemParam&#8221;&amp;gt;&amp;lt;/span&amp;gt; &amp;lt;span  name=&#8221;FlashVars&#8221; value=&#8221;video=http://static1.sky.com/feeds/skynews/latest/flash/ACT-BB-FR-BABY-FALLS-UNDER-TRAIN-CCTV-0700.flv&amp;amp;image=http://mediaweb.musicradio.com/inlinevideoplayer/1.0.0/img/preview1.png&amp;amp;data=http://adserver.adtech.de/?adrawdata/3.0/646.1/1975743/0/1725/noperf=1;cc=2;header=yes;alias=myalias;cookie=yes;adct=204;key=key1+key2;grp=[group];misc=[TIMESTAMP]&#8221; class=&#8221;mceItemParam&#8221;&amp;gt;&amp;lt;/span&amp;gt; &amp;lt;span  name=&#8221;allowScriptAccess&#8221; value=&#8221;always&#8221; class=&#8221;mceItemParam&#8221;&amp;gt;&amp;lt;/span&amp;gt; &amp;lt;span  name=&#8221;allowFullScreen&#8221; value=&#8221;true&#8221; class=&#8221;mceItemParam&#8221;&amp;gt;&amp;lt;/span&amp;gt; &amp;lt;span  name=&#8221;movie&#8221; value=&#8221;InlineVideoPlayer.swf&#8221; class=&#8221;mceItemParam&#8221;&amp;gt;&amp;lt;/span&amp;gt; &amp;lt;span  name=&#8221;quality&#8221; value=&#8221;high&#8221; class=&#8221;mceItemParam&#8221;&amp;gt;&amp;lt;/span&amp;gt; &amp;lt;span  name=&#8221;bgcolor&#8221; value=&#8221;#ffffff&#8221; class=&#8221;mceItemParam&#8221;&amp;gt;&amp;lt;/span&amp;gt;			&amp;lt;span class=&#8221;mceItemEmbed&#8221;  name=&#8221;InlineVideoPlayer&#8221;				width=&#8221;512&#8243;				height=&#8221;326&#8243;				base=&#8221;http://mediaweb.musicradio.com/inlinevideoplayer/1.0.0/&#8221;				FlashVars=&#8221;video=http://static1.sky.com/feeds/skynews/latest/flash/ACT-BB-FR-BABY-FALLS-UNDER-TRAIN-CCTV-0700.flv&amp;amp;image=http://mediaweb.musicradio.com/inlinevideoplayer/1.0.0/img/preview1.png&amp;amp;data=http://adserver.adtech.de/?adrawdata/3.0/646.1/1975743/0/1725/noperf=1;cc=2;header=yes;alias=myalias;cookie=yes;adct=204;key=key1+key2;grp=[group];misc=[TIMESTAMP]&#8221;				allowScriptAccess=&#8221;always&#8221;				allowFullScreen=&#8221;true&#8221;				src=&#8221;InlineVideoPlayer.swf&#8221;				quality=&#8221;high&#8221;				bgcolor=&#8221;#ffffff&#8221;				align=&#8221;middle&#8221;				type=&#8221;application/x-shockwave-flash&#8221;				pluginspage=&#8221;http://www.macromedia.com/go/getflashplayer&#8221; /&amp;gt;&amp;lt;/span&amp;gt;		&amp;lt;/span&amp;gt;&amp;lt;br /&amp;gt; </noscript></p>
<p><!-- Sky News video player end --></div>
<p>The collision happened as a city-bound service pulled up to Ashburton station, in a Melbourne suburb.</p>
<p>CCTV footage shows the boy&#8217;s mother taking her hands off the three-wheeler pram&#8217;s handles and failing to notice as it slowly edges towards the tracks.</p>
<p>The mum suddenly spots the baby carrier picking up speed and she rushes with outstretched arms to try to save her young child.</p>
<p>But the pram tips over the edge of the platform and the baby slams onto the tracks head first.</p>
<p>Before the boy can be rescued, the train powers past, horrifying the mother and other waiting passengers.</p>
<p>The footage ends with the frantic mum and a man running up to the driver, who has just stopped the 250-ton vehicle.</p>
<p>Australia&#8217;s Herald Sun said the train ploughed into the pram at about 35km/h, dragging the child along beneath the front carriage.</p>
<p>But the boy was hauled from the tracks with little more than a bump on his head.</p>
<p>Paramedic Jon Wright said the six-month-old just &#8220;needed a feed and a nap&#8221;.</p>
<p>&#8220;Luckily, he was strapped into his pram at the time, which probably saved his life. I think the child&#8217;s extremely lucky,&#8221; the paramedic told the paper.</p>
<p>&#8220;Fortunately the train was slowing as it pulled into the station.&#8221;</p>
<p>Rail firm Connex is to investigate how the pram rolled off the platform and the train driver will be offered counselling.</p>
<div id="skynewsCopyrightContainer">
<div><a onclick="s_objectID=&quot;http://www.heartlondon.co.uk/images/skynews-80x18-logo.gif_1&quot;;return this.s_oc?this.s_oc(e):true" href="http://news.sky.com/skynews/" target="_blank"><img src="http://www.heartlondon.co.uk/images/skynews-80x18-logo.gif" border="0" alt="Sky News" /></a></div>
<div>
<p>© 2009 Sky News, all rights reserved.</p></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.alanhart.co.uk/archives/2009/10/16/shocking-video-of-train-slamming-into-pram/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
