<?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>Full On Design &#187; Browsers</title>
	<atom:link href="http://www.fullondesign.co.uk/coding/browsers/feed" rel="self" type="application/rss+xml" />
	<link>http://www.fullondesign.co.uk</link>
	<description>Design &#38; Web Technologies</description>
	<lastBuildDate>Sun, 30 Oct 2011 21:37:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Using cookieless domains to improve a website performance</title>
		<link>http://www.fullondesign.co.uk/coding/1668-using-cookieless-domains-to-improve-a-website-performance.htm</link>
		<comments>http://www.fullondesign.co.uk/coding/1668-using-cookieless-domains-to-improve-a-website-performance.htm#comments</comments>
		<pubDate>Fri, 01 Jul 2011 20:49:42 +0000</pubDate>
		<dc:creator>Rogem</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[Code Language]]></category>
		<category><![CDATA[Config]]></category>
		<category><![CDATA[Cookie Data]]></category>
		<category><![CDATA[Domain]]></category>
		<category><![CDATA[Domains]]></category>
		<category><![CDATA[Improving Performance]]></category>
		<category><![CDATA[Kilobytes]]></category>
		<category><![CDATA[Loading Times]]></category>
		<category><![CDATA[Static Files]]></category>
		<category><![CDATA[Static Image]]></category>
		<category><![CDATA[Subdomain]]></category>
		<category><![CDATA[Unnecessary Data]]></category>

		<guid isPermaLink="false">http://www.fullondesign.co.uk/?p=1668</guid>
		<description><![CDATA[Fast loading times are a really important factor when it comes to website ranking, so it&#8217;s important to remove as much unnecessary data as possible. A good method to do this is via cookieless domains. Cookieless domains are (as the name suggests) are domains, in which the user will not send cookies (Which can add quite a [...]]]></description>
			<content:encoded><![CDATA[<p>Fast loading times are a really important factor when it comes to website ranking, so it&#8217;s important to remove as much unnecessary data as possible. A good method to do this is via cookieless domains.</p>
<p>Cookieless domains are (as the name suggests) are domains, in which the user will not send cookies (Which can add quite a few kilobytes to a request). For example, say I want a user to load a static image it would be silly of them to also send me the cookie data. Luckily they are super easy to set up.</p>
<p><span id="more-1668"></span></p>
<h3>Set up a sub-domain</h3>
<p>Firstly, set up a subdomain on your website. For example static.yourdomain.com would be suitable, but it&#8217;s really up to you. Now point the domain to a path where you will keep your static files (Such as images and CSS files). For Full On Design, I set up <a href="http://files.fullondesign.co.uk/">http://files.fullondesign.co.uk/</a>.</p>
<h3>Stop cookies being set site wide</h3>
<p>Next, make sure your website does not set website wide cookies. The fastest way to do this is by amending the .htaccess file and adding a <a href="http://httpd.apache.org/docs/2.2/mod/mod_usertrack.html#CookieDomain">CookieDomain Directive</a>. For example: </p>
<pre class="brush: plain; title: ; notranslate">
CookieDomain www.fullondesign.co.uk
</pre>
<p>Alternatively in PHP&#8217;s <a href="http://php.net/manual/en/function.setcookie.php">setcookie()</a> function, I could just use something like:</p>
<pre class="brush: plain; title: ; notranslate">
&lt;?php
setcookie(&quot;TestCookie&quot;, 'Some Value', time()+3600, &quot;/&quot;, &quot;www.fullondesign.co.uk&quot;, 1);
?&gt;
</pre>
<p>The key point to note is that the domain parameter is set to www.fullondesign.co.uk, not .fullondesign.co.uk. Thus the cookies will only be sent when the subdomain is www.fullondesign.co.uk. </p>
<p>Now start linking up to files in that directory and your pretty much done.</p>
<h3>Setting up cookieless domains in WordPress</h3>
<p>WordPress has a few neat built in functions to make this process easier. If you use wordpress pop the following code (just before the &#8220;That&#8217;s all, stop editing! Happy blogging.&#8221; comment) into your config.php file (amend as required):</p>
<pre class="brush: plain; title: ; notranslate">
define('COOKIE_DOMAIN', 'www.fullondesign.co.uk');
</pre>
<p>You can also change the uploads URL of your WordPress install to point to your cookieless domain. In the config.php file add the following(amend as required).: </p>
<pre class="brush: plain; title: ; notranslate">
define('WP_CONTENT_URL', 'http://files.fullondesign.co.uk');
</pre>
<h3>Useful Resources </h3>
<p>I&#8217;ve barely touched on the topic of cookieless domains aside from just saying &#8220;They making your website load faster&#8221;, here a two website which go a little more in depth.</p>
<ul>
<li><a href="http://code.google.com/speed/page-speed/docs/request.html">Google: Minimize request overhead</a></li>
<li><a href="http://www.ravelrumba.com/blog/static-cookieless-domain/">Ravelrumba: Serving Static Content from a Cookieless Domain</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.fullondesign.co.uk/coding/1668-using-cookieless-domains-to-improve-a-website-performance.htm/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Twitter Status URL Shortener 1.1 Update Information</title>
		<link>http://www.fullondesign.co.uk/coding/browsers/1799-twitter-status-url-shortener-1-1-update-information.htm</link>
		<comments>http://www.fullondesign.co.uk/coding/browsers/1799-twitter-status-url-shortener-1-1-update-information.htm#comments</comments>
		<pubDate>Wed, 05 Jan 2011 23:15:52 +0000</pubDate>
		<dc:creator>Rogem</dc:creator>
				<category><![CDATA[Browsers]]></category>

		<guid isPermaLink="false">http://www.fullondesign.co.uk/?p=1799</guid>
		<description><![CDATA[Within the next few hours I will be releasing an update to my Google Chrome extension Twitter Status URL Shortener. It&#8217;s a worthwhile update, mostly because I&#8217;ve been meaning to update it for a while and I&#8217;ve made a few neat adjustments based on feedback. Some of the key changes are: The icon no longer [...]]]></description>
			<content:encoded><![CDATA[<p>Within the next few hours I will be releasing an update to my Google Chrome extension Twitter Status URL Shortener. It&#8217;s a worthwhile update, mostly because I&#8217;ve been meaning to update it for a while and I&#8217;ve made a few neat adjustments based on feedback.</p>
<p style="text-align: center;"><a href="http://files.fullondesign.co.uk/uploads/2011/01/Twitter_Status_URL_Shortener.png"><img class="size-full wp-image-1825 " title="Twitter Status URL Shortener" src="http://files.fullondesign.co.uk/uploads/2011/01/Twitter_Status_URL_Shortener.png" alt="Twitter Status URL Shortener" width="400" height="275" /></a></p>
<p>Some of the key changes are:</p>
<ul>
<li>The icon no longer takes up real estate next to the URL bar.</li>
<li>Smarter URL shortening i.e. if the URL is shorter or about the same length as the shortened URL it will not bother shortening it.</li>
<li>It&#8217;s faster! I adjusted the speed a little and now it&#8217;s a little more suitable for fast typing users.</li>
<li>Support for goo.gl.</li>
<li>Caching was also added, which makes tweeting URL&#8217;s multiple times faster.</li>
</ul>
<p>You can try it via its <a href="https://chrome.google.com/extensions/detail/pkhhmolmcienndiidhjpmimmmegblblp">Google Chrome Extension</a> website.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fullondesign.co.uk/coding/browsers/1799-twitter-status-url-shortener-1-1-update-information.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter Status URL Shortener</title>
		<link>http://www.fullondesign.co.uk/coding/browsers/1655-twitter-status-url-shortener.htm</link>
		<comments>http://www.fullondesign.co.uk/coding/browsers/1655-twitter-status-url-shortener.htm#comments</comments>
		<pubDate>Sat, 11 Sep 2010 22:58:16 +0000</pubDate>
		<dc:creator>Rogem</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Alpha Release]]></category>
		<category><![CDATA[Fly]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[Url]]></category>

		<guid isPermaLink="false">http://www.fullondesign.co.uk/?p=1655</guid>
		<description><![CDATA[I just finished my first alpha release of a new Google Chrome Extension I&#8217;m working on, it&#8217;s called Twitter Status URL Shortener and it shortens URL&#8217;s in your Twitter status box on the fly. Here is a short video of me using it.]]></description>
			<content:encoded><![CDATA[<p>I just finished my first alpha release of a new Google Chrome Extension I&#8217;m working on, it&#8217;s called Twitter Status URL Shortener and it shortens URL&#8217;s in your Twitter status box on the fly. Here is a short video of me using it.</p>
<p style="text-align: center;"><iframe class="youtube-player" type="text/html" width="480" height="385" src="http://www.youtube.com/embed/Z-CWeIpd3p4?hl=en_GB&#038;vq=hd720" frameborder="0"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fullondesign.co.uk/coding/browsers/1655-twitter-status-url-shortener.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apparently the new Google Chrome is fast&#8230;</title>
		<link>http://www.fullondesign.co.uk/coding/browsers/1420-apparently-the-new-google-chrome-is-fast.htm</link>
		<comments>http://www.fullondesign.co.uk/coding/browsers/1420-apparently-the-new-google-chrome-is-fast.htm#comments</comments>
		<pubDate>Fri, 07 May 2010 10:20:51 +0000</pubDate>
		<dc:creator>Rogem</dc:creator>
				<category><![CDATA[Browsers]]></category>

		<guid isPermaLink="false">http://www.fullondesign.co.uk/?p=1420</guid>
		<description><![CDATA[Google Chrome is well known for being very fast at rendering web pages, but based on an update on the Google Student Blog it appears to be mind bogglingly snappy. To give you a sense of how snappy, take a look at this video comparing Chromes rendering to the speed to a potato. Crazy Right? Well it&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>Google Chrome is well known for being very fast at rendering web pages, but based on an update on the <a href="http://googleforstudents.blogspot.com/2010/05/chrome-and-browser-speed-tests-potato.html">Google Student Blog</a> it appears to be mind bogglingly snappy. To give you a sense of how snappy, take a look at this video comparing Chromes rendering to the speed to a potato.</p>
<p><object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/nCgQDjiotG0&#038;hl=en_GB&#038;fs=1&#038;hd=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/nCgQDjiotG0&#038;hl=en_GB&#038;fs=1&#038;hd=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></p>
<p>Crazy Right? Well it&#8217;s all down to a new <a href="http://code.google.com/p/v8/">V8 JavaScript rendering engine</a>, which boasts an improvement of 35%.</p>
<p><span id="more-1420"></span></p>
<h3>That&#8217;s great! What does it mean for Web Development?</h3>
<p>Hopefully this new engine will inspire other browser programmers how to render JavaScript faster, which in 3-6 months should mean the average user experience (the 35% of users who  upgrade their browser when updates are released) should be improved.</p>
<p>However, this does not mean we can use create complex JavaScript websites (Such as Facebook) render quickly, instead it means <a href="http://dzineblog.com/2008/03/10-websites-that-use-javascript-animation-effectively.html">subtle usability improvements</a> to a web page should be more effective.</p>
<p><em>Note: Is anyone interested in trying to recreate this but showing other browsers loading?</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fullondesign.co.uk/coding/browsers/1420-apparently-the-new-google-chrome-is-fast.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Chrome Frame &#8211; Good or Bad?</title>
		<link>http://www.fullondesign.co.uk/coding/javascript-coding/1218-google-chrome-frame-good-or-bad.htm</link>
		<comments>http://www.fullondesign.co.uk/coding/javascript-coding/1218-google-chrome-frame-good-or-bad.htm#comments</comments>
		<pubDate>Wed, 23 Sep 2009 00:52:43 +0000</pubDate>
		<dc:creator>Rogem</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Google Chrome Frame]]></category>
		<category><![CDATA[Internet Explorer]]></category>

		<guid isPermaLink="false">http://www.fullondesign.co.uk/?p=1218</guid>
		<description><![CDATA[Recently Google Announced a new exciting product called Google Chrome Frame. Which is an add-on for Internet Explorer which offers Internet Explorer users all the features of other browsers without having to install a different browser (When a certain Meta tag is used on a web page)? The video Google released explains the product in [...]]]></description>
			<content:encoded><![CDATA[<p>Recently Google Announced a new exciting product called <a href="http://code.google.com/chrome/chromeframe/">Google Chrome Frame</a>. Which is an add-on for Internet Explorer which offers Internet Explorer users all the features of other browsers without having to install a different browser (When a certain Meta tag is used on a web page)? The <a href="http://www.youtube.com/watch?v=sjW0Bchdj-w">video Google released</a> explains the product in a little more detail.</p>
<p align="center">
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="340" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/sjW0Bchdj-w&amp;hl=en&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="340" src="http://www.youtube.com/v/sjW0Bchdj-w&amp;hl=en&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object>
</p>
<p><span id="more-1218"></span></p>
<h3>How it works</h3>
<p>Google Chrome Frame seems quite easy to support, all the web developer needs to do is add the following code into the head of the web page they want to run like Google Chrome Frame:</p>
<p>
<pre class="brush: plain; title: ; notranslate">&lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;chrome=1&quot;&gt;</pre>
</p>
<p>If the user has Google Chrome Frame installed the page will render like Chrome, if not the page will load as normal.</p>
<h3>First Impressions</h3>
<p>When I first saw this product I had two concerns:</p>
<ul>
<li>If a user knows they need a      better browsing experience, they should upgrade to a better browser.      Wouldn’t this just delay the uptake of better browsers?</li>
<li>If a user can&#8217;t upgrade to a      better browser (Due to corporate restrictions, low bandwidth or lack of      information) the odds they will be not be allowed to install Google Chrome      Frame. Which makes me wonder how many people will actually benefit from      it?</li>
</ul>
<p>Having said that the product also has its positive points, for example if a company has a network based on IE6 they may find that upgrading to another browser could cause their system to fail. Google Chrome Frame allows them to keep the old software while still work on more advanced browser bases developments, without breaking their network.</p>
<p>I can&#8217;t decide whether this product is beneficial for the development of the web, or if it&#8217;s just giving users another reason not to upgrade from Internet Explorer 6.</p>
<p>What do you think? Does Google Chrome Frame encourage users to not upgrade, or does it make web developers lives easier? Leave your views in the comment section below.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fullondesign.co.uk/coding/javascript-coding/1218-google-chrome-frame-good-or-bad.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox 3.5 &#8211; What it means for Designers and Developers</title>
		<link>http://www.fullondesign.co.uk/coding/browsers/1113-firefox-3-5-what-it-means-for-designs-and-developers.htm</link>
		<comments>http://www.fullondesign.co.uk/coding/browsers/1113-firefox-3-5-what-it-means-for-designs-and-developers.htm#comments</comments>
		<pubDate>Tue, 30 Jun 2009 14:48:31 +0000</pubDate>
		<dc:creator>Rogem</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[firefox 3.5]]></category>

		<guid isPermaLink="false">http://www.fullondesign.co.uk/?p=1113</guid>
		<description><![CDATA[Most of you may have noticed that Firefox 3.5 has just been released. Here is a quick overview of what new features and improvements it has: View Video On YouTube Key Features HTML 5 &#8211; Essentially this means more people will be able to support markup such as the video tag and footer tag, which makes [...]]]></description>
			<content:encoded><![CDATA[<p>Most of you may have noticed that <a href="http://www.mozilla.com/en-US/">Firefox 3.5</a> has just been released. Here is a quick overview of what new features and improvements it has:</p>
<p style="text-align: center;"><object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/k5Zbc-Rg6e8&#038;hl=en&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/k5Zbc-Rg6e8&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object><br />
<a href="http://www.youtube.com/watch?v=k5Zbc-Rg6e8">View Video On YouTube</a>
</p>
<p style="text-align: center;"><a href="http://www.mozilla.com/?from=sfx&amp;uid=267513&amp;t=309"><img src="http://sfx-images.mozilla.org/affiliates/Buttons/firefox3/468x60.png" border="0" alt="Spread Firefox Affiliate Button" /></a></p>
<h3 style="text-align: left;">Key Features</h3>
<ul>
<li><a href="http://en.wikipedia.org/wiki/HTML_5">HTML 5</a> &#8211; Essentially this means more people will be able to support markup such as the video tag and footer tag, which makes the internet a more indefinable place. We can also stop using those annoying < object> tags to play flash videos (Which normally causes invalid code).</li>
<li><a href="https://wiki.mozilla.org/JavaScript:TraceMonkey">TraceMonkey JavaScript Engine</a> &#8211; This makes our JavaScript run faster, which means we can use jQuery less sparingly. </li>
<li>Geo-Location &#8211; We can easily localize our users experience.</li>
<li>More CSS Features &#8211; Mainly the ability to download fonts, which gives us more freedom with typography. </li>
</ul>
<p>If you want to read in a bit more detail the new features of Mozilla FireFox 3.5, take a look at <a href="https://developer.mozilla.org/en/Firefox_3.5_for_developers#New_developer_features_in_Firefox_3.5">Firefox 3.5 for developers</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fullondesign.co.uk/coding/browsers/1113-firefox-3-5-what-it-means-for-designs-and-developers.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is a Browser?</title>
		<link>http://www.fullondesign.co.uk/coding/browsers/1085-what-is-a-browser.htm</link>
		<comments>http://www.fullondesign.co.uk/coding/browsers/1085-what-is-a-browser.htm#comments</comments>
		<pubDate>Wed, 17 Jun 2009 10:50:17 +0000</pubDate>
		<dc:creator>Rogem</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[what is]]></category>

		<guid isPermaLink="false">http://www.fullondesign.co.uk/?p=1085</guid>
		<description><![CDATA[Ever wondered how many people know what a browser is? If you haven&#8217;t this video may make you cry a little. Youtube &#8211; What is a Browser?]]></description>
			<content:encoded><![CDATA[<p>Ever wondered how many people know what a browser is? If you haven&#8217;t this video may make you cry a little.</p>
<p style="text-align: center;">
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="340" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/o4MwTvtyrUQ&amp;hl=en&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="340" src="http://www.youtube.com/v/o4MwTvtyrUQ&amp;hl=en&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object>
</p>
<p style="text-align: center;"><a href="http://www.youtube.com/watch?v=o4MwTvtyrUQ&amp;eurl=http%3A%2F%2Fwww.fullondesign.co.uk%2F">Youtube &#8211; What is a Browser?</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fullondesign.co.uk/coding/browsers/1085-what-is-a-browser.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Internet Statistics &#8211; April 2009 (and IE6 Death Date)</title>
		<link>http://www.fullondesign.co.uk/coding/browsers/833-internet-statistics-april-2009-and-ie6-death-date.htm</link>
		<comments>http://www.fullondesign.co.uk/coding/browsers/833-internet-statistics-april-2009-and-ie6-death-date.htm#comments</comments>
		<pubDate>Wed, 13 May 2009 19:56:00 +0000</pubDate>
		<dc:creator>Rogem</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[ie6]]></category>
		<category><![CDATA[IE6 Death Date]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Win7]]></category>

		<guid isPermaLink="false">http://www.fullondesign.co.uk/?p=833</guid>
		<description><![CDATA[Overall April was quite an eventful month for the OS and Browser wars. On the OS front, Windows 7 (Win7) release candidate was made available to the public, which has received quite a positive response. Microsoft also started advertising how cost effective windows machines are in their &#8220;I&#8217;m a PC&#8221; advertisement campaign. Browser wise, webmaster [...]]]></description>
			<content:encoded><![CDATA[<p>Overall April was quite an eventful month for the OS and Browser wars. On the OS front, <a href="http://www.microsoft.com/windows/windows-7/">Windows 7 (Win7) release candidate</a> was made available to the public, which has received quite a positive response. Microsoft also started advertising how cost effective windows machines are in their <a href="http://imapc.lifewithoutwalls.com/">&#8220;I&#8217;m a PC&#8221;</a> advertisement campaign.</p>
<p>Browser wise, webmaster have been encouraged by Google to <a href="http://code.google.com/p/sevenup/">inform their IE6 users</a> about the alternative browser available and the disadvantages of IE6. The effect this has had on IE6 users is debatable, but overall IE6 is slowly disappearing.</p>
<p><span id="more-833"></span></p>
<h3>Browser Statistics</h3>
<p><img class="aligncenter size-full wp-image-862" title="april-09_browser-marketshare" src="http://www.fullondesign.co.uk/wp-content/uploads/2009/05/april-09_browser-marketshare.png" alt="april-09_browser-marketshare" width="400" height="240" /><strong>Biggest Rise:</strong> IE8 (+2.13%)</p>
<p><strong>Biggest Fall: </strong>IE7 (-1.86%), closely followed by IE6 (-1.22%). IE7 and IE6 large drop in market share is mostly due to IE8 being released (so users are upgrading or switching).</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-863" title="april-09_browser-marketshare_trend" src="http://www.fullondesign.co.uk/wp-content/uploads/2009/05/april-09_browser-marketshare_trend.png" alt="april-09_browser-marketshare_trend" width="400" height="240" /></p>
<p>Next month I expect IE8&#8242;s market share to increase as more IE7 users should start upgrading. IE6 should continue decreasing as a constant rate.</p>
<h3>OS Statistics</h3>
<p><img class="aligncenter size-full wp-image-866" title="april-09_os-marketshare" src="http://www.fullondesign.co.uk/wp-content/uploads/2009/05/april-09_os-marketshare.png" alt="april-09_os-marketshare" width="400" height="240" /></p>
<p><strong>Biggest Rise:</strong> Vista (+0.54%)<br />
 <strong>Biggest Fall: </strong>WinXP (-0.77%), lots of WinXP users are converting to Vista, Win7, Linux and Mac. However, WinXP is still a market leader.</p>
<p>Apple have recently started another <a href="http://www.youtube.com/watch?v=fZRcYS88BwQ">&#8220;Windows Sucks&#8221;</a> campaign, which criticizes Windows poor security which will affect the growth of Vista and WinXP. I&#8217;m expecting a 0.4% increase in Mac&#8217;s on the market as a direct affect of this campaign.</p>
<p><a href="http://linux.com/">Linux</a> may be the underdog next month however; as recent <a href="http://www.youtube.com/watch?v=bqefSHEx7kE">user generated advertisement</a> (the best kind of advertisement) has been very positive, mostly putting empathises on Linux&#8217;s Security and Performance. I expect a 0.5% growth.</p>
<h3>IE6 Death Date<a id="ie6_death_date" name="ie6_death_date"></a></h3>
<p><img class="aligncenter size-full wp-image-864" title="april-09_ie6-death-graph" src="http://www.fullondesign.co.uk/wp-content/uploads/2009/05/april-09_ie6-death-graph.png" alt="april-09_ie6-death-graph" width="452" height="262" /></p>
<p>Over the past few months I&#8217;ve been tracking the decline in IE6 market share. On average its current decrease is 0.9% a month, which works out about 0.02% a day. At its current rate, it should reach 0% market share on <em>13th October 2010 at around 9:36am</em>.</p>
<p><img class="aligncenter size-full wp-image-865" title="april-09_ie6-death-graph_zoomed" src="http://www.fullondesign.co.uk/wp-content/uploads/2009/05/april-09_ie6-death-graph_zoomed.png" alt="april-09_ie6-death-graph_zoomed" width="452" height="262" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fullondesign.co.uk/coding/browsers/833-internet-statistics-april-2009-and-ie6-death-date.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IE8 now a high priority update</title>
		<link>http://www.fullondesign.co.uk/coding/browsers/718-ie8-now-a-high-priority-update.htm</link>
		<comments>http://www.fullondesign.co.uk/coding/browsers/718-ie8-now-a-high-priority-update.htm#comments</comments>
		<pubDate>Thu, 16 Apr 2009 14:17:08 +0000</pubDate>
		<dc:creator>Rogem</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[high priority update]]></category>
		<category><![CDATA[ie8]]></category>

		<guid isPermaLink="false">http://www.fullondesign.co.uk/?p=718</guid>
		<description><![CDATA[I said earlier this week that IE8 will soon be a high priority update; well today I noticed that IE8 has now reach high priority update status. Essentially this means that IE8 is now available over windows automatic update and should slowly (over the next few weeks) start replacing most IE6 and IE7 installs.]]></description>
			<content:encoded><![CDATA[<p>I said earlier this week that IE8 will soon be a high priority update; well today I noticed that IE8 has now reach high priority update status.</p>
<p>Essentially this means that IE8 is now available over windows automatic update and should slowly (over the next few weeks) start replacing most IE6 and IE7 installs.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fullondesign.co.uk/coding/browsers/718-ie8-now-a-high-priority-update.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Internet Statistics &#8211; March 2009</title>
		<link>http://www.fullondesign.co.uk/coding/browsers/675-internet-statistics-march-2009.htm</link>
		<comments>http://www.fullondesign.co.uk/coding/browsers/675-internet-statistics-march-2009.htm#comments</comments>
		<pubDate>Wed, 15 Apr 2009 15:15:47 +0000</pubDate>
		<dc:creator>Rogem</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Internet Penetration]]></category>
		<category><![CDATA[Internet Statistics]]></category>

		<guid isPermaLink="false">http://www.fullondesign.co.uk/?p=675</guid>
		<description><![CDATA[Browser Statistics IE8 has been released, but unfortunately will not be a high priority until around the 20th April 2009. Biggest Rise: Safari (3.09%) Biggest Fall: Other (-2.82%) OS Statistics WinXP is still very dominant, but is losing ground to Vista and other OS&#8217;s. Biggest Rise: Vista (0.31%) Biggest Fall: WinXP (-0.39%) Internet Penetration Latin [...]]]></description>
			<content:encoded><![CDATA[<h3>Browser Statistics</h3>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-686" title="march-09_browser-trend" src="http://www.fullondesign.co.uk/wp-content/uploads/2009/04/march-09_browser-trend.png" alt="march-09_browser-trend" width="483" height="291" /><em>IE8 has been released, but unfortunately will not be a high priority until around the <a href="http://www.techspot.com/news/34258-microsoft-to-push-ie8-as-high-priority-update-next-week.html">20th April 2009</a></em>. <br />
 <em><strong></strong></em></p>
<p><strong>Biggest Rise:</strong> Safari (3.09%)<br />
 <strong>Biggest Fall: </strong>Other (-2.82%)</p>
<h3>OS Statistics</h3>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-689" title="march-09_os-average" src="http://www.fullondesign.co.uk/wp-content/uploads/2009/04/march-09_os-average.png" alt="march-09_os-average" width="483" height="291" />WinXP is still very dominant, but is losing ground to Vista and other OS&#8217;s.</p>
<p><strong>Biggest Rise:</strong> Vista (0.31%)<br />
 <strong>Biggest Fall:</strong> WinXP (-0.39%)</p>
<h3>Internet Penetration</h3>
<p><img class="aligncenter size-full wp-image-687" title="march-09_internet-penetration-trend" src="http://www.fullondesign.co.uk/wp-content/uploads/2009/04/march-09_internet-penetration-trend.png" alt="march-09_internet-penetration-trend" width="484" height="353" /></p>
<p>Latin America/Caribbean and North America had the same increase in Internet Penetration in March 2009. Could the gradual increase in Internet Penetration be a sign that the recession is soon to subside?</p>
<h3>Internet Usage</h3>
<p><img class="aligncenter size-full wp-image-688" title="march-09_internet-usage-trend" src="http://www.fullondesign.co.uk/wp-content/uploads/2009/04/march-09_internet-usage-trend.png" alt="march-09_internet-usage-trend" width="483" height="328" /></p>
<p>Internet Usage stayed relatively constant in relation the previous month, even though there was an increase in internet penetration.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fullondesign.co.uk/coding/browsers/675-internet-statistics-march-2009.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: basic
Database Caching 1/41 queries in 0.023 seconds using disk: basic
Object Caching 595/703 objects using disk: basic

Served from: www.fullondesign.co.uk @ 2012-02-04 09:17:08 -->
