<?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>Simon Whatley &#187; bbc</title>
	<atom:link href="http://www.simonwhatley.co.uk/tag/bbc/feed" rel="self" type="application/rss+xml" />
	<link>http://www.simonwhatley.co.uk</link>
	<description>The opposite of every great idea is another great idea</description>
	<lastBuildDate>Wed, 02 Nov 2011 09:28:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Mark Pilgrim &#8211; A Gentle Introduction to Video Encoding: Lossy Video Codecs</title>
		<link>http://www.simonwhatley.co.uk/mark-pilgrim-a-gentle-introduction-to-video-encoding-lossy-video-codecs</link>
		<comments>http://www.simonwhatley.co.uk/mark-pilgrim-a-gentle-introduction-to-video-encoding-lossy-video-codecs#comments</comments>
		<pubDate>Tue, 11 Oct 2011 09:00:51 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[AVI]]></category>
		<category><![CDATA[bbc]]></category>
		<category><![CDATA[Codec]]></category>
		<category><![CDATA[Container formats]]></category>
		<category><![CDATA[Dirac]]></category>
		<category><![CDATA[DivX]]></category>
		<category><![CDATA[DivX-certified]]></category>
		<category><![CDATA[encoding]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[H.264]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[iTunes Store]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Mark Pilgrim]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Microsoft Corporation]]></category>
		<category><![CDATA[mobile devices]]></category>
		<category><![CDATA[MPEG]]></category>
		<category><![CDATA[MPEG-1]]></category>
		<category><![CDATA[MPEG-2]]></category>
		<category><![CDATA[MPEG-4]]></category>
		<category><![CDATA[Ogg]]></category>
		<category><![CDATA[open source decoder software]]></category>
		<category><![CDATA[Theora]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[Video codecs]]></category>
		<category><![CDATA[WMV]]></category>
		<category><![CDATA[Xiph.org Foundation]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false">http://www.simonwhatley.co.uk/?p=4805</guid>
		<description><![CDATA[The most important consideration in video encoding is choosing a video codec. A future article will talk about how to pick the one that’s right for you, but for now I just want to introduce the concept and describe the playing field. (This information is likely to go out of date quickly; future readers, be aware that this was written in December 2008.)]]></description>
			<content:encoded><![CDATA[<p><strong>This article was first published on 19th December 2008, on Mark Pilgrim&#8217;s website. That website no longer exists so this article serves as an historical record. I have preserved all emphasis and links as per the original article.</strong></p>
<p>The most important consideration in video encoding is choosing a video codec. A future article will talk about how to pick the one that&#8217;s right for you, but for now I just want to introduce the concept and describe the playing field. (This information is likely to go out of date quickly; future readers, be aware that this was written in December 2008.)</p>
<p>When you talk about &#8220;watching a video,&#8221; you&#8217;re probably talking about a combination of one video stream, one audio stream, and possibly some subtitles or captions. But you probably don&#8217;t have two different files; you just have &#8220;the video.&#8221; Maybe it&#8217;s an AVI file, or an MP4 file. These are just container formats, like a ZIP file that contains multiple kinds of files within it. The container format defines how to store the video and audio streams in a single file (and subtitles too, if any).</p>
<p>When you &#8220;watch a video,&#8221; your video player is doing several things at once:</p>
<ol>
<li>Interpreting the container format to find out which video and audio tracks are available, and how they are stored within the file so that it can find the data it needs to decode next</li>
<li>Decoding the video stream and displaying a series of images on the screen</li>
<li>Decoding the audio stream and sending the sound to your speakers</li>
<li>Possibly decoding the subtitle stream as well, and showing and hiding phrases at the appropriate times while playing the video</li>
</ol>
<p>A <em>video codec</em> is an algorithm by which a video stream is encoded, i.e. it specifies how to do #2 above. Your video player <em>decodes</em> the video stream according to the <em>video codec</em>, then displays a series of images, or &#8220;frames,&#8221; on the screen. Most modern video codecs use all sorts of tricks to minimize the amount of information required to display one frame after the next. For example, instead of storing each individual frame (like a screenshot), they will only store the differences between frames. Most videos don&#8217;t actually change all that much from one frame to the next, so this allows for high compression rates, which results in smaller file sizes. (There are many, many other complicated tricks too, which I&#8217;ll dive into in a future article.)</p>
<p>There are <em>lossy</em> and <em>lossless</em> video codecs; today&#8217;s article will only deal with lossy codecs. A <em>lossy video codec</em> means that information is being irretrievably lost during encoding. Like copying an audio cassette tape, you&#8217;re losing information about the source video, and degrading the quality, every time you encode. Instead of the &#8220;hiss&#8221; of an audio cassette, a re-re-re-encoded video may look blocky, especially during scenes with a lot of motion. (Actually, this can happen even if you encode straight from the original source, if you choose a poor video codec or pass it the wrong set of parameters.) On the bright side, lossy video codecs can offer amazing compression rates, and many offer ways to &#8220;cheat&#8221; and smooth over that blockiness during playback, to make the loss less noticeable to the human eye.</p>
<p>There are <a href="http://samples.mplayerhq.hu/V-codecs/" title="Video codecs" target="_blank" rel="nofollow"><em>tons</em> of video codecs</a>. Today I&#8217;ll discuss five modern lossy video codecs: MPEG-4 ASP, H.264, VC-1, Theora, and Dirac.</p>
<h3>MPEG-4 ASP</h3>
<p>a.k.a. &#8220;MPEG-4 Advanced Simple Profile.&#8221; <a href="http://en.wikipedia.org/wiki/MPEG-4_Part_2" title="MPEG-4 ASP" target="_blank" rel="nofollow">MPEG-4 ASP</a> was developed by <a href="http://en.wikipedia.org/wiki/Moving_Picture_Experts_Group" title="The MPEG Group" target="_blank" rel="nofollow">the MPEG group</a> and standardized in 2001. You may have heard of <a href="http://en.wikipedia.org/wiki/DivX" title="Wikipedia: DivX" target="_blank" rel="nofollow">DivX</a>, <a href="http://en.wikipedia.org/wiki/Xvid" title="Wikipedia: Xvid" target="_blank" rel="nofollow">Xvid</a>, or <a href="http://en.wikipedia.org/wiki/3ivx" title="Wikipedia: 3ivx" target="_blank" rel="nofollow">3ivx</a>; these are all competing implementations of the MPEG-4 ASP standard. <a href="http://www.xvid.org/" title="Xvid" target="_blank" rel="nofollow">Xvid is open source</a>; DivX and 3ivx are closed source. The company behind DivX has had some mainstream success in branding &#8220;DivX&#8221; as synonymous with &#8220;MPEG-4 ASP.&#8221; For example, this <a href="http://www.amazon.com/Philips-DVP642-DivX-Certified-Progressive-Scan-Player/dp/B000204SWE" title="Amazon: DivX certifiied DVD Player" target="_blank" rel="nofollow">&#8220;DivX-certified&#8221; DVD player</a> can actually play <a href="http://www.jarnot.com/twiki/bin/view/Public/DVP642LisaBsAVIGuide" title="MPEG-4 ASP videos" target="_blank" rel="nofollow">most MPEG-4 ASP videos</a> in an AVI container, even if they were created with a competing encoder. (To confuse things even further, the company behind <a href="http://en.wikipedia.org/wiki/DivX#DivX_Media_Format_.28DMF.29" title="DivX has now created their own container format" target="_blank" rel="nofollow">DivX has now created their own container format</a>.)</p>
<p><strong>MPEG-4 ASP is patent-encumbered</strong>; licensing is brokered through the <a href="http://www.mpegla.com/" title="MPEG LA Group" target="_blank" rel="nofollow">MPEG LA group</a>. MPEG-4 ASP video can be embedded in most popular container formats, including AVI, MP4, and MKV.</p>
<h3>H.264</h3>
<p>a.k.a. &#8220;MPEG-4 part 10,&#8221; a.k.a. &#8220;MPEG-4 AVC,&#8221; a.k.a. &#8220;MPEG-4 Advanced Video Coding.&#8221; <a href="http://en.wikipedia.org/wiki/H.264" title="Wikipedia: H.264" target="_blank" rel="nofollow">H.264</a> was also developed by the <a href="http://en.wikipedia.org/wiki/Moving_Picture_Experts_Group" title="Wikipedia: Moving Picture Experts Group (MPEG)" target="_blank" rel="nofollow">MPEG group</a> and standardized in 2003. It aims to provide a single codec for low-bandwidth, low-CPU devices (cell phones); high-bandwidth, high-CPU devices (modern desktop computers); and everything in between. To accomplish this, the H.264 standard is split into &#8220;<a href="http://en.wikipedia.org/wiki/H.264#Profiles" title="Wikipedia: H.264 Profiles" target="_blank" rel="nofollow">profiles</a>,&#8221; which each define a set of optional features that trade complexity for file size. Higher profiles use more optional features, offer better visual quality at smaller file sizes, take longer to encode, and require more CPU power to decode in real-time.</p>
<p>To give you a rough idea of the range of profiles, <a href="http://www.apple.com/iphone/specs.html" title="Apple's iPhone supports Baseline profile" target="_blank" rel="nofollow">Apple&#8217;s iPhone supports Baseline profile</a>, the <a href="http://www.apple.com/appletv/specs.html" title="AppleTV supports Baseline and Main profiles" target="_blank" rel="nofollow">AppleTV set-top box supports Baseline and Main profiles</a>, and <a href="http://www.kaourantin.net/2007/08/what-just-happened-to-video-on-web_20.html" title="Adobe Flash supports Baseline, Main and High profiles" target="_blank" rel="nofollow">Adobe Flash on a desktop PC supports Baseline, Main, and High profiles</a>. YouTube (owned by Google, my employer) now uses H.264 to encode <a href="http://blog.wired.com/business/2008/12/youtube-adds-hd.html" title="high-definition videos" target="_blank" rel="nofollow">high-definition videos</a>, playable through Adobe Flash; YouTube also provides H.264-encoded video to mobile devices, including Apple&#8217;s iPhone and phones running Google&#8217;s <a href="http://code.google.com/android/" title="Android mobile operating system" target="_blank" rel="nofollow">Android mobile operating system</a>. Also, H.264 is one of the video codecs mandated by the Blu-Ray specification; Blu-Ray discs that use it generally use the High profile.</p>
<p>Most non-PC devices that play H.264 video (including iPhones and standalone Blu-Ray players) actually do the decoding on a dedicated chip, since their main CPUs are nowhere near powerful enough to decode the video in real-time. Recent high-end desktop graphics cards also support decoding H.264 in hardware. There are a number of <a href="http://compression.ru/video/codec_comparison/mpeg-4_avc_h264_2007_en.html" title="Competing H.264 encoders" target="_blank" rel="nofollow">competing H.264 encoders</a>, including the <a href="http://www.videolan.org/developers/x264.html" title="Open source x264 library" target="_blank" rel="nofollow">open source x264 library</a>. The <strong>H.264 standard is patent-encumbered</strong>; licensing is brokered through the <a href="http://www.mpegla.com/" title="MPEG LA Group" target="_blank" rel="nofollow">MPEG LA group</a>. H.264 video can be embedded in most popular container formats, including MP4 (used primarily by <a href="http://www.apple.com/itunes/whatson/movies.html" title="Apple iTunes Store" target="_blank" rel="nofollow">Apple&#8217;s iTunes Store</a>) and MKV (used primarily by video pirates).</p>
<h3>VC-1</h3>
<p><a href="http://en.wikipedia.org/wiki/VC-1" title="Wikipedia: VC-1" target="_blank" rel="nofollow">VC-1</a> evolved from Microsoft&#8217;s WMV9 codec and was <a href="http://www.betanews.com/article/Microsoft_VC1_Codec_Now_a_Standard/1144097224" title="Codec standardised in 2006" target="_blank" rel="nofollow">standardized in 2006</a>. It is primarily used and promoted by Microsoft for high-definition video, although, like H.264, it has <a href="http://www.microsoft.com/windows/windowsmedia/howto/articles/vc1techoverview.aspx#OverviewofVC1" title="VC-1 profiles" target="_blank" rel="nofollow">a range of profiles</a> to trade complexity for file size. Also like H.264, it is mandated by the Blu-Ray specification, and all Blu-Ray players are required to be able to decode it. <strong>The VC-1 codec is patent-encumbered</strong>, with licensing brokered through the <a href="http://www.mpegla.com/" title="MPEG LA Group" target="_blank" rel="nofollow">MPEG LA group</a>.</p>
<p>Wikipedia has a brief <a href="http://en.wikipedia.org/wiki/Comparison_of_H.264_and_VC-1" title="Wikipedia: Technical compariosn of VC-1 and H.264" target="_blank" rel="nofollow">technical comparison of VC-1 and H.264</a>; <a href="http://www.microsoft.com/windows/windowsmedia/howto/articles/vc1techoverview.aspx#VC1ComparedtoOtherCodecs" title="Microsoft comparison of VC-1 with other codecs" target="_blank" rel="nofollow">Microsoft has their own comparison</a>; Multimedia.cx has a <a href="http://wiki.multimedia.cx/index.php?title=H.264" title="Venn diagram outlining similarities and differences between codecs" target="_blank" rel="nofollow">pretty Venn diagram outlining the similarities</a> and differences. Multimedia.cx also discusses the <a href="http://wiki.multimedia.cx/index.php?title=VC-1" title="Technical features of VC-1" target="_blank" rel="nofollow">technical features of VC-1</a>. I also found this <a href="http://www.avsforum.com/avs-vb/showthread.php?p=9931723#post9931723" title="History of VC-1 and H.264" target="_blank" rel="nofollow">history of VC-1 and H.264</a> to be interesting (as well as <a href="http://archive2.avsforum.com/avs-vb/showthread.php?p=6594314#post6594314" title="Rebuttal" target="_blank" rel="nofollow">this rebuttal</a>).</p>
<p>VC-1 is designed to be container-independent, although it is most often embedded in an ASF container. An open source decoder for VC-1 video was a <a href="http://code.google.com/soc/2006/ffmpeg/appinfo.html?csaid=5AA777DB19E2BB24" title="2006 Google Summer of Code project" target="_blank" rel="nofollow">2006 Google Summer of Code project</a>, and the resulting code was added to the multi-faceted <a href="http://ffmpeg.mplayerhq.hu/" title="ffmpeg library" target="_blank" rel="nofollow">ffmpeg library</a>.</p>
<h3>Theora</h3>
<p><a href="http://en.wikipedia.org/wiki/Theora" title="Wikipedia: Theora" target="_blank" rel="nofollow">Theora</a> evolved from the VP3 codec and has subsequently been developed by the <a href="http://xiph.org/" title="Xiph Foundation" target="_blank" rel="nofollow">Xiph.org Foundation</a>. <strong>Theora is a royalty-free codec and is not encumbered by any known patents</strong> other than the original VP3 patents, which have been irrevocably licensed royalty-free. Although the standard has been &#8220;frozen&#8221; since 2004, the Theora project (which includes an open source reference encoder and decoder) <a href="http://lists.xiph.org/pipermail/theora-dev/2008-November/003736.html" title="Version 1.0 November 2008" target="_blank" rel="nofollow">only hit 1.0 in November 2008</a>.</p>
<p>Theora video can be embedded in any container format, although it is most often seen in an Ogg container. All major Linux distributions support Theora out-of-the-box, and <a href="https://developer.mozilla.org/web-tech/2008/10/14/firefox-31-beta-1-an-overview-of-features-for-web-developers/" title="Mozilla Firefox 3.1 includes native support for Theora video" target="_blank" rel="nofollow">Mozilla Firefox 3.1 will include native support for Theora video in an Ogg container</a>. And by &#8220;native&#8221;, I mean &#8220;available on all platforms without platform-specific plugins.&#8221; You can also play Theora video <a href="http://www.xiph.org/dshow/" title="Theora video on Windows" target="_blank" rel="nofollow">on Windows</a> or <a href="http://xiph.org/quicktime/" title="Theora video on Mac OS X" target="_blank" rel="nofollow">on Mac OS X</a> after installing Xiph.org&#8217;s open source decoder software.</p>
<p>The reference encoder included in Theora 1.0 is widely criticized for being slow and poor quality, but Theora 1.1 will include a new encoder that takes better advantage of Theora&#8217;s features, while staying backward-compatible with current decoders. (Info: <a href="http://web.mit.edu/xiphmont/Public/theora/demo.html" title="Demo 1" target="_blank" rel="nofollow">1</a>, <a href="http://web.mit.edu/xiphmont/Public/theora/demo2.html" title="Demo 2" target="_blank" rel="nofollow">2</a>, <a href="http://web.mit.edu/xiphmont/Public/theora/demo3.html" title="Demo 3" target="_blank" rel="nofollow">3</a>, <a href="http://web.mit.edu/xiphmont/Public/theora/demo4.html" title="Demo 4" target="_blank" rel="nofollow">4</a>, <a href="http://web.mit.edu/xiphmont/Public/theora/demo5.html" title="Demo 5" target="_blank" rel="nofollow">5</a>, <a href="http://svn.xiph.org/branches/theora-thusnelda/" title="source code" target="_blank" rel="nofollow">source code</a>.)</p>
<h3>Dirac</h3>
<p>Dirac was <a href="http://www.bbc.co.uk/rd/projects/dirac/" title="Dirac, developed by the BBC" target="_blank" rel="nofollow">developed by the BBC</a> to provide a royalty-free alternative to H.264 and VC-1 that the BBC could use to stream high-definition television content in Great Britain. Like H.264, Dirac aims to provide a single codec for the full spectrum of very low- and very high-bandwidth streaming. <strong>Dirac is not encumbered by any known patents</strong>, and there are two open source implementations, <a href="http://diracvideo.org/download/dirac-research/" title="Dirac research" target="_blank" rel="nofollow">dirac-research</a> (the BBC&#8217;s reference implementation) and <a href="http://www.diracvideo.org/download/schroedinger/" title="Schroedinger" target="_blank" rel="nofollow">Schroedinger</a> (optimized for speed).</p>
<p>The Dirac standard was only finalized in 2008, so there is very little mainstream use yet, although the <a href="http://www.ibc.org/cgi-bin/ibc_dailynews_cms.cgi?story_no=25368&#038;issue=4" title="Dirac used internally during the 2008 Olympics" target="_blank" rel="nofollow">BBC did use it internally during the 2008 Olympics</a>. Dirac-encoded video tracks can be embedded in several popular container formats, including <a href="http://www.diracvideo.org/wiki/index.php/DiracInISOM" title="MP4 format" target="_blank" rel="nofollow">MP4</a>, <a href="http://www.diracvideo.org/wiki/index.php/DiracInOgg" title="Ogg format" target="_blank" rel="nofollow">Ogg</a>, <a href="http://www.diracvideo.org/wiki/index.php/DiracInMatroska" title="MKV format" target="_blank" rel="nofollow">MKV</a>, and <a href="http://www.diracvideo.org/wiki/index.php/DiracInAVI" title="AVI format" target="_blank" rel="nofollow">AVI</a>. <a href="http://www.videolan.org/vlc/" title="VLC" target="_blank" rel="nofollow">VLC</a> 0.9.2 (<a href="http://www.diracvideo.org/node/19" title="VLC 0.9.2 released in September 2008" target="_blank" rel="nofollow">released in September 2008</a>) can play Dirac-encoded video within an Ogg or MP4 container.</p>
<p><strong>And on and on&#8230;</strong><br />
Of course, this is only scratching the surface of all the available video codecs. Video encoding goes way back, but my focus in this series is on the present and near-future, not the past. If you like, you can read about <a href="http://en.wikipedia.org/wiki/MPEG-2" title="Wikipedia: MPEG-2" target="_blank" rel="nofollow">MPEG-2</a> (used in DVDs), <a href="http://en.wikipedia.org/wiki/MPEG-1" title="Wikipedia: MPEG-1" target="_blank" rel="nofollow">MPEG-1</a> (used in Video CDs), older versions of Microsoft&#8217;s <a href="http://en.wikipedia.org/wiki/Windows_Media_Video#Windows_Media_Video" title="Wikipedia: Windows Media Video (WMV)" target="_blank" rel="nofollow">WMV</a> family, <a href="http://en.wikipedia.org/wiki/Sorenson_codec" title="Wikipedia: Sorenson codec" target="_blank" rel="nofollow">Sorenson</a>, <a href="http://en.wikipedia.org/wiki/Indeo" title="Wikipedia: Indeo" target="_blank" rel="nofollow">Indeo</a>, and <a href="http://en.wikipedia.org/wiki/Cinepak" title="Wikipedia: Cinepak" target="_blank" rel="nofollow">Cinepak</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simonwhatley.co.uk/mark-pilgrim-a-gentle-introduction-to-video-encoding-lossy-video-codecs/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>When to use Sub-domains versus Sub-directories</title>
		<link>http://www.simonwhatley.co.uk/when-to-use-sub-domains-versus-sub-directories</link>
		<comments>http://www.simonwhatley.co.uk/when-to-use-sub-domains-versus-sub-directories#comments</comments>
		<pubDate>Thu, 17 Jun 2010 11:06:39 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Search]]></category>
		<category><![CDATA[bbc]]></category>
		<category><![CDATA[domains]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Microsite]]></category>
		<category><![CDATA[search engines]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Sky]]></category>
		<category><![CDATA[sub-directories]]></category>
		<category><![CDATA[sub-domains]]></category>
		<category><![CDATA[websites]]></category>
		<category><![CDATA[Yahoo]]></category>

		<guid isPermaLink="false">http://www.simonwhatley.co.uk/?p=3689</guid>
		<description><![CDATA[The decision to utilise a sub-domain, sub-directory or even a microsite is simply an architectural decision, but one that is often compounded with a marketing decision. In general, sub-directories are used to describe what individual pages are about while sub-domains and microsites are used to describe what an entire site is about.]]></description>
			<content:encoded><![CDATA[<p>When it comes to SEO in general, when should I use sub-domains versus sub-directories? How do microsites fit into the mix? </p>
<p>The decision to utilise a sub-domain, sub-directory or even a microsite is simply an architectural decision, but one that is often compounded with a marketing decision. In general, sub-directories are used to describe what individual pages are about while sub-domains and microsites are used to describe what an entire site is about.</p>
<h3>When to use sub-directories</h3>
<ul>
<li>Sub-directories are useful for organising content into meaningful groupings with descriptive URLs. If you have a meaningful taxonomy, then sub-directories are a good way to make your URLs more search friendly.</li>
<li>For relatively small websites, i.e. not the BBCs and CNNs of this world, keeping your content in one place will help your website build trust and authority. The more trust and authority a website is able to garner with the search engines, the easier it becomes to rank new and related content.</li>
<li>For the less technically savvy, sub-directories are easier to manage than sub-domains since they are generally created as part of the website&#8217;s page hierarchy. Furthermore, many CMSs don&#8217;t support the ability to publish across different domains out-of-the-box.</li>
<li>Google Webmasters tools allow you to set basic geo-location preferences to sub-directories. The idea is to create new pseudo-website listings that also include sub-directories. For example, the www.domain.com listing could have www.domain.com/uk for the UK, www.domain.com/es for Spain and so on for each geographic location.</li>
</ul>
<p><script type="text/javascript"><!--
google_ad_client = "pub-6475233631580417";
/* 468x60 Basic */
google_ad_slot = "7117418273";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<h3>When to use sub-domains</h3>
<ul>
<li>Sub-domains are useful for organising content that is otherwise unrelated. Take Google for example, they have a news product at news.google.com, a maps product at maps.google.com and a email product at mail.google.com. Since they are fundamentally different from each other and Google&#8217;s main search product, they aren&#8217;t held under the same domain.</li>
<li>Sub-domains allow you to target regional markets more effectively. Sub domains are easier to market to specific geographical regions. For instance you can assign an IP address to a sub-domain and set a geographical preference in Google&#8217;s Webmaster tools for each sub-domain (sub-directories can have their geo-preference set but can&#8217;t be assigned an IP in another country, which might also be a signal of geo-location). For example, the www.domain.com listing could have uk.domain.com for the UK, es.domain.com for Spain and so on for each geographic location.</li>
<li>If you already have a well established domain and want to expand out into other areas not completely related to your main website&#8217;s activities then a sub-domain may well be a good option. At the same time, people associate the sub-domain with your main domain&#8217;s brand, which means it can be easy to build up momentum on a vertical related to your main site. This is what the web giants Google and Yahoo, Sky and the BBC do successfully, but smaller websites can do the same. You often see this when the third-party functionality is &#8220;plugged into&#8221; an existing site, such as a payment gateway, events and job boards.</li>
</ul>
<p><script type="text/javascript"><!--
google_ad_client = "pub-6475233631580417";
/* 468x60 Basic */
google_ad_slot = "7117418273";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<h3>When to use microsites</h3>
<p>Like sub-domains, microsites have an important position in the overall debate.</p>
<ul>
<li>If you have a new product or service that you potentially want to sell off or brand completely differently from your main business offering, a microsite makes a lot of sense. Microsites are really just a stripped down website, but as the product or service develops, so will the website and associated brand and it will take on trust and authority of its own.</li>
<li>Microsites offer the ability to completely separate your main brand from the new product, service or promotion. This is useful if you&#8217;re pushing a content piece that has little to no association with your site and you don&#8217;t want the potential branding confusion or commercial association to hinder link and user growth.</li>
<li>Microsites can be powerful if you have an exact match domain name for a particular keyword you&#8217;re targeting. Google&#8217;s preference for and ranking exact-match domains is a very powerful tool to use for SEO.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.simonwhatley.co.uk/when-to-use-sub-domains-versus-sub-directories/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Four C&#039;s of Community</title>
		<link>http://www.simonwhatley.co.uk/the-four-cs-of-community</link>
		<comments>http://www.simonwhatley.co.uk/the-four-cs-of-community#comments</comments>
		<pubDate>Thu, 04 Dec 2008 14:12:45 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Strategy]]></category>
		<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[assistive technologies]]></category>
		<category><![CDATA[bbc]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[connectivity]]></category>
		<category><![CDATA[Content]]></category>
		<category><![CDATA[context]]></category>
		<category><![CDATA[continuity]]></category>
		<category><![CDATA[CRM]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[FriendFeed]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Information Architecture]]></category>
		<category><![CDATA[Internet forum]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[king]]></category>
		<category><![CDATA[Last.fm]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[mass communications]]></category>
		<category><![CDATA[meme]]></category>
		<category><![CDATA[N95]]></category>
		<category><![CDATA[Nokia]]></category>
		<category><![CDATA[Nokia N95]]></category>
		<category><![CDATA[party social media services]]></category>
		<category><![CDATA[re-worked web interface]]></category>
		<category><![CDATA[Remember The Milk]]></category>
		<category><![CDATA[respective web browsers]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[search engine]]></category>
		<category><![CDATA[search engine optimisation]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Social Bookmarking]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[social software]]></category>
		<category><![CDATA[The Guardian]]></category>
		<category><![CDATA[The Web]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[unique selling point]]></category>
		<category><![CDATA[User Agent]]></category>
		<category><![CDATA[User Science]]></category>
		<category><![CDATA[usp]]></category>
		<category><![CDATA[virtual community]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[web accessibility]]></category>
		<category><![CDATA[Web communities]]></category>
		<category><![CDATA[web community]]></category>
		<category><![CDATA[web robots]]></category>
		<category><![CDATA[web-based community]]></category>
		<category><![CDATA[web-capabilities]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false">http://www.simonwhatley.co.uk/?p=1549</guid>
		<description><![CDATA[A web community is a web site (or group of web sites) that is a virtual community. Web communities in recent times commonly take the form of a social network service, such as Facebook, Upcoming and Last.fm, an Internet forum, a group of blogs such as WordPress.com and Blogger, or another kind of social software web application.]]></description>
			<content:encoded><![CDATA[<p>A web community is a web site (or group of web sites) that is a virtual community. Web communities in recent times commonly take the form of a social network service, such as <a href="http://www.facebook.com" title="Facebook social network" target="_blank" rel="nofollow">Facebook</a>, <a href="http://upcoming.org" title="Upcoming events" target="_blank" rel="nofollow">Upcoming</a> and <a href="http://last.fm" title="Last.fm social music platform" target="_blank" rel="nofollow">Last.fm</a>, an Internet forum, a group of blogs such as <a href="http://wordpress.com" title="WordPress managed blog hosting" target="_blank" rel="nofollow">WordPress.com</a> and <a href="http://www.blogger.com" title="Blogger publishing tool" target="_blank" rel="nofollow">Blogger</a>, or another kind of social software web application.</p>
<p>But what makes up a web community; what makes them successful? Below I discuss the four C&#8217;s of community: Content, Context, Connectivity and Community.</p>
<p><img src="http://www.simonwhatley.co.uk/blog/wp-content/uploads/2008/12/the-four-c-of-community-300x292.jpg" alt="" title="The Four C&#039;s of Community" width="300" height="292" class="aligncenter size-medium wp-image-1551" /></p>
<h3>Content</h3>
<p>A current <a href="http://en.wikipedia.org/wiki/Meme" title="Wikipedia: Meme" target="_blank" rel="nofollow">meme</a> when organising or building a website is the catchphrase <q>Content is King</q>. A big shift in the web in recent years has been the way websites are constructed. Today it&#8217;s a necessity, and indeed best practice, to separate form from content. In one hand you have the compelling content, whilst in the other you have the presentation, be it in the form of HTML and CSS, Flash or RSS, amongst others.</p>
<p>Quality content is one way in which you can make your website stand out. It is also a great way to attract the people who are needed to form the elusive community that your brand is hoping build. When considering community initiatives, there are three questions to ask: Where will the content come from; for example community driven or syndication? Does it provide indisputable value; does it have a unique selling point (<abbr title="Unique Selling Point">USP</abbr>)? Can a regular flow of quality content be maintained? Even pre-Web 2.0 initiatives have to focus on keeping the content itself fresh and relevant.</p>
<p>Web accessibility and search engine optimisation are also vital, so having content completely separated from presentation means a number of assistive technologies can make better use of the content, whilst the web robots can also readily consume the information.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-6475233631580417";
/* 468x60 Basic */
google_ad_slot = "7117418273";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<h3>Context</h3>
<p>Context means understanding how people use your website, where they are in the user-journey and serving them the right experience at the right time. Well-designed applications and functionality have great opportunities to deliver on context.</p>
<p>For example, <a href="http://friendfeed.com" title="FriendFeed website" target="_blank" rel="nofollow">FriendFeed</a>&#8216;s iPhone version, which is simply a re-worked web interface, is perfectly designed for contextual usage on the go. Similarly, <a href="http://www.rememberthemilk.com" title="Remember The Milk website" target="_blank" rel="nofollow">Remember The Milk</a> updates the interface explicitly for <a href="http://m.rememberthemilk.com" title="Remember The Milk mobile website" target="_blank" rel="nofollow">mobile</a> and <a href="http://i.rememberthemilk.com" title="Remember The Milk iPhone website" target="_blank" rel="nofollow">iPhone</a> users, whilst also syndicating the content to applications such as Google Calendar. (It is questionable whether user-agent switching is good practice, but that is a whole new blog post.) Conversely, <a href="http://delicious.com" title="Delicious website" target="_blank" rel="nofollow">Delicious</a> makes no attempt at changing the user interface for iPhone or Nokia N95 users since the iPhone and N95 have full web-capabilities through their respective web browsers.</p>
<p>In some instances the context in which the content is displayed will require reduced functionality. For example, the <a href="http://m.last.fm" title="Last.fm mobile website" target="_blank" rel="nofollow">Last.fm mobile site</a> does not allow you to play music, but simply search music listings, view recommendations, events and friend listings, and edit settings. However, through its <abbr title="Application Programming Interface">API</abbr>, Last.fm is able to offer its data and platform to third party developers to aid the building of new applications and communities, thus changing its context.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-6475233631580417";
/* 468x60 Basic */
google_ad_slot = "7117418273";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<h3>Connectivity</h3>
<p>Connectivity is the ability of a system, whether that is a web-based community or a device like the iPhone, to connect with little or no modification. In the realm of communities, the ability to easily connect to your peers is the Holy Grail of the application.</p>
<p>Successful communities thrive on fluid, hard-to-measure activities that are, in the purest sense, relationship-based. It&#8217;s not all about mass communications &#8212; although <a href="http://twitter.com" title="Twitter" target="_blank" rel="nofollow">Twitter</a> and <a href="http://www.youtube.com" title="YouTube" target="_blank" rel="nofollow">YouTube</a> are both bucking this trend &#8212; but more about the micro-interactions. Designing experiences that support thousands of micro-interactions means that the community is able to function, unhindered, almost indefinitely. <a href="http://www.facebook.com" title="Facebook" target="_blank" rel="nofollow">Facebook</a> lends itself expertly to micro-interactions through the user&#8217;s &#8216;wall&#8217;.</p>
<p>Companies are turning to communities as the new customer relationship management (<abbr title="customer relationship management">CRM</abbr>), but this requires people to mind them. Organisations such as <a href="http://www.37signals.com" title="37Signals" target="_blank" rel="nofollow">37Signals</a> and <a href="http://www.wildbit.com/" title="WildBit" target="_blank" rel="nofollow">WildBit</a> very effectively use Twitter to broadcast service updates and sometimes apologies, whilst the <a href="http://www.bbc.co.uk" title="British Broadcasting Corporation" target="_blank" rel="nofollow">BBC</a> and <a href="http://www.guardian.co.uk" title="The Guardian newspaper online" target="_blank" rel="nofollow">The Guardian</a> online use it to broadcast links to new content.</p>
<h3>Continuity</h3>
<p>People often don&#8217;t like change, but communities that thrive often do so though evolution to meet the needs of users. Communities need to be flexible to evolve while still providing a valuable and consistent user experience which can be sustained. Too much of a radical change will almost certainly have a detrimental impact upon visits, at least initially.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-6475233631580417";
/* 468x60 Basic */
google_ad_slot = "7117418273";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p>Building communities is the new marketing for a brand, whether that is through wholely-owned properties or 3rd party social media services such as <a href="http://twitter.com" title="Twitter: micro-blogging" target="_blank" rel="nofollow">Twitter</a>, <a href="http://wordpress.com" title="WordPress: blogging" target="_blank" rel="nofollow">WordPress</a> or <a href="http://www.ning.com" title="Ning: create your own social network" target="_blank" rel="nofollow">Ning</a>. The starting point to any community is finding a niche that is currently underserved and serving that community better than anyone else. But Brands need to know a few things before they head down the community path. The web is saturated with communities. Some are thriving, while others have come and gone. Creating a community is not like your average marketing campaign that you can ditch it is a failure. If the community is successful the four C&#8217;s of content, contect, connectivity and continuity will have to be maintained and indeed, developed.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simonwhatley.co.uk/the-four-cs-of-community/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Carmina Burana &#8211; Drink, Sex and Medieval Monks</title>
		<link>http://www.simonwhatley.co.uk/carmina-burana-drink-sex-and-medieval-monks</link>
		<comments>http://www.simonwhatley.co.uk/carmina-burana-drink-sex-and-medieval-monks#comments</comments>
		<pubDate>Fri, 01 Aug 2008 13:18:42 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Asides]]></category>
		<category><![CDATA[Bavarian]]></category>
		<category><![CDATA[bbc]]></category>
		<category><![CDATA[Burana Codex]]></category>
		<category><![CDATA[Carl Orff]]></category>
		<category><![CDATA[Carmina Burana]]></category>
		<category><![CDATA[choir]]></category>
		<category><![CDATA[chorus]]></category>
		<category><![CDATA[German]]></category>
		<category><![CDATA[orchestra]]></category>
		<category><![CDATA[television advertising]]></category>
		<category><![CDATA[The Fellowship of the Ring]]></category>
		<category><![CDATA[united kingdom]]></category>

		<guid isPermaLink="false">http://www.simonwhatley.co.uk/?p=704</guid>
		<description><![CDATA[It is not often that the little old ladies of the choral society scream "since Fate strikes down the strong man, everyone weep with me!", or when they are in a more cheerful mood, "My virginity makes me frisky, my simplicity holds me back. Oh, Oh, Oh, I am completely coming to life".]]></description>
			<content:encoded><![CDATA[<p>In the next academic year, my Girlfriend&#8217;s school will be performing Carmina Burana and I&#8217;m really looking forward to it. Since seeing the choir perform Handel&#8217;s Messiah last year, I&#8217;m sure the performance will be not only dramatic but evocative.</p>
<p>But is it right for an all-boys choir and orchaestra to be performing Carmina Burana?</p>
<p>Why the hesitance you may ask. Well read on&#8230;</p>
<p>The <abbr title="British Broadcasting Corporation">BBC</abbr>s <a href="http://www.bbc.co.uk/dna/h2g2/" title="h2g2" target="_blank" rel="nofollow">h2g2</a> has a great write up on Carmina Burana, which begins:</p>
<p>It is not often that the little old ladies of the choral society scream <q>since Fate strikes down the strong man, everyone weep with me!</q>, or when they are in a more cheerful mood, <q>My virginity makes me frisky, my simplicity holds me back. Oh, Oh, Oh, I am completely coming to life</q>. All this while the men strain their dinner jackets singing a bawdy drinking song. However, this is <a href="http://en.wikipedia.org/wiki/Carmina_Burana" title="Wikipedia: Carmina Burana" target="_blank" rel="nofollow">Carmina Burana</a>, one of the most popular works for choir and orchestra of the 20th Century.</p>
<p>But Carmina Burana is not all dramatic chanting &#8211; there is plenty of lyrical and gentle playing and singing, merry dances and of course the aforementioned drink and sex. The work lasts about an hour in performance and requires baritone, tenor and soprano solo singers as well as a boys&#8217; chorus, an adult chorus and a massive orchestra.</p>
<p><abbr title="United Kingdom">UK</abbr> residents will be familiar with the opening and closing music of Carmina Burana. The <a href="http://en.wikipedia.org/wiki/O_Fortuna" title="Wikipedia: O Fortuna" target="_blank" rel="nofollow">&#8216;O Fortuna&#8217;</a> chorus with its dramatic chanting against orchestral backing was used for many years in television advertising for a well-known brand of aftershave lotion (<a href="http://en.wikipedia.org/wiki/Old_Spice" title="Wikipedia: Old Spice" target="_blank" rel="nofollow">Old Spice</a>). And, since imitation is the sincerest form of flattery, there is more than a hint of the same chorus in the sound track of the film <a href="http://en.wikipedia.org/wiki/The_Fellowship_of_the_Ring" title="Wikipedia: The Fellowship of the Ring" target="_blank" rel="nofollow">The Fellowship of the Ring</a>, particularly to accompany the <a href="http://en.wikipedia.org/wiki/Nazg%C3%BBl" title="Wikipedia: Nazg%C3%BBl" target="_blank" rel="nofollow">Black Riders</a>.</p>
<p>You can <a href="http://www.bbc.co.uk/dna/h2g2/A709670" title="Carmina Burana - Drink, Sex and Medieval Monks" target="_blank" rel="nofollow">read more about Carmina Burana</a> on the <abbr title="British Broadcasting Corporation">BBC</abbr> website.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-6475233631580417";
/* 468x60 Basic */
google_ad_slot = "7117418273";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<h3>About h2g2</h3>
<p><a href="http://www.bbc.co.uk/dna/h2g2/" title="h2g2" target="_blank" rel="nofollow">h2g2</a> is an unconventional guide to life, the universe and everything, an encyclopaedic project where entries are written by people from all over the world. h2g2 was launched in April 1999, and the BBC took over the running of the site in February 2001 as part of our drive to develop new and innovative online services.</p>
<p>The Guide is written by visitors to the website and already it has thousands of entries on all sorts of subjects. The result is a living, breathing guide that&#8217;s constantly being updated and revised, driven forward by the very people who use it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simonwhatley.co.uk/carmina-burana-drink-sex-and-medieval-monks/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Great Adobe AIR Applications to Check Out</title>
		<link>http://www.simonwhatley.co.uk/great-adobe-air-applications-to-check-out</link>
		<comments>http://www.simonwhatley.co.uk/great-adobe-air-applications-to-check-out#comments</comments>
		<pubDate>Wed, 19 Mar 2008 09:43:25 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Adobe Integrated Runtime]]></category>
		<category><![CDATA[Adobe Labs]]></category>
		<category><![CDATA[AIR]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Analytics]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[Asynchronous JavaScript and XML]]></category>
		<category><![CDATA[bbc]]></category>
		<category><![CDATA[Benjamin Dobler]]></category>
		<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[collaboration tool]]></category>
		<category><![CDATA[designer]]></category>
		<category><![CDATA[Desktop]]></category>
		<category><![CDATA[desktop applications]]></category>
		<category><![CDATA[ebay]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML & XHTML]]></category>
		<category><![CDATA[Internet Applications]]></category>
		<category><![CDATA[internet-ready]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[Kuler]]></category>
		<category><![CDATA[less developer-centric tools]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Marco Kaiser]]></category>
		<category><![CDATA[Microsoft Vista]]></category>
		<category><![CDATA[Nicolas Lierman]]></category>
		<category><![CDATA[operating systems]]></category>
		<category><![CDATA[Picnik image editor]]></category>
		<category><![CDATA[RichFLV]]></category>
		<category><![CDATA[Runtime ( AIR )]]></category>
		<category><![CDATA[SearchCoders]]></category>
		<category><![CDATA[social-interaction tool]]></category>
		<category><![CDATA[Tweetr]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[web applications]]></category>
		<category><![CDATA[Web Browser]]></category>
		<category><![CDATA[web screenshot tool]]></category>
		<category><![CDATA[web skills]]></category>
		<category><![CDATA[Web technologies]]></category>
		<category><![CDATA[web-based suite]]></category>
		<category><![CDATA[web-hosted application]]></category>
		<category><![CDATA[WebKut]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.simonwhatley.co.uk/?p=472</guid>
		<description><![CDATA[Since the Adobe Integrated Runtime (AIR) was released at the end of February, we now have a stable platform on which to build desktop applications with our existing web skills. A number of people have already started and the Adobe AIR Marketplace is filling with AIR applications by the day.

So what is the big deal?]]></description>
			<content:encoded><![CDATA[<p><img src='http://www.simonwhatley.co.uk/blog/wp-content/uploads/2008/03/adobe_air_logo.thumbnail.png' alt='Adobe AIR Logo' style="margin-right:5px; float:left;" />Since the Adobe Integrated Runtime (<acronym title="Adobe Integrated Runtime">AIR</acronym>) was released at the end of February, we now have a stable platform on which to build desktop applications with our existing web skills. A number of people have already started and the <a href="http://www.adobe.com/cfusion/exchange/index.cfm?event=productHome&#038;exc=24&#038;loc=en_us" title="Adobe AIR Marketplace" target="_blank" rel="nofollow">Adobe AIR Marketplace</a> is filling with <acronym title="Adobe Integrated Runtime">AIR</acronym> applications by the day.</p>
<p>So what is the big deal? The Adobe marketing team state that:</p>
<blockquote><p>The Adobe <acronym title="Adobe Integrated Runtime">AIR</acronym> runtime lets developers use proven web technologies to build rich Internet applications that deploy to the desktop and run across operating systems. Adobe AIR offers an exciting new way to engage customers with innovative, branded desktop applications, without requiring changes to existing technology, people, or processes.</p></blockquote>
<p>What <acronym title="Adobe Integrated Runtime">AIR</acronym> applications should you check out?</p>
<p>What is intriguing is that all the tools I have chosen are generally useful tools for the developer or designer, with the exception of twhirl, which is a social-interaction tool. I&#8217;m looking forward to when other, less developer-centric tools become freely available. <a href="http://www.agileagenda.com" title="AgileAgenda" target="_blank" rel="nofollow">AgileAgenda</a> has taken the lead with this respect, albeit not freely available, as has <a href="http://desktop.ebay.com" title="eBay Desktop" target="_blank" rel="nofollow">eBay desktop</a>, but I would like to see examples from the <acronym title="British Broadcasting Corporation">BBC</acronym> in the form of a desktop <a href="http://www.bbc.co.uk/iplayer/" title="BBC iPlayer" target="_blank" rel="nofollow">BBC iPlayer</a> or maybe a Flickr image browser, del.icio.us bookmark reader, <acronym title="Really Simple Syndication">RSS</acronym> aggregator and a <a href="http://www.picnik.com" title="Picnik" target="_blank" rel="nofollow">Picnik</a> image editor.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-6475233631580417";
/* 468x60 Basic */
google_ad_slot = "7117418273";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<h3>Analytics Reporting Suite</h3>
<p><img src='http://www.simonwhatley.co.uk/blog/wp-content/uploads/2008/03/google_analytics_logo.thumbnail.gif' alt='Google Analytics Reporting Suite' style="margin-right:5px; float:left;" />The Analytics Reporting Suite, by Nicolas Lierman, brings <a href="http://www.google.com/analytics" title="Google Analytics" target="_blank" rel="nofollow">Google Analytics</a> to the desktop. It uses it&#8217;s own custom <acronym title="Application Programming Interface">API</acronym> to interact with Google and nearly implements all the features of Analytics.</p>
<p>For website owners this is a must-have application. Like the twhirl <acronym title="Adobe Integrated Runtime">AIR</acronym> application below, it is a fantastic example of what can be achieved with Flex and <acronym title="Adobe Integrated Runtime">AIR</acronym>. Measuring visitor trends and traffic are essential tasks to managing and improving a websites performance. The Analytics Reporting Suite allows you to configure multiple Google&#8217;s Analytics accounts and access the web-based suite&#8217;s plethora of features via a desktop application. The application displays integrated graphs and animations via a tabbed interface, which allows you switch between a number of reports. These reports can then be saved as a <acronym title="Portable Document Format">PDF</acronym>, Excel or <acronym title="eXtensible Markup Language">XML</acronym>document, or printed.</p>
<p>You can <a href="http://www.aboutnico.be/index.php/downloads/" title="Google Analytics Reporting Suite" target="_blank" rel="nofollow" class="snap_noshots">download and install</a> the application from the About Nico website.</p>
<h3>twhirl twitter Client</h3>
<p><img src='http://www.simonwhatley.co.uk/blog/wp-content/uploads/2008/03/twhirl_logo.thumbnail.jpg' alt='Twhirl Logo' style="margin-right:5px; float:left;" />twhirl, by Marco Kaiser, is probably the most popular desktop client for the <a href="http://twitter.com" title="twitter microblogging" target="_blank" rel="nofollow">twitter</a> micro-blogging service. Most of the features available on the twitter website are accessible through twhirl, plus, a lot of usability enhancements have been added to make it easier to manage multiple accounts. This is great for those who want to separate business and personal accounts they may have.</p>
<p>The twhirl application is a great example of how <acronym title="Adobe Integrated Runtime">AIR</acronym> can bring web applications to the desktop; it can dock to the system tray, display message alerts and you can configure the applications opacity when not focused (great if you like Mac and Vista-styled themes). The application allows you to search twitter users, view their timelines, add friends, view followers, delete tweets and much much more. Twhirl automatically fetches your friends&#8217; status updates, direct messages and replies, whilst also colour coding different types of messages and alerting you to messages both audibly and visually.</p>
<p>The twhirl application is skinnable and comes with several built in skins with which you can customise the application. All-in-all twhirl is not only one of the best twitter clients, but <acronym title="Adobe Integrated Runtime">AIR</acronym> applications.</p>
<p>You can <a href="http://www.twhirl.org/project/twhirl" title="twhirl twitter client" target="_blank" rel="nofollow" class="snap_noshots">download and install</a> the application from the twhirl website.</p>
<h3>Kuler Desktop</h3>
<p><img src='http://www.simonwhatley.co.uk/blog/wp-content/uploads/2008/03/kuler_logo.png' alt='Adobe Kuler Logo' style="margin-right:5px; float:left;" />Adobe kuler is the first web-hosted application from Adobe Labs designed both to stand alone and to complement <a href="http://www.adobe.com/products/creativesuite/" title="Adobe Creative Suite 3" target="_blank" rel="nofollow">Adobe Creative Suite</a> software. Built using <a href="http://www.adobe.com/products/flash/" title="Adobe Flash" target="_blank" rel="nofollow">Adobe Flash</a> and ActionScript 3.0, kuler is all about colour: colour for exploration, inspiration, experimentation and sharing. Kuler is clearly targeted at the designer, but anyone interested in colour will benefit from its use.</p>
<p>You can <a href="http://kuler.adobe.com" title="Kuler Desktop" target="_blank" rel="nofollow" class="snap_noshots">download and install</a> the application from the Adobe Labs website.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-6475233631580417";
/* 468x60 Basic */
google_ad_slot = "7117418273";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<h3>WebKut</h3>
<p><img src='http://www.simonwhatley.co.uk/blog/wp-content/uploads/2008/03/webkut_logo.png' alt='WebKut Logo' style="margin-right:5px; float:left;" />WebKut is a web screenshot tool that allows you to capture web pages, or parts of them in a very simple way. It provides you with 3 capture options: the entire page, the current view, or only a selection. This little application proves particularly handy for those presentations or projects that need great visuals from the web.</p>
<p>You can <a href="http://toki-woki.net/p/WebKut/" title="WebKut" target="_blank" rel="nofollow" class="snap_noshots">download and install</a> the application from the WebKut website.</p>
<h3>RichFLV</h3>
<p>RichFLV, by Benjamin Dobler, lets you edit <acronym title="Flash Video">FLV</acronym> files. The key features include reading <acronym title="Flash Video">FLV</acronym> metadata, read and edit cuepoints, cut <acronym title="Flash Video">FLV</acronym> files, convert the sound from an <acronym title="Flash Video">FLV</acronym> to <acronym title="MPEG-1 Audio Layer 3">MP3</acronym> format, convert an <acronym title="Flash Video">FLV</acronym> to an <acronym title="Shockwave Flash">SWF</acronym> &#8230; and much more.</p>
<p>You can <a href="http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&#038;loc=en_us&#038;extid=1355018" title="RichFLV" target="_blank" rel="nofollow" class="snap_noshots">download and install</a> the application from the Adobe <acronym title="Adobe Integrated Runtime">AIR</acronym> Marketplace website.</p>
<h3>SearchCoders Dashboard</h3>
<p><img src='http://www.simonwhatley.co.uk/blog/wp-content/uploads/2008/03/searchcoders_logo.thumbnail.png' alt='SearchCoders Logo' style="margin-right:5px; float:left;" />This Flex-based chat widget is designed with programmers in mind. The code input feature allows developers to chat about code without disrupting the conversation.</p>
<p>You can <a href="http://www.searchcoders.com/" title="SearchCoders" target="_blank" rel="nofollow" class="snap_noshots">download and install</a> the application from the SearchCoders website.</p>
<h3>Pownce</h3>
<p><img src='http://www.simonwhatley.co.uk/blog/wp-content/uploads/2008/03/pownce_logo.thumbnail.png' alt='Pownce Logo' style="margin-right:5px; float:left;" />Much like twhirl in look, feel and ease-of-use, but with a slant towards productivity rather than micro-blogging, Pownce is a way to keep in touch and share things with your friends or colleagues.  You can send people files, links, events, and messages and then have real conversations with the recipients. This is a great collaboration tool and was one of the first services to really embrace <acronym title="Adobe Integrated Runtime">AIR</acronym> as an application architecture, which could realise their service as a desktop client. Everything that is available via the Pownce website is also available via the client application, except and possibly importantly, the ability for the user to amend their account settings and add friends to your network; this still has to be done via the website.</p>
<p>For a small annual amount, Pownce offers a paid-for service which will eliminate adverts from your profile and allow you to send huge file sizes (100<acronym title="MegaByte">MB</acronym>) and customise the theme of your Pownce.</p>
<p>Pownce also offers Drupal integration and a mobile application, which works with the iPhone, BlackBerries and many more &#8216;internet-ready&#8217; mobile devices.</p>
<p>You can <a href="http://pownce.com/" title="Pownce" target="_blank" rel="nofollow" class="snap_noshots">download and install</a> the application from the Pownce website.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-6475233631580417";
/* 468x60 Basic */
google_ad_slot = "7117418273";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.simonwhatley.co.uk/great-adobe-air-applications-to-check-out/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BBC Appealing to the Facebook Generation</title>
		<link>http://www.simonwhatley.co.uk/bbc-appealing-to-the-facebook-generation</link>
		<comments>http://www.simonwhatley.co.uk/bbc-appealing-to-the-facebook-generation#comments</comments>
		<pubDate>Thu, 13 Mar 2008 12:30:23 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Strategy]]></category>
		<category><![CDATA[User Experience]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[bbc]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[homepage]]></category>
		<category><![CDATA[iGoogle]]></category>
		<category><![CDATA[Industry]]></category>
		<category><![CDATA[My Yahoo]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[The Web]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[User Interface Design]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Web Portal]]></category>
		<category><![CDATA[Windows Live]]></category>

		<guid isPermaLink="false">http://www.simonwhatley.co.uk/?p=459</guid>
		<description><![CDATA[I’m not a big fan of the BBC’s recent website redesign! While I believe that a few structural and hierarchical elements could have been addressed better, the overall result of this redesign is too “Facebook” and Web 2.0 for my liking; exactly what an online news site does not need. Who are the BBC trying to appeal to? They have gone from being content centric to design and technology centric. This in itself isn’t a bad thing, but I don’t understand the BBCs motivation for doing so.]]></description>
			<content:encoded><![CDATA[<p><img src='http://www.simonwhatley.co.uk/blog/wp-content/uploads/2008/03/bbc_homepage_logo.thumbnail.png' alt='BBC Homepage Logo' style="float:left; margin-right:10px;" />I&#8217;m not a big fan of the <acronym title="British Broadcasting Corporation">BBC</acronym>&#8216;s recent website redesign! While I believe that a few structural and hierarchical elements could have been addressed better, the overall result of this redesign is too &#8220;Facebook&#8221; and <a href="http://en.wikipedia.org/wiki/Web_2" title="Wikipedia Web 2.0" rel="nofollow">Web 2.0</a> for my liking; exactly what an online news site does not need. Who are the <acronym title="British Broadcasting Corporation">BBC</acronym> trying to appeal to? They have gone from being content centric to design and technology centric. This in itself isn&#8217;t a bad thing, but I don&#8217;t understand the <acronym title="British Broadcasting Corporation">BBC</acronym>s motivation for doing so.</p>
<p>Richard Titus, the Acting Head of User Experience at the <acronym title="British Broadcasting Corporation">BBC</acronym> was a key driver of the project.</p>
<blockquote><p>From a conceptual point of view, the widgetisation adopted by <a href="http://www.facebook.com" title="Facebook" target="_blank" rel="nofollow">Facebook</a>, <a href="http://www.google.com/ig" title="iGoogle" target="_blank" rel="nofollow">iGoogle</a> and <a href="http://www.netvibes.com/" title="netvibes" target="_blank" rel="nofollow">netvibes</a> weighed strongly on our initial thinking.</p></blockquote>
<p>Titus identifies the key features of the new homepage as being:</p>
<ul>
<li>Simple, clean and beautiful, the final design, &#8230; visually striking yet unpretentious.</li>
<li>Personalization: you can choose the content that interests you by adding and removing the content boxes via the &#8220;Customise Your Homepage&#8221; tab.</li>
<li>Localization: Users can now set their own location, enabling them to access local sites, weather, news, radio and TV schedules without the hassle often associated with user journeys to local content.</li>
<li>Simplicity: the customization is intuitive and includes an interactive demo and tips to guide users through the process. It is also unobtrusive if the user has no desire to customize their page their experience won&#8217;t be compromised.</li>
<li>Search: The site is much easier to read and scan at a glance. At the top of the page there&#8217;s a search function (now reduced from two search boxes to one), and at the bottom a full directory of all <acronym title="British Broadcasting Corporation">BBC</acronym> sites and a link to the A-Z, allowing users to quickly find what they&#8217;re looking for.</li>
<li>Nostalgia: the new homepage also manages to incorporate eccentricity alongside innovation.</li>
</ul>
<p><strong>Aesthetically bold and bright.</strong></p>
<p>Aesthetically, the new homepage looks nice. It&#8217;s big, bold and bright &#8211; a far cry from the old days when <acronym title="British Broadcasting Corporation">BBC</acronym> sites had text almost too small to read and a fixed-width design optimised for tiny monitors. But at the same time it appears far too clunky! I&#8217;d prefer something that would look a little more elegant and understated. Something that doesn&#8217;t appeal to <em>The Facebook Generation</em>, who are less likely to read the <acronym title="British Broadcasting Corporation">BBC</acronym> pages at lunchtime, than update their Facebook, Bebo or Twitter profile during that &#8216;valuable&#8217; hour. This begs the question, does the <acronym title="British Broadcasting Corporation">BBC</acronym> know who their core audience is?</p>
<p><strong>Confusing interactions.</strong></p>
<p>The homepage makes great use of AJAX, but at the same time, there are a number of confusing interactions going on. For instance, the &#8216;Edit&#8217; button next to each area of customisable content seems like the wrong label text. I&#8217;m not editing the news, the weather or blogs &#8211; I&#8217;m selecting which news categories I want to see, where I am and which blogs I want to read. These types of button ought to be contextual rather than generic. Edit is simply too vague.</p>
<p>Also, what&#8217;s the idea behind those plus and minus buttons for news? Strange idea. Add or remove articles from the displayed list? Why would you want to remove them from view sequentially? If the idea was to allow the user to asynchronously update a short list of available headlines, then why not move back/forwards in blocks of five? Plus and minus are often used as metaphors for creation/deletion in software, so the usage doesn&#8217;t seem right.</p>
<p><strong>Personalisation vs Simplicity &#8230; an uneasy relationship</strong></p>
<p align="center"><img src='http://www.simonwhatley.co.uk/blog/wp-content/uploads/2008/03/bbc_customise_homepage.png' alt='BBC Customise Homepage' /></p>
<p>The ability to personalise a website is, in general, a good thing. Google has done it with their <a href="http://www.google.com/ig" title="iGoogle" target="_blank" rel="nofollow">iGoogle</a>, Yahoo! with <a href="http://my.yahoo.com" title="My Yahoo" target="_blank" rel="nofollow">My Yahoo</a> and Microsoft with <a href="http://www.live.com" title="Windows Live" target="_blank" rel="nofollow">Windows Live</a>.  But I think the balance here is gone too far towards design and borrowing from succesful Web 2.0 sites. The <acronym title="British Broadcasting Corporation">BBC</acronym> website has always been an impressive destination for (relatively) impartial news and current affairs throughout the world, not a <a href="http://en.wikipedia.org/wiki/Web_portal" title="Web Portal Definition" target="_blank" rel="nofollow">Web Portal</a>. Or is this the point? Does the <acronym title="British Broadcasting Corporation">BBC</acronym> want to become a destination for all your information needs and compete with Google, Microsoft and Yahoo?</p>
<p>The <acronym title="British Broadcasting Corporation">BBC</acronym> should consider that 14-25 year old users, what I term <em>The Facebook Generation</em>, will require far greater scope for adding their individuality than is currently available. The social networking generation are page-savvy. They want control of their interface to information, their screen is their window on the world and I don&#8217;t think that you have gone far enough in divesting control of the display of that information to the user.</p>
<p>But for those who aren&#8217;t part of <em>The Facebook Generation</em>, the people who care about getting to the content fast and with little fuss, is the ability to personalise the homepage worthwhile or even simple? I&#8217;m not so sure.</p>
<p><strong>Who needs a clock?</strong></p>
<p><img src='http://www.simonwhatley.co.uk/blog/wp-content/uploads/2008/03/bbc_homepage_clocks.thumbnail.png' alt='BBC Homepage Clocks' style="float:left; margin-right:10px;" /> Finally, the clock and date. What an important waste of webpage &#8216;real estate&#8217;, even though in the <acronym title="British Broadcasting Corporation">BBC</acronym>&#8216;s case I understand it was a throwback to the old clock that preceded individual TV programmes. If you&#8217;ve got a modern computer capable of displaying the clock with the Flash plugin, then you&#8217;ll almost certainly have the date and time visible to you anyway. It&#8217;s needlessly superfluous on a website.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-6475233631580417";
/* 468x60 Basic */
google_ad_slot = "7117418273";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.simonwhatley.co.uk/bbc-appealing-to-the-facebook-generation/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Website Success via Desire Lines</title>
		<link>http://www.simonwhatley.co.uk/website-success-via-desire-lines</link>
		<comments>http://www.simonwhatley.co.uk/website-success-via-desire-lines#comments</comments>
		<pubDate>Fri, 12 Oct 2007 13:56:31 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[User Experience]]></category>
		<category><![CDATA[advertising revenue]]></category>
		<category><![CDATA[advertising revenues]]></category>
		<category><![CDATA[amazon]]></category>
		<category><![CDATA[ambient personalisation]]></category>
		<category><![CDATA[bbc]]></category>
		<category><![CDATA[current tv]]></category>
		<category><![CDATA[Customers Who]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Design Patterns]]></category>
		<category><![CDATA[desire lines]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[human choice]]></category>
		<category><![CDATA[Information Architecture]]></category>
		<category><![CDATA[online community helps]]></category>
		<category><![CDATA[paths]]></category>
		<category><![CDATA[planning]]></category>
		<category><![CDATA[Plato Human]]></category>
		<category><![CDATA[search box]]></category>
		<category><![CDATA[targeted advertising]]></category>
		<category><![CDATA[This Item Also]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[User Interface Design]]></category>
		<category><![CDATA[user iterface design]]></category>
		<category><![CDATA[User Science]]></category>
		<category><![CDATA[web phenomenon]]></category>
		<category><![CDATA[web user interface]]></category>

		<guid isPermaLink="false">http://www.simonwhatley.co.uk/?p=347</guid>
		<description><![CDATA[Desire lines are those well-worn ribbons of dirt that you see cutting across a patch of grass, field or park, often with nearby pavements, particularly those that offer a less direct route, ignored. In winter, desire lines appear spontaneously as tramped down paths in the snow. These paths are never perfectly straight but instead, they meander like a river this way and that, as if to prove that desire itself isn't uniform or linear and (literally, in this case) straightforward.]]></description>
			<content:encoded><![CDATA[<p>To paraphrase Plato</p>
<blockquote><p>Human  behaviour flows from three main sources: desire, emotion and knowledge</p></blockquote>
<p>Desire lines are those well-worn ribbons of dirt that you see cutting across a patch of grass, field or park, often with nearby pavements, particularly those that offer a less direct route, ignored. In winter, desire lines appear spontaneously as trampled down paths in the snow. These paths are never perfectly straight but instead, they meander like a river this way and that, as if to prove that desire itself isn&#8217;t uniform or linear and (literally, in this case) straightforward.  Desire Lines show that it is human to choose, but it is also human to choose what other people have chosen before. Be it for establishing a pattern, be it for convenience, or be it for not reinventing the wheel. In this way the Desire Lines become well-trodden and pseudo-permanent routes to a particular destination.</p>
<blockquote><p>Desire Lines are the ultimate unbiased expression of natural human purpose</p></blockquote>
<p>The term &#8216;Desire Lines&#8217; originates from the field of urban planning in the early 20th Century.</p>
<blockquote><p>An optimal way to design pathways in accordance to natural behaviour is not to design them at all</p></blockquote>
<p><strong>Extending the concept to websites</strong></p>
<p>Broadening the concept of Desire Lines, it is also possible to see other impressions of human desire in websites, many of which can provide a commercial advantage to the particular website in question.</p>
<p>The web phenomenon is simply another way people find entertainment, communicate and interact. Whether the purpose of using the web is for enjoyment or employment, Desire Lines are are a such perfect expression of natural human intention that they become the utlimate design pattern for building successful and intuitive websites. It is easy to envisage users like an army of ants moving in single file towards their goal, not following set paths, but bypassing the planned route directly towards the news article, the video, indeed any product being offered by the website concerned.</p>
<p>Instead of websites providing classic access points via menus and taxonomies, they can employ different access points based upon user preferences and previous browsing history.  This is heavily dependent upon capturing user&#8217;s details via a cookie or a login system, like at Amazon, but the benefits to the user can be far more rewarding.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-6475233631580417";
/* 468x60 Basic */
google_ad_slot = "7117418273";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p><strong>So who is doing this?</strong></p>
<p>Understanding the demographics of your users and your site usage is key to Desire Lines. The <a href="http://www.bbc.co.uk" title="BBC" target="_blank" rel="nofollow">BBC</a> website is a great example whereby search statics are monitored frequently.  They adapt their web user interface and site structure based upon what people are typing into their search box thus making it easier for subsequent users to view the more relevant or interesting stories of the day.</p>
<p><a href="http://www.amazon.com" title="Amazon.com" target="_blank" rel="nofollow">Amazon</a> makes Desire Lines more explicit and beneficial to their users through Listmania, recommendations, Customers Who Bought This Item Also Bought,  What Do Customers Ultimately Buy After Viewing Items Like This?, Better Together, Recently Viewed Items, Wish Lists etc. In essence, Amazon does not provide a single standard way of finding an item, but relates each item together through a myriad of historic information from its user community.  The user therefore has the option to search for an item, use the catagories, or click on links and begin their own desired user journey, which can be uniquely distinct from other users journeys or a mirror of those journeys.</p>
<p><a href="http://uk.current.com/" title="Current TV UK" target="_blank" rel="nofollow">Current TV</a> takes the concept even further by showing content that is purely based upon what users want, or what they term as viewer-created content.  Current slice the schedule into short segments into &#8220;pods&#8221; &#8212; each just a few minutes long. These pods profile interesting people on the rise, intelligence on trends as they spring up around us, and international news from new perspectives. Anyone who wants to contribute can upload a video. Then, everyone in the Current online community helps decide what should be on TV. You can join in at either stage &#8212; watch &amp; vote or make video.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-6475233631580417";
/* 468x60 Basic */
google_ad_slot = "7117418273";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p><strong>Limitations to Desire Lines</strong></p>
<p>A key limitation, or possibly a challenge, to the successful adoption of Desire Lines concerns advertising revenues. For a user it is beneficial to be able to reached the desired destination as quickly and efficiently as possible, but for a website&#8217;s advertising revenue it certainly is not. To be simplistic and possibly cynical, many sites don&#8217;t want users to have an overly efficient experience as this limits page views and page impressions. The challenge, therefore, is to retain users on the website and provide them more relevant information and targeted advertising.</p>
<p>There are also implications on what is considered more relevant and what is not. The BBC to some extent decides based upon user searches, but this serves also to hide potentially captivating an important stories. One user&#8217;s preference isn&#8217;t necessarily the next&#8217;s, therefore creating an information bias. This may be even more problematic with our over-reliance on Google for finding information.  The Google algorithms essentially decide what we find even though we are told that the sites listed are based upon relevance and popularity.</p>
<p>Finally, you can&#8217;t pave every desire line. To do so would end in a playing field not covered in lush green grass with a few tracks intersecting the green, but a concrete mess.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-6475233631580417";
/* 468x60 Basic */
google_ad_slot = "7117418273";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.simonwhatley.co.uk/website-success-via-desire-lines/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

