<?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>Navarr&#039;s Tech Side &#187; html5</title>
	<atom:link href="http://tech.navarr.me/tag/html5/feed" rel="self" type="application/rss+xml" />
	<link>http://tech.navarr.me</link>
	<description>The Technical Side of my Life</description>
	<lastBuildDate>Sun, 05 Feb 2012 05:10:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<cloud domain='tech.navarr.me' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
		<item>
		<title>Making More Natural Desktop Notifications in Chrome</title>
		<link>http://tech.navarr.me/2010/11/making-more-natural-desktop-notifications-in-chrome.html</link>
		<comments>http://tech.navarr.me/2010/11/making-more-natural-desktop-notifications-in-chrome.html#comments</comments>
		<pubDate>Tue, 09 Nov 2010 03:40:01 +0000</pubDate>
		<dc:creator>Navarr</dc:creator>
				<category><![CDATA[(X)HTML 5]]></category>
		<category><![CDATA[Google Chrome]]></category>
		<category><![CDATA[desktop notifications]]></category>
		<category><![CDATA[google chrome]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[xhtml5]]></category>

		<guid isPermaLink="false">http://tech.navarr.me/?p=512</guid>
		<description><![CDATA[Do you have a website or application that uses Google Chrome Desktop Notifications?  Well, let me just share with you this very simple snippit of code that will make their interaction a lot more natural. Thats really all there is to it. Lives on a 5 second time. If you hover over it, it stays [...]]]></description>
			<content:encoded><![CDATA[<p>Do you have a website or application that uses Google Chrome Desktop Notifications?  Well, let me just share with you this very simple snippit of code that will make their interaction a lot more natural.</p>
<pre><div id="wpshdo_1" class="wp-synhighlighter-outer"><div id="wpshdt_1" class="wp-synhighlighter-expanded"><table border="0" width="100%"><tr><td align="left" width="80%"><a name="#codesyntax_1"></a><a id="wpshat_1" class="wp-synhighlighter-title" href="#codesyntax_1"  onClick="javascript:wpsh_toggleBlock(1)" title="Click to show/hide code block">Code block</a></td><td align="right"><a href="#codesyntax_1" onClick="javascript:wpsh_code(1)" title="Show code only"><img border="0" style="border: 0 none" src="http://tech.navarr.me/wp-content/plugins/wp-synhighlight/themes/default/images/code.png" /></a>&nbsp;<a href="#codesyntax_1" onClick="javascript:wpsh_print(1)" title="Print code"><img border="0" style="border: 0 none" src="http://tech.navarr.me/wp-content/plugins/wp-synhighlight/themes/default/images/printer.png" /></a>&nbsp;<a href="http://tech.navarr.me/wp-content/plugins/wp-synhighlight/About.html" target="_blank" title="Show plugin information"><img border="0" style="border: 0 none" src="http://tech.navarr.me/wp-content/plugins/wp-synhighlight/themes/default/images/info.gif" /></a>&nbsp;</td></tr></table></div><div id="wpshdi_1" class="wp-synhighlighter-inner" style="display: block;"><pre class="xml" style="font-family:monospace;"><span style="color: #00bbdd;">&lt;!DOCTYPE html&gt;</span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;html<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;head<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;meta</span> <span style="color: #000066;">charset</span>=<span style="color: #ff0000;">&quot;utf-8&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;style<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
		html * { font-family: sans-serif; }
		h1 { padding: 0; margin: 0; font-size: 12pt; font-weight: bold; }
		body { font-size: 10pt; }
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/style<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;script<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
		function changeLinks() { for(var i = 0;i <span style="color: #009900;">&lt; document.getElementsByTagName<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;a&quot;</span><span style="color: #66cc66;">&#41;</span>.length;i++<span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span> ele = document.getElementsByTagName<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;a&quot;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#91;</span>i<span style="color: #66cc66;">&#93;</span>; ele.target = <span style="color: #ff0000;">&quot;_blank&quot;</span>; <span style="color: #66cc66;">&#125;</span> <span style="color: #66cc66;">&#125;</span></span>
<span style="color: #009900;">		function detectClick<span style="color: #66cc66;">&#40;</span>e<span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span> var rightclick; if <span style="color: #66cc66;">&#40;</span>!e<span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span> var e = window.event; <span style="color: #66cc66;">&#125;</span> if <span style="color: #66cc66;">&#40;</span>e.which<span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span> rightclick = <span style="color: #66cc66;">&#40;</span>e.which == 3<span style="color: #66cc66;">&#41;</span>; <span style="color: #66cc66;">&#125;</span> else if <span style="color: #66cc66;">&#40;</span>e.button<span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span> rightclick = <span style="color: #66cc66;">&#40;</span>e.button == 2<span style="color: #66cc66;">&#41;</span>; <span style="color: #66cc66;">&#125;</span> if <span style="color: #66cc66;">&#40;</span>rightclick<span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span> self.close<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>; <span style="color: #66cc66;">&#125;</span> <span style="color: #66cc66;">&#125;</span></span>
<span style="color: #009900;">	<span style="color: #000000; font-weight: bold;">&lt;/script<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/head<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;body</span> <span style="color: #000066;">onload</span>=<span style="color: #ff0000;">&quot;document.timeout = setTimeout(self.close,5000);changeLinks();&quot;</span> <span style="color: #000066;">onmouseover</span>=<span style="color: #ff0000;">&quot;clearTimeout(document.timeout);&quot;</span> <span style="color: #000066;">onmouseout</span>=<span style="color: #ff0000;">&quot;document.timeout = setTimeout(self.close,5000);&quot;</span> <span style="color: #000066;">onmouseup</span>=<span style="color: #ff0000;">&quot;detectClick();&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;a</span> <span style="color: #000066;">style</span>=<span style="color: #ff0000;">&quot;display:block;cursor:normal;padding:0;margin:0;color:black;text-decoration:none;&quot;</span> <span style="color: #000066;">onclick</span>=<span style="color: #ff0000;">&quot;self.close();&quot;</span> <span style="color: #000066;">href</span>=<span style="color: #ff0000;">&quot;/link/&quot;</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;_blank&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;h1<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Title<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/h1<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;span<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Message<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/span<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/a<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/body<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/html<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div></pre>
<p>Thats really all there is to it. Lives on a 5 second time. If you hover over it, it stays longer, if you right click it it closes. If you click it it goes to /link/. Quite nifty, if I do say so myself.</p>
<p>Its slightly buggy regarding links in the message.. but meh.</p>
]]></content:encoded>
			<wfw:commentRss>http://tech.navarr.me/2010/11/making-more-natural-desktop-notifications-in-chrome.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Making Google Analytics Work in XHTML</title>
		<link>http://tech.navarr.me/2010/04/making-google-analytics-work-in-xhtml.html</link>
		<comments>http://tech.navarr.me/2010/04/making-google-analytics-work-in-xhtml.html#comments</comments>
		<pubDate>Sun, 04 Apr 2010 16:37:29 +0000</pubDate>
		<dc:creator>Navarr</dc:creator>
				<category><![CDATA[(X)HTML 5]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google analytics]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[xhtml]]></category>
		<category><![CDATA[xhtml5]]></category>

		<guid isPermaLink="false">http://tech.gtaero.net/?p=431</guid>
		<description><![CDATA[I was moving my website, Google Voice for Outlook, over from HTML5 to XHTML5 today, and as soon as I did the basic content negotiation filters in PHP so that it would send the appropriate headers if the client supported XHTML as well as only outputting the &#60;?xml if the client supported XHTML, I checked [...]]]></description>
			<content:encoded><![CDATA[<p>I was moving my website, Google Voice for Outlook, over from HTML5 to XHTML5 today, and as soon as I did the basic content negotiation filters in PHP so that it would send the appropriate headers if the client supported XHTML as well as only outputting the &lt;?xml if the client supported XHTML, I checked my developer tools to find a JavaScript error.  It was Google Analytics, of course.  document.write doesn’t exist in XHTML, after all.</p>
<p>The fix was simple, replace the current four line inclusion code with:</p>
<pre><div id="wpshdo_2" class="wp-synhighlighter-outer"><div id="wpshdt_2" class="wp-synhighlighter-expanded"><table border="0" width="100%"><tr><td align="left" width="80%"><a name="#codesyntax_2"></a><a id="wpshat_2" class="wp-synhighlighter-title" href="#codesyntax_2"  onClick="javascript:wpsh_toggleBlock(2)" title="Click to show/hide code block">Code block</a></td><td align="right"><a href="#codesyntax_2" onClick="javascript:wpsh_code(2)" title="Show code only"><img border="0" style="border: 0 none" src="http://tech.navarr.me/wp-content/plugins/wp-synhighlight/themes/default/images/code.png" /></a>&nbsp;<a href="#codesyntax_2" onClick="javascript:wpsh_print(2)" title="Print code"><img border="0" style="border: 0 none" src="http://tech.navarr.me/wp-content/plugins/wp-synhighlight/themes/default/images/printer.png" /></a>&nbsp;<a href="http://tech.navarr.me/wp-content/plugins/wp-synhighlight/About.html" target="_blank" title="Show plugin information"><img border="0" style="border: 0 none" src="http://tech.navarr.me/wp-content/plugins/wp-synhighlight/themes/default/images/info.gif" /></a>&nbsp;</td></tr></table></div><div id="wpshdi_2" class="wp-synhighlighter-inner" style="display: block;"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;</span>
	<span style="color: #003366; font-weight: bold;">var</span> gaJsHost <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;https:&quot;</span> <span style="color: #339933;">==</span> document.<span style="color: #660066;">location</span>.<span style="color: #660066;">protocol</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">?</span> <span style="color: #3366CC;">&quot;https://ssl.&quot;</span> <span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;http://www.&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #003366; font-weight: bold;">var</span> script <span style="color: #339933;">=</span> document.<span style="color: #660066;">createElement</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;script&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	script.<span style="color: #660066;">src</span> <span style="color: #339933;">=</span> gaJsHost <span style="color: #339933;">+</span> <span style="color: #3366CC;">&quot;google-analytics.com/ga.js&quot;</span><span style="color: #339933;">;</span>
	script.<span style="color: #660066;">type</span> <span style="color: #339933;">=</span> <span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">;</span>
	document.<span style="color: #660066;">getElementsByTagName</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;head&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#91;</span>0<span style="color: #009900;">&#93;</span>.<span style="color: #660066;">appendChild</span><span style="color: #009900;">&#40;</span>script<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></div></div></pre>
<p>This will work fine, unless of course you have no head tag.  In which case you should replace getElementsByTagName(“head”) with getElementsByTagName(“html”).</p>
]]></content:encoded>
			<wfw:commentRss>http://tech.navarr.me/2010/04/making-google-analytics-work-in-xhtml.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>HTML5 Being a Pain in My Ass Again</title>
		<link>http://tech.navarr.me/2010/04/html5-being-a-pain-in-my-ass-again.html</link>
		<comments>http://tech.navarr.me/2010/04/html5-being-a-pain-in-my-ass-again.html#comments</comments>
		<pubDate>Sat, 03 Apr 2010 14:09:32 +0000</pubDate>
		<dc:creator>Navarr</dc:creator>
				<category><![CDATA[<video>]]></category>
		<category><![CDATA[(X)HTML 5]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[h264]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[theora]]></category>
		<category><![CDATA[xhtml5]]></category>

		<guid isPermaLink="false">http://tech.gtaero.net/2010/04/html5-being-a-pain-in-my-ass-again.html</guid>
		<description><![CDATA[This time in regards to the highly acclaimed and very well received &#60;video&#62; element. On my website, Google Voice for Outlook I use the &#60;video&#62; tag to show a demonstration of the system working.&#160; I don’t currently have a way to encode in ogg, and/or am too lazy too, so I decided that if the [...]]]></description>
			<content:encoded><![CDATA[<p>This time in regards to the highly acclaimed and very well received &lt;video&gt; element.</p>
<p>On my website, <a href="http://www.gvoms.com/">Google Voice for Outlook</a> I use the &lt;video&gt; tag to show a demonstration of the system working.&#160; I don’t currently have a way to encode in ogg, and/or am too lazy too, so I decided that if the web browser didn’t support h264 video, it’d fall back to the YouTube video.&#160; The expected result (from me, of course) was that if it can’t display the video, it’d display the YouTube.&#160; Apparently though, in FireFox it does not fall back to the YouTube video and instead just displays a gray box, and the fault this time doesn’t lie with FireFox, but with the standard:</p>
<blockquote><p>Content may be provided inside the video element. User agents should not show this content to the user; it is intended for older Web browsers which do not support video, so that legacy video plugins can be tried, or to show text to the users of these older browsers informing them of how to access the video contents. </p></blockquote>
<p>Ugh!&#160; This means that if you want to use &lt;video&gt; on any website, ever, properly, you’re going to have to encode it in both h264 and Theora until the industry decides on a set standard.</p>
<p>Purely Atrocious.</p>
]]></content:encoded>
			<wfw:commentRss>http://tech.navarr.me/2010/04/html5-being-a-pain-in-my-ass-again.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Needed in (X)HTML 5 &#8211; An extension to the Meta Tag</title>
		<link>http://tech.navarr.me/2010/02/needed-in-xhtml-5-an-extension-to-the-meta-tag.html</link>
		<comments>http://tech.navarr.me/2010/02/needed-in-xhtml-5-an-extension-to-the-meta-tag.html#comments</comments>
		<pubDate>Tue, 02 Feb 2010 23:07:25 +0000</pubDate>
		<dc:creator>Navarr</dc:creator>
				<category><![CDATA[(X)HTML 5]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[meta]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[xhtml]]></category>
		<category><![CDATA[xhtml5]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://tech.gtaero.net/2010/02/needed-in-xhtml-5-an-extension-to-the-meta-tag.html</guid>
		<description><![CDATA[I was thinking today, while reading an article about redirect – that there is currently no way to accurately and semantically tell a user/bot that a web page is located somewhere else when you only have access to static (X)HTML files.&#160; However, there is a workaround a lot of people use that dampens usability, and [...]]]></description>
			<content:encoded><![CDATA[<p>I was thinking today, while reading an article about redirect – that there is currently no way to accurately and semantically tell a user/bot that a web page is located somewhere else when you only have access to static (X)HTML files.&#160; However, there is a workaround a lot of people use that dampens usability, and there is an attribute whose name would seem to imply that a way to do it should be possible.</p>
<p>By this of course, I’m referring to &lt;meta http-equiv=&quot;&quot; /&gt;.</p>
<p>Currently, people wanting to relocate their web pages rely on an older value to this tag that seems to have been originally designed for moving one person from one page to another in a set increment of time:</p>
<p>&lt;meta http-equiv=&quot;refresh&quot; content=&quot;0;URL=http://domain.tld/location&quot; /&gt;</p>
<p>This doesn’t appear to be what this value should be used for, and has very negative consequences for search engines and parsers.&#160; Instead, don’t you think we should be using http-equiv to its full potential?</p>
<p>To this, I propose the addition of &lt;meta http-equiv=&quot;location&quot; /&gt;, to properly match the HTTP Header for redirection.</p>
<p>I think there should be two ways to use this:</p>
<p>&lt;meta http-equiv=&quot;location&quot; content=&quot;http://domain.tld/location&quot; /&gt; <em>and</em></p>
<p>&lt;meta http-equiv=&quot;location&quot; content=&quot;301;http://domain.tld/location&quot; /&gt;.</p>
<p>Obviously, the second example gives us both a *three digit* HTTP Code, and the URL for redirection.&#160; Since HTTP codes are only three numbers (though in the future may be greater digits) there still should not be any problem.</p>
]]></content:encoded>
			<wfw:commentRss>http://tech.navarr.me/2010/02/needed-in-xhtml-5-an-extension-to-the-meta-tag.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Announcing Participation: HTML-WG</title>
		<link>http://tech.navarr.me/2008/01/announcing-participation-html-wg.html</link>
		<comments>http://tech.navarr.me/2008/01/announcing-participation-html-wg.html#comments</comments>
		<pubDate>Sat, 12 Jan 2008 22:37:00 +0000</pubDate>
		<dc:creator>Navarr</dc:creator>
				<category><![CDATA[About the Author]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[Navarr Barnier]]></category>
		<category><![CDATA[participation]]></category>
		<category><![CDATA[Standards]]></category>
		<category><![CDATA[W3C]]></category>
		<category><![CDATA[xhtml5]]></category>

		<guid isPermaLink="false">http://temptech.gtaero.net/?p=13</guid>
		<description><![CDATA[I am now participating as a member in the W3C HTML Working Group.]]></description>
			<content:encoded><![CDATA[<p>I am now participating as a member in the W3C HTML Working Group.</p>
]]></content:encoded>
			<wfw:commentRss>http://tech.navarr.me/2008/01/announcing-participation-html-wg.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>About the Author (part 1)</title>
		<link>http://tech.navarr.me/2008/01/about-the-author-part-1.html</link>
		<comments>http://tech.navarr.me/2008/01/about-the-author-part-1.html#comments</comments>
		<pubDate>Sun, 06 Jan 2008 02:26:00 +0000</pubDate>
		<dc:creator>Navarr</dc:creator>
				<category><![CDATA[About the Author]]></category>
		<category><![CDATA[APML]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[DataPortability]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[GTAero]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[Navarr Barnier]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[the blog]]></category>
		<category><![CDATA[xhtml]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://temptech.gtaero.net/?p=9</guid>
		<description><![CDATA[There are some people reading this tech blog of mine, so, I guess I should introduce who I am, eh?&#160; Considering that most people reading this are people I've never talked to before, or some of the people that know me online. My name is Navarr Barnier.&#160; I'm a sixteen year old student at Klein [...]]]></description>
			<content:encoded><![CDATA[<p>There are some people reading this tech blog of mine, so, I guess I should introduce who I am, eh?&#160; Considering that most people reading this are people I've never talked to before, or some of the people that know me online.</p>
<p>My name is Navarr Barnier.&#160; I'm a sixteen year old student at Klein Collins High School in Houston, Texas.&#160; I work in PHP, (X)HTML, XML, CSS, and am starting to get familiar with JavaScript.&#160; I considering myself a Web Developer.&#160; I can't really do anything with layouts, but code and backend, they are my friends.</p>
<p>Recently, I've started being more active in the Web Design and Development Community.&#160; I've joined the mailing lists for Microformats, became a member of the DataPortability Google (and Facebook) group, Joined the APML Facebook group, and started the process of getting a spot in the HTML5 W3C working group.</p>
<p>I hate the terms, but I love the concepts of Web 2.0, Web 3.0, the Semantic Web.&#160; The internet is truly moving in a good direction.&#160; We are truly entering the Information Technology age.</p>
<p>Those are the basics.&#160; When I post Part 2, I'll cover over what <a href="http://www.gtaero.net">www.gtaero.net</a> is as well as its future.</p>
]]></content:encoded>
			<wfw:commentRss>http://tech.navarr.me/2008/01/about-the-author-part-1.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why HTML should become a dead language</title>
		<link>http://tech.navarr.me/2008/01/why-html-should-become-a-dead-language.html</link>
		<comments>http://tech.navarr.me/2008/01/why-html-should-become-a-dead-language.html#comments</comments>
		<pubDate>Fri, 04 Jan 2008 06:24:00 +0000</pubDate>
		<dc:creator>Navarr</dc:creator>
				<category><![CDATA[html]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[W3C]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[web forms]]></category>
		<category><![CDATA[web forms 2.0]]></category>
		<category><![CDATA[WHATWG]]></category>
		<category><![CDATA[xforms]]></category>
		<category><![CDATA[xhtml]]></category>
		<category><![CDATA[xhtml2]]></category>
		<category><![CDATA[xhtml5]]></category>
		<category><![CDATA[xml]]></category>
		<category><![CDATA[xml events]]></category>

		<guid isPermaLink="false">http://temptech.gtaero.net/?p=6</guid>
		<description><![CDATA[Go ahead, take a gander around the Internet.&#160; Lets see who is using HTML, and who is using XHTML. XHTML Blogger [Served as HTML] Opera [Served as XML] FireFox (Mozilla) [Served as HTML] Facebook [Served as HTML] MySpace [Served as HTML] Twitter [Served as HTML] W3C [Served as HTML] HTML Microsoft Yahoo! Apple Google WHATWG [...]]]></description>
			<content:encoded><![CDATA[<p>Go ahead, take a gander around the Internet.&#160; Lets see who is using HTML, and who is using XHTML.</p>
<ul>
<li>XHTML
<ul>
<li>Blogger [Served as HTML]</li>
<li>Opera [Served as XML]</li>
<li>FireFox (Mozilla) [Served as HTML]</li>
<li>Facebook [Served as HTML]</li>
<li>MySpace [Served as HTML]</li>
<li>Twitter [Served as HTML]</li>
<li>W3C [Served as HTML]</li>
</ul>
</li>
<li>HTML
<ul>
<li>Microsoft </li>
<li>Yahoo! </li>
<li>Apple </li>
<li>Google </li>
<li>WHATWG</li>
</ul>
</li>
</ul>
<p>As you can see, the &quot;newer&quot; websites are serving in XHTML.&#160; A few of them Transitional (mainly websites where users can input HTML), however, a large number of them are marked as XHTML 1.0 Strict using the W3C DTD.</p>
<p>On to my main point, HTML should NOT receive an update.&#160; The primary reason people want it to, is because it is FAMILIAR to designers and developers.&#160; However, HTML is very lax on how it is interpreted, a little too lax in my personal opinion.</p>
<p>An Example.&#160; &lt;input type=&quot;text&quot; disabled&gt;.&#160; The tag does not end.&#160; Its interpreted as a single tag, and disabled means that its disabled.&#160; I, myself, find this to be horrible, horrible code.&#160; In XHTML, all tags must end, and all properties must have a value.&#160; Which is easier to program, an HTML or an XHTML parser?</p>
<p>Probably the XHTML.&#160; HTML was not designed to be parsed, and is really quite a pain to attempt to parse using such things like Regex, considering how lax of a language it is.</p>
<p>In my own personal opinion, HTML should become a dead language.&#160; Some people hold on to it, let them.&#160; Let them continue making their websites in Archaic HTML 4.&#160; But do we really need to run an update to it?&#160; No.&#160; We should, move to XHTML.&#160; XML has already proven to be a very dependable language.&#160; Its used in such popular applications like Jabber, and Twitter, and is used commonly with AJAX, which is the height of the &quot;Web 2.0&quot; Revolution.</p>
<p>So why are we trying to revise it?&#160; Why can't we adopt a stricter set of rules so that they can better be implemented?&#160; In my personal opinion, work on HTML should be halted, and moved to XHTML.&#160; I still believe that the W3C and WHATWG should work together on a new version of XHTML.&#160; XMLEvents and XForms should adopt the magnificent features that Web Forms 2.0 has created.&#160; Again, this is my personal <em>opinion.</em></p>
<p><strong>EDIT</strong>: Added What Some sites are served as.&#160; Its actually pretty depressing.</p>
]]></content:encoded>
			<wfw:commentRss>http://tech.navarr.me/2008/01/why-html-should-become-a-dead-language.html/feed</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>XHTML2 vs. HTML5</title>
		<link>http://tech.navarr.me/2008/01/xhtml2-vs-html5.html</link>
		<comments>http://tech.navarr.me/2008/01/xhtml2-vs-html5.html#comments</comments>
		<pubDate>Thu, 03 Jan 2008 22:34:00 +0000</pubDate>
		<dc:creator>Navarr</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[W3C]]></category>
		<category><![CDATA[web forms]]></category>
		<category><![CDATA[web forms 2.0]]></category>
		<category><![CDATA[WHATWG]]></category>
		<category><![CDATA[xforms]]></category>
		<category><![CDATA[xhtml]]></category>
		<category><![CDATA[xhtml2]]></category>
		<category><![CDATA[xhtml5]]></category>
		<category><![CDATA[xml]]></category>
		<category><![CDATA[xml events]]></category>

		<guid isPermaLink="false">http://temptech.gtaero.net/?p=4</guid>
		<description><![CDATA[What the hell is up with this fanboy war?&#160; The web design community has already started getting used to XHTML, but now the WHATWG group wants the continued update of HTML?&#160; Isn't that a step backwards? HTML was wild, unordered, and controlled by the browser vendors (at least from what I've seen), however, XHTML was [...]]]></description>
			<content:encoded><![CDATA[<p>What the hell is up with this fanboy war?&#160; The web design community has already started getting used to XHTML, but now the WHATWG group wants the continued update of HTML?&#160; Isn't that a step backwards?</p>
<p>HTML was wild, unordered, and controlled by the browser vendors (at least from what I've seen), however, XHTML was started and controlled by the W3C group, making sure that it gets properly implemented, however, the WHATWG group doesn't like it.&#160; They want to stay with their old fashioned &lt;b&gt; tags.</p>
<p>I admit, web designers from the 90s have gotten used to the old style HTML tags, and its still what they're teaching in school, but that is no reason to stay with it.&#160; Technology changes over time, this is the same for any tech profession, the data will change, and then you'll have to learn something new.&#160; This isn't just the case for tech jobs, but jobs that use computers.&#160; Microsoft publishes a new Operating System, your company updates, and you need to re-learn it.</p>
<p>XHTML1 supports backwards compatibility with HTML for the old authors who are still getting used to it, and so that browsers can still render old code, XHTML2 doesn't, but all browsers should properly implement both.&#160; But by creating HTML5 and &quot;XHTML5&quot;, WHATWG is requiring browser vendors to include yet another set of standards into browsers in order to properly display the internet.</p>
<p>Personally, I have yet to find a website that uses HTML5.&#160; Most websites have already started using XHTML, and so I truly believe that implementing a new version of HTML is a step backwards.</p>
<p>If the WHATWG group wants to continue their efforts (like their wonderful work with Web Forms 2.0), I think their best bet would be to join the W3C's work with CSS and XML Events, and XForms, don't you?&#160; If the two worked together, instead of fighting about such silly things, then maybe standards could be developed a lot faster, after all, the W3C does seem to be taking a long time to update and recommend standards.&#160; Lets get things done faster, I want to start using XHTML2 and CSS3 already :-p</p>
]]></content:encoded>
			<wfw:commentRss>http://tech.navarr.me/2008/01/xhtml2-vs-html5.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

