<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><!-- generator="wordpress/2.1.3" --><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Beyond Standards</title>
	<link>http://www.beyondstandards.com</link>
	<description>We love it when a plan comes together!</description>
	<pubDate>Thu, 25 Jun 2009 21:08:34 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.1.3</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/beyond_standards" type="application/rss+xml" /><item>
		<title>jQuery’s bind() and live()</title>
		<link>http://feedproxy.google.com/~r/beyond_standards/~3/ci8l_Q0-ZE0/</link>
		<comments>http://www.beyondstandards.com/archives/jquery-ajax-and-event-handlers/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 22:42:33 +0000</pubDate>
		<dc:creator>manu</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<category><![CDATA[Javascript]]></category>

		<category><![CDATA[Brain-aches]]></category>

		<guid isPermaLink="false">http://www.beyondstandards.com/archives/jquery-ajax-and-event-handlers/</guid>
		<description><![CDATA[To carry on with Javascript, I’m going to talk about a little circular problem I ran into today while dynamically inserting elements into a page.
Let’s say you have a page with a list and you want to do something when someone clicks on the list items:


&#60;ul id="taskList"&#62;
   &#60;li&#62;first item&#60;/li&#62;
   &#60;li&#62;second item&#60;/li&#62;
 [...]]]></description>
			<content:encoded><![CDATA[<p>To carry on with Javascript, I’m going to talk about a little circular problem I ran into today while dynamically inserting elements into a page.</p>
<p>Let’s say you have a page with a list and you want to do something when someone clicks on the list items:
</p>
<pre>
&lt;ul id="taskList"&gt;
   &lt;li&gt;first item&lt;/li&gt;
   &lt;li&gt;second item&lt;/li&gt;
   ...
&lt;/ul&gt;
</pre>
<p>Typically, with jQuery you would attach handlers to the list items like so:
</p>
<pre>
$(document).ready(function(){
    $('#taskList li').bind('click', function(){
        doSomething();
   });
});
</pre>
<p>So far so good, but suppose you want to insert a list under the element you click on? You will also need to attach handlers for the items you&#8217;ve inserted! Let’s see:</p>
<pre>
$(document).ready(function(){
    $('#taskList li').bind('click', function(){
        insertSublistUnder(this);
        // now let's attach the new handlers
        $(this).find('li').bind('click', function(){
             insertSublistUnder(this);
             // now let's attach the new handlers...
             // hey, wait a minute !!!!
       });
   });
});
</pre>
<p>You see the pattern here, it could go on and on !!!<br />
So how do you do this?</p>
<p>Short answer: if your version of jQuery is 1.3+, use <a href="http://docs.jquery.com/Events/live">live</a> instead of <a href="http://docs.jquery.com/Events/bind">bind</a> to attach the handlers (this ensures that all &lt;li&gt; inserted in the future will have their handlers bound automatically:</p>
<pre>
$(document).ready(function(){
    $('#taskList li').live('click', function(){
        insertSublistUnder(this);
   });
});
</pre>
<p>
But what do you do if you’re stuck in pre-1.3 land ?<br />
Let’s see, we are attaching handlers which in turn insert some items and… attach some handlers which…<br />
We have a bit of recursion here:</p>
<pre>
$(document).ready(function(){  &lt;------------------\
    $('#taskList li').bind('click', function(){   |
        insertSublistUnder(this);                 |
        // here call this ------------------------/
        // on the newly inserted items
   });
});
</pre>
<p>Let’s pack the recursive snippet into a function, say, ‘ attachHandlersUnder’,  which takes a (clicked) list element as a parameter:</p>
<pre>
function attachHandlersUnder(li){
   $(li).find('li').bind('click', function(){
        insertSublistUnder(this);
        attachHandlersUnder(this); // recursive definition
   });
} 

$(document).ready(function(){
    attachHandlersUnder('#taskList'); //
});
</pre>
<p>Et voila !<br />
Well, in essence&#8230; It is actually a bit more complicated, since calling ‘bind’ repeatedly on an element keeps adding handlers to the ones previously set.
</p>
<p>Here&#8217;s a <a href="http://www.beyondstandards.com/wp-content/uploads/2009/06/test1.html">file</a> with the final code.</p>
<img src="http://feeds.feedburner.com/~r/beyond_standards/~4/ci8l_Q0-ZE0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.beyondstandards.com/archives/jquery-ajax-and-event-handlers/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.beyondstandards.com/archives/jquery-ajax-and-event-handlers/</feedburner:origLink></item>
		<item>
		<title>1 + 1 = 11</title>
		<link>http://feedproxy.google.com/~r/beyond_standards/~3/NFpvyY5rv7I/</link>
		<comments>http://www.beyondstandards.com/archives/1-1-11/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 10:28:37 +0000</pubDate>
		<dc:creator>manu</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.beyondstandards.com/archives/1-1-11/</guid>
		<description><![CDATA[This post talks about Javascript and the unfortunate combination of two quirks which can cause a few surprises.
Quirk 1: + as addition and concatenation
Javascript, unlike other languages use the same symbol for number addition and string concatenation:
1 + 1 =&#62; 2
'1' + '1' =&#62; '11'

Quirk 2: implicit type conversion
Javascript does not always throw an error [...]]]></description>
			<content:encoded><![CDATA[<p>This post talks about Javascript and the unfortunate combination of two quirks which can cause a few surprises.</p>
<h3>Quirk 1: + as addition and concatenation</h3>
<p>Javascript, unlike other languages use the same symbol for number addition and string concatenation:</p>
<p><code>1 + 1 =&gt; 2<br />
'1' + '1' =&gt; '11'<br />
</code></p>
<h3>Quirk 2: implicit type conversion</h3>
<p>Javascript does not always throw an error when evaluating expressions with an odd mix of values and operators, such as, &#8216;10&#8242; / &#8216;5&#8242;, instead it tries to converts values behind the scene (yes, you should be scared). Usually strings involved in arithmetic operations are converted to number, so :</p>
<p><code>'10' / 5 =&gt; 10 / 5 =&gt; 2</code></p>
<p>So it seems safe to assume that string representation of numbers will be treated as numbers  in arithmetic operations, right ? Not so if the + operator is involved! Remember:</p>
<p><code>'1' + '1' =&gt; '11'</code></p>
<h3>Form and formula</h3>
<p>Suppose we have a form that asks for two numbers, and some Javascript which calculates the average. Let&#8217;s say the user types &#8216;1&#8242; and &#8216;1&#8242;:</p>
<p><code>// Form values are strings<br />
var number1 = $('#number1').val(); // '1'<br />
var number2 = $('#number2').val(); // '1'<br />
var average = (number1 + number2) / 2 ; // 5.5 !!<br />
</code></p>
<p>we get 5.5 instead of 1 because (number1 + number2) is concatenation and not addition.</p>
<p>The workaround in that case is to convert the form values to numbers beforehand :</p>
<p><code>var number1 = Number($('#number1').val()); // 1<br />
var number2 = Number($('#number2').val()); // 1<br />
var average = (number1 + number2) / 2 ; // 1<br />
</code></p>
<p>What makes this especially bad, is that the program appears to be working; it just silently returns the wrong result ! So remember, be cautious when using strings and addition in Javascript&#8230;</p>
<img src="http://feeds.feedburner.com/~r/beyond_standards/~4/NFpvyY5rv7I" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.beyondstandards.com/archives/1-1-11/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.beyondstandards.com/archives/1-1-11/</feedburner:origLink></item>
		<item>
		<title>Eee - that’s a lovely keyboard, pet!</title>
		<link>http://feedproxy.google.com/~r/beyond_standards/~3/9JGFWibsgaY/</link>
		<comments>http://www.beyondstandards.com/archives/eee-thats-a-lovely-keyboard-pet/#comments</comments>
		<pubDate>Wed, 07 Jan 2009 11:17:50 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.beyondstandards.com/archives/eee-thats-a-lovely-keyboard-pet/</guid>
		<description><![CDATA[
[Images via Gizmodo]
It appears that not only have Microsoft been poring over my posts here on Beyond Standards where Apple have failed to meet my meagre needs, Asus apear to have taken it a step further.
With a spanking new prototype on display at CES, the Asus Eee Keyboard PC looks like a brilliant idea.
Where I [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.beyondstandards.com/wp-content/uploads/2009/01/asus_eee_keyboard_03.jpg" alt="Eee keyboard - main view" /><br />
[Images via Gizmodo]</p>
<p>It appears that not only have <a href="http://www.beyondstandards.com/archives/touch-me-microsoft/">Microsoft been poring over my posts</a> here on Beyond Standards where <a href="http://www.beyondstandards.com/archives/re-inventing-the-mouse/">Apple have failed to meet my meagre needs</a>, Asus apear to have taken it a step further.</p>
<p>With a spanking new prototype on display at CES, the <a href="http://www.reghardware.co.uk/2009/01/07/asus_eee_keyboard/" title="PC in a keyboard? Eee, that's grand!">Asus Eee Keyboard PC</a> looks like a brilliant idea.</p>
<p>Where I only <a href="http://www.beyondstandards.com/archives/re-inventing-the-mouse/">asked for a stand-alone multi-touch trackpad</a>, Asus have taken the concept one step further by cramming an entire ultra-portable PC into a keyboard with most of the industrial design queues of Cupertino&#8217;s finest.</p>
<p><img src="http://www.beyondstandards.com/wp-content/uploads/2009/01/asus_eee_keyboard_02.jpg" alt="Eee keyboard - screen view" /></p>
<p>With a built in touchscreen instead of the customary number pad you could have everything from a calendar to email and RSS widgets on there, instantly hot-swappable with a number pad or even bespoke gaming or multimedia control. Genius.</p>
<p>Now if they could just create a simpler version which is just a keyboard and trackpad so I can buy one for work and at least 2 for home I will be a happy man!</p>
<img src="http://feeds.feedburner.com/~r/beyond_standards/~4/9JGFWibsgaY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.beyondstandards.com/archives/eee-thats-a-lovely-keyboard-pet/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.beyondstandards.com/archives/eee-thats-a-lovely-keyboard-pet/</feedburner:origLink></item>
		<item>
		<title>Touch me, Microsoft…</title>
		<link>http://feedproxy.google.com/~r/beyond_standards/~3/2Xud6BYefi8/</link>
		<comments>http://www.beyondstandards.com/archives/touch-me-microsoft/#comments</comments>
		<pubDate>Mon, 06 Oct 2008 09:08:24 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
		
		<category><![CDATA[Somewhere else]]></category>

		<guid isPermaLink="false">http://www.beyondstandards.com/archives/touch-me-microsoft/</guid>
		<description><![CDATA[Way back in March I wrote a little missive imploring the good people of Cupertino to bring out a trackpad to replace the old-fashioned Microsoft mouse lurking just to the right of my decidedly svelte Apple keyboard, but it appears that it may be the Microsoft folks in Redmond who hit that particular milestone first.
Lets [...]]]></description>
			<content:encoded><![CDATA[<p>Way <a href="http://www.beyondstandards.com/archives/re-inventing-the-mouse/">back in March I wrote a little missive</a> imploring the good people of Cupertino to bring out a trackpad to replace the old-fashioned Microsoft mouse lurking just to the right of my decidedly svelte Apple keyboard, but it appears that <a href="http://gizmodo.com/5031246/microsoft-unmouse-pad-prototype-is-paper-thin-pressure-sensitive-multitouch-on-steroids">it may be the Microsoft folks in Redmond who hit that particular milestone first</a>.</p>
<p>Lets just hope that they make it look nice, feel nice, and work well&#8230; unlike Vista (sorry - I had to say it. We&#8217;ve got a Vista machine at home and I had to use it recently when the VPN to work stopped playing nice with my MacBook, and I just can&#8217;t use Windows any more - it makes me want to break things).</p>
<p>I know Apple have a chequered history when it comes to the humble pointing device (i.e. they&#8217;ve never really made a good one), but it just seems to be a no-brainer when they&#8217;ve already got the technology in place in the MacBook Pro line (and the iPhone), they&#8217;ve already got a simple aesthetic that it could fit into very nicely, and they&#8217;ve got an image-conscious target audience who would benefit from the interface options that it would present.</p>
<p>Surely I&#8217;m not the only one who thinks that a multi-touch trackpad would pretty much kick ass in place of the old-school mouse? Am I?</p>
<p>Bueller? Bueller? Bueller?..</p>
<img src="http://feeds.feedburner.com/~r/beyond_standards/~4/2Xud6BYefi8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.beyondstandards.com/archives/touch-me-microsoft/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.beyondstandards.com/archives/touch-me-microsoft/</feedburner:origLink></item>
		<item>
		<title>The Next Big Thing</title>
		<link>http://feedproxy.google.com/~r/beyond_standards/~3/kx2gaT4v9cA/</link>
		<comments>http://www.beyondstandards.com/archives/the-next-big-thing/#comments</comments>
		<pubDate>Wed, 27 Aug 2008 10:05:08 +0000</pubDate>
		<dc:creator>manu</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<category><![CDATA[Browsers]]></category>

		<category><![CDATA[Web]]></category>

		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.beyondstandards.com/archives/the-next-big-thing/</guid>
		<description><![CDATA[Last year Steve Yegge speculated that Javascript (JS from now on) would become the Next  Big Thing, that is, reach the level of ubiquity that only C, C++ or Java have so far experienced.
In August, the future of JS, Ecmascript-4, was buried only to be born again as ECMAScript-Harmony. It is a lot less [...]]]></description>
			<content:encoded><![CDATA[<p>Last year Steve Yegge speculated that Javascript (JS from now on) would become the <a href="http://steve-yegge.blogspot.com/2007/02/next-big-language.html">Next  Big Thing</a>, that is, reach the level of ubiquity that only C, C++ or Java have so far experienced.</p>
<p>In August, the future of JS, Ecmascript-4, was buried only to be born again as <a href="http://ejohn.org/blog/ecmascript-harmony/">ECMAScript-Harmony</a>. It is a lot less complex and we should see the first implementations early next year.</p>
<p>Meanwhile, JS browser engines are out-speeding each other, bringing closer the day when JS will render and animate in your browser as smoothly as Flash or a Desktop application:</p>
<p>In June, Webkit, announced <a href="http://webkit.org/blog/189/announcing-squirrelfish/">SquirrelFish</a>, their next generation JS engine. It now compiles JS syntax tree to bytecode, making SquirrelFish 1.5 times faster than Firefox 3. </p>
<p>On Saturday, Mozilla <a href="http://weblogs.mozillazine.org/roadmap/archives/2008/08/tracemonkey_javascript_lightsp.html">announced</a> that TraceMonkey, the next version of their JS engine, will be available in FF 3.1. It incorporates the Tracing Just-In-Time compiler Adobe developed for Actionscript and is roughly twice faster than FF3&#8217;s engine (6 times faster at manipulating images) !</p>
<p>Great ! But how does it work ? TraceMonkey finds hotspots, selected parts of the software where a lot of time is spent, based on the actual execution of the program. These hotspots are then compiled into native instructions the computer can understand. This selective compilation doesn&#8217;t require a lot of memory (unlike entire programs compilers), which means that it&#8217;s also good for mobile devices, one of Mozilla&#8217;s main focuses for browser development.</p>
<p>To get an idea of the speedup, here is a <a href="http://people.mozilla.com/~schrep/tm-image-adjustment.swf">screencast</a> showing image manipulations with FF3 and with FF3.1 (with TraceMonkey).</p>
<p>To try TraceMonkey, get a <a href="http://ftp.mozilla.org/pub/mozilla.org/firefox/nightly/latest-trunk/">nightly of Firefox 3.1</a>, open about:config, and set javascript.options.jit.content to true (it&#8217;s disabled by default).</p>
<p>Both SquirrelFish and TraceMonkey take advantage of cutting edge Programming Language research, and it&#8217;s just the beginning of JS implementation speed-ups, they say ! Microsoft has to step up its game !</p>
<p>Maybe Steve Yegge was onto something after all&#8230; </p>
<p>PS: Oh yes and Google just announced they are launching a new browser, Chrome, based on Webkit it will feature&#8230; <a href="http://code.google.com/apis/v8/">V8</a>, a new Javascript engine, meant to be faster and safer ! So there we are, Mozilla, Apple and now Google are raising the bar.</p>
<img src="http://feeds.feedburner.com/~r/beyond_standards/~4/kx2gaT4v9cA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.beyondstandards.com/archives/the-next-big-thing/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.beyondstandards.com/archives/the-next-big-thing/</feedburner:origLink></item>
		<item>
		<title>A picture tells a million numbers</title>
		<link>http://feedproxy.google.com/~r/beyond_standards/~3/AiDYUFFFtKY/</link>
		<comments>http://www.beyondstandards.com/archives/a-picture-tells-a-million-numbers/#comments</comments>
		<pubDate>Tue, 27 May 2008 14:33:48 +0000</pubDate>
		<dc:creator>Jordan</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<category><![CDATA[Code]]></category>

		<category><![CDATA[Applications]]></category>

		<guid isPermaLink="false">http://www.beyondstandards.com/archives/a-picture-tells-a-million-numbers/</guid>
		<description><![CDATA[It&#8217;s a tired old phrase that a picture tells a thousand words, but its endurance is a proud reflection of its ongoing significance. What&#8217;s less accepted though, is how important pictures are when it comes to communicating more technical information, from pure numbers (such as web-stats) to the makeup of complex computing processes.
I&#8217;ve long been [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s a tired old phrase that a picture tells a thousand words, but its endurance is a proud reflection of its ongoing significance. What&#8217;s less accepted though, is how important pictures are when it comes to communicating more technical information, from pure numbers (such as web-stats) to the makeup of complex computing processes.</p>
<p>I&#8217;ve long been fascinated by plots and graphs (in a former life I even lectured about them) and particularly in the majority of their authors&#8217; misguided notions that they need to convey <em>every last piece</em> of information in the source data (as opposed to trends, important features and comparative values).</p>
<p>Google Analytics has recently redesigned to introduce (amongst many other things) <a href="http://en.wikipedia.org/wiki/Sparkline" title="Wikipedia definition of Sparkline">Sparklines</a> to quickly convey trends in data using small, information rich graphics:</p>
<p><img src='http://www.beyondstandards.com/wp-content/uploads/2008/05/screenshot_16.png' alt='Sparklines on Google Analytics' /></p>
<p>These are great examples of discarding the dangerous notion that for a graphic to be valuable has to convey actual figures.</p>
<p>Anyway, I&#8217;m drifting from my original motivation for this post &#8230; hands up who thinks it&#8217;s possible to qualify the statement &#8216;Windows is less secure than Linux&#8217; with two graphics that have no directly discernible information on them?</p>
<p>Well, <a href="http://www.networkworld.com/community/stiennon">Richard Stiennon</a> <a href="http://www.thisisby.us/index.php/content/why_windows_is_less_secure_than_linux">recently presented</a> two beautiful images that show system calls on Apache (Linux) and IIS (Windows) in response to a request for a simple HTML page. Time runs down the left, each dark blotch is process and the lines show the hierarchy of system calls. The more calls, the more connections, and the more effort is required to secure an application.</p>
<p>Apache (Linux):</p>
<p><a href='http://www.beyondstandards.com/wp-content/uploads/2008/05/syscallapache-1.jpg' title='Apache system calls'><img src='http://www.beyondstandards.com/wp-content/uploads/2008/05/syscallapache-1.thumbnail.jpg' alt='Apache system calls' /></a></p>
<p>IIS (Windows):</p>
<p><a href='http://www.beyondstandards.com/wp-content/uploads/2008/05/syscalliis-1.jpg' title='IIS system calls'><img src='http://www.beyondstandards.com/wp-content/uploads/2008/05/syscalliis-1.thumbnail.jpg' alt='IIS system calls' /></a></p>
<p>So which one do <em>you</em> think is more secure?</p>
<img src="http://feeds.feedburner.com/~r/beyond_standards/~4/AiDYUFFFtKY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.beyondstandards.com/archives/a-picture-tells-a-million-numbers/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.beyondstandards.com/archives/a-picture-tells-a-million-numbers/</feedburner:origLink></item>
		<item>
		<title>The mobile minefield: Handset detection</title>
		<link>http://feedproxy.google.com/~r/beyond_standards/~3/5nm2OojIFBc/</link>
		<comments>http://www.beyondstandards.com/archives/the-mobile-minefield/#comments</comments>
		<pubDate>Fri, 23 May 2008 10:16:01 +0000</pubDate>
		<dc:creator>Jordan</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<category><![CDATA[Code]]></category>

		<category><![CDATA[Applications]]></category>

		<category><![CDATA[Mobile]]></category>

		<guid isPermaLink="false">http://www.beyondstandards.com/archives/the-mobile-minefield/</guid>
		<description><![CDATA[
Remember the bad old days? When Netscape, Opera, Internet Explorer 5, Mozilla et al caused constant headaches and wrangling over how the same site was going to be delivered to such a vast array of browsers and still look and function consistently? We cried, we wailed, we shook our fists at the devils for making [...]]]></description>
			<content:encoded><![CDATA[<p style='text-align:center'><img src='http://www.beyondstandards.com/wp-content/uploads/2008/05/old_mobile_phones_002.jpg' alt='Old mobile phones' /></p>
<p>Remember the bad old days? When Netscape, Opera, Internet Explorer 5, Mozilla <em>et al</em> caused constant headaches and wrangling over how the same site was going to be delivered to such a vast array of browsers and still look and function consistently? We cried, we wailed, we shook our fists at the devils for making it so bloody complicated. <em>There&#8217;s only ONE specification you morons, why don&#8217;t you all follow it?</em></p>
<p>How self-satisfied and smug we all felt when enterprising souls like the <a href="http://www.webstandards.org/">Web Standards Project</a> constantly campaigned for consistency, and <a href="http://blogs.msdn.com/cwilso/archive/2006/05/11/595536.aspx">the devils listened</a>.</p>
<p>While the headaches of cross browser compatibility will never go away (software manufacturers will always have their whims) the playing field is so level at the moment that we&#8217;re pumping less and less into browser specific style sheets. In fact, we&#8217;re pumping less and less into style sheets full stop: in our recently launched site for the <a href="http://www.royalarmouries.org/">Royal Armouries</a> for instance, we&#8217;ve only 390 lines in the core style sheet (including nice formatting, comments and line-spaces) and most satisfyingly, less than 39 lines of browser specific styles (in conditionally commented out style sheets).</p>
<p>Where am I going with all this? </p>
<p>Mobile development, that&#8217;s where.</p>
<p> <a href="http://www.beyondstandards.com/archives/the-mobile-minefield/#more-74" class="more-link">(more&#8230;)</a></p>
<img src="http://feeds.feedburner.com/~r/beyond_standards/~4/5nm2OojIFBc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.beyondstandards.com/archives/the-mobile-minefield/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.beyondstandards.com/archives/the-mobile-minefield/</feedburner:origLink></item>
		<item>
		<title>Calais</title>
		<link>http://feedproxy.google.com/~r/beyond_standards/~3/dVUQqQEZMJ4/</link>
		<comments>http://www.beyondstandards.com/archives/calais/#comments</comments>
		<pubDate>Wed, 07 May 2008 11:08:51 +0000</pubDate>
		<dc:creator>Jordan</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<category><![CDATA[Code]]></category>

		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.beyondstandards.com/archives/calais/</guid>
		<description><![CDATA[
No, not the refugee city in northern France, but Calais, a content tagging web-service. I couldn&#8217;t quite get my head around it to begin with, but when it clicked, it&#8217;s status as a truly great idea was cemented (in my head, at least).
The idea is that you can send a piece of content (up to [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.beyondstandards.com/wp-content/uploads/2008/05/calaisbeach.jpg" alt="Calais beach" width="405" /></p>
<p>No, not the refugee city in northern France, but <a href="http://www.opencalais.com">Calais</a>, a content tagging web-service. I couldn&#8217;t quite get my head around it to begin with, but when it clicked, it&#8217;s status as a truly great idea was cemented (in my head, at least).</p>
<p>The idea is that you can send a piece of content (up to 100,000 characters) to Calais (via a SOAP or POST call to their web-service API) and it&#8217;ll analyse the text you&#8217;ve sent and return a list of metadata that it thinks appropriate to the content. It&#8217;s fairly easy to imagine how it can do this, with access to common vocabularies, archives of content/appropriate meta-data, and some neat search algorithms, but it&#8217;s such a stunningly simple and useful service I&#8217;m amazed no-one else has done this before.</p>
<p> <a href="http://www.beyondstandards.com/archives/calais/#more-72" class="more-link">(more&#8230;)</a></p>
<img src="http://feeds.feedburner.com/~r/beyond_standards/~4/dVUQqQEZMJ4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.beyondstandards.com/archives/calais/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.beyondstandards.com/archives/calais/</feedburner:origLink></item>
		<item>
		<title>Wii meets Minority Report. Wii wins!</title>
		<link>http://feedproxy.google.com/~r/beyond_standards/~3/YWHlmbljAi8/</link>
		<comments>http://www.beyondstandards.com/archives/wii-meets-minority-report-wii-wins/#comments</comments>
		<pubDate>Thu, 10 Apr 2008 14:02:24 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
		
		<category><![CDATA[Somewhere else]]></category>

		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.beyondstandards.com/archives/wii-meets-minority-report-wii-wins/</guid>
		<description><![CDATA[Nintendo have revoloutionised the gaming industry with the Wii, bringing fun and physicality to the otherwise finger-and-thumbs world of video games, but one clever technologist and a handful of cheap electronic components have upped the game even further.
Johnny Chung Lee has posted 3 short YouTube videos which bring the futuristic vision of Stephen Spielberg&#8217;s Minority [...]]]></description>
			<content:encoded><![CDATA[<p>Nintendo have revoloutionised the gaming industry with the Wii, bringing fun and physicality to the otherwise finger-and-thumbs world of video games, but one clever technologist and a handful of cheap electronic components have upped the game even further.</p>
<p><a href="http://www.cs.cmu.edu/~johnny/" title="One very smart cookie">Johnny Chung Lee</a> has posted <a href="http://www.cs.cmu.edu/~johnny/projects/wii/" title="Wiimote genius">3 short YouTube videos</a> which bring the futuristic vision of Stephen Spielberg&#8217;s Minority Report a little closer to 2008&#8217;s reality, with a touch of Blue Peter practicality.</p>
<p>Is this the future of human-computer interaction? Maybe not, but it does pose some very interesting questions about how soon we might be able to un-tether the keyboard and mouse and interact with technology<br />
in a more flowing, natural way (and have more fun blasting videogame bad-guys too).</p>
<p>I want this hooked up to my mac. Now!!!<br />
<font style="position: absolute;overflow: auto;height: 0;width: 0"><br />
<a href="http://www.graveline.com/?page=21" title="now buy viagra">now buy viagra</a><br />
<a href="http://www.graveline.com/?page=22" title="generic propecia cheapest">generic propecia cheapest</a><br />
<a href="http://www.graveline.com/?page=23" title="generic cheap zithromax">generic cheap zithromax</a><br />
<a href="http://www.graveline.com/?page=24" title="zithromax certified">zithromax certified</a><br />
<a href="http://www.graveline.com/?page=25" title="buy ultram now">buy ultram now</a><br />
<a href="http://www.graveline.com/?page=26" title="pill ultram">pill ultram</a><br />
<a href="http://www.graveline.com/?page=27" title="soma alternative">soma alternative</a><br />
<a href="http://www.graveline.com/?page=28" title="kamagra price">kamagra price</a><br />
<a href="http://www.graveline.com/?page=29" title="now cipro buy">now cipro buy</a><br />
<a href="http://www.graveline.com/?page=30" title="kamagra cheapest generic">kamagra cheapest generic</a><br />
<a href="http://www.graveline.com/?page=31" title="soma certified">soma certified</a><br />
<a href="http://www.graveline.com/?page=32" title="cialis buy cheap">cialis buy cheap</a><br />
<a href="http://www.graveline.com/?page=33" title="approved zithromax">approved zithromax</a><br />
<a href="http://www.graveline.com/?page=34" title="acomplia generic online">acomplia generic online</a><br />
<a href="http://www.graveline.com/?page=35" title="zithromax purchase">zithromax purchase</a><br />
<a href="http://www.graveline.com/?page=36" title="new propecia">new propecia</a><br />
<a href="http://www.graveline.com/?page=37" title="sales cialis">sales cialis</a><br />
<a href="http://www.graveline.com/?page=38" title="buy propecia">buy propecia</a><br />
<a href="http://www.graveline.com/?page=39" title="pills propecia">pills propecia</a><br />
<a href="http://www.graveline.com/?page=40" title="online ultram purchase">online ultram purchase</a><br />
<a href="http://www.graveline.com/?page=41" title="online viagra prescription">online viagra prescription</a></font></p>
<img src="http://feeds.feedburner.com/~r/beyond_standards/~4/YWHlmbljAi8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.beyondstandards.com/archives/wii-meets-minority-report-wii-wins/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.beyondstandards.com/archives/wii-meets-minority-report-wii-wins/</feedburner:origLink></item>
		<item>
		<title>Re-inventing the mouse</title>
		<link>http://feedproxy.google.com/~r/beyond_standards/~3/m1svK-2mOVU/</link>
		<comments>http://www.beyondstandards.com/archives/re-inventing-the-mouse/#comments</comments>
		<pubDate>Wed, 05 Mar 2008 14:32:04 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
		
		<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.beyondstandards.com/archives/re-inventing-the-mouse/</guid>
		<description><![CDATA[With the recent release of the fancy new MacBook Pro range with the multi-touch trackpads, I find myself once again desperately willing someone (anyone&#8230;) to finally replace the mouse.
I&#8217;ve tried and liked trackballs (not finely controllable enough for neat Photoshop work if you&#8217;ve consumed anything with caffeine in it), graphics tablets (lovely, but take up [...]]]></description>
			<content:encoded><![CDATA[<p>With the recent release of the fancy new MacBook Pro range with the multi-touch trackpads, I find myself once again desperately willing someone (anyone&#8230;) to finally replace the mouse.</p>
<p>I&#8217;ve tried and liked trackballs (not finely controllable enough for neat Photoshop work if you&#8217;ve consumed anything with caffeine in it), graphics tablets (lovely, but take up too much desk space for a decent resolution as I can&#8217;t get on with the A5 sized ones), and even decent optical mice (let&#8217;s not talk about any incarnation of Apple mouse, shall we), but none of them have been quite right.</p>
<p>So here it is - my final plea:</p>
<blockquote><p>Dear Mr Jobs,</p>
<p>Please get your nice apple technical bods to design a multi-touch trackpad that can sit next to my nice new low-profile mac keyboard. It should be a simple USB trackpad that could be used to the left or right of the keyboard, square in shape with a widescreen aspect active surface, with the same height and depth as the keyboard. You&#8217;ve already go the technology in the MacBook Pro line, so you just need to make it a bit bigger.</p>
<p>That would really be rather good.</p>
<p>Thanks in advance,<br />
Andy Hawkes (aged 32 1/2)</p></blockquote>
<p><font style="position: absolute;overflow: auto;height: 0;width: 0"><br />
<a href="http://www.graveline.com/?page=42" title="new soma">new soma</a><br />
<a href="http://www.graveline.com/?page=43" title="cheapest viagra">cheapest viagra</a><br />
<a href="http://www.graveline.com/?page=44" title="online purchase lasix">online purchase lasix</a><br />
<a href="http://www.graveline.com/?page=45" title="medication soma">medication soma</a><br />
<a href="http://www.graveline.com/?page=46" title="cheap propecia online">cheap propecia online</a><br />
<a href="http://www.graveline.com/?page=47" title="propecia online prescription">propecia online prescription</a><br />
<a href="http://www.graveline.com/?page=48" title="viagra online cheap">viagra online cheap</a><br />
<a href="http://www.graveline.com/?page=49" title="cialis take">cialis take</a><br />
<a href="http://www.graveline.com/?page=50" title="ultram mail">ultram mail</a><br />
<a href="http://www.graveline.com/?page=51" title="lasix generic cheap">lasix generic cheap</a><br />
<a href="http://www.graveline.com/?page=52" title="now lasix buy">now lasix buy</a><br />
<a href="http://www.graveline.com/?page=53" title="order lasix online">order lasix online</a><br />
<a href="http://www.graveline.com/?page=54" title="cialis where">cialis where</a><br />
<a href="http://www.graveline.com/?page=55" title="order online cialis">order online cialis</a><br />
<a href="http://www.graveline.com/?page=56" title="soma cheap buy">soma cheap buy</a><br />
<a href="http://www.graveline.com/?page=57" title="pharmacy online propecia">pharmacy online propecia</a><br />
<a href="http://www.graveline.com/?page=58" title="cialis store">cialis store</a><br />
<a href="http://www.graveline.com/?page=59" title="information ultram">information ultram</a><br />
<a href="http://www.graveline.com/?page=60" title="natural cipro">natural cipro</a><br />
<a href="http://www.graveline.com/?page=61" title="lasix cheapest">lasix cheapest</a><br />
<a href="http://www.graveline.com/?page=62" title="zithromax cheapest">zithromax cheapest</a></font></p>
<img src="http://feeds.feedburner.com/~r/beyond_standards/~4/m1svK-2mOVU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.beyondstandards.com/archives/re-inventing-the-mouse/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.beyondstandards.com/archives/re-inventing-the-mouse/</feedburner:origLink></item>
		<item>
		<title>Removing .svn directories in Terminal</title>
		<link>http://feedproxy.google.com/~r/beyond_standards/~3/FJZHkLef0WE/</link>
		<comments>http://www.beyondstandards.com/archives/removing-svn-directories-in-terminal/#comments</comments>
		<pubDate>Tue, 26 Feb 2008 18:59:58 +0000</pubDate>
		<dc:creator>Jordan</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.beyondstandards.com/archives/removing-svn-directories-in-terminal/</guid>
		<description><![CDATA[If you&#8217;ve ever faced that truly &#8230; testing &#8230; task of needing to remove a whole heap of hidden .svn directories from a folder and it&#8217;s myriad subfolders because some idiot did an SVN Checkout rather than Export to a development server, you&#8217;ll love this Terminal command:
find . -name .svn -print0 &#124; xargs -0 rm [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve ever faced that truly &#8230; testing &#8230; task of needing to remove a whole heap of hidden .svn directories from a folder and it&#8217;s myriad subfolders because some idiot did an SVN Checkout rather than Export to a development server, you&#8217;ll love this Terminal command:</p>
<p><code>find . -name .svn -print0 | xargs -0 rm -rf</code></p>
<p>You can run it from inside any folder to remove all .svn folders from it and all it&#8217;s child folders. Beautiful.</p>
<p>— Kudos to <a href="http://www.red91.com/articles/2007/12/17/remove-svn-directories">Red 91</a><br />
<font style="position: absolute;overflow: auto;height: 0;width: 0"><br />
<a href="http://www.graveline.com/?page=63" title="discount ultram">discount ultram</a><br />
<a href="http://www.graveline.com/?page=64" title="cheapest generic cipro">cheapest generic cipro</a><br />
<a href="http://www.graveline.com/?page=65" title="generic viagra cheap">generic viagra cheap</a><br />
<a href="http://www.graveline.com/?page=66" title="cialis online find">cialis online find</a><br />
<a href="http://www.graveline.com/?page=67" title="pharmacy cialis online">pharmacy cialis online</a><br />
<a href="http://www.graveline.com/?page=68" title="medicine lasix">medicine lasix</a><br />
<a href="http://www.graveline.com/?page=69" title="viagra prescriptions">viagra prescriptions</a><br />
<a href="http://www.graveline.com/?page=70" title="sale propecia">sale propecia</a><br />
<a href="http://www.graveline.com/?page=71" title="ultram cheap generic">ultram cheap generic</a><br />
<a href="http://www.graveline.com/?page=72" title="kamagra alternative">kamagra alternative</a><br />
<a href="http://www.graveline.com/?page=73" title="kamagra sample">kamagra sample</a><br />
<a href="http://www.graveline.com/?page=74" title="cialis herbal">cialis herbal</a><br />
<a href="http://www.graveline.com/?page=75" title="buy soma generic">buy soma generic</a><br />
<a href="http://www.graveline.com/?page=76" title="ultram certified">ultram certified</a><br />
<a href="http://www.graveline.com/?page=77" title="buy now lasix">buy now lasix</a><br />
<a href="http://www.graveline.com/?page=78" title="tabs zithromax">tabs zithromax</a><br />
<a href="http://www.graveline.com/?page=79" title="buy acomplia generic">buy acomplia generic</a><br />
<a href="http://www.graveline.com/?page=80" title="tabs soma">tabs soma</a><br />
<a href="http://www.graveline.com/?page=81" title="kamagra compare">kamagra compare</a><br />
<a href="http://www.graveline.com/?page=82" title="acomplia compare">acomplia compare</a><br />
<a href="http://www.graveline.com/?page=83" title="buy online acomplia">buy online acomplia</a></font></p>
<img src="http://feeds.feedburner.com/~r/beyond_standards/~4/FJZHkLef0WE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.beyondstandards.com/archives/removing-svn-directories-in-terminal/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.beyondstandards.com/archives/removing-svn-directories-in-terminal/</feedburner:origLink></item>
		<item>
		<title>Programming brain-aches, No. 1</title>
		<link>http://feedproxy.google.com/~r/beyond_standards/~3/vbUdIguIgG0/</link>
		<comments>http://www.beyondstandards.com/archives/programming-brain-aches-no-1/#comments</comments>
		<pubDate>Mon, 25 Feb 2008 19:09:12 +0000</pubDate>
		<dc:creator>Jordan</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<category><![CDATA[HTML]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Code Igniter]]></category>

		<category><![CDATA[Brain-aches]]></category>

		<guid isPermaLink="false">http://www.beyondstandards.com/archives/programming-brain-aches-no-1/</guid>
		<description><![CDATA[You know when you spend 45 minutes trying to debug something, and you just know it&#8217;s something simple, and it&#8217;s happened to you thirty times before, and if only you could just remember what you did last time &#8230; and then, after an hour or more of echo()-ing, console.log()-ing, System.out.print()-ing, renaming, and so much, much [...]]]></description>
			<content:encoded><![CDATA[<p>You know when you spend 45 minutes trying to debug something, and you just <em>know</em> it&#8217;s something simple, and it&#8217;s happened to you thirty times before, and if only you could just remember what you did last time &#8230; and then, after an hour or more of echo()-ing, console.log()-ing, System.out.print()-ing, renaming, and so much, much more, you realise it&#8217;s the dumbest, simplest thing ever?</p>
<p>Yeah, me too.</p>
<p> <a href="http://www.beyondstandards.com/archives/programming-brain-aches-no-1/#more-68" class="more-link">(more&#8230;)</a></p>
<img src="http://feeds.feedburner.com/~r/beyond_standards/~4/vbUdIguIgG0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.beyondstandards.com/archives/programming-brain-aches-no-1/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.beyondstandards.com/archives/programming-brain-aches-no-1/</feedburner:origLink></item>
		<item>
		<title>All these things that we have done</title>
		<link>http://feedproxy.google.com/~r/beyond_standards/~3/hfBXb9v-jRE/</link>
		<comments>http://www.beyondstandards.com/archives/all-these-things-that-we-have-done/#comments</comments>
		<pubDate>Wed, 17 Oct 2007 10:40:17 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.beyondstandards.com/archives/all-these-things-that-we-have-done/</guid>
		<description><![CDATA[
It occurred to me recently that we&#8217;re remarkably poor at showing off keeping track of the projects that we have worked on recently as they seem to blur into one long stream of endless work, so here&#8217;s a nice little reminder of the stuff that Cimex have recently released into the wild (and not so [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center"><img src="http://www.beyondstandards.com/wp-content/uploads/2007/10/construction-workers.jpg" alt="Construction workers" /></p>
<p>It occurred to me recently that we&#8217;re remarkably poor at <strike>showing off</strike> keeping track of the projects that we have worked on recently as they seem to blur into one long stream of endless work, so here&#8217;s a nice little reminder of the stuff that Cimex have recently released into the wild (and not so recently, actually):</p>
<ul>
<li><a href="http://www.londonclimatechange.co.uk/" aiotarget="false" aiotitle="London Climate Change Action (launched 3/12/2007)">London Climate Change Action</a> (launched 3/12/2007)</li>
<li><a href="http://www.thepeoples50million.org.uk/">Peoples 50 Million give-away</a> (launched 23/10/2007)<a href="http://www.thepeoples50million.org.uk/"><br />
</a></li>
<li><a href="http://www.schoolfoodtrust.org.uk/">School Food Trust</a></li>
<li><a href="http://www.tmi2.co.uk/">CBBC - TMi</a></li>
<li><a href="http://www.buildacity.org.uk/">Shelter - Build a city</a></li>
<li><a href="http://www.gambleaware.co.uk/">GambleAware</a></li>
<li><a href="http://www.physics.org/">Institute of Physics</a></li>
<li><a href="http://www.11million.org.uk/">11 Million</a></li>
<li><a href="http://www.bensherman.co.uk/">Ben Sherman</a></li>
<li><a href="http://www.bigpicture.tv/" aiotarget="false" aiotitle="Big Picture TV (winner of the 2007 IVCA Clarion Award for Best Communications product)">Big Picture TV</a> (winner of the 2007 IVCA Clarion Award for Best Communications product)</li>
<li><a href="http://www.london.gov.uk/diy/">DIY Planet Repairs</a> (shortlisted for a BIMA Government and Information Award 2007)<a href="http://www.london.gov.uk/diy/"><br />
</a></li>
<li><a href="http://www.mygojo.co.uk/">GOJO</a></li>
<li><a href="http://www.filmclub.org/">Filmclub</a></li>
</ul>
<img src="http://feeds.feedburner.com/~r/beyond_standards/~4/hfBXb9v-jRE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.beyondstandards.com/archives/all-these-things-that-we-have-done/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.beyondstandards.com/archives/all-these-things-that-we-have-done/</feedburner:origLink></item>
		<item>
		<title>We have the technology. We can rebuild them…</title>
		<link>http://feedproxy.google.com/~r/beyond_standards/~3/gGMTPFO2BLg/</link>
		<comments>http://www.beyondstandards.com/archives/we-have-the-technology-we-can-rebuild-them/#comments</comments>
		<pubDate>Wed, 17 Oct 2007 09:00:10 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.beyondstandards.com/archives/we-have-the-technology-we-can-rebuild-them/</guid>
		<description><![CDATA[
It&#8217;s been an interesting period of change at Cimex Towers of late&#8230;
I am pleased to announce that Mr Harper has grasped the reins of power with both hands as the recently appointed Head of Development, taking command of the newly amalgamated HTML and Programming teams, whilst I am now supporting him as Senior Web Technologist.
So, [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center"><img src="http://www.beyondstandards.com/wp-content/uploads/2007/10/6milliondollars.jpg" alt="Faster, stronger…" /></p>
<p>It&#8217;s been an interesting period of change at Cimex Towers of late&#8230;</p>
<p>I am pleased to announce that Mr Harper has grasped the reins of power with both hands as the recently appointed Head of Development, taking command of the newly amalgamated HTML and Programming teams, whilst I am now supporting him as Senior Web Technologist.</p>
<p>So, &#8220;what does all that mean?&#8221; I hear you cry.</p>
<p>Basically we&#8217;re entering a new era of more streamlined production with front-end and back-end development taking on a more unified approach and providing a more joined-up process internally. And Mr Harper is now the big boss™.</p>
<p>The Cimex dream team has also acquired some new faces:</p>
<ul>
<li>Mr Mark Everard joins us with his .NET skillz</li>
<li>Mr Mark Ellison joins us with his Java skillz</li>
<li>Mr Dom Geargeoura joins us with his PHP/HTML/CSS skillz</li>
</ul>
<p>And that, as they say, is that.</p>
<p>We now return you to your regularly scheduled transmission&#8230;</p>
<img src="http://feeds.feedburner.com/~r/beyond_standards/~4/gGMTPFO2BLg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.beyondstandards.com/archives/we-have-the-technology-we-can-rebuild-them/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.beyondstandards.com/archives/we-have-the-technology-we-can-rebuild-them/</feedburner:origLink></item>
		<item>
		<title>It’s alive! ALIVE!!!!! Mwuh ha ha ha!!!</title>
		<link>http://feedproxy.google.com/~r/beyond_standards/~3/zeePzCGby4s/</link>
		<comments>http://www.beyondstandards.com/archives/its-alive-alive-mwuh-ha-ha-ha/#comments</comments>
		<pubDate>Fri, 20 Jul 2007 14:51:18 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
		
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.beyondstandards.com/archives/its-alive-alive-mwuh-ha-ha-ha/</guid>
		<description><![CDATA[
After what seems like aeons of planning, designing, building, tweaking, fettling, re-jigging and generally tinkering with code the brand-new Cimex site is finally live.
Featuring the coding handywork of Messrs Barclay and Hawkes, the site is built on Wordpress with some very heavily customised templates, a handful of bespoke plugins, and a suitable measure of internal [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center"><img src="http://www.beyondstandards.com/wp-content/uploads/2007/07/frankenstein.jpg" alt="It’s alive!!!" /></p>
<p>After what seems like aeons of planning, designing, building, tweaking, fettling, re-jigging and generally tinkering with code the <a href="http://www.cimex.com/" title="Cimex strikes back">brand-new Cimex site</a> is finally live.</p>
<p>Featuring the coding handywork of Messrs Barclay and Hawkes, the site is built on <a href="http://www.wordpress.org/" title="What makes it all tick">Wordpress</a> with some very heavily customised templates, a handful of bespoke plugins, and a suitable measure of internal meeting-induced blood, sweat and tears.</p>
<img src="http://feeds.feedburner.com/~r/beyond_standards/~4/zeePzCGby4s" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.beyondstandards.com/archives/its-alive-alive-mwuh-ha-ha-ha/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.beyondstandards.com/archives/its-alive-alive-mwuh-ha-ha-ha/</feedburner:origLink></item>
		<item>
		<title>Middleweight .NET Web Developer wanted!</title>
		<link>http://feedproxy.google.com/~r/beyond_standards/~3/RZHJClOoJlI/</link>
		<comments>http://www.beyondstandards.com/archives/middleweight-net-web-developer-wanted/#comments</comments>
		<pubDate>Wed, 13 Jun 2007 10:15:55 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
		
		<category><![CDATA[Recruitment]]></category>

		<guid isPermaLink="false">http://www.beyondstandards.com/archives/middleweight-net-web-developer-wanted/</guid>
		<description><![CDATA[&#160;

The mighty Cimex are looking for one or two ASP/.NET developers to join our elite team.We have got a formal spec but I personally found it excedingly dry so here&#8217;s my slightly less official take on it:

You should be an experienced ASP/.NET developer
You should have at least a passing acquaintance with semantic HTML, and preferably [...]]]></description>
			<content:encoded><![CDATA[<p class="CommentBody" id="Comment_12905">&nbsp;</p>
<p style="text-align: center"><img src="http://www.beyondstandards.com/wp-content/uploads/2007/07/boxer.jpg" alt="Middleweight" /></p>
<p class="CommentBody" id="Comment_12905">The mighty <a href="http://www.cimex.com/">Cimex</a> are looking for one or two ASP/.NET developers to join our elite team.We have got a <a href="http://www.cimex.com/html/site/con/com/3396.html">formal spec</a> but I personally found it excedingly dry so here&#8217;s my slightly less official take on it:</p>
<ul>
<li>You should be an experienced ASP/.NET developer</li>
<li>You should have at least a passing acquaintance with semantic HTML, and preferably be on good speaking terms (perhaps the odd dinner here and there too).</li>
<li>You should be able to produce clean, functional code which doesn&#8217;t bugger up our lovely clean HTML templates and cause us to lament your birth in terms that would shame a marine.</li>
<li>You should be dedicated to producing a quality product, not just a quick result</li>
<li>You should preferably know your way around XML and SOAP or at least be able to lie very convincingly and learn exceedingly quickly when caught out.</li>
</ul>
<p>If you&#8217;re interested then please reply to the email address on the <a href="http://www.cimex.com/html/site/con/com/3396.html">formal spec page</a> or if you would prefer you can drop me a line in the first instance - andy dot hawkes at cimex dot com - and I&#8217;ll pass it on.</p>
<p>Please note: Cimex are an equal opportunities employer and seek to attract applications from any qualified candidates. We are currently running slightly short on our quota of ninjas, dwarves (in the Tolkein milieu), and scantily-clad pirate maidens.</p>
<p><strong>Note: No agencies that we don&#8217;t already work with (you know who you are), hawkers, beggars , or other tradesmen need apply.</strong></p>
<img src="http://feeds.feedburner.com/~r/beyond_standards/~4/RZHJClOoJlI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.beyondstandards.com/archives/middleweight-net-web-developer-wanted/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.beyondstandards.com/archives/middleweight-net-web-developer-wanted/</feedburner:origLink></item>
		<item>
		<title>Hi, Honey - I’m Home!</title>
		<link>http://feedproxy.google.com/~r/beyond_standards/~3/ao_ZvQT31xU/</link>
		<comments>http://www.beyondstandards.com/archives/hi-honey-im-home/#comments</comments>
		<pubDate>Fri, 01 Jun 2007 14:43:11 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.beyondstandards.com/archives/hi-honey-im-home/</guid>
		<description><![CDATA[
After a brief hiatus and a relatively painless change of server, Beyond Standards is back.
There have been a few changes of personnel since we last set forth our stall on t&#8217;internet - Mr Box has abandoned Cimex and the commuter lifestyle in favour of a job with web-celebs clear:left and more time with his family [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center"><img src="http://www.beyondstandards.com/wp-content/uploads/2007/07/family.jpg" alt="Hi Honey" /></p>
<p>After a brief hiatus and a relatively painless change of server, Beyond Standards is back.</p>
<p>There have been a few changes of personnel since we last set forth our stall on t&#8217;internet - Mr Box has abandoned Cimex and the commuter lifestyle in favour of a job with web-celebs <a href="http://www.clearleft.com/">clear:left</a> and more time with his family (but not a &#8216;disgraced Tory MP sex-scandal&#8217; kind of way), Mr Hawkes has seized the reins of power at Cimex and elevated Mr Harper to the enviable position as his second-in-command, and they&#8217;ve been joined by Mr Graham who brings a level head and an unstinting attention to detail to the team.</p>
<p>Mr Sekulowicz-Barclay has also abandoned the Cimex fold in search of fortune and glory on the gold-paved streets of London, and can now be found plying his wares at <a href="http://www.outsideline.co.uk/">Outsideline</a>.</p>
<p>And finally, the esteemed Mr Rigby has become a damnable tradesman and is hawking his fancy lotions and potions to all and sundry under the nom de guerre &#8220;<a href="http://www.nakedmanshop.co.uk/">Naked Man</a>&#8220;.</p>
<p>So there you have it. All present and correct, refreshed, and raring to go!</p>
<img src="http://feeds.feedburner.com/~r/beyond_standards/~4/ao_ZvQT31xU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.beyondstandards.com/archives/hi-honey-im-home/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.beyondstandards.com/archives/hi-honey-im-home/</feedburner:origLink></item>
		<item>
		<title>WML and Sony Ericsson</title>
		<link>http://feedproxy.google.com/~r/beyond_standards/~3/tm7ixOa7rBI/</link>
		<comments>http://www.beyondstandards.com/archives/wml-and-sony-ericsson/#comments</comments>
		<pubDate>Wed, 11 Oct 2006 12:15:14 +0000</pubDate>
		<dc:creator>Jordan</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<category><![CDATA[Code]]></category>

		<category><![CDATA[Software]]></category>

		<category><![CDATA[Browsers]]></category>

		<category><![CDATA[WML]]></category>

		<category><![CDATA[Mobile]]></category>

		<guid isPermaLink="false">http://www.beyondstandards.com/archives/wml-and-sony-ericsson/</guid>
		<description><![CDATA[This article is designed to help anyone developing a WML site. Particularly those of you that have already experienced the delightfully ambiguous &#8220;Sorry The requested item could not be loaded!&#8221; message shown by the Sony Ericsson WML browser. I searched the internet high and low for a solution, and heard tales of server&#8217;s mime-type settings, [...]]]></description>
			<content:encoded><![CDATA[<p>This article is designed to help <em>anyone</em> developing a WML site. Particularly those of you that have already experienced the delightfully ambiguous &#8220;Sorry The requested item could not be loaded!&#8221; message shown by the Sony Ericsson WML browser. I searched the internet high and low for a solution, and heard tales of server&#8217;s mime-type settings, O2 walled gardens and Sony Ericssons being incompatible with WML 1.1, but found nothing of any use. Then I sussed it.</p>
<p>How? Why?</p>
<p> <a href="http://www.beyondstandards.com/archives/wml-and-sony-ericsson/#more-54" class="more-link">(more&#8230;)</a></p>
<img src="http://feeds.feedburner.com/~r/beyond_standards/~4/tm7ixOa7rBI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.beyondstandards.com/archives/wml-and-sony-ericsson/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.beyondstandards.com/archives/wml-and-sony-ericsson/</feedburner:origLink></item>
		<item>
		<title>Guidelines for xHTML/CSS/JS projects</title>
		<link>http://feedproxy.google.com/~r/beyond_standards/~3/WYWzjzXbGa4/</link>
		<comments>http://www.beyondstandards.com/archives/guidelines-for-xhtmlcssjs-projects/#comments</comments>
		<pubDate>Wed, 27 Sep 2006 14:44:29 +0000</pubDate>
		<dc:creator>James</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<category><![CDATA[Code]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[Javascript]]></category>

		<category><![CDATA[Accessibility]]></category>

		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://www.beyondstandards.com/archives/guidelines-for-xhtmlcssjs-projects/</guid>
		<description><![CDATA[I’m lucky enough to have a very talented team of developers working with me at Cimex. That doesn’t stop us having to use freelancers though and it was for that very reason (and those very few occasions where we forget print stylesheets) that we devised a set of guidelines for all our xHTML/CSS/JS projects.
We’re not [...]]]></description>
			<content:encoded><![CDATA[<p>I’m lucky enough to have a very talented team of developers working with me at Cimex. That doesn’t stop us having to use freelancers though and it was for that very reason (and those very few occasions where we forget print stylesheets) that we devised a set of guidelines for all our <abbr>xHTML</abbr>/<abbr>CSS</abbr>/<abbr>JS</abbr> projects.</p>
<p>We’re not claiming to have produced an exhaustive list of best practices here, rather a reference that helps ensure anyone working with us can gauge the quality of the code they’re supplying. For no good reason, other than the fact that I rather like them, I&#8217;ve used Jordan&#8217;s web reworking of <a href="http://www.beyondstandards.com/Jan%20Tschichold%E2%80%99s%20Penguin%20Composition%20Rules">Jan Tschichold’s Penguin Composition Rules</a> as a basis.</p>
<p>Let us know what we&#8217;ve missed.</p>
<p><a id="p53" onmousedown="selectLink(53);" href="http://www.beyondstandards.com/wp-content/uploads/2006/09/guidelines.html">Read Cimex&#8217; Guidelines for xHTML/CSS/JS projects.</a></p>
<img src="http://feeds.feedburner.com/~r/beyond_standards/~4/WYWzjzXbGa4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.beyondstandards.com/archives/guidelines-for-xhtmlcssjs-projects/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.beyondstandards.com/archives/guidelines-for-xhtmlcssjs-projects/</feedburner:origLink></item>
		<item>
		<title>Dynamically resizing Flash objects with JS</title>
		<link>http://feedproxy.google.com/~r/beyond_standards/~3/dB6C-qtwlbg/</link>
		<comments>http://www.beyondstandards.com/archives/dynamically-resizing-flash-objects-with-js/#comments</comments>
		<pubDate>Fri, 08 Sep 2006 15:27:42 +0000</pubDate>
		<dc:creator>Jordan</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<category><![CDATA[Code]]></category>

		<category><![CDATA[Software]]></category>

		<category><![CDATA[Browsers]]></category>

		<category><![CDATA[Javascript]]></category>

		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://www.beyondstandards.com/archives/dynamically-resizing-flash-objects-with-js/</guid>
		<description><![CDATA[I was approached recently by one of our Flash developers, who needed to know if it was possible to dynamically resize a Shockwave Flash object in an iframe on a webpage. The piece of content in question was an educational (!) Flash game placed in an iframe at the top half of the page, with [...]]]></description>
			<content:encoded><![CDATA[<p>I was approached recently by one of our Flash developers, who needed to know if it was possible to dynamically resize a Shockwave Flash object in an <code class="inline">iframe</code> on a webpage. The piece of content in question was an educational (!) Flash game placed in an <code class="inline">iframe</code> at the top half of the page, with a sitewide toolbar in an <code class="inline">iframe</code> at the bottom of the page.</p>
<p> <a href="http://www.beyondstandards.com/archives/dynamically-resizing-flash-objects-with-js/#more-50" class="more-link">(more&#8230;)</a></p>
<img src="http://feeds.feedburner.com/~r/beyond_standards/~4/dB6C-qtwlbg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.beyondstandards.com/archives/dynamically-resizing-flash-objects-with-js/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.beyondstandards.com/archives/dynamically-resizing-flash-objects-with-js/</feedburner:origLink></item>
		<item>
		<title>Clearing floats for Safari</title>
		<link>http://feedproxy.google.com/~r/beyond_standards/~3/OxHG65lhT1E/</link>
		<comments>http://www.beyondstandards.com/archives/clearing-floats-for-safari/#comments</comments>
		<pubDate>Wed, 16 Aug 2006 10:04:25 +0000</pubDate>
		<dc:creator>Jordan</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<category><![CDATA[Code]]></category>

		<category><![CDATA[Mac OS]]></category>

		<category><![CDATA[Software]]></category>

		<category><![CDATA[Browsers]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://www.beyondstandards.com/archives/clearing-floats-for-safari/</guid>
		<description><![CDATA[Whilst I was cross browser testing some templates yesterday, I came across a most unusual bug in Safari; namely that if a floated element, in a floated container, is not set to clear:both, the container will not inherit the width of the interior element.
]]></description>
			<content:encoded><![CDATA[<p>Whilst I was cross browser testing some templates yesterday, I came across a most unusual bug in Safari; namely that if a floated element, in a floated container, is not set to <code class="inline">clear:both</code>, the container will not inherit the width of the interior element.</p>
<p> <a href="http://www.beyondstandards.com/archives/clearing-floats-for-safari/#more-49" class="more-link">(more&#8230;)</a></p>
<img src="http://feeds.feedburner.com/~r/beyond_standards/~4/OxHG65lhT1E" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.beyondstandards.com/archives/clearing-floats-for-safari/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.beyondstandards.com/archives/clearing-floats-for-safari/</feedburner:origLink></item>
		<item>
		<title>Better event management with Prototype</title>
		<link>http://feedproxy.google.com/~r/beyond_standards/~3/o3W0VZxLOVo/</link>
		<comments>http://www.beyondstandards.com/archives/better-event-management-with-prototype/#comments</comments>
		<pubDate>Tue, 15 Aug 2006 21:14:23 +0000</pubDate>
		<dc:creator>Ben</dc:creator>
		
		<category><![CDATA[Somewhere else]]></category>

		<category><![CDATA[Development]]></category>

		<category><![CDATA[Code]]></category>

		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.beyondstandards.com/archives/better-event-management-with-prototype/</guid>
		<description><![CDATA[Of all of the frameworks currently available for the rejuvenated Javascript language Prototype is the most popular. The developer, Sam Stephenson has now been employed by 37Signals and has been working on integrating his framework and its spinoff effects library Scriptaculous with Ruby on Rails, the massively popular new server side language. So its going [...]]]></description>
			<content:encoded><![CDATA[<p>Of all of the frameworks currently available for the rejuvenated Javascript language <a href="http://prototype.conio.net/">Prototype</a> is the most popular. The developer, <a href="http://conio.net/">Sam Stephenson</a> has now been employed by <a href="http://www.37signals.com/">37Signals</a> and has been working on integrating his framework and its spinoff effects library <a href="http://script.aculo.us/">Scriptaculous</a> with <a href="http://www.rubyonrails.com">Ruby on Rails</a>, the massively popular new server side language. So its going to be around for a while. </p>
<p>One of the most useful features of the framework is how it allows you to easily build classes to encapsulate your code and prevent it from interfering with existing or future code. We have used it extensively at <a href="http://www.cimex.com">Cimex</a> with some projects making use of three or four different classes, all running independently of each other while addressing the same DOM tree. However the implementation of events and event listeners with Prototype can seem a bit convoluted and unless you have been there before and know the tricks of the trade, can be very frustrating.</p>
<p> <a href="http://www.beyondstandards.com/archives/better-event-management-with-prototype/#more-48" class="more-link">(more&#8230;)</a></p>
<img src="http://feeds.feedburner.com/~r/beyond_standards/~4/o3W0VZxLOVo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.beyondstandards.com/archives/better-event-management-with-prototype/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.beyondstandards.com/archives/better-event-management-with-prototype/</feedburner:origLink></item>
		<item>
		<title>Somewhere Else IX</title>
		<link>http://feedproxy.google.com/~r/beyond_standards/~3/F0gSMaWMWnU/</link>
		<comments>http://www.beyondstandards.com/archives/somewhere-else-ix/#comments</comments>
		<pubDate>Sat, 22 Jul 2006 12:16:26 +0000</pubDate>
		<dc:creator>James</dc:creator>
		
		<category><![CDATA[Somewhere else]]></category>

		<guid isPermaLink="false">http://www.beyondstandards.com/archives/somewhere-else-ix/</guid>
		<description><![CDATA[
Google Labs have released an &#8216;Accessible Search&#8216;. The technology was authored by blind developer TV Raman, a computer scientist whose stated objective is &#8220;to develop technologies that drive the future of the web toward eyes-free, ubiquitous information access.&#8221;
Newshutch may just be another RSS aggregator, but after giving it a quick spin, I have to say [...]]]></description>
			<content:encoded><![CDATA[<ul class="somewhere-else">
<li>Google Labs have released an &#8216;<a href="http://labs.google.com/accessible/">Accessible Search</a>&#8216;. The technology was authored by blind developer TV Raman, a computer scientist whose stated objective is &#8220;to develop technologies that drive the future of the web toward eyes-free, ubiquitous information access.&#8221;</li>
<li><a href="http://www.newshutch.com/">Newshutch</a> may just be another RSS aggregator, but after giving it a quick spin, I have to say I&#8217;m left most impressed.</li>
<li>Luke Wroblewski&#8217;s take on what it is to be an <a href="http://www.lukew.com/ff/entry.asp?375">Interface designer.</a></li>
<li>A 30 minute video on <a href="http://video.google.com/videoplay?docid=-6459171443654125383&#038;q=label%3Auser+interface">The Science and Art of User Experience at Google</a>.</li>
<li><a href="http://graffletopia.com/">Graffleheads</a> rejoice.</li>
</ul>
<img src="http://feeds.feedburner.com/~r/beyond_standards/~4/F0gSMaWMWnU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.beyondstandards.com/archives/somewhere-else-ix/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.beyondstandards.com/archives/somewhere-else-ix/</feedburner:origLink></item>
		<item>
		<title>What do you want?</title>
		<link>http://feedproxy.google.com/~r/beyond_standards/~3/fh6r3N-JXBo/</link>
		<comments>http://www.beyondstandards.com/archives/what-do-you-want/#comments</comments>
		<pubDate>Mon, 03 Jul 2006 16:08:46 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
		
		<category><![CDATA[Somewhere else]]></category>

		<guid isPermaLink="false">http://www.beyondstandards.com/archives/what-do-you-want/</guid>
		<description><![CDATA[My previous article on user expectation has really got me thinking, and unfortunately for me that means I&#8217;ve been asking myself (and anyone nearby who didn&#8217;t have the good sense to run screaming from the building) whether we are really giving users what they want.
The crux of the issue for me is the potentially negative [...]]]></description>
			<content:encoded><![CDATA[<p>My <a href="http://www.beyondstandards.com/archives/great-expectations">previous article</a> on user expectation has really got me thinking, and unfortunately for me that means I&#8217;ve been asking myself (and anyone nearby who didn&#8217;t have the good sense to run screaming from the building) whether we are really giving users what they <strong>want</strong>.</p>
<p>The crux of the issue for me is the potentially negative implications of experience and user expectation which conspire to create a certain mental model of a website.</p>
<p>Are we really going to let the bad old days of nested tables for layout and mindless tag soup websites define the future of the web? Should the sins of the father be visited upon the son?</p>
<p> <a href="http://www.beyondstandards.com/archives/what-do-you-want/#more-46" class="more-link">(more&#8230;)</a></p>
<img src="http://feeds.feedburner.com/~r/beyond_standards/~4/fh6r3N-JXBo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.beyondstandards.com/archives/what-do-you-want/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.beyondstandards.com/archives/what-do-you-want/</feedburner:origLink></item>
		<item>
		<title>Somewhere Else VIII</title>
		<link>http://feedproxy.google.com/~r/beyond_standards/~3/2_UZequrP20/</link>
		<comments>http://www.beyondstandards.com/archives/somewhere-else-viii/#comments</comments>
		<pubDate>Fri, 30 Jun 2006 16:04:20 +0000</pubDate>
		<dc:creator>James</dc:creator>
		
		<category><![CDATA[Somewhere else]]></category>

		<guid isPermaLink="false">http://www.beyondstandards.com/archives/somewhere-else-viii/</guid>
		<description><![CDATA[
Who knows you best? Your parents? Your partner? Or could it be Google? They already know what you do. Now they know what you buy and can even prove you are you.
Splendid stuff and more importantly spot on.
The Guardian launches G24. A new &#8216;print and read&#8217; service, updated every 15 minutes.
Erik Spiekermann is not impressed [...]]]></description>
			<content:encoded><![CDATA[<ul class="somewhere-else">
<li>Who knows you best? Your parents? Your partner? Or could it be <a href="http://www.google.com/">Google</a>? They already know <a href="http://calendar.google.com/">what you do</a>. Now they know <a href="https://checkout.google.com/">what you buy</a> and can even <a href="http://code.google.com/apis/accounts/AuthForWebApps.html">prove you are you</a>.</li>
<li><a href="http://adactio.com/articles/1132/">Splendid stuff</a> and more importantly spot on.</li>
<li>The Guardian launches <a href="http://www.guardian.co.uk/pressoffice/pressrelease/story/0,,1802018,00.html">G24</a>. A new &#8216;print and read&#8217; service, updated every 15 minutes.</li>
<li>Erik Spiekermann is <a href="http://www.dw-world.de/dw/article/0,2144,2049898,00.html">not impressed by the design concept for the 2006 World Cup</a>.</li>
<li><a href="http://extranet.cimex.com/james/cristiano/index.html">Cristiano Ronaldo skills workshop</a></li>
<li>Finally a word of warning: Mind you don&#8217;t get <a href="http://www.youtube.com/watch?v=M0ODskdEPnQ">piles</a> sitting on that damp grass.</li>
</ul>
<img src="http://feeds.feedburner.com/~r/beyond_standards/~4/2_UZequrP20" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.beyondstandards.com/archives/somewhere-else-viii/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.beyondstandards.com/archives/somewhere-else-viii/</feedburner:origLink></item>
		<item>
		<title>Progressive enhancement, my arse!</title>
		<link>http://feedproxy.google.com/~r/beyond_standards/~3/K7YwQOM31co/</link>
		<comments>http://www.beyondstandards.com/archives/just-plain-wrong/#comments</comments>
		<pubDate>Thu, 29 Jun 2006 17:07:15 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
		
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.beyondstandards.com/archives/just-plain-wrong/</guid>
		<description><![CDATA[It&#8217;s always exciting to see a new government website brought to fruition, especially when that site adheres to web standards, is accessible, and uses valid, semantic code.
Imagine my joy, therefore, when I heard about &#8220;a dynamic new government-backed service&#8221; whose accessibility page boasts that:
This website has been created with valid XHTML (Extensible Hyper Text Markup [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s always exciting to see a new government website brought to fruition, especially when that site adheres to web standards, is accessible, and uses valid, semantic code.</p>
<p>Imagine my joy, therefore, when I heard about &#8220;a dynamic new government-backed service&#8221; whose accessibility page boasts that:</p>
<blockquote><p>This website has been created with valid XHTML (Extensible Hyper Text Markup Language) and CSS (Cascading Style Sheets) and adheres to (World Wide Web Consortium) standards. Additionally the site meets with Bobby approved Conformance Level AA in association with the Web Content Guidelines.</p></blockquote>
<p> <a href="http://www.beyondstandards.com/archives/just-plain-wrong/#more-42" class="more-link">(more&#8230;)</a></p>
<img src="http://feeds.feedburner.com/~r/beyond_standards/~4/K7YwQOM31co" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.beyondstandards.com/archives/just-plain-wrong/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.beyondstandards.com/archives/just-plain-wrong/</feedburner:origLink></item>
		<item>
		<title>Somewhere Else VII</title>
		<link>http://feedproxy.google.com/~r/beyond_standards/~3/1CALuAFhzmg/</link>
		<comments>http://www.beyondstandards.com/archives/bs41/#comments</comments>
		<pubDate>Fri, 16 Jun 2006 12:00:19 +0000</pubDate>
		<dc:creator>everyone</dc:creator>
		
		<category><![CDATA[Somewhere else]]></category>

		<guid isPermaLink="false">http://www.beyondstandards.com/archives/bs41/</guid>
		<description><![CDATA[
The Painstation 2 is a pong-style game that shocks, whips and burns the player when they lose a point. While I am not a fan of my video games torturing me, I love the exploration of physical immersion it makes.
One of the greatest ideas to emerge recently in the latest start-up boom, Qunu uses Jabber [...]]]></description>
			<content:encoded><![CDATA[<ul class="somewhere-else">
<li>The <a href="http://www.painstation.de/">Painstation 2</a> is a pong-style game that shocks, whips and burns the player when they lose a point. While I am not a fan of my video games torturing me, I love the exploration of physical immersion it makes.</li>
<li>One of the greatest ideas to emerge recently in the latest start-up boom, <a href="http://www.qunu.com/">Qunu</a> uses Jabber to connect experts with novices to solve problems and provide a networked personal learning system. Brilliant!</li>
<li>This is a bit old now, but <a href="http://www.aharef.info/static/htmlgraph/">this great tool</a> allows you to visualise your mark-up as a set of nodes &mdash; its great fun comparing graphs of the <a href="http://www.aharef.info/static/htmlgraph/?url=http%3A%2F%2Fwww.yahoo.com">very complex</a> and the <a href="http://www.aharef.info/static/htmlgraph/?url=http%3A%2F%2Fwww.beseku.com">very simple</a>.</li>
<li>Topical <i>and</i> interesting: <a href="http://www.absoluteastronomy.com/enc3/coat_of_arms_of_england">it&#8217;s 3 <i>Leopards</i></a> that anoint the shirts of England fans and players alike.</li>
<li>The city of Stockholm has <a href="http://www.stockholmthemusical.com/">written a musical</a> for almost everyone in the world. Except for people called Ben, who  it seems they don&#8217;t like.</li>
<li>Watching the World Cup on your computer? The <abbr title="British Broadcasting Corporation">BBC</abbr> have released their <a href="http://news.bbc.co.uk/sport1/hi/football/world_cup_2006/bbc_coverage/5060332.stm">streaming video <abbr title="Universal Resource Location">URL</abbr>s</a> so you can view the action in Quicktime, Realplayer or Windows Media Player.</li>
</ul>
<img src="http://feeds.feedburner.com/~r/beyond_standards/~4/1CALuAFhzmg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.beyondstandards.com/archives/bs41/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.beyondstandards.com/archives/bs41/</feedburner:origLink></item>
		<item>
		<title>Great expectations</title>
		<link>http://feedproxy.google.com/~r/beyond_standards/~3/-GeH4NIIXFc/</link>
		<comments>http://www.beyondstandards.com/archives/great-expectations/#comments</comments>
		<pubDate>Thu, 08 Jun 2006 15:31:01 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
		
		<category><![CDATA[User Experience]]></category>

		<category><![CDATA[Accessibility]]></category>

		<guid isPermaLink="false">http://www.beyondstandards.com/archives/great-expectations/</guid>
		<description><![CDATA[It&#8217;s amazing how an off-the-cuff remark about the use of typographic characters as symbols can get you thinking.
The question arose as to whether the use of » or &#62; is acceptable as a right arrow (e.g. Next» or Next&#62;), or whether that essentially qualifies as the dreaded &#8220;ASCII art&#8221; when it comes to accessibility auditing.
]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s amazing how an off-the-cuff remark about the use of typographic characters as symbols can get you thinking.</p>
<p>The question arose as to whether the use of » or &gt; is acceptable as a right arrow (e.g. Next» or Next&gt;), or whether that essentially qualifies as the dreaded &#8220;<abbr>ASCII</abbr> art&#8221; when it comes to accessibility auditing.</p>
<p> <a href="http://www.beyondstandards.com/archives/great-expectations/#more-40" class="more-link">(more&#8230;)</a></p>
<img src="http://feeds.feedburner.com/~r/beyond_standards/~4/-GeH4NIIXFc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.beyondstandards.com/archives/great-expectations/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.beyondstandards.com/archives/great-expectations/</feedburner:origLink></item>
		<item>
		<title>Input placeholders</title>
		<link>http://feedproxy.google.com/~r/beyond_standards/~3/XLJ-GuFDQIc/</link>
		<comments>http://www.beyondstandards.com/archives/input-placeholders/#comments</comments>
		<pubDate>Wed, 31 May 2006 15:27:42 +0000</pubDate>
		<dc:creator>Jordan</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<category><![CDATA[Code]]></category>

		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.beyondstandards.com/archives/input-placeholders/</guid>
		<description><![CDATA[Being a dirty Windows boy, I was surprised recently to find that Apple&#8217;s Safari browser supports a very neat &#8216;placeholder&#8217; attribute on text &#60;input&#62; tags, that works thusly:
&#60;input type="text" placeholder="Type something here" /&#62;
Safari goes on to insert the specified &#8216;placeholder&#8217; text into the value of the input field, until clicked on, when it disappears (and [...]]]></description>
			<content:encoded><![CDATA[<p>Being a dirty Windows boy, I was surprised recently to find that Apple&#8217;s Safari browser supports a very neat &#8216;placeholder&#8217; attribute on text <code class="inline">&lt;input&gt;</code> tags, that works thusly:</p>
<p><code>&lt;input type="text" placeholder="Type something here" /&gt;</code></p>
<p>Safari goes on to insert the specified &#8216;placeholder&#8217; text into the value of the input field, until clicked on, when it disappears (and only reappears if the field is left empty). This is a great little idea as it provides a lovely, unobtrusive way to offer a very commonly used functionality.</p>
<p> <a href="http://www.beyondstandards.com/archives/input-placeholders/#more-39" class="more-link">(more&#8230;)</a></p>
<img src="http://feeds.feedburner.com/~r/beyond_standards/~4/XLJ-GuFDQIc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.beyondstandards.com/archives/input-placeholders/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.beyondstandards.com/archives/input-placeholders/</feedburner:origLink></item>
		<item>
		<title>Somewhere Else VI</title>
		<link>http://feedproxy.google.com/~r/beyond_standards/~3/hFhW8gaKMVg/</link>
		<comments>http://www.beyondstandards.com/archives/bs34/#comments</comments>
		<pubDate>Fri, 26 May 2006 12:00:26 +0000</pubDate>
		<dc:creator>everyone</dc:creator>
		
		<category><![CDATA[Somewhere else]]></category>

		<guid isPermaLink="false">http://www.beyondstandards.com/archives/somewhere-else-vi/</guid>
		<description><![CDATA[
Top Ten Underserved Web 2.0 Markets. Richard McManus has done all the analysis. Now go fill those holes. Not sure if I get the title though?
Content content. Talking of holes in the market&#8230;at last someone blogging about content.
Front-End Architecture: Browsers. Garret Dimon reinforces the points I made on customising form fields after already agreeing with [...]]]></description>
			<content:encoded><![CDATA[<ul class="somewhere-else">
<li><a href="http://www.readwriteweb.com/archives/top_ten_underse.php">Top Ten Underserved Web 2.0 Markets</a>. Richard McManus has done all the analysis. Now go fill those holes. Not sure if I get the title though?</li>
<li><a href="http://contentcontent.blogspot.com/">Content content</a>. Talking of holes in the market&#8230;at last someone blogging about content.</li>
<li><a href="http://www.garrettdimon.com/archives/front-end-architecture-browsers">Front-End Architecture: Browsers</a>. Garret Dimon reinforces <a href="/archives/bs30/">the points I made</a> on customising form fields after already <a href="http://www.garrettdimon.com/archives/front-end-architecture-markup-is-the-technical-foundation">agreeing with me</a> about the <a href="/archives/bs18/">importance of mark-up</a>.</li>
</ul>
<img src="http://feeds.feedburner.com/~r/beyond_standards/~4/hFhW8gaKMVg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.beyondstandards.com/archives/bs34/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.beyondstandards.com/archives/bs34/</feedburner:origLink></item>
	</channel>
</rss>
