<?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"
	>

<channel>
	<title>Jon Sykes</title>
	<atom:link href="http://jpsykes.com/feed" rel="self" type="application/rss+xml" />
	<link>http://jon.sykes.me</link>
	<description></description>
	<pubDate>Tue, 19 Aug 2008 12:27:24 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Sigur Ros @ MoMA</title>
		<link>http://jon.sykes.me/214/sigur-ros-moma</link>
		<comments>http://jon.sykes.me/214/sigur-ros-moma#comments</comments>
		<pubDate>Tue, 19 Aug 2008 12:26:46 +0000</pubDate>
		<dc:creator>JP</dc:creator>
		
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://jon.sykes.me/?p=214</guid>
		<description><![CDATA[I&#8217;m a bit of a fan of Sigur Rós, I think their music fills a spectrum that I often need filling at 2am whilst working hard, or 9am whilst driving nowhere.  I&#8217;ve also always respected what they say in interviews, they seem to have a genuine  drive to do their thing and do [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m a bit of a fan of <a href="http://www.sigurros.com/">Sigur Rós</a>, I think their music fills a spectrum that I often need filling at 2am whilst working hard, or 9am whilst driving nowhere.  I&#8217;ve also always respected what they say in interviews, they seem to have a genuine  drive to do their thing and do it for the right reasons - which I like.</p>
<p>This is a great video of their performance at MoMa, from <a href="http://news.scene360.com/?p=3029">Scene 360</a>, from <a href="http://current.com/items/89173668_sigur_r_s_moma">Current TV</a>.</p>
<p><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="400" height="400"><param name="movie" value="http://current.com/e/89173668/en_US"></param><param name="wmode" value="transparent"></param><param name="allowfullscreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://current.com/e/89173668/en_US" type="application/x-shockwave-flash"  width="400" height="400" wmode="transparent" allowfullscreen="true" allowscriptaccess="always"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://jon.sykes.me/214/sigur-ros-moma/feed</wfw:commentRss>
		</item>
		<item>
		<title>Lightning</title>
		<link>http://jon.sykes.me/213/lightning</link>
		<comments>http://jon.sykes.me/213/lightning#comments</comments>
		<pubDate>Mon, 18 Aug 2008 19:32:51 +0000</pubDate>
		<dc:creator>JP</dc:creator>
		
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://jon.sykes.me/?p=213</guid>
		<description><![CDATA[I love lightning.  I love thunderstorms.  I always said if I won the lottery, I'd pay a bunch of guys lots of money to allow me to tag along doing storm chasing.

Which is why I love finding stuff like this...]]></description>
			<content:encoded><![CDATA[<p>I love lightning.  I love thunderstorms.  I always said if I won the lottery, I&#8217;d pay a bunch of guys lots of money to allow me to tag along doing storm chasing.</p>
<p>Which is why I love finding stuff like this&#8230;</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/nNitMTtQt2Y&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/nNitMTtQt2Y&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://jon.sykes.me/213/lightning/feed</wfw:commentRss>
		</item>
		<item>
		<title>Unique Array Filter in Dojo</title>
		<link>http://jon.sykes.me/212/unique-array-filter-in-dojo</link>
		<comments>http://jon.sykes.me/212/unique-array-filter-in-dojo#comments</comments>
		<pubDate>Sat, 16 Aug 2008 05:35:15 +0000</pubDate>
		<dc:creator>JP</dc:creator>
		
		<category><![CDATA[Front End Code]]></category>

		<category><![CDATA[array]]></category>

		<category><![CDATA[Dojo]]></category>

		<category><![CDATA[javascript]]></category>

		<category><![CDATA[unique]]></category>

		<guid isPermaLink="false">http://jon.sykes.me/?p=212</guid>
		<description><![CDATA[The problem?  I have an array that contains items, I want them to be unique.  I want to filter out all the ones that are the same.  I want an <a href="http://us.php.net/function.array-unique">array_unique</a> like they have in PHP.]]></description>
			<content:encoded><![CDATA[<p>I was just doing some work that needed some array parsing in JavaScript.  I was surprised that I couldn&#8217;t find anything that seemed relevant in the Dojo source that would allow me to do this.  It&#8217;s one of those rare occasions where I assumed Dojo would have it and it didn&#8217;t, rather than the usual spend hours coding something to find out I could have just done dojo.doAwesomeStuff() 2 hours earlier.</p>
<p>So I set about trying to find a solution.  The problem?  I have an array that contains items, I want them to be unique.  I want to filter out all the ones that are the same.  I want an <a href="http://us.php.net/function.array-unique">array_unique</a> like they have in PHP.</p>
<p>I found an interesting chunk of code over here on a <a href="http://blog.medryx.org/2008/06/22/dojox-grid-plugin-autofilter/">blog post</a> that&#8217;s about a different problem being solved with Dojo.</p>
<p>Amongst all the other stuff was this snippet:</p>
<div class="dean_ch" style="white-space: wrap;">
<ol>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1">cleanFilterValues:<span class="kw2">function</span><span class="br0">&#40;</span>values<span class="br0">&#41;</span> <span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="kw2">var</span> unique = <span class="br0">&#123;</span><span class="br0">&#125;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="co1">//get rid of duplicates</span></div>
</li>
<li class="li2">
<div class="de2">&nbsp; <span class="kw1">return</span> dojo.<span class="me1">filter</span><span class="br0">&#40;</span>values, <span class="kw2">function</span><span class="br0">&#40;</span>value<span class="br0">&#41;</span> <span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; <span class="kw1">if</span> <span class="br0">&#40;</span>!unique<span class="br0">&#91;</span>value<span class="br0">&#93;</span><span class="br0">&#41;</span> <span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; unique<span class="br0">&#91;</span>value<span class="br0">&#93;</span> = <span class="kw2">true</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; <span class="kw1">return</span> <span class="kw2">true</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; <span class="br0">&#125;</span></div>
</li>
<li class="li2">
<div class="de2">&nbsp; &nbsp; <span class="kw1">return</span> <span class="kw2">false</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="br0">&#125;</span><span class="br0">&#41;</span>.<span class="me1">sort</span><span class="br0">&#40;</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#125;</span>,</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
</ol>
</div>
<p>I rather liked the look of it.  It was super simple.  Didn&#8217;t need you to loop through the array twice (once to get tha array value and then once over the whole thing again to see if the value you had matched one already in the array).  Instead You just sort them all into order and go through them one at a time and don&#8217;t return any that are the same as the one before it.</p>
<p>Now of course this won&#8217;t work everywhere.</p>
<p>It won&#8217;t work where you can&#8217;t sort the array for example.</p>
<p>But for what I needed it was perfect.  I figured I&#8217;d share it.</p>
]]></content:encoded>
			<wfw:commentRss>http://jon.sykes.me/212/unique-array-filter-in-dojo/feed</wfw:commentRss>
		</item>
		<item>
		<title>rgb2hsl</title>
		<link>http://jon.sykes.me/211/rgb2hsl</link>
		<comments>http://jon.sykes.me/211/rgb2hsl#comments</comments>
		<pubDate>Thu, 14 Aug 2008 02:54:48 +0000</pubDate>
		<dc:creator>JP</dc:creator>
		
		<category><![CDATA[Back End Code]]></category>

		<guid isPermaLink="false">http://jon.sykes.me/?p=211</guid>
		<description><![CDATA[I just needed somewhere to put this that I won't loose it, it's from the <a href="http://www.php.net/imagecolorsforindex">php.net</a> site, I need a function like this for hexday, for a couple of features I'm working on.]]></description>
			<content:encoded><![CDATA[<p>I just needed somewhere to put this that I won&#8217;t loose it, it&#8217;s from the <a href="http://www.php.net/imagecolorsforindex">php.net</a> site, I need a function like this for hexday, for a couple of features I&#8217;m working on.</p>
<div class="dean_ch" style="white-space: wrap;">
<ol>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="kw2">&lt;?php</span></div>
</li>
<li class="li1">
<div class="de1"><span class="coMULTI">/**</span></div>
</li>
<li class="li1">
<div class="de1"><span class="coMULTI">&nbsp;* Convert RGB colors array into HSL array</span></div>
</li>
<li class="li2">
<div class="de2"><span class="coMULTI">&nbsp;*</span></div>
</li>
<li class="li1">
<div class="de1"><span class="coMULTI">&nbsp;* @param array $ RGB colors set</span></div>
</li>
<li class="li1">
<div class="de1"><span class="coMULTI">&nbsp;* @return array HSL set</span></div>
</li>
<li class="li1">
<div class="de1"><span class="coMULTI">&nbsp;*/</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;<span class="kw2">function</span> rgb2hsl<span class="br0">&#40;</span><span class="re0">$rgb</span><span class="br0">&#41;</span><span class="br0">&#123;</span></div>
</li>
<li class="li2">
<div class="de2">&nbsp; &nbsp;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp;<span class="re0">$clrR</span> = <span class="br0">&#40;</span><span class="re0">$rgb</span><span class="br0">&#91;</span><span class="nu0">0</span><span class="br0">&#93;</span> / <span class="nu0">255</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp;<span class="re0">$clrG</span> = <span class="br0">&#40;</span><span class="re0">$rgb</span><span class="br0">&#91;</span><span class="nu0">1</span><span class="br0">&#93;</span> / <span class="nu0">255</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp;<span class="re0">$clrB</span> = <span class="br0">&#40;</span><span class="re0">$rgb</span><span class="br0">&#91;</span><span class="nu0">2</span><span class="br0">&#93;</span> / <span class="nu0">255</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;</div>
</li>
<li class="li2">
<div class="de2">&nbsp; &nbsp; &nbsp;<span class="re0">$clrMin</span> = <a href="http://www.php.net/min"><span class="kw3">min</span></a><span class="br0">&#40;</span><span class="re0">$clrR</span>, <span class="re0">$clrG</span>, <span class="re0">$clrB</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp;<span class="re0">$clrMax</span> = <a href="http://www.php.net/max"><span class="kw3">max</span></a><span class="br0">&#40;</span><span class="re0">$clrR</span>, <span class="re0">$clrG</span>, <span class="re0">$clrB</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp;<span class="re0">$deltaMax</span> = <span class="re0">$clrMax</span> - <span class="re0">$clrMin</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp;<span class="re0">$L</span> = <span class="br0">&#40;</span><span class="re0">$clrMax</span> + <span class="re0">$clrMin</span><span class="br0">&#41;</span> / <span class="nu0">2</span>;</div>
</li>
<li class="li2">
<div class="de2">&nbsp; &nbsp;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp;<span class="kw1">if</span> <span class="br0">&#40;</span><span class="nu0">0</span> == <span class="re0">$deltaMax</span><span class="br0">&#41;</span><span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span class="re0">$H</span> = <span class="nu0">0</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span class="re0">$S</span> = <span class="nu0">0</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span class="br0">&#125;</span></div>
</li>
<li class="li2">
<div class="de2">&nbsp; &nbsp; <span class="kw1">else</span><span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span class="kw1">if</span> <span class="br0">&#40;</span><span class="nu0">0.5</span> &gt; <span class="re0">$L</span><span class="br0">&#41;</span><span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span class="re0">$S</span> = <span class="re0">$deltaMax</span> / <span class="br0">&#40;</span><span class="re0">$clrMax</span> + <span class="re0">$clrMin</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span class="br0">&#125;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">else</span><span class="br0">&#123;</span></div>
</li>
<li class="li2">
<div class="de2">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span class="re0">$S</span> = <span class="re0">$deltaMax</span> / <span class="br0">&#40;</span><span class="nu0">2</span> - <span class="re0">$clrMax</span> - <span class="re0">$clrMin</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span class="br0">&#125;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span class="re0">$deltaR</span> = <span class="br0">&#40;</span><span class="br0">&#40;</span><span class="br0">&#40;</span><span class="re0">$clrMax</span> - <span class="re0">$clrR</span><span class="br0">&#41;</span> / <span class="nu0">6</span><span class="br0">&#41;</span> + <span class="br0">&#40;</span><span class="re0">$deltaMax</span> / <span class="nu0">2</span><span class="br0">&#41;</span><span class="br0">&#41;</span> / <span class="re0">$deltaMax</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span class="re0">$deltaG</span> = <span class="br0">&#40;</span><span class="br0">&#40;</span><span class="br0">&#40;</span><span class="re0">$clrMax</span> - <span class="re0">$clrG</span><span class="br0">&#41;</span> / <span class="nu0">6</span><span class="br0">&#41;</span> + <span class="br0">&#40;</span><span class="re0">$deltaMax</span> / <span class="nu0">2</span><span class="br0">&#41;</span><span class="br0">&#41;</span> / <span class="re0">$deltaMax</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span class="re0">$deltaB</span> = <span class="br0">&#40;</span><span class="br0">&#40;</span><span class="br0">&#40;</span><span class="re0">$clrMax</span> - <span class="re0">$clrB</span><span class="br0">&#41;</span> / <span class="nu0">6</span><span class="br0">&#41;</span> + <span class="br0">&#40;</span><span class="re0">$deltaMax</span> / <span class="nu0">2</span><span class="br0">&#41;</span><span class="br0">&#41;</span> / <span class="re0">$deltaMax</span>;</div>
</li>
<li class="li2">
<div class="de2">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span class="kw1">if</span> <span class="br0">&#40;</span><span class="re0">$clrR</span> == <span class="re0">$clrMax</span><span class="br0">&#41;</span><span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span class="re0">$H</span> = <span class="re0">$deltaB</span> - <span class="re0">$deltaG</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span class="br0">&#125;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">else</span> <span class="kw1">if</span> <span class="br0">&#40;</span><span class="re0">$clrG</span> == <span class="re0">$clrMax</span><span class="br0">&#41;</span><span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span class="re0">$H</span> = <span class="br0">&#40;</span><span class="nu0">1</span> / <span class="nu0">3</span><span class="br0">&#41;</span> + <span class="re0">$deltaR</span> - <span class="re0">$deltaB</span>;</div>
</li>
<li class="li2">
<div class="de2">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span class="br0">&#125;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">else</span> <span class="kw1">if</span> <span class="br0">&#40;</span><span class="re0">$clrB</span> == <span class="re0">$clrMax</span><span class="br0">&#41;</span><span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span class="re0">$H</span> = <span class="br0">&#40;</span><span class="nu0">2</span> / <span class="nu0">3</span><span class="br0">&#41;</span> + <span class="re0">$deltaG</span> - <span class="re0">$deltaR</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span class="br0">&#125;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span class="kw1">if</span> <span class="br0">&#40;</span><span class="nu0">0</span> &gt; <span class="re0">$H</span><span class="br0">&#41;</span> <span class="re0">$H</span> += <span class="nu0">1</span>;</div>
</li>
<li class="li2">
<div class="de2">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span class="kw1">if</span> <span class="br0">&#40;</span><span class="nu0">1</span> &lt; <span class="re0">$H</span><span class="br0">&#41;</span> <span class="re0">$H</span> -= <span class="nu0">1</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span class="br0">&#125;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp;<span class="kw1">return</span> <a href="http://www.php.net/array"><span class="kw3">array</span></a><span class="br0">&#40;</span><span class="re0">$H</span>, <span class="re0">$S</span>, <span class="re0">$L</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp;<span class="br0">&#125;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="kw2">?&gt;</span></div>
</li>
<li class="li2">
<div class="de2">&nbsp;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
</ol>
</div>
]]></content:encoded>
			<wfw:commentRss>http://jon.sykes.me/211/rgb2hsl/feed</wfw:commentRss>
		</item>
		<item>
		<title>Conversation vs. Speech</title>
		<link>http://jon.sykes.me/208/conversation-vs-speech</link>
		<comments>http://jon.sykes.me/208/conversation-vs-speech#comments</comments>
		<pubDate>Tue, 12 Aug 2008 13:19:42 +0000</pubDate>
		<dc:creator>JP</dc:creator>
		
		<category><![CDATA[Design]]></category>

		<category><![CDATA[Observations]]></category>

		<guid isPermaLink="false">http://jon.sykes.me/?p=208</guid>
		<description><![CDATA[<a href="http://www.subtraction.com/archives/2007/1015_new_york_to_.php">Khoi Vinh</a> via <a href="http://www.formfiftyfive.com/?p=1720">FFF</a>, this is an amazing slide show that I highly recommend anyone in the digital world should read (especially those in the "web design" world).]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.subtraction.com/archives/2007/1015_new_york_to_.php">Khoi Vinh</a> via <a href="http://www.formfiftyfive.com/?p=1720">FFF</a>, this is an amazing slide show that I highly recommend anyone in the digital world should read (especially those in the &#8220;<a href="http://jasonsantamaria.com/articles/explain-yourself">web design</a>&#8221; world).</p>
<p>It contains some very insightful gems&#8230;</p>
<blockquote><p>
&#8220;Digital media is different from print as a speech is different from a conversation&#8221;
</p></blockquote>
<p><img src="http://jon.sykes.me/archive/uploads/2008/08/picture-32.png" alt="" title="Capture 1" style="margin-left: 0" /></p>
<p><img src="http://jon.sykes.me/archive/uploads/2008/08/picture-33.png" alt="" title="Capture" style="margin-left: 0" /></p>
<div style="width:425px;text-align:left" id="__ss_135354"><object style="margin:0px" height="355" width="425"><param name="movie" value="http://static.slideshare.net/swf/ssplayer2.swf?doc=control-annotated-1192480249633401-5"/><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slideshare.net/swf/ssplayer2.swf?doc=control-annotated-1192480249633401-5" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object>
<div style="font-size:11px;font-family:tahoma,arial;height:26px;padding-top:2px;"><a href="http://www.slideshare.net/?src=embed"><img src="http://static.slideshare.net/swf/logo_embd.png" style="border:0px none;margin-bottom:-5px" alt="SlideShare"/></a> | <a href="http://www.slideshare.net/khoiv/control-annotated" title="View this slideshow on SlideShare">View</a> | <a href="http://www.slideshare.net/upload">Upload your own</a></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://jon.sykes.me/208/conversation-vs-speech/feed</wfw:commentRss>
		</item>
		<item>
		<title>All Points West - Some of my videos</title>
		<link>http://jon.sykes.me/207/all-points-west-some-of-my-videos</link>
		<comments>http://jon.sykes.me/207/all-points-west-some-of-my-videos#comments</comments>
		<pubDate>Mon, 11 Aug 2008 01:27:41 +0000</pubDate>
		<dc:creator>JP</dc:creator>
		
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://jon.sykes.me/?p=207</guid>
		<description><![CDATA[I have to say it was all I hoped it would be.  Underworld was great, very tight very precise.  Radiohead was amazing, the lighting show was like nothing I've seen.  (now roll on NIN).]]></description>
			<content:encoded><![CDATA[<p><object type="application/x-shockwave-flash" width="600" height="450" data="http://www.flickr.com/apps/video/stewart.swf?v=55430" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"><param name="flashvars" value="intl_lang=en-us&amp;photo_secret=0c3f2baf7d&amp;photo_id=2749656537"></param><param name="movie" value="http://www.flickr.com/apps/video/stewart.swf?v=55430"></param><param name="bgcolor" value="#000000"></param><param name="allowFullScreen" value="true"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/video/stewart.swf?v=55430" bgcolor="#000000" allowfullscreen="true" flashvars="intl_lang=en-us&amp;photo_secret=0c3f2baf7d&amp;photo_id=2749656537" height="450" width="600"></embed></object></p>
<p>All the big screen stuff was done CCTV style with off angles of all the band, actually made for a very personal feel.</p>
<p><object type="application/x-shockwave-flash" width="600" height="450" data="http://www.flickr.com/apps/video/stewart.swf?v=55430" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"><param name="flashvars" value="intl_lang=en-us&amp;photo_secret=ee2bebca87&amp;photo_id=2749603751"></param><param name="movie" value="http://www.flickr.com/apps/video/stewart.swf?v=55430"></param><param name="bgcolor" value="#000000"></param><param name="allowFullScreen" value="true"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/video/stewart.swf?v=55430" bgcolor="#000000" allowfullscreen="true" flashvars="intl_lang=en-us&amp;photo_secret=ee2bebca87&amp;photo_id=2749603751" height="450" width="600"></embed></object></p>
<p>The vertical Tubes were capable for being lit at varying intensities there full length.  Giving an amazing range of possibilities.</p>
<p><object type="application/x-shockwave-flash" width="600" height="450" data="http://www.flickr.com/apps/video/stewart.swf?v=55430" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"><param name="flashvars" value="intl_lang=en-us&amp;photo_secret=466405bd8b&amp;photo_id=2750461662"></param><param name="movie" value="http://www.flickr.com/apps/video/stewart.swf?v=55430"></param><param name="bgcolor" value="#000000"></param><param name="allowFullScreen" value="true"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/video/stewart.swf?v=55430" bgcolor="#000000" allowfullscreen="true" flashvars="intl_lang=en-us&amp;photo_secret=466405bd8b&amp;photo_id=2750461662" height="450" width="600"></embed></object></p>
<p>One of my favorites&#8230;</p>
<p><object type="application/x-shockwave-flash" width="600" height="450" data="http://www.flickr.com/apps/video/stewart.swf?v=55430" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"><param name="flashvars" value="intl_lang=en-us&amp;photo_secret=0c3f2baf7d&amp;photo_id=2749656537"></param><param name="movie" value="http://www.flickr.com/apps/video/stewart.swf?v=55430"></param><param name="bgcolor" value="#000000"></param><param name="allowFullScreen" value="true"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/video/stewart.swf?v=55430" bgcolor="#000000" allowfullscreen="true" flashvars="intl_lang=en-us&amp;photo_secret=0c3f2baf7d&amp;photo_id=2749656537" height="450" width="600"></embed></object></p>
<p>Green Rain&#8230;</p>
<p><object type="application/x-shockwave-flash" width="600" height="450" data="http://www.flickr.com/apps/video/stewart.swf?v=55430" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"><param name="flashvars" value="intl_lang=en-us&amp;photo_secret=24b2fbabee&amp;photo_id=2749690959"></param><param name="movie" value="http://www.flickr.com/apps/video/stewart.swf?v=55430"></param><param name="bgcolor" value="#000000"></param><param name="allowFullScreen" value="true"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/video/stewart.swf?v=55430" bgcolor="#000000" allowfullscreen="true" flashvars="intl_lang=en-us&amp;photo_secret=24b2fbabee&amp;photo_id=2749690959" height="450" width="600"></embed></object></p>
<p>Rising Purple&#8230;</p>
<p><object type="application/x-shockwave-flash" width="600" height="450" data="http://www.flickr.com/apps/video/stewart.swf?v=55430" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"><param name="flashvars" value="intl_lang=en-us&amp;photo_secret=0ff85cd661&amp;photo_id=2750543050"></param><param name="movie" value="http://www.flickr.com/apps/video/stewart.swf?v=55430"></param><param name="bgcolor" value="#000000"></param><param name="allowFullScreen" value="true"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/video/stewart.swf?v=55430" bgcolor="#000000" allowfullscreen="true" flashvars="intl_lang=en-us&amp;photo_secret=0ff85cd661&amp;photo_id=2750543050" height="450" width="600"></embed></object></p>
<p><object type="application/x-shockwave-flash" width="600" height="450" data="http://www.flickr.com/apps/video/stewart.swf?v=55430" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"><param name="flashvars" value="intl_lang=en-us&amp;photo_secret=4112291aaf&amp;photo_id=2750592056"></param><param name="movie" value="http://www.flickr.com/apps/video/stewart.swf?v=55430"></param><param name="bgcolor" value="#000000"></param><param name="allowFullScreen" value="true"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/video/stewart.swf?v=55430" bgcolor="#000000" allowfullscreen="true" flashvars="intl_lang=en-us&amp;photo_secret=4112291aaf&amp;photo_id=2750592056" height="450" width="600"></embed></object></p>
<p>I have a ton of other <a href="http://flickr.com/photos/sykes/collections/72157606646775980/">videos and photo&#8217;s from Friday on flickr</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://jon.sykes.me/207/all-points-west-some-of-my-videos/feed</wfw:commentRss>
		</item>
		<item>
		<title>All Points West</title>
		<link>http://jon.sykes.me/202/all-points-west</link>
		<comments>http://jon.sykes.me/202/all-points-west#comments</comments>
		<pubDate>Fri, 08 Aug 2008 14:00:41 +0000</pubDate>
		<dc:creator>JP</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jon.sykes.me/?p=202</guid>
		<description><![CDATA[Today I am at All Points West in Liberty State Park, Jersey City, New Jersey.  I am very happy about that.
It&#8217;s been a tough couple of months, lots of hard work, a ton of stress on the family side and we had to cancel our long anticipated trip to Tuscany at the very last [...]]]></description>
			<content:encoded><![CDATA[<p>Today I am at <a href="http://www.apwfestival.com/">All Points West</a> in Liberty State Park, Jersey City, New Jersey.  I am very happy about that.</p>
<p>It&#8217;s been a tough couple of months, lots of hard work, a ton of stress on the family side and we had to cancel our long anticipated trip to Tuscany at the very last minute.  The only upside is that rather than being 3,500 miles away relaxing in rural Italy, I can instead go to All Points West as I had originally hoped.</p>
<p>Sorry tomorrow myself <a href="http://jimbarraud.com/">Jim</a> and Mrs Jim will be heading in by ferry, bright and early, to get spots near the front of the VIP enclosure, hopefully my wife will be joining us later (although I suspect she&#8217;ll never make it there).</p>
<p>I&#8217;m sure I&#8217;ll post pictures and video over the next few days.  I&#8217;m pretty much going for two reasons, to see <a href="http://www.underworldlive.com/">Underworld</a> live (something I&#8217;ve never done) and to see <a href="http://www.radiohead.com/">Radiohead</a> live (something I&#8217;ve never done).</p>
<p>Hopefully my mental pictures of the Manhattan backdrop to the stage are accurate.</p>
<p>To anyone that&#8217;s going over the 3 days, i hope you have a great time, I&#8217;m looking forward to having a large local music event in NJ that hopefully gets bigger and bigger as the years progress.</p>
]]></content:encoded>
			<wfw:commentRss>http://jon.sykes.me/202/all-points-west/feed</wfw:commentRss>
		</item>
		<item>
		<title>It happens to the best of us</title>
		<link>http://jon.sykes.me/203/it-happens-to-the-best-of-us</link>
		<comments>http://jon.sykes.me/203/it-happens-to-the-best-of-us#comments</comments>
		<pubDate>Fri, 08 Aug 2008 03:56:02 +0000</pubDate>
		<dc:creator>JP</dc:creator>
		
		<category><![CDATA[Observations]]></category>

		<category><![CDATA[etail]]></category>

		<guid isPermaLink="false">http://jon.sykes.me/?p=203</guid>
		<description><![CDATA[<a href="http://robotictom.com">Tom</a> over at <a href="http://noturnonred.org/2008/08/05/merchandising-goof-in-the-jcrew-store/">no turn on red</a>, has a great post showing a product that still contains what looks like the default product title and description.  Clearly someone missed something whilst merchandising new products.]]></description>
			<content:encoded><![CDATA[<p><a href="http://robotictom.com">Tom</a> over at <a href="http://noturnonred.org/2008/08/05/merchandising-goof-in-the-jcrew-store/">no turn on red</a>, has a great post showing a product that still contains what looks like the default product title and description.  Clearly someone missed something whilst merchandising new products.</p>
<p><img src="http://jon.sykes.me/archive/uploads/2008/08/picture-30.png" alt="Product Short Desc" title="Product Short Desc" width="449" height="369" class="alignnone size-full wp-image-205" /></p>
<p>It made me curious what else like this was out there.</p>
<p>You can still see search returns for these items and more on <a href="http://www.google.com/search?q=%22Product+Short+Desc+-+Please+update+at+the+product+level%22">google</a> (you can&#8217;t cover up online mistakes anymore).</p>
<p>That search also pulled up a other interesting finds, including.</p>
<p><img src="http://jon.sykes.me/archive/uploads/2008/08/picture-28-300x241.png" alt="" title="picture-28" width="300" height="241" class="alignnone size-medium wp-image-204" /></p>
<p>Who knew J Crew sold <a href="http://www.jcrew.com/AST/Browse/WomenBrowse/Women_Shop_By_Category/jewelry/watches/PRDOVR%7E12285/12285.jsp">$4,500 Gold Rolex&#8217;s</a>, this apparently isn&#8217;t a mistake, they actually do sell these.</p>
]]></content:encoded>
			<wfw:commentRss>http://jon.sykes.me/203/it-happens-to-the-best-of-us/feed</wfw:commentRss>
		</item>
		<item>
		<title>Little Room</title>
		<link>http://jon.sykes.me/201/little-room</link>
		<comments>http://jon.sykes.me/201/little-room#comments</comments>
		<pubDate>Fri, 08 Aug 2008 03:01:27 +0000</pubDate>
		<dc:creator>JP</dc:creator>
		
		<category><![CDATA[Observations]]></category>

		<guid isPermaLink="false">http://jon.sykes.me/?p=201</guid>
		<description><![CDATA[Well you're in your little room, and you're working on something good, but if it's really good, you're gonna need a bigger room, and when you're in the bigger room, you might not know what to do, you might have to think of
how you got started in your little room ]]></description>
			<content:encoded><![CDATA[<p><object width="425" height="349"><param name="movie" value="http://www.youtube.com/v/YlFKxA4N3NM&#038;hl=en&#038;fs=1&#038;rel=0&#038;color1=0x3a3a3a&#038;color2=0x999999&#038;border=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/YlFKxA4N3NM&#038;hl=en&#038;fs=1&#038;rel=0&#038;color1=0x3a3a3a&#038;color2=0x999999&#038;border=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="349"></embed></object></p>
<blockquote><p>
Well you&#8217;re in your little room<br />
and you&#8217;re working on something good<br />
but if it&#8217;s really good<br />
you&#8217;re gonna need a bigger room<br />
and when you&#8217;re in the bigger room<br />
you might not know what to do<br />
you might have to think of<br />
how you got started in your little room
</p></blockquote>
<p>Possibly one of my favorite songs of the last 10 years.  It&#8217;s totally applicable to almost everything in life  when viewed as an analogy.  Yet it&#8217;s also very true and relevant taken on face value.  At work a year or so ago we&#8217;ve moved out of our little room, and I do find myself every now  and then thinking about how we got started sitting in our little room, just to get that feeling back that was good.</p>
]]></content:encoded>
			<wfw:commentRss>http://jon.sykes.me/201/little-room/feed</wfw:commentRss>
		</item>
		<item>
		<title>Olympics Imagery</title>
		<link>http://jon.sykes.me/197/olympics-imagery</link>
		<comments>http://jon.sykes.me/197/olympics-imagery#comments</comments>
		<pubDate>Thu, 07 Aug 2008 18:49:45 +0000</pubDate>
		<dc:creator>JP</dc:creator>
		
		<category><![CDATA[Design]]></category>

		<category><![CDATA[Typography]]></category>

		<guid isPermaLink="false">http://jon.sykes.me/?p=197</guid>
		<description><![CDATA[After seeing a post over at <a href="http://feeds.feedburner.com/~r/Swissmiss/~3/357968910/beijing-olympic.html">swissmiss</a> I decided to go digging for more Olympics imagery.]]></description>
			<content:encoded><![CDATA[<p>After seeing a post over at <a href="http://feeds.feedburner.com/~r/Swissmiss/~3/357968910/beijing-olympic.html">swissmiss</a> I decided to go digging for more Olympics imagery.</p>
<p>The 2008 Olympics site has a whole section on <a href="http://en.beijing2008.cn/spirit/beijing2008/graphic/">graphic standards</a> for the event.</p>
<p>Including the pictograms:</p>
<p><a href="http://en.beijing2008.cn/spirit/beijing2008/graphic/pictograms/"><img src="http://jon.sykes.me/archive/uploads/2008/08/picture-27.png" alt="" title="Olympic Pictograms" width="500" height="251" class="alignnone size-full wp-image-198" /></a></p>
<p>The Official Emblem:</p>
<p><a href='http://en.beijing2008.cn/spirit/beijing2008/graphic/n214070081.shtml'><img src="http://jon.sykes.me/archive/uploads/2008/08/img214070082.jpg" alt="" title="img214070082" width="400" height="305" class="alignnone size-full wp-image-200" /></a></p>
<p>The Mascot:</p>
<p><a href='http://en.beijing2008.cn/spirit/beijing2008/graphic/n214068254.shtml'><img src="http://jon.sykes.me/archive/uploads/2008/08/img214108291.jpg" alt="" title="img214108291" width="500" height="276" class="alignnone size-full wp-image-199" /></a></p>
<p>and the official colors:</p>
<p><a href="http://hexday.com/color/E60000" title="2008 Olympic Color 'Chinese Red' on Hexday" style="display: block; background-color: #E60000 ; width: 95%; border:1px solid black; margin-left: 0; height: 100px; margin-bottom: 10px">Chinese Red</a></p>
<p><a href="http://hexday.com/color/FFB30F" title="2008 Olympic Color 'The Glaze Yellow' on Hexday" style="display: block; background-color: #FFB30F ; width: 95%; border:1px solid black; margin-left: 0; height: 100px; margin-bottom: 10px">The Glaze Yellow</a></p>
<p><a href="http://hexday.com/color/006834" title="2008 Olympic Color 'Chinese Scholar-tree Green' on Hexday" style="display: block; background-color: #006834 ; width: 95%; border:1px solid black; margin-left: 0; height: 100px; margin-bottom: 10px">Chinese Scholar-tree Green</a></p>
<p><a href="http://hexday.com/color/0B3D92" title="2008 Olympic Color 'The Blue-and-White Porcelain Blue' on Hexday" style="display: block; background-color: #0B3D92 ; width: 95%; border:1px solid black; margin-left: 0; height: 100px; margin-bottom: 10px">The Blue-and-White Porcelain Blue</a></p>
<p><a href="http://hexday.com/color/96A09A" title="2008 Olympic Color 'The Great Wall Grey' on Hexday" style="display: block; background-color: #96A09A ; width: 95%; border:1px solid black; margin-left: 0; height: 100px; margin-bottom: 10px">The Great Wall Grey</a></p>
<p><a href="http://hexday.com/color/FFFFFF" title="2008 Olympic Color 'The Jade White' on Hexday" style="display: block; background-color: #FFFFFF ; width: 95%; border:1px solid black; margin-left: 0; height: 100px; margin-bottom: 10px">The Jade White</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jon.sykes.me/197/olympics-imagery/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
