<?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>Wade Womersley - Leeds based web developer</title>
	<atom:link href="http://www.xcitestudios.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.xcitestudios.com/blog</link>
	<description>Giving in to the online blogosphere</description>
	<lastBuildDate>Fri, 26 Feb 2010 16:02:41 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Regex-fu #PHPUK2010</title>
		<link>http://www.xcitestudios.com/blog/2010/02/26/regex-fu-phpuk2010/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://www.xcitestudios.com/blog/2010/02/26/regex-fu-phpuk2010/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 16:02:41 +0000</pubDate>
		<dc:creator>Wade</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[PHP Conference 2010]]></category>

		<guid isPermaLink="false">http://www.xcitestudios.com/blog/?p=456</guid>
		<description><![CDATA[<p>Good start: don&#8217;t use it unless you need to, there&#8217;s plenty of alternatives, e.g. DOMXML, str_replace, etc. Also PHP5+ has lots of filters for email validation and URL validation etc, function calls you can make rather than complex regular expressions. Regular expressions can slow down quickly due to back tracking, pattern complexity and long strings.</p>
<p><a href="http://www.xcitestudios.com/blog/2010/02/26/regex-fu-phpuk2010/#utm_source=feed&#38;utm_medium=feed&#38;utm_campaign=feed" class="more-link">Read more on Regex-fu #PHPUK2010&#8230;</a></p>


<p>Related posts:<ol><li><a href='http://www.xcitestudios.com/blog/2010/02/26/phpuk2010-part-1/' rel='bookmark' title='Permanent Link: #PHPUK2010 Part 1'>#PHPUK2010 Part 1</a></li><li><a href='http://www.xcitestudios.com/blog/2010/02/26/phpuk2010-part-2-mysql-stuff/' rel='bookmark' title='Permanent Link: #PHPUK2010 Part 2 (MySQL stuff)'>#PHPUK2010 Part 2 (MySQL stuff)</a></li></ol></p>


Related posts:<ol><li><a href='http://www.xcitestudios.com/blog/2010/02/26/phpuk2010-part-1/' rel='bookmark' title='Permanent Link: #PHPUK2010 Part 1'>#PHPUK2010 Part 1</a></li><li><a href='http://www.xcitestudios.com/blog/2010/02/26/phpuk2010-part-2-mysql-stuff/' rel='bookmark' title='Permanent Link: #PHPUK2010 Part 2 (MySQL stuff)'>#PHPUK2010 Part 2 (MySQL stuff)</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>Good start: don&#8217;t use it unless you need to, there&#8217;s plenty of alternatives, e.g. DOMXML, str_replace, etc. Also PHP5+ has lots of filters for email validation and URL validation etc, function calls you can make rather than complex regular expressions. Regular expressions can slow down quickly due to back tracking, pattern complexity and long strings.</p>
<p>Then the talk has become abstract, each point is prefixed with an odd statement such as &#8220;Only elephants remember everything&#8221; and &#8220;Not all matches are made in heaven&#8221; &#8211; people are getting it, but everything needs explaining before they get it!</p>
<p>One very good point I have seen ignored many times is &#8220;try not to be greedy.&#8221; For example <strong>/&lt;(.+)&gt;/</strong> in the string &lt;a href=&#8221;"&gt;fdsfsd&lt;/a&gt; will match the entire thing. To make it ungreedy, either use <strong>/&lt;(.+?)&gt;/</strong> or <strong>/&lt;([^&gt;]+)</strong><strong>/</strong> . Greedy matches can be 20+ times slower.</p>


<p>Related posts:<ol><li><a href='http://www.xcitestudios.com/blog/2010/02/26/phpuk2010-part-1/' rel='bookmark' title='Permanent Link: #PHPUK2010 Part 1'>#PHPUK2010 Part 1</a></li><li><a href='http://www.xcitestudios.com/blog/2010/02/26/phpuk2010-part-2-mysql-stuff/' rel='bookmark' title='Permanent Link: #PHPUK2010 Part 2 (MySQL stuff)'>#PHPUK2010 Part 2 (MySQL stuff)</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.xcitestudios.com/blog/2010/02/26/regex-fu-phpuk2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>#PHPUK2010 Part 2 (MySQL stuff)</title>
		<link>http://www.xcitestudios.com/blog/2010/02/26/phpuk2010-part-2-mysql-stuff/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://www.xcitestudios.com/blog/2010/02/26/phpuk2010-part-2-mysql-stuff/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 11:37:58 +0000</pubDate>
		<dc:creator>Wade</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[PHP Conference 2010]]></category>

		<guid isPermaLink="false">http://www.xcitestudios.com/blog/?p=453</guid>
		<description><![CDATA[<p>Just picked up a nice tid-bit on creating a unique index on a two column table where the values in each column may be either way around but you only ever want one instance of the value in that row. So what this means is, inserting 2,1 and 1,2 for example would result in only the first of the two inserts succeeding.</p>
<p><a href="http://www.xcitestudios.com/blog/2010/02/26/phpuk2010-part-2-mysql-stuff/#utm_source=feed&#38;utm_medium=feed&#38;utm_campaign=feed" class="more-link">Read more on #PHPUK2010 Part 2 (MySQL stuff)&#8230;</a></p>


<p>Related posts:<ol><li><a href='http://www.xcitestudios.com/blog/2010/01/29/mysql-binary16-and-scalability/' rel='bookmark' title='Permanent Link: MySQL &#8211; Binary(16) and scalability'>MySQL &#8211; Binary(16) and scalability</a></li><li><a href='http://www.xcitestudios.com/blog/2010/01/31/mysql-and-binary16-the-reasonsbenefitsdrawbacks-mysql/' rel='bookmark' title='Permanent Link: MySQL and Binary(16) &#8211; The Reasons/Benefits/Drawbacks (#mysql)'>MySQL and Binary(16) &#8211; The Reasons/Benefits/Drawbacks (#mysql)</a></li><li><a href='http://www.xcitestudios.com/blog/2010/02/26/phpuk2010-part-1/' rel='bookmark' title='Permanent Link: #PHPUK2010 Part 1'>#PHPUK2010 Part 1</a></li></ol></p>


Related posts:<ol><li><a href='http://www.xcitestudios.com/blog/2010/01/29/mysql-binary16-and-scalability/' rel='bookmark' title='Permanent Link: MySQL &#8211; Binary(16) and scalability'>MySQL &#8211; Binary(16) and scalability</a></li><li><a href='http://www.xcitestudios.com/blog/2010/01/31/mysql-and-binary16-the-reasonsbenefitsdrawbacks-mysql/' rel='bookmark' title='Permanent Link: MySQL and Binary(16) &#8211; The Reasons/Benefits/Drawbacks (#mysql)'>MySQL and Binary(16) &#8211; The Reasons/Benefits/Drawbacks (#mysql)</a></li><li><a href='http://www.xcitestudios.com/blog/2010/02/26/phpuk2010-part-1/' rel='bookmark' title='Permanent Link: #PHPUK2010 Part 1'>#PHPUK2010 Part 1</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>Just picked up a nice tid-bit on creating a unique index on a two column table where the values in each column may be either way around but you only ever want one instance of the value in that row. So what this means is, inserting 2,1 and 1,2 for example would result in only the first of the two inserts succeeding.</p>
<p><code>CREATE UNIQUE INDEX ON tablename (LEAST(col1,col2),  GREATEST(col1,col2));</code></p>
<p>Also, WITH, I&#8217;ll be honest, never thought about using it to create temporary views. This is a bad example but shows the structure rather well:</p>
<p><code>WITH tempView (a,b) AS (<br />
SELECT table1.col1, table2.col2<br />
FROM table1<br />
LEFT JOIN table2<br />
ON table1.id=table2.id<br />
)<br />
SELECT a,b FROM tempView;</code></p>
<p>Better yet is changing this to WITH RECURSIVE tempView and then adding in a select inside the WITH that recalls tempView. The great example he gave is for getting flights from A to B with a varying  amount of stops, it would be possible to get all routes from A to B with one MySQL query, as long as the data stored all connecting routes.</p>
<p>Incidentally, while there is some great stuff coming out of this RDBMS talk, I think the queries are really hurting a lot of people&#8217;s heads. Good stuff though.</p>


<p>Related posts:<ol><li><a href='http://www.xcitestudios.com/blog/2010/01/29/mysql-binary16-and-scalability/' rel='bookmark' title='Permanent Link: MySQL &#8211; Binary(16) and scalability'>MySQL &#8211; Binary(16) and scalability</a></li><li><a href='http://www.xcitestudios.com/blog/2010/01/31/mysql-and-binary16-the-reasonsbenefitsdrawbacks-mysql/' rel='bookmark' title='Permanent Link: MySQL and Binary(16) &#8211; The Reasons/Benefits/Drawbacks (#mysql)'>MySQL and Binary(16) &#8211; The Reasons/Benefits/Drawbacks (#mysql)</a></li><li><a href='http://www.xcitestudios.com/blog/2010/02/26/phpuk2010-part-1/' rel='bookmark' title='Permanent Link: #PHPUK2010 Part 1'>#PHPUK2010 Part 1</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.xcitestudios.com/blog/2010/02/26/phpuk2010-part-2-mysql-stuff/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>#PHPUK2010 Part 1</title>
		<link>http://www.xcitestudios.com/blog/2010/02/26/phpuk2010-part-1/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://www.xcitestudios.com/blog/2010/02/26/phpuk2010-part-1/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 10:16:08 +0000</pubDate>
		<dc:creator>Wade</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[PHP Conference 2010]]></category>

		<guid isPermaLink="false">http://www.xcitestudios.com/blog/?p=451</guid>
		<description><![CDATA[<p>Josh began by using the dictionary definition of simplicity (as given by Wikipedia) pointing out that the word is often used as a derogatory statement. He then went onto &#8220;clarity of expression&#8221; and that striving for it while programming is something a lot of people do but never quite seem to achieve.</p>
<p><a href="http://www.xcitestudios.com/blog/2010/02/26/phpuk2010-part-1/#utm_source=feed&#38;utm_medium=feed&#38;utm_campaign=feed" class="more-link">Read more on #PHPUK2010 Part 1&#8230;</a></p>


<p>Related posts:<ol><li><a href='http://www.xcitestudios.com/blog/2010/02/26/phpuk2010-part-2-mysql-stuff/' rel='bookmark' title='Permanent Link: #PHPUK2010 Part 2 (MySQL stuff)'>#PHPUK2010 Part 2 (MySQL stuff)</a></li><li><a href='http://www.xcitestudios.com/blog/2010/02/26/regex-fu-phpuk2010/' rel='bookmark' title='Permanent Link: Regex-fu #PHPUK2010'>Regex-fu #PHPUK2010</a></li><li><a href='http://www.xcitestudios.com/blog/2010/01/29/mysql-binary16-and-scalability/' rel='bookmark' title='Permanent Link: MySQL &#8211; Binary(16) and scalability'>MySQL &#8211; Binary(16) and scalability</a></li></ol></p>


Related posts:<ol><li><a href='http://www.xcitestudios.com/blog/2010/02/26/phpuk2010-part-2-mysql-stuff/' rel='bookmark' title='Permanent Link: #PHPUK2010 Part 2 (MySQL stuff)'>#PHPUK2010 Part 2 (MySQL stuff)</a></li><li><a href='http://www.xcitestudios.com/blog/2010/02/26/regex-fu-phpuk2010/' rel='bookmark' title='Permanent Link: Regex-fu #PHPUK2010'>Regex-fu #PHPUK2010</a></li><li><a href='http://www.xcitestudios.com/blog/2010/01/29/mysql-binary16-and-scalability/' rel='bookmark' title='Permanent Link: MySQL &#8211; Binary(16) and scalability'>MySQL &#8211; Binary(16) and scalability</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>Josh began by using the dictionary definition of simplicity (as given by Wikipedia) pointing out that the word is often used as a derogatory statement. He then went onto &#8220;clarity of expression&#8221; and that striving for it while programming is something a lot of people do but never quite seem to achieve.</p>
<p>He spoke of an example where a user comes to a programmer asking for a report, and the usual first reaction is &#8220;ah, you need a reporting system.&#8221; He also said that&#8217;s not always the case, at the end of the day, the user just wanted a report, at this point I heard quite a few people take a breath in through their teeth (particularly the guy sitting to the right of me, he knows who he is.) That is a hard problem, particularly at Stickyeyes where we really do get a lot of people saying &#8220;I want a report&#8221; and often we have to build a system, simply because of the sheer amount of similar repetitious reports.</p>
<p>He made a very good point about developers having a tendency to go for the newest, shinyest tools (such as HipHop for PHP.) The reason for this is to point out that these tools exist because they solve a particular type of problem, so unless the tool actually helps you, do you really need to use it?</p>


<p>Related posts:<ol><li><a href='http://www.xcitestudios.com/blog/2010/02/26/phpuk2010-part-2-mysql-stuff/' rel='bookmark' title='Permanent Link: #PHPUK2010 Part 2 (MySQL stuff)'>#PHPUK2010 Part 2 (MySQL stuff)</a></li><li><a href='http://www.xcitestudios.com/blog/2010/02/26/regex-fu-phpuk2010/' rel='bookmark' title='Permanent Link: Regex-fu #PHPUK2010'>Regex-fu #PHPUK2010</a></li><li><a href='http://www.xcitestudios.com/blog/2010/01/29/mysql-binary16-and-scalability/' rel='bookmark' title='Permanent Link: MySQL &#8211; Binary(16) and scalability'>MySQL &#8211; Binary(16) and scalability</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.xcitestudios.com/blog/2010/02/26/phpuk2010-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Photo of Ant Holding 500 times its own Bodyweight</title>
		<link>http://www.xcitestudios.com/blog/2010/02/21/photo-of-ant-holding-500-times-its-own-bodyweight/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://www.xcitestudios.com/blog/2010/02/21/photo-of-ant-holding-500-times-its-own-bodyweight/#comments</comments>
		<pubDate>Sun, 21 Feb 2010 09:47:18 +0000</pubDate>
		<dc:creator>Wade</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Science]]></category>

		<guid isPermaLink="false">http://www.xcitestudios.com/blog/?p=442</guid>
		<description><![CDATA[<p><a href="http://www.xcitestudios.com/blog/wp-content/uploads/2010/02/47340444_008791133-1.jpg#utm_source=feed&#38;utm_medium=feed&#38;utm_campaign=feed"><img class="alignright size-full wp-image-443" title="_47340444_008791133-1" src="http://www.xcitestudios.com/blog/wp-content/uploads/2010/02/47340444_008791133-1.jpg" alt="_47340444_008791133-1" width="226" height="282" /></a>This amazing picture of an ant holding its own bodyweight while upside down was taken by zoology specialist Dr Thomas Endlein of Cambridge  University while researching creatures sticky feet.</p>
<p>This photo snatched the guy £700 in photographic vouchers from the Biotechnology and Biological Sciences Research Council.</p>
<p><a href="http://www.xcitestudios.com/blog/2010/02/21/photo-of-ant-holding-500-times-its-own-bodyweight/#utm_source=feed&#38;utm_medium=feed&#38;utm_campaign=feed" class="more-link">Read more on Photo of Ant Holding 500 times its own Bodyweight&#8230;</a></p>


<p>No related posts.</p>


No related posts.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.xcitestudios.com/blog/wp-content/uploads/2010/02/47340444_008791133-1.jpg#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img class="alignright size-full wp-image-443" title="_47340444_008791133-1" src="http://www.xcitestudios.com/blog/wp-content/uploads/2010/02/47340444_008791133-1.jpg" alt="_47340444_008791133-1" width="226" height="282" /></a>This amazing picture of an ant holding its own bodyweight while upside down was taken by zoology specialist Dr Thomas Endlein of Cambridge  University while researching creatures sticky feet.</p>
<p>This photo snatched the guy £700 in photographic vouchers from the Biotechnology and Biological Sciences Research Council.</p>
<p>His hope is studying the way ants feet self clean and change their size to support varying weights will help develop new adhesives.</p>
<p>&#8220;The pads on ants&#8217; feet are self-cleaning and can stick to almost any  type of surface,&#8221; he said.</p>
<p>&#8220;No man-made glue or adhesive system  can match this. Understanding how animals can control their adhesive  systems should help us come up with clever adhesives in the future.&#8221;</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.xcitestudios.com/blog/2010/02/21/photo-of-ant-holding-500-times-its-own-bodyweight/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find Music by Humming &#8211; it really works! #midomi</title>
		<link>http://www.xcitestudios.com/blog/2010/02/01/find-music-by-humming-it-really-works-midomi/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://www.xcitestudios.com/blog/2010/02/01/find-music-by-humming-it-really-works-midomi/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 21:18:42 +0000</pubDate>
		<dc:creator>Wade</dc:creator>
				<category><![CDATA[Random Stuff]]></category>

		<guid isPermaLink="false">http://www.xcitestudios.com/blog/?p=440</guid>
		<description><![CDATA[<p>We are sitting on the sofa at home at the moment discussing our holiday plans for the year and I got a song in my head that I started humming. Remembering the adverts on TV where you hold your phone up to a speaker and it tells you the song, I thought there must be one that you can hum to and it&#8217;ll find the song. So I did a quick google and found <a href="http://www.midomi.com/" target="_blank">Midomi</a>, I hummed the song (and I can&#8217;t really sing or even hum very well) and sure enough&#8230;it found the exact song, 2 results came back and it was the second! We&#8217;re both amazed by how well it worked.</p>
<p><a href="http://www.xcitestudios.com/blog/2010/02/01/find-music-by-humming-it-really-works-midomi/#utm_source=feed&#38;utm_medium=feed&#38;utm_campaign=feed" class="more-link">Read more on Find Music by Humming &#8211; it really works! #midomi&#8230;</a></p>


<p>No related posts.</p>


No related posts.]]></description>
			<content:encoded><![CDATA[<p>We are sitting on the sofa at home at the moment discussing our holiday plans for the year and I got a song in my head that I started humming. Remembering the adverts on TV where you hold your phone up to a speaker and it tells you the song, I thought there must be one that you can hum to and it&#8217;ll find the song. So I did a quick google and found <a href="http://www.midomi.com/" target="_blank">Midomi</a>, I hummed the song (and I can&#8217;t really sing or even hum very well) and sure enough&#8230;it found the exact song, 2 results came back and it was the second! We&#8217;re both amazed by how well it worked.</p>
<p>So if you get a song stuck in your head and you can hum it, even if you&#8217;re quite bad at humming, give this website a go, chances are you&#8217;ll be amazed.</p>
<p>Incidentally, the song it found (which was even more impressive) was Kaoma &#8211; Lambada, which I&#8217;ve included below.</p>
<p style="text-align: center"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="340" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/6vbn-suFgPY&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="340" src="http://www.youtube.com/v/6vbn-suFgPY&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.xcitestudios.com/blog/2010/02/01/find-music-by-humming-it-really-works-midomi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL and Binary(16) &#8211; The Reasons/Benefits/Drawbacks (#mysql)</title>
		<link>http://www.xcitestudios.com/blog/2010/01/31/mysql-and-binary16-the-reasonsbenefitsdrawbacks-mysql/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://www.xcitestudios.com/blog/2010/01/31/mysql-and-binary16-the-reasonsbenefitsdrawbacks-mysql/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 09:40:25 +0000</pubDate>
		<dc:creator>Wade</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[PHP Conference 2010]]></category>

		<guid isPermaLink="false">http://www.xcitestudios.com/blog/?p=437</guid>
		<description><![CDATA[<p>I recently posted an article about using BINARY(16) for storing MD5&#8217;s as unique identifiers instead of simple integer ID&#8217;s (usually auto increment); in that article I touched on one of the benefits, reducing JOIN&#8217;s, but there are other reasons for doing it too, so I thought I&#8217;d post an article discussing purely the reasons behind using BINARY(16).</p>
<p><a href="http://www.xcitestudios.com/blog/2010/01/31/mysql-and-binary16-the-reasonsbenefitsdrawbacks-mysql/#utm_source=feed&#38;utm_medium=feed&#38;utm_campaign=feed" class="more-link">Read more on MySQL and Binary(16) &#8211; The Reasons/Benefits/Drawbacks (#mysql)&#8230;</a></p>


<p>Related posts:<ol><li><a href='http://www.xcitestudios.com/blog/2010/01/29/mysql-binary16-and-scalability/' rel='bookmark' title='Permanent Link: MySQL &#8211; Binary(16) and scalability'>MySQL &#8211; Binary(16) and scalability</a></li><li><a href='http://www.xcitestudios.com/blog/2010/02/26/phpuk2010-part-2-mysql-stuff/' rel='bookmark' title='Permanent Link: #PHPUK2010 Part 2 (MySQL stuff)'>#PHPUK2010 Part 2 (MySQL stuff)</a></li><li><a href='http://www.xcitestudios.com/blog/2009/09/10/linux-raid-mysql/' rel='bookmark' title='Permanent Link: Linux RAID, MySQL'>Linux RAID, MySQL</a></li></ol></p>


Related posts:<ol><li><a href='http://www.xcitestudios.com/blog/2010/01/29/mysql-binary16-and-scalability/' rel='bookmark' title='Permanent Link: MySQL &#8211; Binary(16) and scalability'>MySQL &#8211; Binary(16) and scalability</a></li><li><a href='http://www.xcitestudios.com/blog/2010/02/26/phpuk2010-part-2-mysql-stuff/' rel='bookmark' title='Permanent Link: #PHPUK2010 Part 2 (MySQL stuff)'>#PHPUK2010 Part 2 (MySQL stuff)</a></li><li><a href='http://www.xcitestudios.com/blog/2009/09/10/linux-raid-mysql/' rel='bookmark' title='Permanent Link: Linux RAID, MySQL'>Linux RAID, MySQL</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>I recently posted an article about using BINARY(16) for storing MD5&#8217;s as unique identifiers instead of simple integer ID&#8217;s (usually auto increment); in that article I touched on one of the benefits, reducing JOIN&#8217;s, but there are other reasons for doing it too, so I thought I&#8217;d post an article discussing purely the reasons behind using BINARY(16).</p>
<p>As I discussed in my previous article, an MD5 string is actually a hexadecimal number capable of storing values as large as 340,282,366,920,938,463,463,374,607,431,768,211,456. MySQL doesn&#8217;t have any efficient integer field for storing numbers this big so you have two choices for storage, a CHAR(32) or a BINARY(16). If you convert a hexadecimal MD5 into a unhexed character string, it will become 16 bytes rather than 32. MySQL handily has a feature built in for this called <a href="http://dev.mysql.com/doc/refman/5.0/en/string-functions.html#function_unhex" target="_blank">UNHEX</a>.</p>
<p>So, why use binary(16) as a unique field for data storage? Databases like MySQL have superb functionality such as JOIN, allowing you to query one table and &#8220;join&#8221; the results of that query to another table. However, when you get to 10&#8217;s, 100&#8217;s or even 1000&#8217;s of millions of rows of data, JOIN&#8217;s become expensive, especially when the join only exists because you need an ID field from one table to query against on another. From tests at work, replacing a JOIN by using a binary(16) unique identifier has seen noticeable improvements to speed, noticeable here being human noticeable, not iterate it a million times and you&#8217;ll see 1.5 as opposed to 1.9 seconds noticeable.</p>
<p>The main benefits include:</p>
<ul>
<li>Fast queries against any table where you know the formula that was used to create the MD5 binary(16) using human-readable English and no integers.</li>
<li>Complete disassociation of relational data values</li>
<li>Ability to use INSERT IGNORE to avoid duplicate data without having to use overly large indexes</li>
<li>More unique values than even a BIGINT.</li>
</ul>
<p>The main drawbacks include:</p>
<ul>
<li>12 bytes more storage for the ID (INT is 4 bytes)</li>
<li>No auto-incrementation</li>
<li>Completely unreadable to humans when the data is in BINARY(16) form.</li>
</ul>
<p>One thing I just mentioned was disassociation of relational data values. What does this mean exactly? Well it means exactly the same as what people do now with MySQL and unique integer ID&#8217;s to be honest! The difference here is you can query against it without those pesky JOIN&#8217;s a lot of the time. For example, say you are storing every town in the UK in a database and how they link together (i.e. if there is a direct route from one to another.) You&#8217;d have a table named towns probably, with a unique ID and the town name. You&#8217;d then have a separate table with 2 columns, both columns would store a town ID which would basically mean &#8220;this town has a direct route to this town.&#8221; If you were to use integers as the town&#8217;s unique ID, every time you wanted to get the town&#8217;s linked to said town, you&#8217;d have to query against the towns table first to get the town ID you want to get links to, then again to get the names of the towns that link to it.<br />
If you were to use a binary(16) representation of the town you could scrap the first join, instead you could query by saying &#8220;get me any towns that link to UNHEX(MD5(&#8217;Town Name&#8217;))&#8221;. You&#8217;d still have to do the second join to get the town names, but you&#8217;ve instantly dropped a JOIN and simplified the whole experience as you can now query more naturally.<br />
Basically, all you&#8217;re doing is replacing any place in your database that is a string that is usually more than 16 characters in length with a binary(16) of it, then storing the strings elsewhere for when you actually need to read the output. This effectively gives you a look-up table that can contain any string whatsoever and a database that stores relationships of strings without requiring special tables and integers for every string.</p>
<p>As a note, a table with 100 million rows of data with two columns &#8211; BINARY(16), TEXT &#8211; to look-up the textual value of a binary(16) string takes 0.0019 seconds for us and having that table of text has meant we&#8217;ve severely de-duped our database as the data we store often is identical, even when the source is completely different. Even if we do a WHERE BINARY(16) IN (list,of,values), the time sticks at 0.0019 up to the maximum test I&#8217;ve done so far which is 100 MD5&#8217;s.</p>


<p>Related posts:<ol><li><a href='http://www.xcitestudios.com/blog/2010/01/29/mysql-binary16-and-scalability/' rel='bookmark' title='Permanent Link: MySQL &#8211; Binary(16) and scalability'>MySQL &#8211; Binary(16) and scalability</a></li><li><a href='http://www.xcitestudios.com/blog/2010/02/26/phpuk2010-part-2-mysql-stuff/' rel='bookmark' title='Permanent Link: #PHPUK2010 Part 2 (MySQL stuff)'>#PHPUK2010 Part 2 (MySQL stuff)</a></li><li><a href='http://www.xcitestudios.com/blog/2009/09/10/linux-raid-mysql/' rel='bookmark' title='Permanent Link: Linux RAID, MySQL'>Linux RAID, MySQL</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.xcitestudios.com/blog/2010/01/31/mysql-and-binary16-the-reasonsbenefitsdrawbacks-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL &#8211; Binary(16) and scalability</title>
		<link>http://www.xcitestudios.com/blog/2010/01/29/mysql-binary16-and-scalability/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://www.xcitestudios.com/blog/2010/01/29/mysql-binary16-and-scalability/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 12:13:04 +0000</pubDate>
		<dc:creator>Wade</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[PHP Conference 2010]]></category>

		<guid isPermaLink="false">http://www.xcitestudios.com/blog/?p=431</guid>
		<description><![CDATA[<p>Over the past few months at work, we&#8217;ve seen our database grown from silly big to really silly big, it&#8217;s still a way to go to get to the size of the big boys such as Facebook etc. but it&#8217;s still a database stored in MySQL that most day-to-day PHP programmers would avoid like a midget cannibal.</p>
<p><a href="http://www.xcitestudios.com/blog/2010/01/29/mysql-binary16-and-scalability/#utm_source=feed&#38;utm_medium=feed&#38;utm_campaign=feed" class="more-link">Read more on MySQL &#8211; Binary(16) and scalability&#8230;</a></p>


<p>Related posts:<ol><li><a href='http://www.xcitestudios.com/blog/2010/01/31/mysql-and-binary16-the-reasonsbenefitsdrawbacks-mysql/' rel='bookmark' title='Permanent Link: MySQL and Binary(16) &#8211; The Reasons/Benefits/Drawbacks (#mysql)'>MySQL and Binary(16) &#8211; The Reasons/Benefits/Drawbacks (#mysql)</a></li><li><a href='http://www.xcitestudios.com/blog/2010/02/26/phpuk2010-part-2-mysql-stuff/' rel='bookmark' title='Permanent Link: #PHPUK2010 Part 2 (MySQL stuff)'>#PHPUK2010 Part 2 (MySQL stuff)</a></li><li><a href='http://www.xcitestudios.com/blog/2009/09/10/linux-raid-mysql/' rel='bookmark' title='Permanent Link: Linux RAID, MySQL'>Linux RAID, MySQL</a></li></ol></p>


Related posts:<ol><li><a href='http://www.xcitestudios.com/blog/2010/01/31/mysql-and-binary16-the-reasonsbenefitsdrawbacks-mysql/' rel='bookmark' title='Permanent Link: MySQL and Binary(16) &#8211; The Reasons/Benefits/Drawbacks (#mysql)'>MySQL and Binary(16) &#8211; The Reasons/Benefits/Drawbacks (#mysql)</a></li><li><a href='http://www.xcitestudios.com/blog/2010/02/26/phpuk2010-part-2-mysql-stuff/' rel='bookmark' title='Permanent Link: #PHPUK2010 Part 2 (MySQL stuff)'>#PHPUK2010 Part 2 (MySQL stuff)</a></li><li><a href='http://www.xcitestudios.com/blog/2009/09/10/linux-raid-mysql/' rel='bookmark' title='Permanent Link: Linux RAID, MySQL'>Linux RAID, MySQL</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>Over the past few months at work, we&#8217;ve seen our database grown from silly big to really silly big, it&#8217;s still a way to go to get to the size of the big boys such as Facebook etc. but it&#8217;s still a database stored in MySQL that most day-to-day PHP programmers would avoid like a midget cannibal.</p>
<p>One of the great things about using something like MySQL (and any other &#8220;real&#8221; database) is the ability to cross-query data, i.e. to grab data from one data-set (table) and join it to another data-set (table) to get a single set of results, either as a combination of the data or the result of an exclusion due to the join. *</p>
<p>However, as tables grow, the time taken to perform queries, particularly in the realm of joins, grows rather quickly. So for example take this query:</p>
<pre>SELECT *
FROM table2
LEFT JOIN table1
    ON table1.columnB = table2.columnA
WHERE table1.columnC = 'John.Doe';</pre>
<p>Let&#8217;s say table1 is a list of all employees in a small business and table2 is a list of their days off, so it&#8217;s a one-to-many relationship. Running the above query to get the days off for person 5 would be pretty quick and most developers would be happy with that, even if the columns weren&#8217;t indexed, the performance of that query (as it&#8217;s a small business &#8211; therefore small dataset) would be more than suitable for any real-world application.</p>
<p>Now imagine a table where rather than a couple of hundred rows, you have millions or (such as ours) billions of rows of data; as for why we have that much data, that&#8217;s for another topic. That join could could result in a rather painful execution time. The problem you&#8217;ve got is, you have to first query table1 to get the ID of user &#8216;John.Doe&#8217; and then use that ID for table2 to get the actual data.</p>
<p>So how can you optimise this? Well you&#8217;ve got three choices, the first would be two queries, one to grab the users ID from table1, then the next to grabs the users data from table2; but that&#8217;s 2 queries now. In a lot of places that wouldn&#8217;t matter, but we want speed here and reduction of hits to MySQL. The second is have the users name in table2 for each day off &#8211; that&#8217;s duplicating data though and because (in this case) you&#8217;d have a string, it&#8217;s not the fastest lookup and creates rather large indexes when people&#8217;s usernames are quite long.</p>
<p>The third option? A unique hash associated with that user. In this case, MD5 the username and store it as binary(16). MD5 is, after all, a 128-bit number basically. Most people are used to seeing it as a 32 character string, e.g. 7ecb9bba8130abe56cfd9a8430ca969c. That is just a hexadecimal number though, albeit a very very big one &#8211; capable of storing the value 340,282,366,920,938,463,463,374,607,431,768,211,456, for those in the UK that&#8217;s 340 <span>sextillion. MySQL Doesn&#8217;t really have a suitable INT type for storing a number that big so it&#8217;s best to either store it as a 32-byte string (hexadecimal MD5) or better yet, as a binary string of 16 characters.</span></p>
<p><span>So how does that change our query now?</span></p>
<pre>SELECT *
FROM table2
WHERE table2.columnA = UNHEX(MD5('John.Doe'));</pre>
<p><span>No more join and only one select. It means you can look up days off for any user simply by knowing the username. MySQL has UNHEX(MD5()) to md5 a string and convert to its binary equivalent. In PHP you&#8217;d use md5(&#8217;string&#8217;, true) or pack(&#8217;H*&#8217;, md5(&#8217;string&#8217;)); </span></p>
<p><span>In all honesty, this isn&#8217;t the best use of binary(16), but it&#8217;s a relatively simple example to follow. For us though, moving away from auto-incrementing ID&#8217;s towards binary hashes has allowed use to do blind inserts (insert ignore) and lightning fast selects where they used to take minutes or even hours. INSERT IGNORE has to be one of the biggest benefits we&#8217;ve seen. By setting the primary key to the BINARY(16) column, you can easily guarantee unique data without wasted extra index space and you only need to query that table when you actually need to data associated with that unique hash, the rest of the time, you can query other tables that relate to that hash without having to do a join.<br />
</span></p>
<p style="font-size: 80%">* I would like to point out I am fully aware of people who store data without a dedicated database and use Map-Reduce due to the sheer size of it, however databases like MySQL allow a quick line of text to get the results you want, there&#8217;s no further effort involved.</p>


<p>Related posts:<ol><li><a href='http://www.xcitestudios.com/blog/2010/01/31/mysql-and-binary16-the-reasonsbenefitsdrawbacks-mysql/' rel='bookmark' title='Permanent Link: MySQL and Binary(16) &#8211; The Reasons/Benefits/Drawbacks (#mysql)'>MySQL and Binary(16) &#8211; The Reasons/Benefits/Drawbacks (#mysql)</a></li><li><a href='http://www.xcitestudios.com/blog/2010/02/26/phpuk2010-part-2-mysql-stuff/' rel='bookmark' title='Permanent Link: #PHPUK2010 Part 2 (MySQL stuff)'>#PHPUK2010 Part 2 (MySQL stuff)</a></li><li><a href='http://www.xcitestudios.com/blog/2009/09/10/linux-raid-mysql/' rel='bookmark' title='Permanent Link: Linux RAID, MySQL'>Linux RAID, MySQL</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.xcitestudios.com/blog/2010/01/29/mysql-binary16-and-scalability/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Avatar is a must see film &#8211; at IMAX in 3D</title>
		<link>http://www.xcitestudios.com/blog/2010/01/13/avatar-is-a-must-see-film-at-imax-in-3d/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://www.xcitestudios.com/blog/2010/01/13/avatar-is-a-must-see-film-at-imax-in-3d/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 18:22:03 +0000</pubDate>
		<dc:creator>Wade</dc:creator>
				<category><![CDATA[Films]]></category>

		<guid isPermaLink="false">http://www.xcitestudios.com/blog/?p=425</guid>
		<description><![CDATA[<p>On Tuesday night we went to see Avatar at the IMAX in Bradford&#8217;s National Museum of Film and Photography. I had semi high expectations for the film but had heard some bad press so how good it would be was left wide open. someone suggested we go to see it at the IMAX as it is vastly better, so that&#8217;s what we did.</p>
<p><a href="http://www.xcitestudios.com/blog/2010/01/13/avatar-is-a-must-see-film-at-imax-in-3d/#utm_source=feed&#38;utm_medium=feed&#38;utm_campaign=feed" class="more-link">Read more on Avatar is a must see film &#8211; at IMAX in 3D&#8230;</a></p>


<p>Related posts:<ol><li><a href='http://www.xcitestudios.com/blog/2009/11/21/9-interesting-film-not-sure-about-it/' rel='bookmark' title='Permanent Link: 9 &#8211; Interesting film &#8211; Not sure about it.'>9 &#8211; Interesting film &#8211; Not sure about it.</a></li><li><a href='http://www.xcitestudios.com/blog/2009/09/07/innoisam-district-9/' rel='bookmark' title='Permanent Link: InnoISAM / District 9'>InnoISAM / District 9</a></li></ol></p>


Related posts:<ol><li><a href='http://www.xcitestudios.com/blog/2009/11/21/9-interesting-film-not-sure-about-it/' rel='bookmark' title='Permanent Link: 9 &#8211; Interesting film &#8211; Not sure about it.'>9 &#8211; Interesting film &#8211; Not sure about it.</a></li><li><a href='http://www.xcitestudios.com/blog/2009/09/07/innoisam-district-9/' rel='bookmark' title='Permanent Link: InnoISAM / District 9'>InnoISAM / District 9</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>On Tuesday night we went to see Avatar at the IMAX in Bradford&#8217;s National Museum of Film and Photography. I had semi high expectations for the film but had heard some bad press so how good it would be was left wide open. someone suggested we go to see it at the IMAX as it is vastly better, so that&#8217;s what we did.</p>
<p><a href="../wp-content/uploads/2010/01/AVATAR_TEASER_05-thumb-460x196.jpg#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img class="size-full wp-image-427  alignright" title="AVATAR_TEASER_05-thumb-460x196" src="http://www.xcitestudios.com/blog/wp-content/uploads/2010/01/AVATAR_TEASER_05-thumb-460x196.jpg" alt="AVATAR_TEASER_05-thumb-460x196" width="301" height="128" /></a>The film was visually incredible, the attention to detail in the 3D work is undoubtedly the best I&#8217;ve seen. Pandora (the moon the Navi live on) is a world I wish I could experience first hand, from the vast luscious green trees to the plants that illuminate when they&#8217;re touched. I find it incredible just how much detail is in the scenery and how difficult it is to realise it is all CG. This is the kind of place I hope awaits us when we finally find a hospitable planet outside of our own.</p>
<p><a href="../wp-content/uploads/2010/01/avatar-8-thumb-460x253.jpg#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img class="size-full wp-image-428 alignleft" title="avatar-8-thumb-460x253" src="http://www.xcitestudios.com/blog/wp-content/uploads/2010/01/avatar-8-thumb-460x253.jpg" alt="avatar-8-thumb-460x253" width="288" height="157" /></a>The Navi themselves are also a work of art, the method used to animate them means they move naturally, down to the slightest movement in the face.  Cameron&#8217;s team sought to go far beyond prior efforts, to ensure the complete reality of the characters. To do this, they developed a new &#8220;image-based facial performance capture&#8221; system, which used a head-rig camera to accurately record the smallest changes in the actors&#8217; faces. Instead of using the motion capture technique of placing reflective markers on the actors&#8217; faces to capture their expressions, the actors wore special headgear, to which a tiny camera was attached. The helmet/camera faced towards the actors&#8217; faces and the camera recorded facial expression and muscle movements to a degree never before possible. Most importantly, the camera recorded eye movement, which had not been the case with prior systems.</p>
<p>Everyone needs to see this film at the cinema, and if you have an IMAX nearby, be sure to see it there.</p>


<p>Related posts:<ol><li><a href='http://www.xcitestudios.com/blog/2009/11/21/9-interesting-film-not-sure-about-it/' rel='bookmark' title='Permanent Link: 9 &#8211; Interesting film &#8211; Not sure about it.'>9 &#8211; Interesting film &#8211; Not sure about it.</a></li><li><a href='http://www.xcitestudios.com/blog/2009/09/07/innoisam-district-9/' rel='bookmark' title='Permanent Link: InnoISAM / District 9'>InnoISAM / District 9</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.xcitestudios.com/blog/2010/01/13/avatar-is-a-must-see-film-at-imax-in-3d/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Federal Court to determine constitutional legality of gay marriage</title>
		<link>http://www.xcitestudios.com/blog/2010/01/12/federal-court-to-determine-constitutional-legality-of-gay-marriage/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://www.xcitestudios.com/blog/2010/01/12/federal-court-to-determine-constitutional-legality-of-gay-marriage/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 07:58:41 +0000</pubDate>
		<dc:creator>Wade</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.xcitestudios.com/blog/?p=422</guid>
		<description><![CDATA[<p>It seems like it&#8217;s taken a long time for someone in the States to get up and do it, but someone seems to finally be ready to stand up in court and challenge the legality of banning same-sex marriage on a nationwide scale. The result of this trial should finally end the confusion the USA has had in it&#8217;s divided states. If it is voted unconstitutional to ban the marriage of two people of the same sex, any state that currently denies it will no longer be able to, effectively ending one of the biggest remaining prejudices in the States; this is, of course, if it is then argued and taken to the Supreme Court for one final showdown. If it&#8217;s voted constitutional, then my partner will be glad he&#8217;s in the UK now and doesn&#8217;t have to deal with a country that thinks it&#8217;s OK to treat people that way.</p>
<p><a href="http://www.xcitestudios.com/blog/2010/01/12/federal-court-to-determine-constitutional-legality-of-gay-marriage/#utm_source=feed&#38;utm_medium=feed&#38;utm_campaign=feed" class="more-link">Read more on Federal Court to determine constitutional legality of gay marriage&#8230;</a></p>


<p>Related posts:<ol><li><a href='http://www.xcitestudios.com/blog/2009/10/02/prisoner-flees-after-asking-guard-way-out/' rel='bookmark' title='Permanent Link: Prisoner flees after asking guard way out'>Prisoner flees after asking guard way out</a></li></ol></p>


Related posts:<ol><li><a href='http://www.xcitestudios.com/blog/2009/10/02/prisoner-flees-after-asking-guard-way-out/' rel='bookmark' title='Permanent Link: Prisoner flees after asking guard way out'>Prisoner flees after asking guard way out</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>It seems like it&#8217;s taken a long time for someone in the States to get up and do it, but someone seems to finally be ready to stand up in court and challenge the legality of banning same-sex marriage on a nationwide scale. The result of this trial should finally end the confusion the USA has had in it&#8217;s divided states. If it is voted unconstitutional to ban the marriage of two people of the same sex, any state that currently denies it will no longer be able to, effectively ending one of the biggest remaining prejudices in the States; this is, of course, if it is then argued and taken to the Supreme Court for one final showdown. If it&#8217;s voted constitutional, then my partner will be glad he&#8217;s in the UK now and doesn&#8217;t have to deal with a country that thinks it&#8217;s OK to treat people that way.</p>
<p>Proceedings opened on Monday with testimony from two plaintiffs in the case, Kristin Perry and Sandra Stier, who wed in California 2004 only to have their union later declared invalid.</p>
<p>Ms Stier said that being allowed to wed her partner would</p>
<blockquote><p>provide me with a sense of inclusion in the social fabric of the society I live in.</p>
<p>I want our children to feel proud of us,&#8221; she told the court. &#8220;I don&#8217;t want them to worry about us.</p></blockquote>
<p>Kristen Perry said:</p>
<blockquote><p>I want it to happen to me. The state isn&#8217;t letting me feel happy.</p></blockquote>
<p>Paul Katami and his partner Jeffrey Zarrillo described slights in gay life that ranged from being pelted with stones and eggs in college to the awkwardness of checking into a hotel and not being able to clarify the relationship.</p>
<blockquote><p>Being able to call him my husband is so definitive,&#8221; Mr Katami said. &#8220;There is no subtlety to it. It is absolute.</p></blockquote>


<p>Related posts:<ol><li><a href='http://www.xcitestudios.com/blog/2009/10/02/prisoner-flees-after-asking-guard-way-out/' rel='bookmark' title='Permanent Link: Prisoner flees after asking guard way out'>Prisoner flees after asking guard way out</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.xcitestudios.com/blog/2010/01/12/federal-court-to-determine-constitutional-legality-of-gay-marriage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Transparent Laptop? Samsung&#8217;s new 14 inch OLED display</title>
		<link>http://www.xcitestudios.com/blog/2010/01/10/transparent-laptop-samsungs-new-14-inch-oled-display/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://www.xcitestudios.com/blog/2010/01/10/transparent-laptop-samsungs-new-14-inch-oled-display/#comments</comments>
		<pubDate>Sun, 10 Jan 2010 11:36:01 +0000</pubDate>
		<dc:creator>Wade</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.xcitestudios.com/blog/?p=418</guid>
		<description><![CDATA[<p>We&#8217;ve all seen the movies where interactive displays are done on transparent glass, well Samsung, using OLED (organic light emitting diodes) have finally created one for us all to gawp over. Details are scarce, but it shows that yet another sci-fi idea is becoming mainstream reality. For now, here&#8217;s a video of the display, courtesy of <a href="http://www.engadget.com/2010/01/07/samsungs-14-inch-transparent-oled-laptop-video/" target="_blank">Engadget</a>.</p>
<p><a href="http://www.xcitestudios.com/blog/2010/01/10/transparent-laptop-samsungs-new-14-inch-oled-display/#utm_source=feed&#38;utm_medium=feed&#38;utm_campaign=feed" class="more-link">Read more on Transparent Laptop? Samsung&#8217;s new 14 inch OLED display&#8230;</a></p>


<p>Related posts:<ol><li><a href='http://www.xcitestudios.com/blog/2009/10/04/high-speed-robot-hand/' rel='bookmark' title='Permanent Link: High Speed Robot Hand'>High Speed Robot Hand</a></li></ol></p>


Related posts:<ol><li><a href='http://www.xcitestudios.com/blog/2009/10/04/high-speed-robot-hand/' rel='bookmark' title='Permanent Link: High Speed Robot Hand'>High Speed Robot Hand</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve all seen the movies where interactive displays are done on transparent glass, well Samsung, using OLED (organic light emitting diodes) have finally created one for us all to gawp over. Details are scarce, but it shows that yet another sci-fi idea is becoming mainstream reality. For now, here&#8217;s a video of the display, courtesy of <a href="http://www.engadget.com/2010/01/07/samsungs-14-inch-transparent-oled-laptop-video/" target="_blank">Engadget</a>.</p>
<p style="text-align: center"><object id="viddler" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="437" height="370" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /><param name="flashvars" value="fake=1" /><param name="src" value="http://www.viddler.com/player/3febfd8b/" /><param name="name" value="viddler" /><param name="allowfullscreen" value="true" /><embed id="viddler" type="application/x-shockwave-flash" width="437" height="370" src="http://www.viddler.com/player/3febfd8b/" name="viddler" flashvars="fake=1" allowfullscreen="true" allowscriptaccess="always"></embed></object></p>


<p>Related posts:<ol><li><a href='http://www.xcitestudios.com/blog/2009/10/04/high-speed-robot-hand/' rel='bookmark' title='Permanent Link: High Speed Robot Hand'>High Speed Robot Hand</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.xcitestudios.com/blog/2010/01/10/transparent-laptop-samsungs-new-14-inch-oled-display/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
