<?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>Website Design Sheffield - Mark Goddard &#187; Browsers</title>
	<atom:link href="http://blog.0100.tv/category/browsers/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.0100.tv</link>
	<description>Web Design &#38; Development blog</description>
	<lastBuildDate>Sat, 02 Oct 2010 09:47:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Fixing the Hover event on the iPad/iPhone/iPod</title>
		<link>http://blog.0100.tv/2010/05/fixing-the-hover-event-on-the-ipadiphoneipod/</link>
		<comments>http://blog.0100.tv/2010/05/fixing-the-hover-event-on-the-ipadiphoneipod/#comments</comments>
		<pubDate>Fri, 21 May 2010 15:39:38 +0000</pubDate>
		<dc:creator>Mark Goddard</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[events]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[ipod]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[touch]]></category>

		<guid isPermaLink="false">http://blog.0100.tv/?p=666</guid>
		<description><![CDATA[In truth it&#8217;s not a fix as the iPad doesn&#8217;t have the ability to hover. Apple has developed extra events to replace hover on it&#8217;s mobile touch devices. I&#8217;ve recently been working a lot on the iPad and came across the problem of hovered navigation not showing up. It&#8217;s a css :hover event that fires [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-large wp-image-667" title="ipad.jpg" src="http://blog.0100.tv/wp-content/uploads/2010/05/ipad.jpg-510x285.png" alt="" width="510" height="285" /></p>
<p>In truth it&#8217;s not a fix as the iPad doesn&#8217;t have the ability to hover.</p>
<p>Apple has developed extra events to replace hover on it&#8217;s mobile touch devices. I&#8217;ve recently been working a lot on the iPad and came across the problem of hovered navigation not showing up. It&#8217;s a css :hover event that fires through a CSS selector on an &lt;a&gt; element with no href attribute.</p>
<p>To emulate the hover we simply add an event listener to the element we want to have a hover event. In jQuery we do this (make sure you insert it into document.ready):</p>
<pre>//ipad and iphone fix
if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)) || (navigator.userAgent.match(/iPad/i))) {
    $(".menu li a").click(function(){
        //we just need to attach a click event listener to provoke iPhone/iPod/iPad's hover event
        //strange
    });
}
</pre>
<p>That should enable the element to be touched, and stimulate and iPad hover event.</p>
<p>If you&#8217;re having problems getting hovered elements to fire you could also try using touchstart or touchend which is probably a better method depending on what you&#8217;re trying to accomplish:</p>
<pre>
</pre>
<pre>if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)) || (navigator.userAgent.match(/iPad/i))) {
    $(".menu li a").bind('touchstart', function(){
        console.log("touch started");
    });
</pre>
<pre>
</pre>
<pre>    $(".menu li a").bind('touchend', function(){
        console.log("touch ended");
    });</pre>
<p>}</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.0100.tv/2010/05/fixing-the-hover-event-on-the-ipadiphoneipod/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Developing for multiple browsers *sigh*</title>
		<link>http://blog.0100.tv/2009/10/developing-for-multiple-browsers-sigh/</link>
		<comments>http://blog.0100.tv/2009/10/developing-for-multiple-browsers-sigh/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 10:56:26 +0000</pubDate>
		<dc:creator>Mark Goddard</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Website Design]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://blog.0100.tv/?p=501</guid>
		<description><![CDATA[I know it&#8217;s unfortunately the &#8220;taboo&#8221; of modern website design, but many developers don&#8217;t want to simply leave their IE7 visitors and IE6 visitors in the dark. It&#8217;s fine for sites like this one, or for web applications but what about corporation websites? For sites that HAVE to support older/alternative browsers. This came to light [...]]]></description>
			<content:encoded><![CDATA[<p>I know it&#8217;s unfortunately the &#8220;taboo&#8221; of modern website design, but many developers don&#8217;t want to simply leave their IE7 visitors and IE6 visitors in the dark. It&#8217;s fine for sites like this one, or for web applications but what about corporation websites? For sites that HAVE to support older/alternative browsers. This came to light ever more when I recently worked on a website which would mean that customers worth millions could possibly be using IE6. There&#8217;s 50% of employees there too who still run IE7 so not supporting them wasn&#8217;t an option. I needed (and used) a large set of tools to help me accomplish this task, and I&#8217;m going to tell you about them.</p>
<p>Every web developer <strong>should</strong> (<em>and probably does</em>) use these tools on a daily basis. They streamline your development and help speed up little niggles with your site.<span id="more-501"></span></p>
<h3><strong><a href="https://addons.mozilla.org/en-US/firefox/addon/60" target="_blank">Web Developer Toolbar</a></strong></h3>
<p><img class="alignnone size-full wp-image-506" title="Web Developer Toolbar" src="http://blog.0100.tv/wp-content/uploads/2009/10/fftb1.jpg" alt="fftb" width="510" height="150" /></p>
<p>This handy toolbar includes features such as in browser CSS editing which lets you see CSS changes live, the ability to disable Javascript, Cookies, CSS and Images (for usability testing) and includes many handy features.</p>
<p><a href="http://blog.0100.tv/wp-content/uploads/2009/10/google.jpg"><img class="size-thumbnail wp-image-503 alignright" title="google" src="http://blog.0100.tv/wp-content/uploads/2009/10/google-100x100.jpg" alt="google" width="100" height="100" /></a>Some fancy tricks also include:</p>
<ul>
<li><strong>Element outlining</strong><br />
This allows you to see which &lt;div/input/anything&gt; tags are lining up wrong and combined with the CSS editor proves a powerful tool in element alignment.</li>
<li><strong>Disabling CSS</strong><br />
This allows you to see how your layout holds up with browsers which don&#8217;t support CSS (such as screen readers). If your content is laid out poorly, it. will. be. read. out. loud. poorly.</li>
<li><strong>Browser Resizing</strong><br />
Want to see how your site looks in a 1024&#215;768 browsers? Click the re-size button and the toolbar will set your browser window to any size you specify!</li>
<li><strong>Quick Validation links</strong><br />
Want to know if your XHTML or CSS validates? There&#8217;s quick handy links under the Tools drop-down.</li>
<li><strong>Generated Source vs Source</strong><br />
Is your Javascript messing up your code? Then view the Generated Source to see what it&#8217;s actually doing to your pages.</li>
<li><strong>Quickly Edit HTML &amp; CSS in-line</strong><br />
It&#8217;s a quick and dirty way to see how your new CSS/HTML code works in your site. Simply open the editor and type away to see your page update <strong>live</strong>.</li>
</ul>
<p>There&#8217;s many more options you can play with. All you need is <a href="http://www.mozilla-europe.org/en/firefox/" target="_blank">Firefox</a> and the <a href="https://addons.mozilla.org/en-US/firefox/addon/60" target="_blank">Web Developer Toolbar</a>.</p>
<h3><a href="https://addons.mozilla.org/en-US/firefox/addon/1843" target="_blank">Firebug</a></h3>
<p><img class="alignnone size-full wp-image-507" title="Firebug" src="http://blog.0100.tv/wp-content/uploads/2009/10/fb.jpg" alt="Firebug" width="510" height="150" /></p>
<p>Firebug is a tool used by almost every web developer in the world. If you&#8217;ve not installed it yet, do it immediately as it will save you many man hours fixing bugs in your websites code. It&#8217;s had over <strong>19 million</strong> downloads and averages <strong>22,000</strong> downloads every day.</p>
<h3><strong><a href="https://addons.mozilla.org/en-US/firefox/addon/271">Colorzilla</a></strong></h3>
<p><strong><img class="alignnone size-full wp-image-509" title="Colorzilla" src="http://blog.0100.tv/wp-content/uploads/2009/10/colorzilla.jpg" alt="colorzilla" width="510" height="150" /><br />
</strong></p>
<p>When I can&#8217;t remember how to <a href="http://www.lts.com/class/hex1.htm" target="_blank">count in hex</a> (which often happens) I use Colorzilla. It makes sure my <span style="color: #009ecc;">#009ecc</span> is not <span style="color: #02a4d3;">#02a4d3</span> and that my <span style="color: #666666;">#666</span> isn&#8217;t <span style="color: #999999;">#999</span>. It&#8217;s best to keep consistency and is what separates a good designer, with a great designer.</p>
<p>There&#8217;s loads more Firefox Add-ons you could also check out:</p>
<ul>
<li><strong>YSlow</strong> <a href="https://addons.mozilla.org/en-US/firefox/addon/5369">https://addons.mozilla.org/en-US/firefox/addon/5369</a></li>
<li><strong>Pixel Perfect</strong> <a href="https://addons.mozilla.org/en-US/firefox/addon/7943">https://addons.mozilla.org/en-US/firefox/addon/7943</a></li>
<li><strong>Firecookie</strong> <a href="https://addons.mozilla.org/en-US/firefox/addon/6683">https://addons.mozilla.org/en-US/firefox/addon/6683</a></li>
<li><strong>PageDiff</strong> <a href="https://addons.mozilla.org/en-US/firefox/addon/4274">https://addons.mozilla.org/en-US/firefox/addon/4274</a></li>
</ul>
<h3><a href="http://0100.ws/69d/" target="_blank"><strong>Internet Explorer Developer Tools</strong></a></h3>
<p><strong><img class="alignnone size-full wp-image-515" title="Internet Explorer Developer Tools" src="http://blog.0100.tv/wp-content/uploads/2009/10/iedt.jpg" alt="Internet Explorer Developer Tools" width="510" height="150" /><br />
</strong></p>
<p>On the Internet Explorer front there&#8217;s not much for the modern Web Developer. However, using the Firefox tools above covers most if not all of your needs, except for IE8, IE7 and IE6 testing. This is what I&#8217;ll go over next.</p>
<p>The best tool is actually one released by Microsoft themselves. The aptly named <a href="http://0100.ws/69d/" target="_blank"><strong>Internet Explorer Developer Toolbar</strong></a> which gives you a few tools to play with which include a CSS and HTML editor, the ability to disable CSS and images, use a colour picker and outline elements. It&#8217;s basically a shorter version of the Firefox web developer toolbar. It also allows you to quickly switch between IE7 and IE8 browser rendering. Simply select which browser mode you need and you can see what your page looks like in IE7.</p>
<p>Now for IE6 (cringe). I know a lot of developer are now dropping support but as previously mentioned sometimes it&#8217;s not an option, and we sometimes need to think about this when developing mass market websites.</p>
<h3><a href="http://www.spoon.net/browsers/" target="_blank"><strong>Spoon.net</strong></a></h3>
<p>It&#8217;s a tool I only recently found and because Microsoft won&#8217;t properly develop something which lets you run IE6 on your machine, Spoon developed a browser plug-in which lets you run ANY browser, well, IN browser. They call it &#8220;App Virtualization&#8221; and I call it magic as it let&#8217;s you run IE6! (<em>note, as of writing I couldn&#8217;t get it to buffer on Windows 7 64-bit but could on Vista (32) and XP (32), let me know, maybe it needs to be XP Virtualized?</em>)</p>
<h3><a href="https://browserlab.adobe.com/" target="_blank">Adobe BrowserLab</a></h3>
<p><a href="http://blog.0100.tv/wp-content/uploads/2009/10/adobe.jpg"><img class="alignnone size-medium wp-image-516" title="adobe" src="http://blog.0100.tv/wp-content/uploads/2009/10/adobe-510x248.jpg" alt="adobe" width="510" height="248" /></a></p>
<p>This amazing tool lets you preview your pages side by side and even overlay pages (known as onion skin). You can also preview your site in many browsers which include Internet Explorer 6/7/8, Safari 3/4 and Firefox 2/3. The only downside is you can&#8217;t preview it as a functional page so can only be used for styling sakes, and it&#8217;s a little slow to run sometimes.</p>
<p><strong>I hope you found these tools useful for your web developing needs and good luck (you&#8217;ll need it if your working with IE6)</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.0100.tv/2009/10/developing-for-multiple-browsers-sigh/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>University is over! (for a year anyway)</title>
		<link>http://blog.0100.tv/2009/07/university-is-over-for-a-year-anyway/</link>
		<comments>http://blog.0100.tv/2009/07/university-is-over-for-a-year-anyway/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 19:23:18 +0000</pubDate>
		<dc:creator>Mark Goddard</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Downloads]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[University]]></category>
		<category><![CDATA[Website Design]]></category>
		<category><![CDATA[camera]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[illustration]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[json]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[powerpoint]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://blog.0100.tv/?p=270</guid>
		<description><![CDATA[So University is done and dusted for 2009. I won&#8217;t be returning until September 2010 which makes for a nice break. In the end I got my grades (A,A,B,B,B,C) which I was very happy with. To top all this off I thought I&#8217;d showcase some of the work I did to receive these grades. Visual [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.0100.tv/wp-content/uploads/2009/07/stamps_final.jpg"><img class="alignnone size-full wp-image-291" title="Stamps" src="http://blog.0100.tv/wp-content/uploads/2009/07/stamps.jpg" alt="Stamps" width="510" height="150" /></a></p>
<p>So University is done and dusted for 2009. I won&#8217;t be returning until September 2010 which makes for a nice break. In the end I got my grades (A,A,B,B,B,C) which I was very happy with. To top all this off I thought I&#8217;d showcase some of the work I did to receive these grades.</p>
<h3><strong>Visual Design</strong> <em>(B Grade)</em></h3>
<p><a href="http://turnitoff.info/2.jpg"><img class="alignnone size-full wp-image-293" title="Plugs" src="http://blog.0100.tv/wp-content/uploads/2009/07/plugs.jpg" alt="Plugs" width="510" height="150" /></a><br />
I&#8217;ll start with a Module I didn&#8217;t thoroughly enjoy this year due to boring briefs, however, I did a little bit of illustration for it which included some postage stamps, posters and even included some Video in After Effects. You can see the video, the illustrations and the posters over at <a href="http://turnitoff.info/">http://turnitoff.info/</a> (the posters reside in the footer of the page)<br />
The site was built using the latest in Javascript and jQuery technology so check it out, hover over the elements, play with the buttons. Your probably better off using FireFox too, as IE couldn&#8217;t really handle it&#8217;s superior web modernness. <strong>Make sure you check out the video at the bottom of the website too</strong> (yes that is me speaking sounding common as muck).</p>
<p>For Visual design I <a href="http://blog.0100.tv/wp-content/uploads/2009/07/stamps_final1.jpg">also illustrated the stamps</a> shown in the header image. It&#8217;s based on Music Technology over the years and I think I captured the best four from the past century or so. You can <a href="http://blog.0100.tv/wp-content/uploads/2009/07/stamps_final1.jpg">see them in all their vector glory</a> too.</p>
<h3><a href="http://blog.0100.tv/wp-content/uploads/2009/07/website2.2.2.jpg"></a><a href="http://blog.0100.tv/wp-content/uploads/2009/07/website2.2.2.jpg"><img class="alignright size-medium wp-image-295" title="Website" src="http://blog.0100.tv/wp-content/uploads/2009/07/website2.2.2-205x150.jpg" alt="Website" width="205" height="150" /></a><strong>Multimedia Product</strong><em> (C Grade)</em></h3>
<p>This was a complex one, which also means I can&#8217;t demonstrate it online. The idea was simple, Unique Bidding auctions.</p>
<p>The site featured a <strong>worlds first</strong> in online bidding. Live real time bidding in auctions. You could actually watch LIVE bidders placing their respective amounts on the page as it went along. This meant users could bid against each other based on other users&#8217; bids. Clever eh! It was all jQuery and PHP grabbing the data from a database. It was awfully complex and also included a 10,000 word document explaing the process and research behind it. There was also a <a href="http://blog.0100.tv/wp-content/uploads/2009/07/SuiGenerisPresentation.ppsx">very fancy presentation which explains the fundementals</a> if anyone wants to watch it. <a href="http://blog.0100.tv/wp-content/uploads/2009/07/SuiGenerisPresentation.ppsx">Its the branding, the functionality and the UI all rolled into a short few slides</a>.</p>
<p>It also had it&#8217;s own iPhone web application which tied into the whole site shwoing live bids from anywhere in the world at any time.</p>
<h3><strong>Web Programming</strong><em> (A grade)</em></h3>
<p>Another interesting one. And one which I actually really enjoyed.</p>
<p><a href="http://blog.0100.tv/wp-content/uploads/2009/07/guest.jpg"></a><a href="http://blog.0100.tv/wp-content/uploads/2009/07/guest.jpg"><img class="alignright size-medium wp-image-297" title="guest" src="http://blog.0100.tv/wp-content/uploads/2009/07/guest-186x150.jpg" alt="guest" width="186" height="150" /></a>Assignment one involved <a href="http://hermes.hud.ac.uk/u0754700/assign1/">building a file based Guestbook</a> with full admin features, the ability to edit posts and delete them, a <strong>swear word filter</strong> to stip out those naughty words and a slick simple UI. It also had AJAX editing of comments right in the page. No loading, no navigating, just click and change! I think you can guess what <em>Lady Part</em> and <em>Ping Pongs</em> were supposed to say! It maybe available as a free download if anyone is interested in the future.</p>
<p>Assignment two <a href="http://hermes.hud.ac.uk/u0754700/assign2/">was a dog database</a> website. Very similar to Battersea dogs homes website. It needed full admin controls and the ability to save dogs as favourites and have the ability to search the dogs too. The brief was very extensive, and I covered everything. <a href="http://hermes.hud.ac.uk/u0754700/assign2/">Check it out online right now</a>. I ended up building a commercial site based on this for <a href="http://cliffekennels.co.uk/">Cliffe Kennels</a>.</p>
<h3><strong>Authoring</strong> <em>(B Grade)</em></h3>
<p>It was basically <a href="http://0100.tv/d/showcase/spiro/">Actionscript 3.0 work</a>. For assignment 1 I had to develop an interface which included an <a href="http://0100.tv/d/showcase/spiro/">animation, using the drawing API and the components within Flash 8</a>. I ended up building a <a href="http://0100.tv/d/showcase/spiro/">Spirograph</a> kind of application which allowed you to colour it yourself and watch the application build it for you. Very nice! <a href="http://0100.tv/d/showcase/spiro/">Have a look at it</a>. I also built a flash gallery using XML and class files. But it&#8217;s not something I have online at the moment.</p>
<h3><strong>Multimedia Design &amp; Production </strong>(A Grade)</h3>
<p>This is a group project, and something which is a real challenge working with four different creative minds. My University chum <a href="http://chris.kovalenko.co.uk/news/launch/">Chris Kovalenko</a> was part of our A grade group which created a chairty website and CDROM called the West Yorkshire Autistic Society (completely fake). <a href="http://wyas.0100.tv/">Check out the site</a>.</p>
<h3><strong>Intro to Video</strong> <em>(B Grade)</em></h3>
<p>My mate Adam Fisher helped me out with this one as I couldn&#8217;t star, edit and film the whole video. He rode the bike, I edited it, The Chemists supplied the music. It actually works quite well for my first every video. So I&#8217;m quite happy with it as a 2nd year project.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="510" height="408" 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://vimeo.com/moogaloop.swf?clip_id=4680390&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00adef&amp;fullscreen=1" /><embed type="application/x-shockwave-flash" width="510" height="408" src="http://vimeo.com/moogaloop.swf?clip_id=4680390&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00adef&amp;fullscreen=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>That&#8217;s it! I hope this gives someone some kind of inspiration either for university or for their next project. If it did help you in any way shape or form, <strong>drop me a comment</strong>!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.0100.tv/2009/07/university-is-over-for-a-year-anyway/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IE8 Adverts</title>
		<link>http://blog.0100.tv/2009/07/ie8-adverts/</link>
		<comments>http://blog.0100.tv/2009/07/ie8-adverts/#comments</comments>
		<pubDate>Sat, 04 Jul 2009 11:57:31 +0000</pubDate>
		<dc:creator>Mark Goddard</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Website Design]]></category>
		<category><![CDATA[ff3]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[funny]]></category>
		<category><![CDATA[ie8]]></category>
		<category><![CDATA[inter]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://blog.0100.tv/?p=265</guid>
		<description><![CDATA[I LOVE the new IE8 adverts. They feature that guy from The New Adventures of Superman (Dean Cain). It&#8217;s a shame I&#8217;m a FF3.5 user and IE8 is fourth in my list (behind Safari &#38; Opera) of browsers to use. They are brilliant though. I have gritting rage!. Download Firefox then you plonk. :D Additionally [...]]]></description>
			<content:encoded><![CDATA[<p>I LOVE the new IE8 adverts. They feature that guy from The New Adventures of Superman (Dean Cain). It&#8217;s a shame I&#8217;m a <a href="http://www.mozilla-europe.org/en/firefox/">FF3</a>.5 user and IE8 is fourth in my list (behind Safari &amp; Opera) of browsers to use. They are brilliant though.</p>
<p><strong>I have gritting rage!</strong>. <a href="http://www.mozilla-europe.org/en/firefox/">Download Firefox</a> then you plonk. :D</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="510" height="290" 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/QjUzzxAKs20&amp;hl=en&amp;fs=1&amp;hd=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="510" height="290" src="http://www.youtube.com/v/QjUzzxAKs20&amp;hl=en&amp;fs=1&amp;hd=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="510" height="290" 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/2aA_PEltVTw&amp;hl=en&amp;fs=1&amp;hd=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="510" height="290" src="http://www.youtube.com/v/2aA_PEltVTw&amp;hl=en&amp;fs=1&amp;hd=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="510" height="290" 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/JyQolo0Xdqw&amp;hl=en&amp;fs=1&amp;hd=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="510" height="290" src="http://www.youtube.com/v/JyQolo0Xdqw&amp;hl=en&amp;fs=1&amp;hd=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Additionally I have omitted the &#8220;Puke&#8221; advert as it wasn&#8217;t that funny (and kinda horrible to watch). <a href="http://www.youtube.com/watch?v=xB9fhjnJcB0">But you can still watch it anyway</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.0100.tv/2009/07/ie8-adverts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The things that annoy me about iPhone 3.0</title>
		<link>http://blog.0100.tv/2009/06/the-things-that-annoy-me-about-iphone-30/</link>
		<comments>http://blog.0100.tv/2009/06/the-things-that-annoy-me-about-iphone-30/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 17:56:16 +0000</pubDate>
		<dc:creator>Mark Goddard</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[University]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://blog.0100.tv/?p=247</guid>
		<description><![CDATA[Don&#8217;t get me wrong, the new updates for the iPhone are a much needed modification for the device. Cut/Copy &#38; Paste, Tethering and MMS are all things which should (in my opinion) have been on the phone from the very first incarnation. These things were standard on even the most basic of modern phones. Apple [...]]]></description>
			<content:encoded><![CDATA[<p>Don&#8217;t get me wrong, the new updates for the iPhone are a much needed modification for the device. Cut/Copy &amp; Paste, Tethering and MMS are all things which should (in my opinion) have been on the phone from the very first incarnation. These things were standard on even the most basic of modern phones.</p>
<p>Apple have played it clever. They brought out an amazing phone and missed out a lot of the basics. The annoying thing though is the fact that Apple is shouting about simple things such as &#8220;<em>Read and write texts, emails and picture messaging holding your iPhone sideways.</em>&#8220;. Wow! &#8220;<em>Cut Copy Paste, Move text, numbers, email addresses between apps</em>&#8220;. Honest to god these are not major selling points for the new iPhone software so why flaunt them? To say these are only 2 of the most flaunted updates how good can the other 98 be? Thank god Apple have updated the website today to show the other top features such as the search function, stereo bluetooth and the new language support.</p>
<p>Overall I&#8217;m happy with the new update and look forward to installing it next Wednesday (June 17th) but I can&#8217;t help but feel Apple have been deliberately holding this off for 2 years just to drum up a bit of cash/publicity. Classic Apple/Jobs, and to be honest, it&#8217;s worked on me, as ashamed as I am to say it, I&#8217;ll probably be on the phone to o2 next week about upgrading to the 3G S (which is a crap name by the way). :-D</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.0100.tv/2009/06/the-things-that-annoy-me-about-iphone-30/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google Chrome</title>
		<link>http://blog.0100.tv/2008/09/google-chrome/</link>
		<comments>http://blog.0100.tv/2008/09/google-chrome/#comments</comments>
		<pubDate>Wed, 03 Sep 2008 19:14:06 +0000</pubDate>
		<dc:creator>Mark Goddard</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[war]]></category>

		<guid isPermaLink="false">http://blog.0100.tv/?p=79</guid>
		<description><![CDATA[With the release of Google&#8217;s new web browser named &#8220;Chrome&#8221;, will this mean a shift in browser usage? Probably not. It&#8217;s the same situation as Firefox found itself in nearly four years ago, and it&#8217;s only just catching Microsofts browser. So, is Chrome any good? We downloaded the BETA yesterday and have been playing ever [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-80" title="chrome" src="http://blog.0100.tv/wp-content/uploads/2008/09/chrome.jpg" alt="" width="498" height="150" /></p>
<p>With the release of Google&#8217;s new web browser named &#8220;Chrome&#8221;, will this mean a shift in browser usage?</p>
<p>Probably not. It&#8217;s the same situation as Firefox found itself in nearly four years ago, and it&#8217;s only just catching Microsofts browser.</p>
<p>So, is Chrome any good? We downloaded the BETA yesterday and have been playing ever since.<br />
We are pleased to say it&#8217;s extremely fast. It features a new open source Javascript Engine named &#8220;V8&#8243; as well as multiple tab processing. This means the browser can handle processes from each individual tab rather than processing the lot at the same time, which competitors such as Firefox 3 and IE7 do (IE8 BETA has a similar system to Chrome).</p>
<p>Although it may take up a little more memory and power it ultimately makes for a faster browsing experience and more stability. If one of the processes fail you only lose one tab rather than the whole browser.<br />
Firefox has a similar stability system included where it re-initiates your tabs after a crash. Google Chrome never has to close when a piece of dodgy Javascript breaks the tab. It just closes it.</p>
<p>Things we like in Chrome:</p>
<ol>
<li><strong><a href="http://blog.0100.tv/wp-content/uploads/2008/09/like4.jpg"><img class="alignright size-thumbnail wp-image-93" title="Javascript Console" src="http://blog.0100.tv/wp-content/uploads/2008/09/like4-100x100.jpg" alt="" width="100" height="100" /></a>The truely awesome Chrome Inspector<br />
<span style="font-weight: normal;">A great debugging tool is built right into Chrome. Want to know what&#8217;s making your page load slowly? Not sure how long your page takes to load? Want to know which elements load first? This shows you the lot. You can see which order elements load, how long they take to load, how long it takes for each element to load after the previous as well as file information and the built in debugger and property inspector. You have to use it to truly understand it&#8217;s complexity. Simply click the control button, then down to Developer&gt;Javascript console and click away!</span></strong></li>
<li><strong><a href="http://blog.0100.tv/wp-content/uploads/2008/09/like6.jpg"><img class="alignright size-thumbnail wp-image-92" title="Incognito" src="http://blog.0100.tv/wp-content/uploads/2008/09/like6-100x100.jpg" alt="" width="100" height="100" /></a>Incognito Browsing (and the awesome logo)</strong><br />
It&#8217;s basically a porn mode. Very much like IE8&#8242;s new privacy feature. Upon opening this new &#8220;Incognito Window&#8221; all your history and web cookies won&#8217;t be stored meaning your basically invisible on the internet. It also means your mom/mum won&#8217;t find that dirty website you have been visiting over the past few days&#8230;<br />
We also love the &#8220;spy&#8221; logo very similar to Gamespys logo. It looks very cool for a Google graphic! (We also love the Chrome logo).</li>
<li><strong><a href="http://blog.0100.tv/wp-content/uploads/2008/09/like1.jpg"><img class="alignright size-thumbnail wp-image-85" title="Things we like" src="http://blog.0100.tv/wp-content/uploads/2008/09/like1-100x100.jpg" alt="" width="100" height="100" /></a>The iGoogle like welcome page</strong><br />
When opening a new tab you have the option of showing a &#8220;New Tab page&#8221;. It shows your most visited websites in order and also shows your full browser history with time and date. Clicking show full history actually allows you to see your online travel path. The new tab page also shows new bookmarks and recently closed tabs. A feature we like very much as losing closed tabs can be easy.</li>
<li><strong><a href="http://blog.0100.tv/wp-content/uploads/2008/09/like2.jpg"><img class="alignright size-thumbnail wp-image-86" title="Organised Tabs" src="http://blog.0100.tv/wp-content/uploads/2008/09/like2-100x100.jpg" alt="" width="100" height="100" /></a>Organised tabs</strong><br />
When you have several tabs opened, keeping track can be difficult. And when Firefox adds your tab onto the end of the list it can be hard to find again. Google Chrome adds the tab next to the currently opened one, which helps keep them organised. The more tabs you have open at any one time, the harder it becomes to sort, and the more valuable this feature becomes.<br />
Click on the image to see a better example. </li>
<li><strong>Unobtrusive status bar<br />
</strong><a href="http://blog.0100.tv/wp-content/uploads/2008/09/like3.jpg"><img class="alignright size-thumbnail wp-image-87" title="Chrome Status bar" src="http://blog.0100.tv/wp-content/uploads/2008/09/like3-100x100.jpg" alt="" width="100" height="100" /></a>This is a personal preference. The more browser space is available, the better. This means you can see more of the page at any one time. Even if it is 10px worth of space, every little bit helps.<br />
When hovering over links the status bar pops up in the lower left corner, then fades away when you move away from the link. Simple and effective.<br />
 </li>
</ol>
<p>To be honest we could write about the new Chrome all day, but we know that it&#8217;s already been well documented. Maybe we got a little carried away.</p>
<p>To download <a href="http://www.google.com/chrome" target="_blank">Google Chrome</a> simply head over to <a href="http://www.google.com/chrome" target="_blank">their website</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.0100.tv/2008/09/google-chrome/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Microsoft releases IE8 Beta II, try harder!</title>
		<link>http://blog.0100.tv/2008/08/microsoft-releases-ie8-beta-try-harder/</link>
		<comments>http://blog.0100.tv/2008/08/microsoft-releases-ie8-beta-try-harder/#comments</comments>
		<pubDate>Thu, 28 Aug 2008 20:42:10 +0000</pubDate>
		<dc:creator>Mark Goddard</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Website Design]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://blog.0100.tv/?p=71</guid>
		<description><![CDATA[This week sees Microsoft leave behind the IE7 which had lasted for two years, and announces the second beta of IE8, but does more effort need to be placed on getting users to actually upgrade, rather than adding another version number to the mix? According to W3.org there are more or less the same amount [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-74" title="IE8 BEta" src="http://blog.0100.tv/wp-content/uploads/2008/08/ie8.jpg" alt="" width="498" height="160" /></p>
<p>This week sees Microsoft leave behind the IE7 which had lasted for two years, and announces the second beta of IE8, but does more effort need to be placed on getting users to actually upgrade, rather than adding another version number to the mix?</p>
<p>According to <a href="http://www.w3schools.com/browsers/browsers_stats.asp" target="_blank">W3.org</a> there are more or less the <a href="http://www.w3schools.com/browsers/browsers_stats.asp" target="_blank">same amount of users</a> toddling along with IE6 as there are IE7. IE6 is <strong>seven years old</strong> yesterday (27th) and still holds a market share of around 25% while IE7 holds 26%.</p>
<p>Firefox is steadily climbing up the browser tree holding 42%, and nearly all of those users are on the latest version (or there about). Why is this? Do Internet Explorer users not bother? Is it too complicated? Or is it even due to piracy? After all, if you have an illegal key, you won&#8217;t be able to upgrade. Let&#8217;s make a few points and ask some questions&#8230;<span id="more-71"></span></p>
<ol>
<li><strong>Firefox is easy to update, IE is confusing?</strong><br />
Which is 100% correct. Hell, Firefox is so easy to update it&#8217;s basically a couple of clicks. And there is even the option of auto-updating, which saves even more hassle.<br />
Internet Explorer is downloaded using Windows Update, which is frankly a pain. Updates should be notified in browser and warned that out of date software is potentially unsafe. I&#8217;m not saying IE&#8217;s update system is bad, but it is slightly confusing to use the Windows Update service.</li>
<li><strong>Internet Explorer has lazy users?</strong><br />
This maybe because of the confusing update sequence or even due to a high number of Windows XP users. If people bothered replacing their IE with Safari, Opera or Firefox they are going to be bothered about updating a genuinely good brower. On the other hand, if they have not known anything but IE6 since they bought their computer why change?</li>
<li><strong>Piracy</strong><br />
Windows Genuine Key checks come as standard with the system. It&#8217;s a great way of making sure only paying users get the software Microsoft develops. It does however mean that users with a pirate copy of IE6 won&#8217;t be able to download IE7 or IE8 without &#8220;hacks&#8221;. This may force the user to stick with IE6 (on Windows XP) or even download a competitors browser. I&#8217;m not condoning pircay in any way, but it&#8217;s definately a reason people are sticking to IE6.</li>
<li><strong>Microsoft is too corporate</strong><br />
An issue that has plagued Microsoft for quite some years. IE should take a leaf out of other browsers books.<br />
Firefox&#8217;s <a title="Spread Firefox" href="http://www.spreadfirefox.com/" target="_blank">SpreadFirefox.com</a> is a brilliant example of community marketing. It&#8217;s a way of spreading the word through social networking, and it works, to great effect. Firefox is taking the battle to IE (and winning) while IE combats with forcing the browser with Windows. Ever seen anyone <a href="http://intlstore.mozilla.org/" target="_blank">selling IE t-shirts</a>? Didn&#8217;t think so. Then again, Mozilla has to get it&#8217;s money from somewhere&#8230;</li>
</ol>
<p>Still want to stick to IE6? Maybe Microsoft need some sort of better marketing strategy to explain to users that upgrading is important to their security. Or maybe you should download Opera, Firefox or even Apples Safari. *shudder*</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.0100.tv/2008/08/microsoft-releases-ie8-beta-try-harder/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

