<?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>Phil's Site &#187; WWW</title>
	<atom:link href="http://www.philemerson.com/cat/www/feed" rel="self" type="application/rss+xml" />
	<link>http://www.philemerson.com</link>
	<description>My personal website! :)</description>
	<lastBuildDate>Sun, 25 Jul 2010 11:17:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Last call for HTML 5&#8230; all aboard!</title>
		<link>http://www.philemerson.com/www/last-call-for-html-5-all-aboard</link>
		<comments>http://www.philemerson.com/www/last-call-for-html-5-all-aboard#comments</comments>
		<pubDate>Fri, 06 Nov 2009 02:24:07 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[WWW]]></category>
		<category><![CDATA[HTML 5]]></category>

		<guid isPermaLink="false">http://www.philemerson.com/?p=470</guid>
		<description><![CDATA[Last month, the WHATWG (Web Hypertext Application Technology Working Group) announced the &#8216;last call&#8217; for changes to the specification for the next evolution of HTML, HTML 5.
I&#8217;ve been watching the development of the new specification with interest because it could result in a much more usable markup language for web developers. The best bit about [...]]]></description>
			<content:encoded><![CDATA[<p>Last month, the WHATWG (Web Hypertext Application Technology Working Group) announced the &#8216;last call&#8217; for changes to the specification for the next evolution of HTML, HTML 5.</p>
<p>I&#8217;ve been watching the development of the new specification with interest because it could result in a much more usable markup language for web developers. The best bit about the new specification is that instead of just trying to patch up flaws in its predecessors, the specification is keeping the good bits and ditching the old bits nobody cares about whilst formalising the concept of web application frameworks using established APIs (as opposed to vendor specific).</p>
<p><strong>The problem with plugins<br />
</strong><br />
Although CSS support has gradually become more uniform across browsers, creating designs that break away from the rectangular box mould is challenging &#8211; surprising when you consider the maturity of the Internet technologies that drive the sites we all use.</p>
<p>Most of the more-interesting parts of the Internet are dependant upon the client browser using plugin technologies to achieve a greater degree of user engagement. Vendors have made the client plugins free to download and install but that doesn&#8217;t change the fact that propriertary technologies are required to achieve what isn&#8217;t specified within existing markup standards. Of course, though the vendors of the more successful and pervasive plugins provide the client plugins for free, they charge a considerable amount for the authoring tools to create content for the plugins.</p>
<p><strong>Farewell SGML</strong></p>
<p>One of the first things that caught my attention about the new specification was the decoupling of HTML 5 from its root language; SGML. This makes sense when you consider that browsers don&#8217;t use an SGML parser to render web-pages. It&#8217;s only validators that do that &#8211; and even then, not all of them do.</p>
<p>HTML5 will (apparently) require that documents are served as either text/html or application/xml but not both. This does make sense when you consider how different the structure of a HTML document is when compared to a well-formed XML document. Either way, one think I won&#8217;t miss isÂ the DOCTYPE line at the start of each web document.</p>
<p>The text/html model will be preferable to many, especially seeing that it doen&#8217;t force the strict well-formedness rules of XHTML 1.0 upon the structure.</p>
<p><strong>Javascript</strong></p>
<p>Many websites use Javascript to dynamically generate web-content. HTML 5 introduces some stricter rules as to how this should function. Two that particularly caught my eye were:</p>
<ul>
<li>If Javascript generates HTML content that includes elements, the closing tags for those elements must be escaped. This is because the data for the element starts immediately after the opening tag and ends <em>at the first closing tag</em> that is encountered. I&#8217;ve tried to show this in the code below &#8211; the closing tag for the bold element has been escaped so that the closing tag for the script element is processed first.</li>
</ul>
<p style="PADDING-LEFT: 30px">&lt;script type=&#8221;text/javascript&#8221;&gt;</p>
<p style="PADDING-LEFT: 60px">document.write(&#8221;&lt;b&gt;This is bold text&lt;\/b&gt;&#8221;);</p>
<p style="PADDING-LEFT: 30px">&lt;/script&gt;</p>
<ul>
<li>
<div style="PADDING-LEFT: 30px">When writing event code for HTML elements, figuring out how to nest quotes within quotes was a nightmare. Now coders will be required to use HTML entity codes instead. This means that instead of this :</div>
</li>
</ul>
<p style="PADDING-LEFT: 90px">&lt;input type=&#8221;button&#8221; onclick=&#8221;alert(&#8217;Hello World&#8217;);&#8221; /&gt;</p>
<p style="PADDING-LEFT: 90px">it will be :</p>
<p style="PADDING-LEFT: 90px">&lt;input type=&#8221;button&#8221; onclick=&#8221;alert(&amp;quot;Hello World&amp;quot;);&#8221; /&gt;</p>
<p style="PADDING-LEFT: 30px"><strong>Support for multi-lingual indexing</strong></p>
<p style="PADDING-LEFT: 30px">There will be support for linking translations of web-pages by using the link element and a language specifier &#8211; presumably this will enable the browser to display the page appropriate for the user rather than pages having to have specific anchor links to different pages.</p>
<p style="PADDING-LEFT: 30px"><strong>Is that it?</strong></p>
<p style="PADDING-LEFT: 30px">This post barely even scrapes the surface of the new HTML 5 specification.</p>
<p style="PADDING-LEFT: 30px">There are some very interesting multimedia extensions that will permit the embedding of video and sound within pages without additional plugins and the humble HTML tables will be receiving a fair amount of attention too.</p>
<p style="PADDING-LEFT: 30px">The best part of the new specification is that some of it has already been implemented in newer browsers. Internet Explorer 8 and Firefox 3.5 have both introduced support for various parts of the new draft.</p>
<p style="PADDING-LEFT: 30px">Whilst it might be fun to play with the shiny new toys, unless you know the majority of your site&#8217;s users are going to be using a supporting browser, HTML 5 probably isn&#8217;t ready for the masses yet.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.philemerson.com/www/last-call-for-html-5-all-aboard/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Great Internet radio (if you like trance &amp; progressive)</title>
		<link>http://www.philemerson.com/www/great-internet-radio-if-you-like-trance</link>
		<comments>http://www.philemerson.com/www/great-internet-radio-if-you-like-trance#comments</comments>
		<pubDate>Mon, 21 Sep 2009 22:54:04 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[WWW]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[radio]]></category>

		<guid isPermaLink="false">http://www.philemerson.com/?p=445</guid>
		<description><![CDATA[I was talking to some students earlier about trance DJs and I told them about an Internet radio station that I like listening to that provides high quality streams of really awesome trance mixes. Needless to say, I couldn&#8217;t remember the name of the Internet station so I thought I better post it here.
The station [...]]]></description>
			<content:encoded><![CDATA[<p>I was talking to some students earlier about trance DJs and I told them about an Internet radio station that I like listening to that provides high quality streams of really awesome trance mixes. Needless to say, I couldn&#8217;t remember the name of the Internet station so I thought I better post it here.</p>
<p>The station is called <a href="http://www.etn.fm">ETN</a> and they broadcast two streams at various bandwidths; ETN1 (Trance) and ETN2 (Progressive).</p>
<p>Here&#8217;s the hi-fi (256kbps) MP3 stream addresses:</p>
<p>ETN1 (Trance) : <a href="http://www.etn.fm/playlists/etn1beta.m3u">http://www.etn.fm/playlists/etn1beta.m3u</a></p>
<p>ETN2 (Progressive) : <a href="http://www.etn.fm/playlists/etn2beta.m3u">http://www.etn.fm/playlists/etn2beta.m3u</a></p>
<p>They also have streams for other streaming clients (like WMP and Real). If you insist on being a slave to such commercial beasties, you&#8217;ll need to get the stream addresses from <a href="http://www.etn.fm/Radio/index">ETN&#8217;s Tune In page</a>.</p>
<p>They only start broadcasting at 10am (their time) which is GMT-4 (that&#8217;s 1400 to us in the UK).</p>
<p>I highly recommend the freeware Internet radio player called Screamer to listen to them. You can get that from here : <a href="http://www.screamer-radio.com/">http://www.screamer-radio.com/</a></p>
<p>Happy listening trance/progressive fans!  :-)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.philemerson.com/www/great-internet-radio-if-you-like-trance/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.etn.fm/playlists/etn1beta.m3u" length="139" type="audio/x-mpegurl" />
<enclosure url="http://www.etn.fm/playlists/etn2beta.m3u" length="135" type="audio/x-mpegurl" />
		</item>
		<item>
		<title>Wow&#8230; IE6 is slow</title>
		<link>http://www.philemerson.com/www/wow-ie6-is-slow</link>
		<comments>http://www.philemerson.com/www/wow-ie6-is-slow#comments</comments>
		<pubDate>Fri, 19 Jun 2009 11:27:50 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[WWW]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.philemerson.com/?p=331</guid>
		<description><![CDATA[I&#8217;ve been investigating AJAX frameworks recently and I came across an interesting speed comparison test on MooTools&#8217; site.
It does a number of tests by applying MooTools, JQuery, Prototype, YUI and Dojo to an HTML document and reports the total times of each library at the end.
Just out of curiosity I applied the test using Firefox [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been investigating AJAX frameworks recently and I came across an <a href="http://mootools.net/slickspeed/">interesting speed comparison</a> test on <a href="http://mootools.net/">MooTools&#8217; site</a>.</p>
<p>It does a number of tests by applying MooTools, JQuery, Prototype, YUI and Dojo to an HTML document and reports the total times of each library at the end.</p>
<p>Just out of curiosity I applied the test using Firefox 3 and IE6 (my employer&#8217;s browser of choice).</p>
<p>Take a look at the results:</p>
<style>
.cellHead
{
    padding:3px;
    font-size:0.9em;
    color:#CCCCCC;
    text-align:center;
    font-weight:bold;
    margin:0px;
}
.cellData
{
    padding:3px;
    font-size:0.9em;
    color:#CCCCCC;
    text-align:center;
    margin:0px;
}
.dataTable
{
    border:1px dotted #AAAAAA; 
    padding:0px; 
    background-color:#575757;
    width:100%;
}
</style>
<table class="dataTable">
<tbody>
<tr style="background-color:#676767;">
<td class="cellHead">Browser</td>
<td class="cellHead"><a href="http://mootools.net/">MooTools</a></td>
<td class="cellHead"><a href="http://jquery.com/">JQuery</a></td>
<td class="cellHead"><a href="http://www.prototypejs.org/">Prototype</a></td>
<td class="cellHead"><a href="http://developer.yahoo.com/yui/">YUI</a></td>
<td class="cellHead"><a href="http://www.dojotoolkit.org/">Dojo</a></td>
<td class="cellHead">Image</td>
</tr>
<tr>
<td class="cellData">Firefox</td>
<td class="cellData">129</td>
<td class="cellData">157</td>
<td class="cellData">248</td>
<td class="cellData">318</td>
<td class="cellData">99</td>
<td class="cellData"><a href="http://www.philemerson.com/wp-content/uploads/firefox3.png" rel="lightbox[331]">Click</a></td>
</tr>
<tr>
<td class="cellData">IE6</td>
<td class="cellData">497</td>
<td class="cellData">302</td>
<td class="cellData">1978</td>
<td class="cellData">1279</td>
<td class="cellData">562</td>
<td class="cellData"><a href="http://www.philemerson.com/wp-content/uploads/ie6.png" rel="lightbox[331]">Click</a></td>
</tr>
</tbody>
</table>
<p>The difference in the times is staggering! Firefox out-performs by at least 200% (and way more for some of the frameworks).</p>
<p><strong>Here&#8217;s the kicker</strong></p>
<p>Because many companies continue to use IE6 as their corporate browser (largely because their standard disk images use the default browser that comes with XP SP1) serious web developers are forced support IE6 to at least a minimal degree.</p>
<p>I don&#8217;t like IE6 &#8211; for personal projects such as this site, my support for IE6 really is a token gesture (but I still endeavour to make the site visible in IE6). Sadly for commercial projects when as wider range of browsers need to be supported to keep a client happy, a web-developer ignores IE6 at their peril.</p>
<p>Even the edit window in Wordpress doesn&#8217;t resize gracefully in IE6. Half of what I&#8217;m editing is hiddent behind other div containers and I don&#8217;t blame Wordpress for that. IE6 stinks.</p>
<p>According to <a href="http://www.w3schools.com/browsers/browsers_stats.asp">W3School&#8217;s browser usage statistics</a>, 14% of their visitors were using IE6 in May 2009. IE6 is like a bad cough that just won&#8217;t go away and I blame narrow-minded and lazy IT departments for its perpetuation. Get with the times, you Luddites.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.philemerson.com/www/wow-ie6-is-slow/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
