<?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>Narnio&#187; Website optimization</title>
	<atom:link href="http://www.narnio.com/category/search-engines/website-optimization/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.narnio.com</link>
	<description>A day in the life of a software engineer</description>
	<lastBuildDate>Sat, 28 Aug 2010 16:18:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Speeding Apache up using Compression</title>
		<link>http://www.narnio.com/2008/12/24/speeding-apache-up-using-compression/</link>
		<comments>http://www.narnio.com/2008/12/24/speeding-apache-up-using-compression/#comments</comments>
		<pubDate>Wed, 24 Dec 2008 18:53:46 +0000</pubDate>
		<dc:creator>Jongerius</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Webdevelopment]]></category>
		<category><![CDATA[Website optimization]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[comperssion]]></category>
		<category><![CDATA[VPS]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.narnio.com/?p=266</guid>
		<description><![CDATA[As of late I started to notice my little VPS server had more difficulty keeping up with the amount of data it has to sent to the webbrowsers. I knew that the amount of requests increased and after some tracking I found out that the average page size also increased.
Keep in mind the average page [...]]]></description>
			<content:encoded><![CDATA[<p>As of late I started to notice my little VPS server had more difficulty keeping up with the amount of data it has to sent to the webbrowsers. I knew that the amount of requests increased and after some tracking I found out that the average page size also increased.</p>
<p>Keep in mind the average page size is not only the size of the HTML but also adding the external CSS, JavaScript and images. Which could dramatically increase the amount of data the users are downloading. So I started looking in the compression options of <a title="Apache 2.0 documentation" href="http://httpd.apache.org/docs/2.0/" target="_blank">Apache 2.0</a></p>
<p>First I looked on the official Apache page, but as usual the data is probably available but not very user friendly. So after some testing and crashing I found out the following procedure which seems to work fine to enable compression per Virtual Host.</p>
<p>Firstly enable the module that supports compression by executing:</p>
<p><code>:&gt; ln -s /etc/apache2/mods-available/deflate.load /etc/apache2/mods-enabled/deflate.load</code></p>
<p>This will instruct Apache to load the needed library (module) for compression using GZip. The second thing you will need to do is add the following lines to every single <a title="The official documentation on Virtual Hosts" href="http://httpd.apache.org/docs/2.0/vhosts/examples.html" target="_blank">Virtual Host</a> you want to use compression on.</p>
<p><code>    &lt;Location / &gt;<br />
      SetOutputFilter DEFLATE<br />
      BrowserMatch ^Mozilla/4 gzip-only-text/html<br />
      BrowserMatch ^Mozilla/4\.0[678] no-gzip<br />
      BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html<br />
    &lt;/Location&gt;<br />
</code></p>
<p>This will enable the compression for output (everything sent to the end-user) but not for incoming requests, which in my case is enough compression for right now. It also exludes some browsers that do not support compression.</p>
<p>Now restart or reload your apache by running the statement below and your website should support compression. This will make the loading of pages faster, though the client software needs to decompress the pages from this point on.</p>
<p><code>:&gt; etc/init.d/apache2 reload</code></p>
<p>If you have any trouble enabling compression just leave a message and I&#8217;ll try and help you where I can.</p>
<hr/>Copyright &copy; 2010 <strong><a href="http://www.narnio.com">Narnio</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please contact legal@jong-soft.com so we can take legal action immediately.]]></content:encoded>
			<wfw:commentRss>http://www.narnio.com/2008/12/24/speeding-apache-up-using-compression/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Doesn&#8217;t Like .0 extension</title>
		<link>http://www.narnio.com/2008/06/14/google-doesnt-like-0-extension/</link>
		<comments>http://www.narnio.com/2008/06/14/google-doesnt-like-0-extension/#comments</comments>
		<pubDate>Sat, 14 Jun 2008 13:38:03 +0000</pubDate>
		<dc:creator>Jongerius</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Search Engines]]></category>
		<category><![CDATA[Webdevelopment]]></category>
		<category><![CDATA[Website optimization]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[search engine]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://www.narnio.com/?p=200</guid>
		<description><![CDATA[We all know that search engines have strange quirkes when it comes to filtering the indexes they have. Well very recently it came to my attention that Google has added some new extensions to the filter list.
We already new that files with .exe, .dll and .lib were being filtered from the search results. Which I [...]]]></description>
			<content:encoded><![CDATA[<p>We all know that search engines have strange quirkes when it comes to filtering the indexes they have. Well very recently it came to my attention that Google has added some new extensions to the filter list.</p>
<p>We already new that files with .exe, .dll and .lib were being filtered from the search results. Which I think is a good thing, as it protects the visitors from potential harm. But just a few days back I got word that Google is now also banning or blocking pages ending on .0.</p>
<p>Some examples are:</p>
<ul>
<li>The wikipedia page Web 2.0 (http://en.wikipedia.org/wiki/Web_2.0) ending in .0 is no longer showing up in the search results, rather the page ending in 2 (http://en.wikipedia.org/wiki/Web_2).</li>
<li>The Seomoz page for Web 2.0 has disappeared from the results. Instead the summary page is listed.</li>
</ul>
<p>After some chatter about the issue around the internet and blogs Matt Cutts wrote a quick entry in his blog as to why they have been removed from the search results. Read it at <a href="http://www.mattcutts.com/blog/dont-end-your-urls-with-exe/">http://www.mattcutts.com/blog/dont-end-your-urls-with-exe/</a>.</p>
<p>So for know try to avoid ending Url&#8217;s with .0 or any of the already known blocked extensions.</p>
<hr/>Copyright &copy; 2010 <strong><a href="http://www.narnio.com">Narnio</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please contact legal@jong-soft.com so we can take legal action immediately.]]></content:encoded>
			<wfw:commentRss>http://www.narnio.com/2008/06/14/google-doesnt-like-0-extension/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Refining a Website based on Visitor Statistics</title>
		<link>http://www.narnio.com/2007/06/01/refining-a-website-based-on-visitor-statistics/</link>
		<comments>http://www.narnio.com/2007/06/01/refining-a-website-based-on-visitor-statistics/#comments</comments>
		<pubDate>Fri, 01 Jun 2007 08:22:04 +0000</pubDate>
		<dc:creator>Jongerius</dc:creator>
				<category><![CDATA[Search Engines]]></category>
		<category><![CDATA[Webdevelopment]]></category>
		<category><![CDATA[Website optimization]]></category>

		<guid isPermaLink="false">http://www.narnio.com/2007/06/01/refining-a-website-based-on-visitor-statistics/</guid>
		<description><![CDATA[Most webmasters or website owners fill their website with content they believe the visitor will like. After all you want them to come back for a second time. But how can you make sure that the content you make is attracting visitors and inspiring them to come back.
Well there are a few ways to find [...]]]></description>
			<content:encoded><![CDATA[<p>Most webmasters or website owners fill their website with content they believe the visitor will like. After all you want them to come back for a second time. But how can you make sure that the content you make is attracting visitors and inspiring them to come back.</p>
<p>Well there are a few ways to find out what the people visiting your site are interested in. When you have this information you can start refining the content on your website. If you for instance wrote something about a Ferrari. And you get a lot of visitor searching for ferrari tires, you may want to add some content about that.</p>
<p><strong>Finding the needed information</strong><br />Lets first go into where you can find the information you will need to <em>refine</em> your website. No matter how, you will always end up trying to pursue your visitors to give more information then they might like.</p>
<p>One way of doing this is by using polls or questionairs. This is a very useful tool, but with one major drawback. If you don&#8217;t already have a steady visitor base it won&#8217;t work. How often have you entered a website and clicked away an anyoing popup asking you to answer some questions. Most new visitors don&#8217;t like questionairs.</p>
<p>A second way is by tracking every move a visitor makes on your website. This will provide information on how they navigate through the site. Which in turn indicates which information they find highly relevant. Big downside is that it requires a lot of disk space. Even worse you have to make some type of mention of this in the <em>privacy policy</em>. Last drawback is that it doesn&#8217;t provide information on what the visitor was looking for when he came to your website.</p>
<p>The third and far better way, at least I think so, is to log how the visitor came to the website. Some questions could be:</p>
<ul>
<li>For instance did he originate from a search engine. If so what keywords did he search with. What could he be looking for.</li>
<li>Was the visit from my own website. If so did he use a search feature and what keywords. If not what related page did he come from.</li>
<li>Was the visit from an external website. What is the content of that page. How does it appeal to the visitor.</li>
</ul>
<p>This logging can be done quite easily as all the information is stored in the HEAD information sent by the visitors web-browser. (Please note that you can&#8217;t fully rellie on this as it can be manipulated). Various other tricks are available as well to get this information, but more on that in a follow up article about data mining.</p>
<p><strong>Using the information to refine the content</strong><br />Now that you have the information you still need to put it to good use. So lets asume that your website is about cars. And it has a section on Ferrari. You have a lot of content on the various cars. But you don&#8217;t have information on the various parts of the cars.</p>
<p>Now in your data-mining (the steps described above <img src='http://www.narnio.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ) you find out that a lot of visitors come to your site through search engines. But they are looking for tyres that are for the Ferrari 250GT. Initially when creating the website you never thought this might be useful information.</p>
<p>After making this discovery you could decide to add new content to the pages of the various cars with details about the tyres. How they perform and which are best for which models. By doing so you appeal to your visitors as they now find information they are interested in.</p>
<p>A second type of discovery you may encounter is that your website structure (including navigation) may be wrong. For example people looking for the tyre information never found the content on the website. But it does exists. This may mean they just can&#8217;t find any navigation to it. Keep in mind that most visitors only spend a few seconds looking for <em>&#8216;useful&#8217;</em> information before moving along.</p>
<p>So make sure your information is easy accessible!!!!!</p>
<p>Now that you now some basics of refining your website you can start. But start with some small things first, just to try it out. </p>
<hr/>Copyright &copy; 2010 <strong><a href="http://www.narnio.com">Narnio</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please contact legal@jong-soft.com so we can take legal action immediately.]]></content:encoded>
			<wfw:commentRss>http://www.narnio.com/2007/06/01/refining-a-website-based-on-visitor-statistics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Importance of Consistancy</title>
		<link>http://www.narnio.com/2007/04/28/importance-of-consistancy/</link>
		<comments>http://www.narnio.com/2007/04/28/importance-of-consistancy/#comments</comments>
		<pubDate>Sat, 28 Apr 2007 07:53:37 +0000</pubDate>
		<dc:creator>Jongerius</dc:creator>
				<category><![CDATA[Search Engines]]></category>
		<category><![CDATA[Webdevelopment]]></category>
		<category><![CDATA[Website optimization]]></category>

		<guid isPermaLink="false">http://www.narnio.com/2007/04/28/importance-of-consistancy/</guid>
		<description><![CDATA[When visiting a website of a company, wether corporate or commercial, you may sometimes have had the feeling that something just isn&#8217;t right. Can&#8217;t quite put your finger on it, but you do notice it. Well in many cases this has to do with the text of the website (sometimes graphics as well, but not [...]]]></description>
			<content:encoded><![CDATA[<p>When visiting a website of a company, wether corporate or commercial, you may sometimes have had the feeling that something just isn&#8217;t right. Can&#8217;t quite put your finger on it, but you do notice it. Well in many cases this has to do with the text of the website (sometimes graphics as well, but not in this article <img src='http://www.narnio.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ).</p>
<p>So what is it you noticed. Is the text wrong. Does it not appeal to you. Or do you simply don&#8217;t like what they say. Maybe even all of the above. It really doesn&#8217;t matter since any would drive you away from the website. What does matter is why did it feel off.</p>
<p><span style="font-weight: bold">Discovery of the problem<br />
</span>In most cases you will have found one simple problem. The creator of the website forgot to keep his audience in mind when writing all of the text. Or maybe he didn&#8217;t even consider you part of his audience (bad him <img src='http://www.narnio.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> ). But what does this mean to conversions of that website. Well for one you will be unlikely to buy anything because you probably don&#8217;t trust it completely.</p>
<p>Knowing that text could cause problems with your targetted audience what is it that makes the text on a website right. Well the following list could make a text unattractive for your readers.</p>
<ul>
<li>Wrongly using complicated words,<br />
Using difficult words may be hot in your niche, but it won&#8217;t attract the John Doe from the street. Most of them don&#8217;t even understand what they are reading. Something that won&#8217;t help you selling products to them. Always keep your audience in mind when writing texts.</li>
<li>Using he, she, you incorrectly,<br />
This is especially important in other languages then English. If you look at German for example they have &#8216;Sie&#8217; or &#8216;du&#8217; which both means you in English. But one is polite and the other isn&#8217;t. Make sure you know which your audience prefers and stick with it. Don&#8217;t do half with &#8216;Sie&#8217; and the other have with &#8216;du&#8217;.</li>
<li>Missing call to action,<br />
One of the most common mistakes is that the text doesn&#8217;t tell your visitors to actually do something. If you want them to buy something don&#8217;t stop at how good it is. Also inform them of how to buy it (and don&#8217;t use &#8216;Buy now&#8217;, thats just wrong in so many levels).</li>
<li>Annoying calls to action,<br />
On the other end of the scope is a to agressive call to action. This will rub your visitors the wrong way. Making them anger or dislike you. Both not good things if you still want them to buy.</li>
</ul>
<p><span style="font-weight: bold">Solving the problem<br />
</span>If you know the problem then you can solve it. Right&#8230;..</p>
<p class="MsoNormal">Well not necessarily. The problem may be a bit more complicated. You may not know your audience well enough. Prehaps your audience has changed over time. So make sure to keep updating your information about the visitors of your website.</p>
<p class="MsoNormal">If you have something to say about this article, don&#8217;t hesitate to comment&#8230;.</p>
<hr/>Copyright &copy; 2010 <strong><a href="http://www.narnio.com">Narnio</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please contact legal@jong-soft.com so we can take legal action immediately.]]></content:encoded>
			<wfw:commentRss>http://www.narnio.com/2007/04/28/importance-of-consistancy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Google Sitemaps</title>
		<link>http://www.narnio.com/2007/02/21/using-google-sitemaps/</link>
		<comments>http://www.narnio.com/2007/02/21/using-google-sitemaps/#comments</comments>
		<pubDate>Wed, 21 Feb 2007 09:36:25 +0000</pubDate>
		<dc:creator>Jongerius</dc:creator>
				<category><![CDATA[Search Engines]]></category>
		<category><![CDATA[Webdevelopment]]></category>
		<category><![CDATA[Website optimization]]></category>

		<guid isPermaLink="false">http://www.narnio.com/2007/02/21/using-google-sitemaps/</guid>
		<description><![CDATA[The Google Sitemap tool has been around for a while now. It allows you to make an XML file with all the pages on your website in it. According to Google it&#8217;s supposed to help you get indexed faster and better.
Just recently I read a post that adviced against using this service. Now I&#8217;ve always [...]]]></description>
			<content:encoded><![CDATA[<p>The Google Sitemap tool has been around for a while now. It allows you to make an XML file with all the pages on your website in it. According to Google it&#8217;s supposed to help you get indexed faster and better.</p>
<p>Just recently I read a post that <a title="Seomoz: Advice on Google Sitemaps" href="http://www.seomoz.org/blog/expert-advice-on-google-sitemaps-verify-but-dont-submit">adviced against using this service</a>. Now I&#8217;ve always been a sceptec in other peoples advice, especially when it comes to SEO. But they do make several points.</p>
<p>A clipnote version would be:</p>
<ul>
<li>You don&#8217;t know if you have indexing / linking problems</li>
<li>Pages that aren&#8217;t <em>worthy</em> may be included in the index, which again prevents you from finding out they aren&#8217;t worthy</li>
<li>Search engines loose the <em>natural</em> way of flowing through the web</li>
</ul>
<p>I think they are right on all of these points. You can use the sitemaps to check the indexing status of you&#8217;re website, but I wouldn&#8217;t submit a XML file with all my pages to it. That will only work against me in finding potential problems.</p>
<hr/>Copyright &copy; 2010 <strong><a href="http://www.narnio.com">Narnio</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please contact legal@jong-soft.com so we can take legal action immediately.]]></content:encoded>
			<wfw:commentRss>http://www.narnio.com/2007/02/21/using-google-sitemaps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Following Yahoo&#8217;s Webmaster Tools</title>
		<link>http://www.narnio.com/2007/02/15/google-following-yahoos-webmaster-tools/</link>
		<comments>http://www.narnio.com/2007/02/15/google-following-yahoos-webmaster-tools/#comments</comments>
		<pubDate>Thu, 15 Feb 2007 19:13:03 +0000</pubDate>
		<dc:creator>Jongerius</dc:creator>
				<category><![CDATA[Search Engines]]></category>
		<category><![CDATA[Webdevelopment]]></category>
		<category><![CDATA[Website optimization]]></category>

		<guid isPermaLink="false">http://www.narnio.com/2007/02/15/google-following-yahoos-webmaster-tools/</guid>
		<description><![CDATA[Yahoo has been running a public beta for a while that lets you explore a domain or webpage, called Yahoo SiteExplorer. I always thought this to be a very useful tool in finding out some info on my websites. It generated a summarized list of other websites linking to me.
I just noticed that Google has [...]]]></description>
			<content:encoded><![CDATA[<p>Yahoo has been running a public beta for a while that lets you explore a domain or webpage, called <a title="Yahoo Site Explorer Site" href="http://siteexplorer.search.yahoo.com/">Yahoo SiteExplorer</a>. I always thought this to be a very useful tool in finding out some info on my websites. It generated a summarized list of other websites linking to me.</p>
<p>I just noticed that Google has recently included a similar service in the Webmaster section. In the past they didn&#8217;t release much information on who is linking to you. This new tool was actually released on February 5th as I read on <a title="Explore Matt Cutts Blog" href="http://www.mattcutts.com/blog">Matt Cutts blog</a> today. I was actually pleasantly surprised that the <a title="Link to Google Webmaster Tools" href="https://www.google.com/webmasters/tools/siteoverview">Webmaster Tools</a> gave a better indication then the &#8220;<a title="Example of listing inlinks" href="http://www.google.com/search?q=link%3Awww.domain.com">link:www.domain.com</a>&#8221; version in the search engine.</p>
<p>Granted it probably is still hiding most of the inlinks Google is counting in their algorithm, but it helps getting an indication of how your website is doing.</p>
<hr/>Copyright &copy; 2010 <strong><a href="http://www.narnio.com">Narnio</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please contact legal@jong-soft.com so we can take legal action immediately.]]></content:encoded>
			<wfw:commentRss>http://www.narnio.com/2007/02/15/google-following-yahoos-webmaster-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Phishing Killing User Experience</title>
		<link>http://www.narnio.com/2006/12/08/phishing-killing-user-experience/</link>
		<comments>http://www.narnio.com/2006/12/08/phishing-killing-user-experience/#comments</comments>
		<pubDate>Fri, 08 Dec 2006 10:06:29 +0000</pubDate>
		<dc:creator>Jongerius</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Webdevelopment]]></category>
		<category><![CDATA[Website optimization]]></category>

		<guid isPermaLink="false">http://www.narnio.com/2006/12/08/phishing-killing-user-experience/</guid>
		<description><![CDATA[Most people will know about the fake PayPal e-mail spreading across the web. Sent by people trying to gain access to the PayPal accounts of innocent and ignorant consumers. When hitting the link in the e-mail the consumer is taken to a fake PayPal website where they give away their username and password. That&#8217;s a [...]]]></description>
			<content:encoded><![CDATA[<p>Most people will know about the fake PayPal e-mail spreading across the web. Sent by people trying to gain access to the PayPal accounts of innocent and ignorant consumers. When hitting the link in the e-mail the consumer is taken to a fake PayPal website where they give away their username and password. That&#8217;s a classic example of phishing.</p>
<p>You might think that you as a company will never have to deal with any such problems. But you are wrong. If you are making money online, then your company may become victim to these type of scams sooner or later.</p>
<p>I hear you think that it&#8217;s not important. But realize that when ISP get wind of the fact that e-mail scams are going around for your company they may decide to block you. And what&#8217;s the use of you e-commerce if you can&#8217;t mail your users. Not to mention the risk of your customers actually falling for the scam and getting ripped off.</p>
<p>If you are victim of phishing then you should always take the following steps:</p>
<ul>
<li>Make a clear note on the front-page of your website about the scam e-mails circulating.</li>
<li>Explain to users what you will never do (e.g.: ask for their password in mail)</li>
<li>Update the policies of the website to include detailed steps on how users can identify scams</li>
</ul>
<p>A final word: keep track of all e-mails that are sent in your name. You may just prevent phishing or other scams against your users.</p>
<hr/>Copyright &copy; 2010 <strong><a href="http://www.narnio.com">Narnio</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please contact legal@jong-soft.com so we can take legal action immediately.]]></content:encoded>
			<wfw:commentRss>http://www.narnio.com/2006/12/08/phishing-killing-user-experience/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Should Blogs Be Part of Your SEO Strategy</title>
		<link>http://www.narnio.com/2006/11/21/should-blogs-be-part-of-your-seo-strategy/</link>
		<comments>http://www.narnio.com/2006/11/21/should-blogs-be-part-of-your-seo-strategy/#comments</comments>
		<pubDate>Tue, 21 Nov 2006 12:45:18 +0000</pubDate>
		<dc:creator>Jongerius</dc:creator>
				<category><![CDATA[Search Engines]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Webdevelopment]]></category>
		<category><![CDATA[Website optimization]]></category>

		<guid isPermaLink="false">http://www.narnio.com/2006/11/21/should-blogs-be-part-of-your-seo-strategy/</guid>
		<description><![CDATA[It&#8217;s been a while since I posted something about optimizing your website for search engines. So to continue my trend, and help you all a little, here&#8217;s the next article.
In the past I&#8217;ve talked about how to do some small optimizations on your website and how you can track your successes. Now it&#8217;s time to [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a while since I posted something about optimizing your website for search engines. So to continue my trend, and help you all a little, here&#8217;s the next article.</p>
<p>In the past I&#8217;ve talked about how to do some small optimizations on your website and how you can track your successes. Now it&#8217;s time to look at if and how you can raise rankings by using a blog. I now that there are a lot of SEO companies that claim to use blogs to do just that, but is it possible??</p>
<p>Having a blog can definitely be a positive experience for your users. It gives them the change to share their thoughts. Gives them some more insight into your company or goals. But does this also mean increased rankings.</p>
<p>After all now you&#8217;ve started a competition between your blog and your website. You want your website to rank good, but will the blog start to outrank your website. It&#8217;s likely to! Especially when you start optimizing it. And corporate blogging is even more difficult, as is explained in <a href="http://www.seomoz.org/blogdetail.php?ID=1532"><em>&#8216;A Lot of People Have to Die for Corporate Blogging to Succeed&#8217;</em></a>.</p>
<p>Are you still interested in starting a blog. Then read <em><a href="http://www.clickz.com/showPage.html?page=3623983">&#8216;Optimizing blogs for the Search Engine&#8217;</a></em> written by Shari Thurow for some pointers on how to optimize it. I also suggest you read the article <em><a href="http://www.clickz.com/showPage.html?page=3623985">&#8216;Email vs. Blogs&#8217;</a></em>, which will help you in what to write and what not to.</p>
<hr/>Copyright &copy; 2010 <strong><a href="http://www.narnio.com">Narnio</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please contact legal@jong-soft.com so we can take legal action immediately.]]></content:encoded>
			<wfw:commentRss>http://www.narnio.com/2006/11/21/should-blogs-be-part-of-your-seo-strategy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Choosing Between Usability And Crawlability</title>
		<link>http://www.narnio.com/2006/10/29/choosing-between-usability-and-crawlability/</link>
		<comments>http://www.narnio.com/2006/10/29/choosing-between-usability-and-crawlability/#comments</comments>
		<pubDate>Sun, 29 Oct 2006 10:42:35 +0000</pubDate>
		<dc:creator>Jongerius</dc:creator>
				<category><![CDATA[Webdevelopment]]></category>
		<category><![CDATA[Website optimization]]></category>

		<guid isPermaLink="false">http://www.narnio.com/2006/10/29/choosing-between-usability-and-crawlability/</guid>
		<description><![CDATA[I&#8217;ve been experiencing a problem lately. I have started to redesign some functionality of one of my websites. Long time overdue, but that&#8217;s another issue all together. As part of this overhaul I decided to look at how to improve the user&#8217;s experience on the website.
One of the problems I&#8217;ve encountered is the fact that [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been experiencing a problem lately. I have started to redesign some functionality of one of my websites. Long time overdue, but that&#8217;s another issue all together. As part of this overhaul I decided to look at how to improve the user&#8217;s experience on the website.</p>
<p>One of the problems I&#8217;ve encountered is the fact that <a href="http://en.wikipedia.org/wiki/Ajax_(programming)">AJAX</a> can make a website a lot more user friendly. An easy example is when you display a snippet of a text. If the user then clicks on the &#8216;<em>read more&#8217; </em>link a new layer will be placed on top of the existing one with the full text in it.</p>
<p>I believe that this helps in usability as it makes clear what the full text belongs to, and probably more important what the context is. The big down size of this type of development is that search engines don&#8217;t like it.</p>
<p>Why is easy. Search engines have very poor support for JavaScript. Just imagine how this new technique using AJAX will impact the search engine rating. Huge parts of the content will be less accessible for the search engines. Which in turn could result into poorer rankings due to less content.</p>
<p>Faced with the choice between enhanced usability and features or pleasing the search engine I think I have to choose for the first of the two. I do believe search engines will play a big role in a websites success. But I don&#8217;t believe we developers should sacrifice features for increased rankings in search engines. <strong>Visitors should still come first!</strong></p>
<hr/>Copyright &copy; 2010 <strong><a href="http://www.narnio.com">Narnio</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please contact legal@jong-soft.com so we can take legal action immediately.]]></content:encoded>
			<wfw:commentRss>http://www.narnio.com/2006/10/29/choosing-between-usability-and-crawlability/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Newsletters: What works and what not</title>
		<link>http://www.narnio.com/2006/09/21/newsletters-what-works-and-what-not/</link>
		<comments>http://www.narnio.com/2006/09/21/newsletters-what-works-and-what-not/#comments</comments>
		<pubDate>Thu, 21 Sep 2006 17:13:55 +0000</pubDate>
		<dc:creator>Jongerius</dc:creator>
				<category><![CDATA[Search Engines]]></category>
		<category><![CDATA[Website optimization]]></category>

		<guid isPermaLink="false">http://www.narnio.com/2006/09/21/newsletters-what-works-and-what-not/</guid>
		<description><![CDATA[I personally am receiving a lot of newsletters, some of which I actually want to receive and some of which I don&#8217;t. But what makes a newsletter a good PR tool. When does a newsletter attract attention. Or even more important when does it provide positive attention.
When receiving an e-mail what do you do. Going [...]]]></description>
			<content:encoded><![CDATA[<p>I personally am receiving a lot of newsletters, some of which I actually want to receive and some of which I don&#8217;t. But what makes a newsletter a good PR tool. When does a newsletter attract attention. Or even more important <span style="font-weight: bold">when does it provide positive attention</span>.</p>
<p>When receiving an e-mail what do you do. Going to open it straight away? Perhaps you look who sent it or what the title is. Most of these things you will do without knowing it. Next time you receive an e-mail think about what made you open it.</p>
<p>From some experience with newsletters I know that most people will automatically delete any e-mail that does not look important or that&#8217;s from a sender they don&#8217;t know. So when writing a newsletter these are the first things to be aware of:</p>
<ul>
<li>Can the reader see the e-mail is from my website</li>
<li>Does the title describe the content as well as raise the level of trust</li>
</ul>
<p>Notice how this is only about the title and the sender. It&#8217;s important to raise interest in the content of the e-mail by just using the title and sender&#8217;s address. But that&#8217;s not all, if only it were.</p>
<p>Just like with any online content is king. But what does that actually mean! A lot of people will have different opinions, but mine is as follows:</p>
<ul>
<li>The content of the e-mail is written for me,<br />
Which means that if you are writing for a general public don&#8217;t include difficult words specific to your niche. But the same is true for the opposite. Writing for you niche then use these specific words as it will raise people&#8217;s trust in your expertise.</li>
<li>Not to flashy,<br />
I know that I hate e-mails that look as if they were meant to be webpages. I think <a title="The clickz website" href="http://www.clickz.com/">Clickz</a> is a great example of how not to do it. They write for marketing people, but are just copying their webpages into the e-mail. Mind you if you are writing for a movie or music website you will automatically use more graphics and HTML in your newsletter then someone writing for a automobile website. Just try and balance it.</li>
<li>Don&#8217;t use online styles or pictures,<br />
Not everyone reads their e-mail whilst connected to the internet. So don&#8217;t use images in the e-mail that are not embedded in the e-mail, or your readers may never see them. Same holds true for the <a title="Short tutorial on Stylesheets" href="http://www.w3.org/Style/Examples/011/firstcss.en.html">stylesheet</a>, <span style="font-weight: bold">don&#8217;t link but embed</span>.</li>
</ul>
<p>I personally always try to take these pointers in mind when writing for a e-mail or a website for that matter. It would be a shame if you ended up on blacklists just because people report your e-mail as spam!</p>
<hr/>Copyright &copy; 2010 <strong><a href="http://www.narnio.com">Narnio</a></strong>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please contact legal@jong-soft.com so we can take legal action immediately.]]></content:encoded>
			<wfw:commentRss>http://www.narnio.com/2006/09/21/newsletters-what-works-and-what-not/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
