<?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>Scribble Designs &#187; Internet Technologies</title>
	<atom:link href="http://www.scribbledesigns.co.uk/categories/internet-technologies/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.scribbledesigns.co.uk</link>
	<description>Web Design in Northern Ireland.</description>
	<lastBuildDate>Fri, 18 Jun 2010 14:22:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Hacking Simple Machines Forum For SEO</title>
		<link>http://www.scribbledesigns.co.uk/2008/03/17/hacking-simple-machines-forum-for-seo/</link>
		<comments>http://www.scribbledesigns.co.uk/2008/03/17/hacking-simple-machines-forum-for-seo/#comments</comments>
		<pubDate>Mon, 17 Mar 2008 14:53:21 +0000</pubDate>
		<dc:creator>Gerard McGarry</dc:creator>
				<category><![CDATA[Internet Technologies]]></category>
		<category><![CDATA[Search Engine Optimisation]]></category>

		<guid isPermaLink="false">http://www.scribbledesigns.co.uk/2008/03/17/hacking-simple-machines-forum-for-seo/</guid>
		<description><![CDATA[The Simple Machines Forum is a great free php forum system. Unfortunately, out of the box it&#8217;s the most poorly search engine optimised piece of rubbish you&#8217;re likely to ever experience. But then, most forumware is. When I installed the Unreality TV Forum, the first thing I did was to make the layout fixed-width for [...]]]></description>
			<content:encoded><![CDATA[<p>The Simple Machines Forum is a great free php forum system. Unfortunately, out of the box it&#8217;s the most poorly search engine optimised piece of rubbish you&#8217;re likely to ever experience. But then, most forumware is.</p>
<p>When I installed the <a href="http://forum.unrealitytv.co.uk/">Unreality TV Forum</a>, the first thing I did was to make the layout fixed-width for better legibility. The liquid layout of most forum themes results in long lines that are difficult to read without getting cataracts or worse! But that&#8217;s a usability thing.</p>
<p><span id="more-166"></span></p>
<p>The first thing I&#8217;m tackling for <strong>SEO reasons</strong> is titling. The page title is correct &#8211; it follows the format of the topic title. But on-page, the title is repeated loads of times, but not once with any sort of semantic meaning. I&#8217;m talking about the H1 tag here.</p>
<p>How do we tell Google what the page is about? Kick it off with a title wrapped in &lt;h1&gt;&lt;/h1&gt;. The problem with SMF themes is that they&#8217;re badly commented and hard to navigate. So here&#8217;s how I do it.</p>
<h2>Theme Inheritance</h2>
<p>There is a default theme included with SMF that all other themes derive from. The template that handles <strong>topic display</strong> is called display.template.php. If you want to customise this template, <strong>never</strong> do it to the default version &#8211; <strong>always</strong> copy the file to your custom theme folder.</p>
<p>The way inheritance works is that SMF will look for a customised display template first. If it doesn&#8217;t find one, it&#8217;ll revert to the default. So, bearing that in mind, let&#8217;s begin.</p>
<p>Take a copy of the display.template.php from the default theme folder and copy it into your current theme folder. We&#8217;ll edit this file to override the default forum topic display.</p>
<h2>Hacking The Topic Display Template</h2>
<p>Round about line 208 on the display template, there&#8217;s a bit of code that displays the topic title and the number of views that topic has had.</p>
<pre><code>&lt;td valign="middle" width="85%" style="padding-left: 6px;" id="top_subject"&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ', $txt[118], ': ', $context['subject'], ' &amp;nbsp;(', $txt[641], ' ', $context['num_views'], ' ', $txt[642], ')&lt;/td&gt;</code></pre>
<p>What I did was to take out the number of views and put that piece of code elsewhere. Once that was done, I wrapped the resulting code in &lt;h1&gt; tags, giving some semantic richness to the topic title.</p>
<p>The modified code (minus the page views) is this:</p>
<pre><code>&lt;td valign="middle" width="85%" style="padding-left: 6px;" id="top_subject"&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;h1 class="topictitle"&gt;', $context['subject'], '&lt;/h1&gt;&lt;/td&gt;</code></pre>
<p>Now, I made this change to our forum less than a week ago. I want to give Google a bit of time to reindex the site and take into account the new page structures. It&#8217;ll be interesting to see if this relatively simple change makes a long term difference to ranking on the forum.</p>
<h2>Hacking The Forum Users</h2>
<p>One of the biggest problems in running a forum is that you give up control over input to your members. And your members are probably not SEO aware.</p>
<p>I had a word with some of our power members and asked them to be more thorough with their titles &#8211; including full names and details where possible. I didn&#8217;t approach this as an SEO issue &#8211; I approached it as a usability issue. Because we republish our latest forum headlines on the Unreality blogs, it was important that those topics made sense to any readers browsing the website.</p>
<p>So, we approached this from a usability point of view, which is correct. But we also hopefully gain SEO benefits.</p>
<h2>Other SMF Hacks</h2>
<p>There are a couple of other things I&#8217;d like to hack in SMF if I could. One is the poor URLs the system generates. The other is a full semantic reworking of the topic display template so that it&#8217;s not completely dependent on table-based layouts. If anybody&#8217;s done any work on this kind of thing, I&#8217;d love to hear it.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.scribbledesigns.co.uk/2008/03/17/hacking-simple-machines-forum-for-seo/&amp;title=Hacking+Simple+Machines+Forum+For+SEO" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.scribbledesigns.co.uk/2008/03/17/hacking-simple-machines-forum-for-seo/&amp;title=Hacking+Simple+Machines+Forum+For+SEO" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.scribbledesigns.co.uk/2008/03/17/hacking-simple-machines-forum-for-seo/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.scribbledesigns.co.uk/2008/03/17/hacking-simple-machines-forum-for-seo/&amp;title=Hacking+Simple+Machines+Forum+For+SEO" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.scribbledesigns.co.uk/2008/03/17/hacking-simple-machines-forum-for-seo/&amp;title=Hacking+Simple+Machines+Forum+For+SEO" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.scribbledesigns.co.uk/2008/03/17/hacking-simple-machines-forum-for-seo/&amp;title=Hacking+Simple+Machines+Forum+For+SEO" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=RT+%40gerrybot+Hacking+Simple+Machines+Forum+For+SEO+-+&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.scribbledesigns.co.uk/2008/03/17/hacking-simple-machines-forum-for-seo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some Useful Yahoo! Shortcuts</title>
		<link>http://www.scribbledesigns.co.uk/2007/11/08/some-useful-yahoo-shortcuts-3/</link>
		<comments>http://www.scribbledesigns.co.uk/2007/11/08/some-useful-yahoo-shortcuts-3/#comments</comments>
		<pubDate>Thu, 08 Nov 2007 12:11:48 +0000</pubDate>
		<dc:creator>Gerard McGarry</dc:creator>
				<category><![CDATA[Internet Technologies]]></category>
		<category><![CDATA[Search Engine Optimisation]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Yahoo!]]></category>

		<guid isPermaLink="false">http://www.scribbledesigns.co.uk/2007/11/08/some-useful-yahoo-shortcuts-3/</guid>
		<description><![CDATA[After getting frustrated with the search results that I was getting from Google, I decided to spread my wings a little bit and start using different search engines. Currently, I&#8217;m using Yahoo! for my everyday searches, supplemented by Microsoft&#8217;s Live.com. One of the biggest benefits of using alternative search engines is seeing different results. I&#8217;d [...]]]></description>
			<content:encoded><![CDATA[<p>After getting frustrated with the search results that I was getting from Google, I decided to spread my wings a little bit and start <a href="http://www.gerardmcgarry.com/33/promiscuous">using different search engines</a>.</p>
<p>Currently, I&#8217;m using <a href="http://search.yahoo.com/">Yahoo!</a> for my everyday searches, supplemented by Microsoft&#8217;s <a href="http://search.live.com">Live.com</a>.</p>
<p>One of the biggest benefits of using alternative search engines is seeing different results. I&#8217;d gotten tired of Google showing Wikipedia as the first result for virtually everything. Yahoo! and Live don&#8217;t give Wikipedia nearly as much weight as Google does, so that&#8217;s a major bonus &#8211; other sites manage to rise to the top of the results pages.</p>
<p><span id="more-165"></span></p>
<p>Anyway, since I&#8217;m using Yahoo! much more, I was pleased to come across <a href="http://www.ysearchblog.com/archives/000498.html">this guide</a> on the Yahoo! search blog which shows you how to get better results out of your search queries. Here&#8217;s an overview:</p>
<ol>
<li><strong>Advanced search queries</strong>: terms you can add to your search to filter for specific results. You can use square brackets to specifiy the order of words in the search. For example [gerard mcgarry] will find &quot;Gerard McGarry&quot;, but not &quot;McGarry Gerard&quot;. </li>
<li><strong>Package tracking</strong>: Tracking UPS, FedEx and USPS deliveries directly from the search bar. </li>
<li><strong>Definitions &amp; Synonyms</strong>: Type define or definition along with your query to get a dictionary style definition of a word. </li>
<li><strong>Exclude terms</strong>: This works in the standard way &#8211; if you want to exclude a term from your search type the word with a minus sign in front of it. </li>
<li><strong>Travel information</strong>: You can get a host of travel information including a flight tracker, traffic status and maps. </li>
<li><strong>Quick links to Yahoo! services</strong>: Type the name of the Yahoo service you require and an exclamation mark immediately after to visit that Yahoo! service. For example, a search for &#8216;<a href="http://search.yahoo.com/search?p=news!&amp;y=Search&amp;fr=ytff1-msgff">news!</a>&#8216; will take you directly to Yahoo News. </li>
<li><strong>Open Shortcuts</strong>: Similar to the technique in point 6, you can automatically search a specific site using this. Search Wikipedia for information about The Wombles by using the search &#8216;<a href="http://search.yahoo.com/search?p=!wiki%20the%20wombles">!wiki The Wombles</a>&#8216;. To search for variations on this type of query, do a search for &#8216;<a href="http://search.yahoo.com/search?p=!list">!list</a>&#8216; </li>
</ol>
<p>Not a bad set of tips for getting the most out of Yahoo!. The one thing I&#8217;ve noticed is missing (to my knowledge) is the calculator and currency converter functionality. If I find a way to do this, I&#8217;ll let you know!</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.scribbledesigns.co.uk/2007/11/08/some-useful-yahoo-shortcuts-3/&amp;title=Some+Useful+Yahoo%21+Shortcuts" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.scribbledesigns.co.uk/2007/11/08/some-useful-yahoo-shortcuts-3/&amp;title=Some+Useful+Yahoo%21+Shortcuts" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.scribbledesigns.co.uk/2007/11/08/some-useful-yahoo-shortcuts-3/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.scribbledesigns.co.uk/2007/11/08/some-useful-yahoo-shortcuts-3/&amp;title=Some+Useful+Yahoo%21+Shortcuts" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.scribbledesigns.co.uk/2007/11/08/some-useful-yahoo-shortcuts-3/&amp;title=Some+Useful+Yahoo%21+Shortcuts" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.scribbledesigns.co.uk/2007/11/08/some-useful-yahoo-shortcuts-3/&amp;title=Some+Useful+Yahoo%21+Shortcuts" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=RT+%40gerrybot+Some+Useful+Yahoo%21+Shortcuts+-+&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.scribbledesigns.co.uk/2007/11/08/some-useful-yahoo-shortcuts-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Managing RSS Feeds</title>
		<link>http://www.scribbledesigns.co.uk/2007/04/26/managing-rss-feeds/</link>
		<comments>http://www.scribbledesigns.co.uk/2007/04/26/managing-rss-feeds/#comments</comments>
		<pubDate>Thu, 26 Apr 2007 22:13:10 +0000</pubDate>
		<dc:creator>Gerard McGarry</dc:creator>
				<category><![CDATA[Internet Technologies]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[RSS Readers]]></category>
		<category><![CDATA[Syndication]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.scribbledesigns.co.uk/2007/04/26/managing-rss-feeds/</guid>
		<description><![CDATA[If there's one problem with RSS, it's that you can subscribe to feeds too easily. This post looks at ways you can cut down on RSS clutter in your feed reader and two different techniques for reading feeds.]]></description>
			<content:encoded><![CDATA[<p>If there&#8217;s one problem with RSS, it&#8217;s that you can subscribe to feeds <em>too easily</em>. I subscribe to more feeds than I have the time to read. I&#8217;ve tried most of the major RSS aggregators and homepage solutions like <a href="http://www.netvibes.com/">Netvibes</a>.</p>
<p>Of course, too much RSS is a bad thing. I found myself getting more and more frustrated with all the feeds in my reader (<a href="http://www.google.com/reader/">Google Reader</a>) and watching unread items stack up. How would I ever read it all?</p>
<p><span id="more-122"></span>Well, I realised that I don&#8217;t have to read it all. I noticed that I was reading RSS in two different ways:</p>
<p>1. Finger on the pulse type information. This is essential reading for me and includes a number of blogs by web designers, SEOs and ProBloggers that write top-notch content and indespensible advice. These are the blogs I gain the most from and that I&#8217;m most likely to comment and participate in.</p>
<p>2. Non time-sensitive blogs. These will usually be blogs that are outside my key interest areas. They might be blogs about music, parenting or the odd personal blog that I like to read from time to time.</p>
<h2>Sorting RSS Feeds By Reading Habits</h2>
<p>I decided that Google Reader was the best choice for reading the critical RSS feeds. I could browse full feeds quickly and easily, and navigate between posts with Reader&#8217;s handy keyboard shortcuts.</p>
<p>I moved all my less essential feeds over to various tabs in Netvibes. I was able to create a tab for each category of feed and create a &#8216;wall of news&#8217; where I could see the latest headlines at a glance.</p>
<p>By moving out the less essential feeds, my Google Reader has less clutter and I can browse through my feeds much more quickly. The feeds I have moved to Netvibes can be checked on an ad-hoc basis as I&#8217;m really only interested in current news from them.</p>
<h2>How Do You Manage Your RSS Subscriptions?</h2>
<p>If you&#8217;re an RSS addict, why not share your tips on managing your RSS feed?</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.scribbledesigns.co.uk/2007/04/26/managing-rss-feeds/&amp;title=Managing+RSS+Feeds" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.scribbledesigns.co.uk/2007/04/26/managing-rss-feeds/&amp;title=Managing+RSS+Feeds" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.scribbledesigns.co.uk/2007/04/26/managing-rss-feeds/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.scribbledesigns.co.uk/2007/04/26/managing-rss-feeds/&amp;title=Managing+RSS+Feeds" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.scribbledesigns.co.uk/2007/04/26/managing-rss-feeds/&amp;title=Managing+RSS+Feeds" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.scribbledesigns.co.uk/2007/04/26/managing-rss-feeds/&amp;title=Managing+RSS+Feeds" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=RT+%40gerrybot+Managing+RSS+Feeds+-+&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.scribbledesigns.co.uk/2007/04/26/managing-rss-feeds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Configure Sitemap Autodiscovery For Your Website</title>
		<link>http://www.scribbledesigns.co.uk/2007/04/12/how-to-configure-sitemap-autodiscovery-for-your-website/</link>
		<comments>http://www.scribbledesigns.co.uk/2007/04/12/how-to-configure-sitemap-autodiscovery-for-your-website/#comments</comments>
		<pubDate>Thu, 12 Apr 2007 15:27:50 +0000</pubDate>
		<dc:creator>Gerard McGarry</dc:creator>
				<category><![CDATA[Internet Technologies]]></category>
		<category><![CDATA[Search Engine Optimisation]]></category>

		<guid isPermaLink="false">http://www.scribbledesigns.co.uk/2007/04/12/how-to-configure-sitemap-autodiscovery-for-your-website/</guid>
		<description><![CDATA[How to add support for sitemap autodiscovery to your website. Now that Google, Yahoo! and MSN have added support for autodiscovery, you can add a simple line to your robots.txt file that tells the spiders where the sitemap is located.]]></description>
			<content:encoded><![CDATA[<p>I read over on <a href="http://www.pronetadvertising.com/articles/sitemap-submission-a-thing-of-the-past55678.html">ProNet</a> today that all the major search engines have now <a href="http://blog.ask.com/2007/04/sitemaps_autodi.html">announced support</a> for autodiscovery of sitemaps via the robots.txt file.</p>
<p>Since I use WordPress for a lot of my sites, I use the <a href="http://www.arnebrachhold.de/2006/01/07/google-sitemap-generator-for-wordpress-3-beta">Sitemap Generator plugin</a> to automatically create a sitemap. If you&#8217;re using any other content management system or &#8211; God forbid &#8211; manually managing your content, you may have to manually create a sitemap file or find a way to automate the process. I wrote a tutorial on creating a <a href="http://www.interwebworld.co.uk/47/creating-a-google-sitemap-for-an-aspnet-website/">sitemap for ASP.NET applications</a> a while back.</p>
<p>Anyway, once you&#8217;ve got a sitemap configured and working, all you need to do now is modify your robots.txt file and add the line:</p>
<p><code>SITEMAP: http://www.yoursite.com/sitemap.xml</code></p>
<p>Save the robots.txt file back to your web server and the search engines will take care of the rest.</p>
<h2>Benefits Of Using A Sitemap</h2>
<ul>
<li>Autodiscovery means you don&#8217;t have to manage submission to the major search engines and any others that may adopt the sitemaps standard.</li>
<li>Providing a sitemap may prevent spiders unnecessarily crawling your website, reducing load on the server and bandwidth usage.</li>
<li>The sitemaps protocol allows you to identify important pages in your site and specify which ones are updated more frequently. This allows the spiders to crawl your site more intelligently.</li>
</ul>
<p>I should just add the standard disclaimer that publishing a sitemap to the search engines does not guarantee that your site will be indexed. Nor is it a way to achieve higher rankings. It simply provides an inventory of all the pages on your website to the search engines.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.scribbledesigns.co.uk/2007/04/12/how-to-configure-sitemap-autodiscovery-for-your-website/&amp;title=How+To+Configure+Sitemap+Autodiscovery+For+Your+Website" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.scribbledesigns.co.uk/2007/04/12/how-to-configure-sitemap-autodiscovery-for-your-website/&amp;title=How+To+Configure+Sitemap+Autodiscovery+For+Your+Website" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.scribbledesigns.co.uk/2007/04/12/how-to-configure-sitemap-autodiscovery-for-your-website/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.scribbledesigns.co.uk/2007/04/12/how-to-configure-sitemap-autodiscovery-for-your-website/&amp;title=How+To+Configure+Sitemap+Autodiscovery+For+Your+Website" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.scribbledesigns.co.uk/2007/04/12/how-to-configure-sitemap-autodiscovery-for-your-website/&amp;title=How+To+Configure+Sitemap+Autodiscovery+For+Your+Website" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.scribbledesigns.co.uk/2007/04/12/how-to-configure-sitemap-autodiscovery-for-your-website/&amp;title=How+To+Configure+Sitemap+Autodiscovery+For+Your+Website" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=RT+%40gerrybot+How+To+Configure+Sitemap+Autodiscovery+For+Your+Website+-+&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.scribbledesigns.co.uk/2007/04/12/how-to-configure-sitemap-autodiscovery-for-your-website/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Client Guide: Understanding Web Hosting and Domain Registration</title>
		<link>http://www.scribbledesigns.co.uk/2007/03/07/client-guide-understanding-web-hosting-and-domain-registration/</link>
		<comments>http://www.scribbledesigns.co.uk/2007/03/07/client-guide-understanding-web-hosting-and-domain-registration/#comments</comments>
		<pubDate>Wed, 07 Mar 2007 09:30:13 +0000</pubDate>
		<dc:creator>Gerard McGarry</dc:creator>
				<category><![CDATA[Client Guides]]></category>
		<category><![CDATA[Internet Technologies]]></category>

		<guid isPermaLink="false">http://www.scribbledesigns.co.uk/2007/03/07/client-guide-understanding-web-hosting-and-domain-registration/</guid>
		<description><![CDATA[For the newcomer to website hosting, the terminology can be confusing and difficult to understand. In this short guide, I try and explain the roles that web hosts, domains and even ISPs play in the process.]]></description>
			<content:encoded><![CDATA[<p>A common cause of confusion for first (and sometimes second) time website owners is all the jargon surrounding web hosting and domain registration. That&#8217;s understandable, because to a non-techie, it really is a different language.</p>
<p>When I meet new clients, they&#8217;ll often ask me to explain what each component is and why they need it. I&#8217;ve even come across people who believe their ISP has something to do with the process too!</p>
<p>So, this guide will be dedicated to explaining the basics of web hosting so that you can be clearer on web hosting. Hopefully you&#8217;ll walk away with a better idea of how web hosting and domain registration work and how they relate to each other.</p>
<p><span id="more-79"></span></p>
<h2>Web Hosting</h2>
<p>Your website is made up of a number of different components: web pages, pictures and possibly a database if your site has any type of content management system. In order for these to be available on the Internet, they need to be &#8216;hosted&#8217;, or stored on a computer known as a server.</p>
<p>Different types of web hosting service exist for virtually any technical requirement or price point. Which one you choose depends on your website project.</p>
<p>Web hosts can provide additional services such as email accounts, website statistics and more. The number and types of service will very much depend on the company you choose to host with.</p>
<p>In essence though, your web host provides the storage for your website, whether that&#8217;s HTML files, images or databases.</p>
<h2>Domain Registration</h2>
<p>A website without a domain can only be identified by a series of numbers known as an IP Address. IP addresses are how computers talk to one another, but they&#8217;re not very easy to remember for humans. That&#8217;s why we have domain names &#8211; to give an easy-to-remember name to each website.</p>
<p>The domain for this website, for example, is scribbledesigns.co.uk. The corresponding IP Address is 208.97.143.6. Which would you rather have on your business stationery?</p>
<p>So, in summary, your domain name is the easy-to-remember address for your website.</p>
<p>There are two ways to approach domain names: stick close to your brand or company name (which you should probably do by defaut), or attempt a clever industry tie-in. For example, B&amp;Q use diy.com and Boots use wellbeing.com</p>
<h2>Your ISP</h2>
<p>As I said earlier, this can be a source of confusion. The simple fact is, your ISP provides you with a connection to the Internet and usually has nothing to do with your website.</p>
<h2>Summary</h2>
<p>This guide has been a simple introduction to web hosting and domains. As you can imagine, there is much more to the topic than what I&#8217;ve covered here. Hopefully, you now have a clearer understanding of the basics of website hosting.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.scribbledesigns.co.uk/2007/03/07/client-guide-understanding-web-hosting-and-domain-registration/&amp;title=Client+Guide%3A+Understanding+Web+Hosting+and+Domain+Registration" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.scribbledesigns.co.uk/2007/03/07/client-guide-understanding-web-hosting-and-domain-registration/&amp;title=Client+Guide%3A+Understanding+Web+Hosting+and+Domain+Registration" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.scribbledesigns.co.uk/2007/03/07/client-guide-understanding-web-hosting-and-domain-registration/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.scribbledesigns.co.uk/2007/03/07/client-guide-understanding-web-hosting-and-domain-registration/&amp;title=Client+Guide%3A+Understanding+Web+Hosting+and+Domain+Registration" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.scribbledesigns.co.uk/2007/03/07/client-guide-understanding-web-hosting-and-domain-registration/&amp;title=Client+Guide%3A+Understanding+Web+Hosting+and+Domain+Registration" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.scribbledesigns.co.uk/2007/03/07/client-guide-understanding-web-hosting-and-domain-registration/&amp;title=Client+Guide%3A+Understanding+Web+Hosting+and+Domain+Registration" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=RT+%40gerrybot+Client+Guide%3A+Understanding+Web+Hosting+and+Domain+Registration+-+&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.scribbledesigns.co.uk/2007/03/07/client-guide-understanding-web-hosting-and-domain-registration/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>RSS Will Hit Mainstream In 2007</title>
		<link>http://www.scribbledesigns.co.uk/2006/10/17/rss-will-hit-mainstream-in-2007/</link>
		<comments>http://www.scribbledesigns.co.uk/2006/10/17/rss-will-hit-mainstream-in-2007/#comments</comments>
		<pubDate>Tue, 17 Oct 2006 18:50:37 +0000</pubDate>
		<dc:creator>Gerard McGarry</dc:creator>
				<category><![CDATA[Internet Technologies]]></category>

		<guid isPermaLink="false">http://www.scribbledesigns.co.uk/2006/10/17/rss-will-hit-mainstream-in-2007/</guid>
		<description><![CDATA[Although RSS has been around for a few years, its not yet managed to gain widespread adoption from the general public. Now, with the release of Microsoft's latest version of Internet Explorer, RSS is about to get a whole lot easier to use.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve talked to you before about RSS. Most people who hear me rave about RSS technology look at me like I&#8217;m crazy, so before I tell you why RSS is about to go mainstream, I&#8217;ll explain again what it is:</p>
<p>RSS (short for Really Simple Syndication) has two parts:</p>
<ol>
<li>A website publishes an RSS file which contains  a list of current articles. This is known as an RSS feed.</li>
<li>People with RSS Reader software then &#8216;subscribe&#8217; to this feed and the RSS Reader will monitor it for new articles.</li>
</ol>
<p>Basically, RSS is a great way for people to keep up to date with a website without having to constantly check for new information.</p>
<h2>Now, why is RSS about to hit the mainstream?</h2>
<p>Well, Microsoft will shortly release the <a href="http://www.niallkennedy.com/blog/archives/2006/10/ie7-feed-preparation.html">latest version of the Internet Explorer web browser</a>, the most used (I won&#8217;t say popular) web browser on the planet. Early adopters are likely to download this straight away, but I hear on the grapevine that it&#8217;s also going to be released as an urgent security fix, so ultimately a lot of people are going to get this update!</p>
<p>One of the biggest new features the Internet Explorer will have is the ability to detect and read RSS, so if a website you&#8217;re visiting has an RSS feed available, you&#8217;ll see a little icon in the address bar. With one click, you&#8217;ll be able to subscribe to the feed.</p>
<p>That&#8217;s not all. Microsoft are set to release a new version of Windows which will also have RSS integration.</p>
<p>RSS has been around for a few years now. Techies and early adopters have been actively using RSS on their websites and subscribing to RSS feeds using browsers like FireFox and Opera or web-based RSS Readers like Bloglines or Rojo.</p>
<p>With the <a href="http://www.readwriteweb.com/archives/2007_rss.php">integration of RSS</a> into Microsoft&#8217;s core products, we will shortly see mass market adoption of RSS feeds. More sites will start to offer RSS (does yours?) and subscriber numbers are likely to expand too.</p>
<p>If you&#8217;d like more advice or information on what RSS can do for you and your business, I&#8217;m available for consultation!</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.scribbledesigns.co.uk/2006/10/17/rss-will-hit-mainstream-in-2007/&amp;title=RSS+Will+Hit+Mainstream+In+2007" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.scribbledesigns.co.uk/2006/10/17/rss-will-hit-mainstream-in-2007/&amp;title=RSS+Will+Hit+Mainstream+In+2007" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.scribbledesigns.co.uk/2006/10/17/rss-will-hit-mainstream-in-2007/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.scribbledesigns.co.uk/2006/10/17/rss-will-hit-mainstream-in-2007/&amp;title=RSS+Will+Hit+Mainstream+In+2007" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.scribbledesigns.co.uk/2006/10/17/rss-will-hit-mainstream-in-2007/&amp;title=RSS+Will+Hit+Mainstream+In+2007" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.scribbledesigns.co.uk/2006/10/17/rss-will-hit-mainstream-in-2007/&amp;title=RSS+Will+Hit+Mainstream+In+2007" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=RT+%40gerrybot+RSS+Will+Hit+Mainstream+In+2007+-+&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.scribbledesigns.co.uk/2006/10/17/rss-will-hit-mainstream-in-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dvorak On Internet Explorer</title>
		<link>http://www.scribbledesigns.co.uk/2006/04/25/dvorak-on-internet-explorer/</link>
		<comments>http://www.scribbledesigns.co.uk/2006/04/25/dvorak-on-internet-explorer/#comments</comments>
		<pubDate>Tue, 25 Apr 2006 22:11:40 +0000</pubDate>
		<dc:creator>Gerard McGarry</dc:creator>
				<category><![CDATA[Internet Technologies]]></category>

		<guid isPermaLink="false">http://www.scribbledesigns.co.uk/2006/04/25/dvorak-on-internet-explorer/</guid>
		<description><![CDATA[John Dvorak launches a tirade against Microsoft's Internet Explorer browser and suggests that they might be better off cutting their losses and ceasing development of the browser once and for all. With the release of Internet Explorer 7 imminent, it's not likely, but it is fun to speculate!]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s a well known fact that most Web Standards advocates deplore the Internet Explorer browser.</p>
<p>Because <acronym title="Internet Explorer">IE</acronym> has been bundled with every version of Windows since Windows 98 (I think it was an add-on pack for Windows 95), <acronym title="Internet Explorer">IE</acronym> has become synonymous with web browsing. Most people don&#8217;t even know that there are <a href="http://getfirefox.com">alternative browsers</a> out there that they can <a href="http://www.opera.com">download for free</a>.</p>
<p>Which is a shame, because <acronym title="Internet Explorer">IE</acronym> is actually a terrible web browser, and fails to support the web standards that make life easier for Web users and designers alike. Also, because of <acronym title="Internet Explorer">IE</acronym>&#8216;s dominance, many sites have been built around the bugs and issues in the software, which means that they often don&#8217;t work properly in other browsers.</p>
<p>Cue a fantastic article by John Dvorak of <a href="http://www.pcmag.com">PC Mag</a>, outlining how Internet Explorer has <a href="http://www.pcmag.com/article2/0,1895,1952999,00.asp">cost Microsoft in terms of security and reputation</a>:</p>
<blockquote><p>Microsoft&#8217;s entry into the browser business and its subsequent linking of the browser into the Windows operating system looks to be the worst decision???and perhaps the biggest, most costly gaffe???the company ever made</p></blockquote>
<p>He goes on to suggest that most &#8211; if not all &#8211; of Microsoft&#8217;s public relations and legal problems have been largely down to Internet Explorer. He certainly has a point in that if <acronym title="Internet Explorer">IE</acronym> hadn&#8217;t been bundled, Windows would have been a much more stable product.</p>
<p>I loved his proposal that they should drop support for <acronym title="Internet Explorer">IE</acronym> permanently and start to bundle FireFox and Opera with every Windows installation. Maybe one day&#8230;.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.scribbledesigns.co.uk/2006/04/25/dvorak-on-internet-explorer/&amp;title=Dvorak+On+Internet+Explorer" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.scribbledesigns.co.uk/2006/04/25/dvorak-on-internet-explorer/&amp;title=Dvorak+On+Internet+Explorer" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.scribbledesigns.co.uk/2006/04/25/dvorak-on-internet-explorer/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.scribbledesigns.co.uk/2006/04/25/dvorak-on-internet-explorer/&amp;title=Dvorak+On+Internet+Explorer" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.scribbledesigns.co.uk/2006/04/25/dvorak-on-internet-explorer/&amp;title=Dvorak+On+Internet+Explorer" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.scribbledesigns.co.uk/2006/04/25/dvorak-on-internet-explorer/&amp;title=Dvorak+On+Internet+Explorer" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=RT+%40gerrybot+Dvorak+On+Internet+Explorer+-+&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.scribbledesigns.co.uk/2006/04/25/dvorak-on-internet-explorer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The End Of The Internet?</title>
		<link>http://www.scribbledesigns.co.uk/2006/04/25/the-end-of-the-internet/</link>
		<comments>http://www.scribbledesigns.co.uk/2006/04/25/the-end-of-the-internet/#comments</comments>
		<pubDate>Tue, 25 Apr 2006 09:00:33 +0000</pubDate>
		<dc:creator>Gerard McGarry</dc:creator>
				<category><![CDATA[Internet Technologies]]></category>

		<guid isPermaLink="false">http://www.scribbledesigns.co.uk/2006/04/25/the-end-of-the-internet/</guid>
		<description><![CDATA[There's growing speculation that the "Big Four" US Telecoms Carriers are planning to start charging for bandwidth, effectively creating an Internet Tax. Concern is growing over this move and the potentially disasterous effects it would have on Internet freedom, where smaller sites cannot afford to pay for optimum service and find their sites choked.]]></description>
			<content:encoded><![CDATA[<p>Did the shock headline get your attention? Good. That course in sensationalist tabloid writing was money well spent, then!</p>
<p>Do you remember a few years back, during the dot-com boom, British Telecom claimed that they held the patent for hyperlink technology? Well, there was a massive furore over how they planned to exploit the patent, with some pundits speculating that BT might levy a cost per link to website owners.</p>
<p>It sounds ludicrous in hindsight, but it amounted to little. However, had it been in any way enforcable, it would have potentially wiped out the Internet as we know it today.</p>
<h2>The Latest Threat To The Internet</h2>
<p>It was Brian Clark&#8217;s post, <a href="http://www.copyblogger.com/the-four-horsemen-of-the-internet-apocalypse/">The Four Horsemen of the Internet Apocalypse</a> that reminded me of the latest threat to the development of the Web.</p>
<p>Essentially the claim is that some of the large telecoms companies in America could use their stranglehold of the market to begin charging for data-based services. It is being argued that this effective &#8216;taxing&#8217; of websites will benefit the large corporations that can afford to pay for this type of service at the expense of smaller businesses who cannot.</p>
<p>In America, the very suggestion is causing outrage and rightly so. A move of this nature would put many small-time operators out of business, and would stifle the countless communities of Internet users across the globe. The concept of &#8216;net neutrality&#8217; has been raised to describe the situation and what people stand to lose:</p>
<blockquote><p><a href="http://www.savetheinternet.com/=faq">Net neutrality</a> ensures that all users can access the content or run the applications and devices of their choice. With net neutrality, the network&#8217;s only job is to move data ??? not choose which data to privilege with higher quality service.</p></blockquote>
<p>I&#8217;ve been working with the Internet for over 10 years now, and I have always regarded it as the ultimate democratic platform. People can choose exactly what they want to read, see or listen to. Websites flourish when they meet or exceed the expectations of their users and online communities have helped people and even saved lives.</p>
<p>Of course, all of this depends upon the ethical behaviour of those companies who control the infrastructure that the Internet runs on. The providers are the least visible part of the Internet experience, but arguably the most essential. Without them, the Internet becomes disconnected.</p>
<h2>A Storm In A Teacup?</h2>
<p>Like the BT cost-per-hyperlink controversy, I hope that the issue disappears quietly into Internet folklore. However, I&#8217;m not sure that this is likely. As Doc Searls wrote in his &#8220;<a href="http://www.linuxjournal.com/article/8673">Saving The Net</a>&#8221; article, &#8220;The carriers have been lobbying Congress for control of the Net since Bush the Elder was in office.&#8221;</p>
<p>Are they likely to stop now? Your guess is as good as mine. One thing&#8217;s for sure, there&#8217;s a growing concern about the matter in the US and with groups like <a href="http://www.savetheinternet.com">Save The Internet</a> springing up to lobby in opposition, the beginnings of a resistance movement are brewing!</p>
<p>What these moves will mean for the rest of the world and we people in Northern Ireland is still unclear, so watch this space.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.scribbledesigns.co.uk/2006/04/25/the-end-of-the-internet/&amp;title=The+End+Of+The+Internet%3F" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.scribbledesigns.co.uk/2006/04/25/the-end-of-the-internet/&amp;title=The+End+Of+The+Internet%3F" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.scribbledesigns.co.uk/2006/04/25/the-end-of-the-internet/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.scribbledesigns.co.uk/2006/04/25/the-end-of-the-internet/&amp;title=The+End+Of+The+Internet%3F" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.scribbledesigns.co.uk/2006/04/25/the-end-of-the-internet/&amp;title=The+End+Of+The+Internet%3F" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.scribbledesigns.co.uk/2006/04/25/the-end-of-the-internet/&amp;title=The+End+Of+The+Internet%3F" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=RT+%40gerrybot+The+End+Of+The+Internet%3F+-+&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.scribbledesigns.co.uk/2006/04/25/the-end-of-the-internet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Another Great &#8220;How To Get Started With RSS&#8221; Article</title>
		<link>http://www.scribbledesigns.co.uk/2005/11/14/another-great-how-to-get-started-with-rss-article/</link>
		<comments>http://www.scribbledesigns.co.uk/2005/11/14/another-great-how-to-get-started-with-rss-article/#comments</comments>
		<pubDate>Mon, 14 Nov 2005 13:11:28 +0000</pubDate>
		<dc:creator>Gerard McGarry</dc:creator>
				<category><![CDATA[Internet Technologies]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://www.scribbledesigns.co.uk/2005/11/14/another-great-how-to-get-started-with-rss-article/</guid>
		<description><![CDATA[Do you want to start playing with RSS, but don't know what software to use or how to subscribe to an <acronym title="Really Simple Syndication">RSS</acronym> feed? This article will show you how to set up RSS readers for a number of free programs.]]></description>
			<content:encoded><![CDATA[<p>Just a short post to tell you about another <a href="http://www.paulstamatiou.com/2005/11/13/how-to-getting-started-with-rss/">great introduction and tutorial on <acronym title="Really Simple Syndication">RSS</acronym></a>. I posted <a href="http://www.scribbledesigns.co.uk/2005/07/19/introducing-the-joy-of-rss/">my own introduction to <acronym title="Really Simple Syndication">RSS</acronym></a> a few months ago on this site.</p>
<p>Paul&#8217;s post is an excellent introduction and carries instructions on how to use <acronym title="Really Simple Syndication">RSS</acronym> feeds in the real world, including help on setting up Bloglines, My Yahoo, Google&#8217;s personalised homepages and many more free <acronym title="Really Simple Syndication">RSS</acronym> reader applications.</p>
<p>Definitely worth a look.</p>
<p>On a related note, <acronym title="Really Simple Syndication">RSS</acronym> technology must be starting to infiltrate the business world to some degree. I read a blog this morning that actually used the phrase &#8220;feed management&#8221;. Only in the corporate world&#8230;..</p>
<p><strong>Update:</strong> If you&#8217;re still having trouble understanding the concept of RSS, Colin at Uber Geeks has posted a good <a href="http://theubergeeks.net/2005/12/30/feed-theory/">entry-level description of RSS</a> or, Web Feeds as they&#8217;re likely to become known.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.scribbledesigns.co.uk/2005/11/14/another-great-how-to-get-started-with-rss-article/&amp;title=Another+Great+%22How+To+Get+Started+With+RSS%22+Article" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.scribbledesigns.co.uk/2005/11/14/another-great-how-to-get-started-with-rss-article/&amp;title=Another+Great+%22How+To+Get+Started+With+RSS%22+Article" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.scribbledesigns.co.uk/2005/11/14/another-great-how-to-get-started-with-rss-article/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.scribbledesigns.co.uk/2005/11/14/another-great-how-to-get-started-with-rss-article/&amp;title=Another+Great+%22How+To+Get+Started+With+RSS%22+Article" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.scribbledesigns.co.uk/2005/11/14/another-great-how-to-get-started-with-rss-article/&amp;title=Another+Great+%22How+To+Get+Started+With+RSS%22+Article" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.scribbledesigns.co.uk/2005/11/14/another-great-how-to-get-started-with-rss-article/&amp;title=Another+Great+%22How+To+Get+Started+With+RSS%22+Article" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=RT+%40gerrybot+Another+Great+%22How+To+Get+Started+With+RSS%22+Article+-+&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.scribbledesigns.co.uk/2005/11/14/another-great-how-to-get-started-with-rss-article/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Opera Goes Free</title>
		<link>http://www.scribbledesigns.co.uk/2005/09/21/opera-goes-free/</link>
		<comments>http://www.scribbledesigns.co.uk/2005/09/21/opera-goes-free/#comments</comments>
		<pubDate>Wed, 21 Sep 2005 06:36:17 +0000</pubDate>
		<dc:creator>Gerard McGarry</dc:creator>
				<category><![CDATA[Internet Technologies]]></category>

		<guid isPermaLink="false">http://www.scribbledesigns.co.uk/?p=36</guid>
		<description><![CDATA[Opera has ditched the subscription model for it's web browser software, so no more adverts cluttering up the top of your screen! This article looks at some of the useful features in Opera that might persuade you to try it out!]]></description>
			<content:encoded><![CDATA[<p>I just learned (via <a href="http://www.shauninman.com">Shaun Inman</a>) that the <a href="http://www.opera.com/free/">Opera web browser is now completely free</a>. For those of you still using Internet Explorer, Opera is a well-established alternative web browser that had been very successful in the mobile browsing market.</p>
<p>In previous versions, Opera displayed small advertisements in the top of the browser as a means of funding development of the browser. The adverts could be removed by paying a small subscription fee.</p>
<p>According to the Opera web site:</p>
<blockquote><p>Opera has removed the banners, found within our browser, and the licensing fee. Opera&#8217;s growth, due to tremendous worldwide customer support, has made today&#8217;s milestone an achievable goal. Premium support is available.</p></blockquote>
<h2>Fully Featured Opera</h2>
<p>Before FireFox came along, I regularly used Opera for web browsing. It has an amazing set of features and is very useful for hardcore surfers. Some of my favourite features:</p>
<ol>
<li>Extended Bookmarks functionality. If you have a folder full of bookmarks, you can elect to open all of the bookmarked pages at once.</li>
<li>Notepad facility. Excellent for doing research &#8211; you can copy selections of text into a note in the sidebar of the browser for later reference.</li>
<li>Tabbed browsing. Essential. Enough said.</li>
<li>Saved Sessions. When you exit Opera, it will remember all of the pages you had open at that point and will automatically reload them the next time you start Opera!</li>
<li>Recall closed tabs. If you accidentally close a tab during your Opera session, you can restore it through an option in the <strong>Window</strong> menu.</li>
</ol>
<p>Now, FireFox has tempted me away, but with this latest news I might give Opera a second chance. If you&#8217;ve never experimented with alternative web browsers before, now is a good time!</p>
<p><ins datetime="2005-09-21T06:46:16+00:00"><strong>Update:</strong> Some tips and tutorials for Opera users <a href="http://nontroppo.org/wiki/Opera">here</a>.</ins></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.scribbledesigns.co.uk/2005/09/21/opera-goes-free/&amp;title=Opera+Goes+Free" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.scribbledesigns.co.uk/2005/09/21/opera-goes-free/&amp;title=Opera+Goes+Free" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.scribbledesigns.co.uk/2005/09/21/opera-goes-free/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.scribbledesigns.co.uk/2005/09/21/opera-goes-free/&amp;title=Opera+Goes+Free" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.scribbledesigns.co.uk/2005/09/21/opera-goes-free/&amp;title=Opera+Goes+Free" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.scribbledesigns.co.uk/2005/09/21/opera-goes-free/&amp;title=Opera+Goes+Free" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=RT+%40gerrybot+Opera+Goes+Free+-+&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.scribbledesigns.co.uk/2005/09/21/opera-goes-free/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
