<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Ed Silverton</title>
	<atom:link href="http://edsilverton.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://edsilverton.wordpress.com</link>
	<description></description>
	<lastBuildDate>Fri, 30 Dec 2011 11:42:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='edsilverton.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Ed Silverton</title>
		<link>http://edsilverton.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://edsilverton.wordpress.com/osd.xml" title="Ed Silverton" />
	<atom:link rel='hub' href='http://edsilverton.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Avoiding jqPlot Memory Leaks</title>
		<link>http://edsilverton.wordpress.com/2011/04/11/avoiding-jqplot-memory-leaks/</link>
		<comments>http://edsilverton.wordpress.com/2011/04/11/avoiding-jqplot-memory-leaks/#comments</comments>
		<pubDate>Mon, 11 Apr 2011 18:34:21 +0000</pubDate>
		<dc:creator>edsilverton</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://edsilverton.wordpress.com/?p=165</guid>
		<description><![CDATA[I&#8217;ve run into some problems when re-plotting data in jqPlot where it&#8217;s creating huge memory leaks. To get around this I&#8217;ve put my charts into a container div and when re-plotting I use: $(&#8216;.jqPlot&#8217;).remove(); which clears the charts from memory entirely. I then recreate the chart divs like so: $(&#8216;#plotContainer&#8217;).append(&#8216;&#60;div class=&#8221;jqPlot&#8221;  id=&#8221;targetPlot&#8221; style=&#8221;height:320px; width:600px;&#8221;&#62;&#60;/div&#62;&#8217;); $(&#8216;#plotContainer&#8217;).append(&#8216;&#60;div [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=edsilverton.wordpress.com&amp;blog=516071&amp;post=165&amp;subd=edsilverton&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve run into some problems when re-plotting data in jqPlot where it&#8217;s creating huge memory leaks.</p>
<p>To get around this I&#8217;ve put my charts into a container div and when re-plotting I use:</p>
<p>$(&#8216;.jqPlot&#8217;).remove();</p>
<p>which clears the charts from memory entirely.</p>
<p>I then recreate the chart divs like so:</p>
<p>$(&#8216;#plotContainer&#8217;).append(&#8216;&lt;div class=&#8221;jqPlot&#8221;  id=&#8221;targetPlot&#8221; style=&#8221;height:320px; width:600px;&#8221;&gt;&lt;/div&gt;&#8217;);<br />
$(&#8216;#plotContainer&#8217;).append(&#8216;&lt;div class=&#8221;jqPlot&#8221;  id=&#8221;controllerPlot&#8221; style=&#8221;margin-top: 30px; height:100px; width:600px;&#8221;&gt;&lt;/div&gt;&#8217;);</p>
<p>and re-initialize the  plots with their new data:</p>
<p>targetPlot = $.jqplot(&#8216;targetPlot&#8217;, [data],  {</p>
<p>Seems to do the trick <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/edsilverton.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/edsilverton.wordpress.com/165/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/edsilverton.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/edsilverton.wordpress.com/165/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/edsilverton.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/edsilverton.wordpress.com/165/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/edsilverton.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/edsilverton.wordpress.com/165/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/edsilverton.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/edsilverton.wordpress.com/165/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/edsilverton.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/edsilverton.wordpress.com/165/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/edsilverton.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/edsilverton.wordpress.com/165/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=edsilverton.wordpress.com&amp;blog=516071&amp;post=165&amp;subd=edsilverton&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://edsilverton.wordpress.com/2011/04/11/avoiding-jqplot-memory-leaks/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">edsilverton</media:title>
		</media:content>
	</item>
		<item>
		<title>How to make a repeating button with delay in jQuery</title>
		<link>http://edsilverton.wordpress.com/2011/04/11/how-to-make-a-repeating-button-with-delay-in-jquery/</link>
		<comments>http://edsilverton.wordpress.com/2011/04/11/how-to-make-a-repeating-button-with-delay-in-jquery/#comments</comments>
		<pubDate>Mon, 11 Apr 2011 14:52:09 +0000</pubDate>
		<dc:creator>edsilverton</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://edsilverton.wordpress.com/?p=159</guid>
		<description><![CDATA[I couldn&#8217;t find an example of exactly what I wanted so I&#8217;ve made a simple jQuery plugin that turns a regular &#60;button&#62; into a repeat button. http://jsfiddle.net/edsilv/xKm9K/ The key element being that you can specify how long to wait before repeating the specified action. Therefore allowing discrete clicks as well as click and hold behaviour.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=edsilverton.wordpress.com&amp;blog=516071&amp;post=159&amp;subd=edsilverton&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I couldn&#8217;t find an example of exactly what I wanted so I&#8217;ve made a simple jQuery plugin that turns a regular &lt;button&gt; into a repeat button.</p>
<p><a href="http://jsfiddle.net/edsilv/xKm9K/">http://jsfiddle.net/edsilv/xKm9K/</a></p>
<p><a href="http://jsfiddle.net/edsilv/xKm9K/"> </a></p>
<p><a href="http://jsfiddle.net/edsilv/xKm9K/"></a>The key element being that you can specify how long to wait before repeating the specified action. Therefore allowing discrete clicks as well as click and hold behaviour.</p>
<p> <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/edsilverton.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/edsilverton.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/edsilverton.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/edsilverton.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/edsilverton.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/edsilverton.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/edsilverton.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/edsilverton.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/edsilverton.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/edsilverton.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/edsilverton.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/edsilverton.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/edsilverton.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/edsilverton.wordpress.com/159/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=edsilverton.wordpress.com&amp;blog=516071&amp;post=159&amp;subd=edsilverton&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://edsilverton.wordpress.com/2011/04/11/how-to-make-a-repeating-button-with-delay-in-jquery/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">edsilverton</media:title>
		</media:content>
	</item>
		<item>
		<title>Making Facebook controls with KnockoutJS (Part 2)</title>
		<link>http://edsilverton.wordpress.com/2011/02/28/making-facebook-controls-with-knockoutjs-part-2/</link>
		<comments>http://edsilverton.wordpress.com/2011/02/28/making-facebook-controls-with-knockoutjs-part-2/#comments</comments>
		<pubDate>Mon, 28 Feb 2011 11:04:41 +0000</pubDate>
		<dc:creator>edsilverton</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[KnockoutJS]]></category>

		<guid isPermaLink="false">http://edsilverton.wordpress.com/?p=153</guid>
		<description><![CDATA[I&#8217;ve been working more on making a componentised Facebook control with KnockoutJS. Whilst creating a control that could load and render wall posts was pretty straight-forward, enabling paging of that data proved more difficult! After a bit of q&#38;a on the KnockoutJS Google Group I arrived at this: http://jsfiddle.net/edsilv/jQJ6y/<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=edsilverton.wordpress.com&amp;blog=516071&amp;post=153&amp;subd=edsilverton&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been working more on making a componentised Facebook control with <a href="http://knockoutjs.com">KnockoutJS</a>.</p>
<p>Whilst creating a control that could load and render wall posts was pretty straight-forward, enabling paging of that data proved more difficult!</p>
<p>After a bit of <a href="http://groups.google.com/group/knockoutjs/browse_thread/thread/6d13e0558ae39dbf">q&amp;a</a> on the KnockoutJS Google Group I arrived at this:</p>
<p><a href="http://jsfiddle.net/edsilv/jQJ6y/" target="_blank">http://jsfiddle.net/edsilv/jQJ6y/</a></p>
<p><a href="http://jsfiddle.net/edsilv/jQJ6y/" target="_blank"> </a></p>
<p><a href="http://jsfiddle.net/edsilv/jQJ6y/" target="_blank"></a> <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/edsilverton.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/edsilverton.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/edsilverton.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/edsilverton.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/edsilverton.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/edsilverton.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/edsilverton.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/edsilverton.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/edsilverton.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/edsilverton.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/edsilverton.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/edsilverton.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/edsilverton.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/edsilverton.wordpress.com/153/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=edsilverton.wordpress.com&amp;blog=516071&amp;post=153&amp;subd=edsilverton&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://edsilverton.wordpress.com/2011/02/28/making-facebook-controls-with-knockoutjs-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">edsilverton</media:title>
		</media:content>
	</item>
		<item>
		<title>Thoughts on Tron Legacy and 3D Cinema</title>
		<link>http://edsilverton.wordpress.com/2011/01/25/thoughts-on-tron-legacy-and-3d-cinema/</link>
		<comments>http://edsilverton.wordpress.com/2011/01/25/thoughts-on-tron-legacy-and-3d-cinema/#comments</comments>
		<pubDate>Tue, 25 Jan 2011 12:37:35 +0000</pubDate>
		<dc:creator>edsilverton</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://edsilverton.wordpress.com/?p=127</guid>
		<description><![CDATA[I went to see Tron Legacy at the London IMAX on Saturday. My expectations were that like Avatar I&#8217;d experience a technically impressive spectacle that would ultimately leave me cold. Suffice to say it lived up to those (rather predictable) expectations, but it also made me think about the nature of 3D cinema as a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=edsilverton.wordpress.com&amp;blog=516071&amp;post=127&amp;subd=edsilverton&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://edsilverton.files.wordpress.com/2011/01/tron1.jpg"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border:0;" title="tron" src="http://edsilverton.files.wordpress.com/2011/01/tron_thumb.jpg?w=486&#038;h=202" border="0" alt="tron" width="486" height="202" /></a></p>
<p>I went to see Tron Legacy at the London IMAX on Saturday. My expectations were that like Avatar I&#8217;d experience a technically impressive spectacle that would ultimately leave me cold. Suffice to say it lived up to those (rather predictable) expectations, but it also made me think about the nature of 3D cinema as a whole.</p>
<p>I had a feeling that my sense of detachment was being caused by something more than the unfortunately thin plot/characters. It was something about the nature of 3D cinema itself.</p>
<p>I&#8217;ve heard that people sometimes get headaches when watching 3D movies.  I didn&#8217;t experience that, but it did somehow feel like watching it was more &#8220;work&#8221; than usual. I think I was struggling to accept the 3D world as &#8220;reality&#8221;. My brain was simultaneously accepting and rejecting the images it was receiving. I couldn&#8217;t completely &#8220;let go&#8221; as I would normally and enter a passive suspension of disbelief. Normally when watching a 2D movie the screen itself is part of the 3D reality of the cinema and crowd. With Tron it was like there were two 3D realities competing against each other.</p>
<p>In the 3D virtual simulation of our everyday lives that we like to call &#8220;reality&#8221; we get a continuous uninterrupted (except for sleep) stream of 3D from a single viewpoint (our eyes). Our brains are adapted to deal with this input and explain it to our conscious mind as a nice continuous story. However, a 3D movie consists of many different camera viewpoints which are constantly changing, &#8220;teleporting&#8221; us around the film set in a way that is completely at odds with our hard-coded model of reality. If you were playing a computer game like Quake and ran onto a teleporter pad you would expect to appear somewhere else and are mentally prepared for it. If you were to be randomly teleported around the game level without warning it would be disorientating.</p>
<p>This is what I think was going on when watching Tron. I think if somehow I was aware that I was about to be &#8220;teleported&#8221; it would cushion the experience psychologically. Also, if the 3D visuals were to the exclusion of everything else in the outside world like those old fashioned clunky VR headsets I may not have felt like the two worlds were competing for my brain&#8217;s storytelling cycles.</p>
<p>In conclusion; I don&#8217;t think 3D works in the cinema but I do think it could work well in games. I think the viewer or perhaps more aptly &#8220;user&#8221; needs to be fully engaged in the experience in order to accept it as their new reality. Maybe we can look forward to being Jeff Bridges in a superior VR incarnation of Tron in cycles to come.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/edsilverton.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/edsilverton.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/edsilverton.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/edsilverton.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/edsilverton.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/edsilverton.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/edsilverton.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/edsilverton.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/edsilverton.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/edsilverton.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/edsilverton.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/edsilverton.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/edsilverton.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/edsilverton.wordpress.com/127/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=edsilverton.wordpress.com&amp;blog=516071&amp;post=127&amp;subd=edsilverton&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://edsilverton.wordpress.com/2011/01/25/thoughts-on-tron-legacy-and-3d-cinema/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">edsilverton</media:title>
		</media:content>

		<media:content url="http://edsilverton.files.wordpress.com/2011/01/tron_thumb.jpg" medium="image">
			<media:title type="html">tron</media:title>
		</media:content>
	</item>
		<item>
		<title>Making Facebook controls with KnockoutJS</title>
		<link>http://edsilverton.wordpress.com/2011/01/14/making-facebook-controls-with-knockoutjs/</link>
		<comments>http://edsilverton.wordpress.com/2011/01/14/making-facebook-controls-with-knockoutjs/#comments</comments>
		<pubDate>Fri, 14 Jan 2011 14:09:51 +0000</pubDate>
		<dc:creator>edsilverton</dc:creator>
				<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[KnockoutJS]]></category>

		<guid isPermaLink="false">http://edsilverton.wordpress.com/?p=107</guid>
		<description><![CDATA[I recently discovered KnockoutJS which is a JavaScript library that purports to &#8220;Simplify dynamic JavaScript UIs by applying the Model-View-ViewModel (MVVM) pattern&#8221;. This was interesting for me because I had experience of using the MVVM pattern in Silverlight apps and found it to be a good way to maintain separation of concerns. A problem I’d [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=edsilverton.wordpress.com&amp;blog=516071&amp;post=107&amp;subd=edsilverton&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I recently discovered <a href="http://knockoutjs.com" target="_blank">KnockoutJS</a> which is a JavaScript library that purports to &#8220;Simplify dynamic JavaScript UIs by applying the Model-View-ViewModel (MVVM) pattern&#8221;. This was interesting for me because I had experience of using the MVVM pattern in Silverlight apps and found it to be a good way to maintain separation of concerns.</p>
<p>A problem I’d been running into with JavaScript projects was that while being a huge fan of jQuery, it didn’t solve the problem of maintaining a clean logical separation of concerns. I’d tried coming up with my own home-baked (and admittedly relatively half-baked) solutions for this, but KnockoutJS seemed to be the answer I was waiting for.</p>
<p>I thought a good test for it would be to create two proof of concept “controls” (I’ll call them that but I essentially mean reusable encapsulated Html/JS files). The first would be a login control for logging in to Facebook, the second a simple feed control to display the contents of your wall. Both would make use of the <a href="http://developers.facebook.com/docs/reference/api/" target="_blank">Facebook Graph API</a>.</p>
<p>To cut a long story short, here’s the Html page I ended up with to host these simple controls:</p>
<p><pre class="brush: xml;">
&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; xmlns:fb=&quot;http://www.facebook.com/2008/fbml&quot;&gt;
  &lt;head&gt;
    &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=utf-8&quot;/&gt;
      &lt;title&gt;&lt;/title&gt;
      &lt;script type=&quot;text/javascript&quot; src=&quot;js/jquery-1.4.2.min.js&quot;&gt;&lt;/script&gt;
      &lt;script type=&quot;text/javascript&quot; src=&quot;js/jquery.tmpl.js&quot;&gt;&lt;/script&gt;
      &lt;script type=&quot;text/javascript&quot; src=&quot;js/knockout-1.1.2.js&quot;&gt;&lt;/script&gt;
      &lt;script type=&quot;text/javascript&quot; src=&quot;js/knockout.mapping.js&quot;&gt;&lt;/script&gt;
  &lt;/head&gt;
  &lt;body&gt;
    &lt;div id=&quot;fb-root&quot;&gt;&lt;/div&gt;
    &lt;script type=&quot;text/javascript&quot; src=&quot;http://connect.facebook.net/en_US/all.js&quot;&gt;&lt;/script&gt;
    &lt;script type=&quot;text/javascript&quot; src=&quot;js/config.js&quot;&gt;&lt;/script&gt;
    &lt;script type=&quot;text/javascript&quot; src=&quot;js/knockout.fbLoginControl.js&quot;&gt;&lt;/script&gt;
    &lt;script type=&quot;text/javascript&quot; src=&quot;js/knockout.fbFeedControl.js&quot;&gt;&lt;/script&gt;

    &lt;div id=&quot;fbLoginControl&quot; data-bind=&quot;fbLoginControl: fbLoginControlViewModel&quot;&gt;&lt;/div&gt;
    &lt;div id=&quot;fbFeedControl&quot; data-bind=&quot;fbFeedControl: fbFeedControlViewModel&quot;&gt;&lt;/div&gt;
  &lt;/body&gt;
&lt;/html&gt;
</pre></p>
<p>As you can see there are a few JS scripts and a couple of divs. I was pretty happy with how minimal this was, but I’m sure there are many ways to reduce it even more.</p>
<p>I’ve wrapped all of this into a zip that you can <a href="https://cid-5f8a4662a2d170e4.office.live.com/self.aspx/Knockout/Knockout%5E_Facebook.zip" target="_blank"><strong>download here</strong></a>. I’ve included the JS libraries instead of linking to the relevant CDN-hosted files because perhaps the hardest aspect of this experiment was getting the correct combination of script versions.</p>
<p>For it to work you need to open js/config.js and enter your Graph API key. You also need to make sure that the Web Site/Site Url property of your Facebook app is correctly set. Make sure you remember to include a trailing &#8220;/&#8221; at the end of the Url.</p>
<p>Rather than write a lengthy explanation of how it all works I’ll rely on your own powers of deduction as it’s not rocket science. And anyway, the <a href="http://knockoutjs.com/documentation/introduction.html" target="_blank">documentation</a> on the KnockoutJS site is exemplary. Please feel free to ask questions in the comments. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>One caveat: It works great in Chrome, Firefox and IE6, but there’s something going wrong in IE9 Beta.</p>
<p><a href="https://cid-5f8a4662a2d170e4.office.live.com/self.aspx/Knockout/Knockout%5E_Facebook.zip" target="_blank"><strong>download zip</strong></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/edsilverton.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/edsilverton.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/edsilverton.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/edsilverton.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/edsilverton.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/edsilverton.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/edsilverton.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/edsilverton.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/edsilverton.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/edsilverton.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/edsilverton.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/edsilverton.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/edsilverton.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/edsilverton.wordpress.com/107/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=edsilverton.wordpress.com&amp;blog=516071&amp;post=107&amp;subd=edsilverton&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://edsilverton.wordpress.com/2011/01/14/making-facebook-controls-with-knockoutjs/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">edsilverton</media:title>
		</media:content>
	</item>
		<item>
		<title>Walkies for Neuroses</title>
		<link>http://edsilverton.wordpress.com/2010/11/03/walkies-for-neuroses/</link>
		<comments>http://edsilverton.wordpress.com/2010/11/03/walkies-for-neuroses/#comments</comments>
		<pubDate>Wed, 03 Nov 2010 11:44:31 +0000</pubDate>
		<dc:creator>edsilverton</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://edsilverton.wordpress.com/2010/11/03/walkies-for-psychoses/</guid>
		<description><![CDATA[Perpetually ineffectual individuals have a schedule of appearing more exceptional by waxing intellectual. Predictably despicable, a term I find applicable, Concerning matters of the heart, or otherwise political. Oh Brighton girl it is your lot, to scour sales of fading frocks, And itemise into the stock, of your online vintage clothing shop. Cancer teats and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=edsilverton.wordpress.com&amp;blog=516071&amp;post=104&amp;subd=edsilverton&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Perpetually ineffectual individuals have a schedule of appearing more exceptional by waxing intellectual.</p>
<p></p>
<p>Predictably despicable, a term I find applicable,<br />
Concerning matters of the heart, or otherwise political.</p>
<p></p>
<p>Oh Brighton girl it is your lot, to scour sales of fading frocks,<br />
And itemise into the stock, of your online vintage clothing shop.</p>
<p></p>
<p>Cancer teats and disco sweets and fizzy drinks for all.<br />
Lets suck and sniff and drop and drink until we&#8217;re all consoled.<br />
I long to be a child again, love unconditional.<br />
Cancer teats and disco sweets and fizzy drinks for all.</p>
<p></p>
<p>You don&#8217;t smell well.<br />
I&#8217;m being so unfeeling as to tell you that I&#8217;m reeling<br />
Whenever scents so unappealing are expelled.</p>
<p></p>
<p>You don&#8217;t smell well.<br />
Perhaps a change of diet, such as eating, have you tried it?<br />
Or staying off the ciggies for a spell.</p>
<p></p>
<p>You don&#8217;t smell well.<br />
Trying to apply some kind of masking floral find<br />
Will only serve to emphasise the trace of stale.</p>
<p></p>
<p>You don&#8217;t smell well.<br />
Accept these words as kindness and for both our sakes consign yourself<br />
To a lifestyle more congruent with your health.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/edsilverton.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/edsilverton.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/edsilverton.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/edsilverton.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/edsilverton.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/edsilverton.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/edsilverton.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/edsilverton.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/edsilverton.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/edsilverton.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/edsilverton.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/edsilverton.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/edsilverton.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/edsilverton.wordpress.com/104/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=edsilverton.wordpress.com&amp;blog=516071&amp;post=104&amp;subd=edsilverton&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://edsilverton.wordpress.com/2010/11/03/walkies-for-neuroses/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">edsilverton</media:title>
		</media:content>
	</item>
		<item>
		<title>My thoughts on Brian Eno&#8217;s 77 Million Paintings at Fabrica</title>
		<link>http://edsilverton.wordpress.com/2010/05/04/my-thoughts-on-enos-77-million-paintings-fabricagallery/</link>
		<comments>http://edsilverton.wordpress.com/2010/05/04/my-thoughts-on-enos-77-million-paintings-fabricagallery/#comments</comments>
		<pubDate>Tue, 04 May 2010 14:00:27 +0000</pubDate>
		<dc:creator>edsilverton</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://edsilverton.wordpress.com/2010/05/04/my-thoughts-on-enos-77-million-paintings-fabricagallery/</guid>
		<description><![CDATA[This is (shamefully) the first time I’ve been to the Fabrica Gallery in Brighton. Eno’s name clearly provoked sufficient curiosity to finally lure me in. I went with my good friend Jake Spicer. We entered into a dark and, characteristically for Eno, ambient-sounding room with what looked like a large digital stained glass window at [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=edsilverton.wordpress.com&amp;blog=516071&amp;post=81&amp;subd=edsilverton&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.brightonfestival.org/DomeImages/events/77MillionPaintings.jpg" alt="77 Million Paintings" /></p>
<p>This is (shamefully) the first time I’ve been to the <a href="http://fabrica.org.uk/">Fabrica Gallery</a> in Brighton. Eno’s name clearly provoked sufficient curiosity to finally lure me in.</p>
<p>I went with my good friend <a href="http://www.jakespicerart.co.uk/">Jake Spicer</a>. We entered into a dark and, characteristically for Eno, ambient-sounding room with what looked like a large digital stained glass window at the end. Fabrica commission installations specific to the space (a Regency church), so the window looked as if it belonged there.</p>
<p>Being the first in we had plenty of space and a sofa to sit on and look at this window. There was no question that we preferred to sit than stand, although we didn’t reflect on why at the time. Perhaps it’s the digital nature of the artwork that put us in a slouchy computer game state of mind. Or perhaps we sat just because we could.</p>
<p>I’m a gamer, and a particular fan of the <a href="http://en.wikipedia.org/wiki/Half-Life_(video_game)">Half Life series</a>. After sitting for a while and chatting with Jake about what we thought about it I started to get a vague sense of finding it mildly unnerving. I mentioned this to Jake and soon realised why.</p>
<p>There’s this large “window”, presumably composed of multiple LCD screens arranged in a symmetrical pattern. The portal to Brian Eno’s mind perhaps?</p>
<p>Situated beneath it and to the left is a diamond-shaped box on a post emitting a light that gradually and almost imperceptibly changes colour. It looked very much to me like the “guardian of the portal”.</p>
<p>This sense is amplified by the two conic piles of dust/gravel in front of it. These are situated just within the area that the wooden floor of the gallery ends and the stone floored bounds of the artwork begin.</p>
<p>My gamer “spidey sense” was tingling that if I set foot inside that “forbidden zone” (perhaps to try and enter the mind of Brian Eno) the relaxing ambient music would become a piercing alarm. The diamond-shaped guardian would then swivel to face me and zap me into a third pile of dust.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/edsilverton.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/edsilverton.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/edsilverton.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/edsilverton.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/edsilverton.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/edsilverton.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/edsilverton.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/edsilverton.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/edsilverton.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/edsilverton.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/edsilverton.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/edsilverton.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/edsilverton.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/edsilverton.wordpress.com/81/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=edsilverton.wordpress.com&amp;blog=516071&amp;post=81&amp;subd=edsilverton&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://edsilverton.wordpress.com/2010/05/04/my-thoughts-on-enos-77-million-paintings-fabricagallery/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">edsilverton</media:title>
		</media:content>

		<media:content url="http://www.brightonfestival.org/DomeImages/events/77MillionPaintings.jpg" medium="image">
			<media:title type="html">77 Million Paintings</media:title>
		</media:content>
	</item>
		<item>
		<title>Silverlight for Flash Developers talk</title>
		<link>http://edsilverton.wordpress.com/2009/02/18/silverlight-for-flash-developers-talk/</link>
		<comments>http://edsilverton.wordpress.com/2009/02/18/silverlight-for-flash-developers-talk/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 16:51:45 +0000</pubDate>
		<dc:creator>edsilverton</dc:creator>
				<category><![CDATA[Silverlight]]></category>

		<guid isPermaLink="false">http://edsilverton.wordpress.com/?p=63</guid>
		<description><![CDATA[As promised here&#8217;s all the gubbins related to the talk/occult ritual last night: www.unwrong.com/download/Silverlight_for_Flash_Developers.zip The .zip contains the Powerpoint slides, HelloUnderworld Visual Studio Project and OuijaBoard Visual Studio Project. All the links I referred to should be in the Powerpoint slides, but if there&#8217;s anything missing feel free to ask me for it! We&#8217;ve uploaded [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=edsilverton.wordpress.com&amp;blog=516071&amp;post=63&amp;subd=edsilverton&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>As promised here&#8217;s all the gubbins related to the talk/occult ritual last night:</p>
<p><a href="http://www.unwrong.com/download/Silverlight_for_Flash_Developers.zip">www.unwrong.com/download/Silverlight_for_Flash_Developers.zip</a></p>
<p>The .zip contains the Powerpoint slides, HelloUnderworld Visual Studio Project and OuijaBoard Visual Studio Project.</p>
<p>All the links I referred to should be in the Powerpoint slides, but if there&#8217;s anything missing feel free to ask me for it!</p>
<p>We&#8217;ve uploaded some photos to the <a href="http://www.flickr.com/photos/49631395@N00/" target="_blank">Unwrong Flickr profile</a>.</p>
<p><img src="http://farm4.static.flickr.com/3436/3290454168_c4b1036ff0.jpg?v=0" alt="3D Flickr Explorer by you." width="500" height="375" /></p>
<p>We&#8217;ve also uploaded the Ouija Board finale to the <a href="http://www.vimeo.com/user784948" target="_blank">Unwrong Vimeo profile</a>!</p>
<div class='embed-vimeo' style='text-align:center;'><iframe src='http://player.vimeo.com/video/3269088' width='400' height='300' frameborder='0'></iframe></div>
<p>P.s, thank you to <a href="http://richtextformat.co.uk/" target="_blank">Richard Willis</a> (@richtextformat) for inspiring the night&#8217;s occult theme with his imaginative <a href="http://www.flashbrighton.org/wordpress/?p=211" target="_blank">FlashBrighton billing</a>!</p>
<p>Pps, there seems to be a problem with wordpress.com where it&#8217;s not letting me enable comments <img src='http://s0.wp.com/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' />  If you&#8217;d like to comment you can reach me here: http://twitter.com/edsilv</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/edsilverton.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/edsilverton.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/edsilverton.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/edsilverton.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/edsilverton.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/edsilverton.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/edsilverton.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/edsilverton.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/edsilverton.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/edsilverton.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/edsilverton.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/edsilverton.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/edsilverton.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/edsilverton.wordpress.com/63/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=edsilverton.wordpress.com&amp;blog=516071&amp;post=63&amp;subd=edsilverton&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://edsilverton.wordpress.com/2009/02/18/silverlight-for-flash-developers-talk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">edsilverton</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3436/3290454168_c4b1036ff0.jpg?v=0" medium="image">
			<media:title type="html">3D Flickr Explorer by you.</media:title>
		</media:content>
	</item>
		<item>
		<title>Introduction To Silverlight Session @ FlashBrighton</title>
		<link>http://edsilverton.wordpress.com/2009/02/06/introduction-to-silverlight-session-flashbrighton/</link>
		<comments>http://edsilverton.wordpress.com/2009/02/06/introduction-to-silverlight-session-flashbrighton/#comments</comments>
		<pubDate>Fri, 06 Feb 2009 12:06:40 +0000</pubDate>
		<dc:creator>edsilverton</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://edsilverton.wordpress.com/2009/02/06/introduction-to-silverlight-session-flashbrighton/</guid>
		<description><![CDATA[Hello! I&#8217;ve been a bit quiet on the blogging front recently. Lots of exciting things happening at Unwrong towers. Anyway, I thought I&#8217;d mention my upcoming Silverlight talk on Feb 17th for FlashBrighton. I know, &#8220;Silverlight at FlashBrighton&#8221;?! Seats are limited as it&#8217;s being held at the Unwrong office so if you&#8217;re keen you might [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=edsilverton.wordpress.com&amp;blog=516071&amp;post=62&amp;subd=edsilverton&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hello! I&#8217;ve been a bit quiet on the blogging front recently. Lots of exciting things happening at Unwrong towers. Anyway, I thought I&#8217;d mention my upcoming Silverlight talk on Feb 17th for FlashBrighton. I know, &#8220;Silverlight at <em>Flash</em>Brighton&#8221;?! Seats are limited as it&#8217;s being held at the Unwrong office so if you&#8217;re keen you might want to check <a href="http://upcoming.yahoo.com/tag/flashbrighton/" target="_blank">upcoming</a> around Feb 10th ish to RSVP.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/edsilverton.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/edsilverton.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/edsilverton.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/edsilverton.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/edsilverton.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/edsilverton.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/edsilverton.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/edsilverton.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/edsilverton.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/edsilverton.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/edsilverton.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/edsilverton.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/edsilverton.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/edsilverton.wordpress.com/62/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=edsilverton.wordpress.com&amp;blog=516071&amp;post=62&amp;subd=edsilverton&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://edsilverton.wordpress.com/2009/02/06/introduction-to-silverlight-session-flashbrighton/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">edsilverton</media:title>
		</media:content>
	</item>
		<item>
		<title>Strange Attractors</title>
		<link>http://edsilverton.wordpress.com/2008/12/17/strange-attractors/</link>
		<comments>http://edsilverton.wordpress.com/2008/12/17/strange-attractors/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 19:26:02 +0000</pubDate>
		<dc:creator>edsilverton</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://edsilverton.wordpress.com/2008/12/17/strange-attractors/</guid>
		<description><![CDATA[Jon has made a seriously cool strange attractors visualisation tool.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=edsilverton.wordpress.com&amp;blog=516071&amp;post=59&amp;subd=edsilverton&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Jon has made a seriously cool <a href="http://jonathanpace.wordpress.com/2008/12/12/strange-attractors/" target="_blank">strange attractors visualisation tool</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/edsilverton.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/edsilverton.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/edsilverton.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/edsilverton.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/edsilverton.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/edsilverton.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/edsilverton.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/edsilverton.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/edsilverton.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/edsilverton.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/edsilverton.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/edsilverton.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/edsilverton.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/edsilverton.wordpress.com/59/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=edsilverton.wordpress.com&amp;blog=516071&amp;post=59&amp;subd=edsilverton&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://edsilverton.wordpress.com/2008/12/17/strange-attractors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">edsilverton</media:title>
		</media:content>
	</item>
	</channel>
</rss>
