<?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>Vaughan Knight - Blog</title>
	<atom:link href="http://vaughanknight.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://vaughanknight.com</link>
	<description>Technology as Artforms</description>
	<lastBuildDate>Sun, 10 Apr 2011 06:30:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>A Standard HTML5 Standard Standard</title>
		<link>http://vaughanknight.com/2011/03/a-standard-html5-standard-standard/</link>
		<comments>http://vaughanknight.com/2011/03/a-standard-html5-standard-standard/#comments</comments>
		<pubDate>Sat, 26 Mar 2011 23:25:18 +0000</pubDate>
		<dc:creator>Vaughan</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[HTML5]]></category>

		<guid isPermaLink="false">http://vaughanknight.com/?p=196</guid>
		<description><![CDATA[After working on www.wayoutwars.com, and tinkering with other ideas since, my original thoughts on HTML5 increasing the gap between browsers is becoming apparent.&#160; Having the HTML standard is awesome, but until everyone has a standard approach to the standard, we’ll still be making exceptions.&#160; Not everything in this post is HTML5, more HTML and JavaScript [...]]]></description>
			<content:encoded><![CDATA[<p>After working on <a href="http://www.wayoutwars.com">www.wayoutwars.com</a>, and tinkering with other ideas since, my original thoughts on HTML5 increasing the gap between browsers is becoming apparent.&#160; Having the HTML standard is awesome, but until everyone has a standard approach to the standard, we’ll still be making exceptions.&#160; </p>
<p>Not everything in this post is HTML5, more HTML and JavaScript in general, but with HTML becoming an evolving standard it makes it more important for there to be consistency as adoption of HTML features will become increasingly staggered.</p>
<p>The core issue is with interpretation, and/or certification.&#160; Who certifies that a browser is HTML* compliant?&#160; Whether it’s a central body, or an individual tester, they need to ensure there is consistency, but in the scenario of the individual tester, what is the benchmark?&#160; If text is being rendered on the page, what are the metric to measure that it is rendered correctly?&#160;&#160; I’ll take a step back from HTML to explain.&#160; </p>
<p><strong>Bad Jump</strong></p>
<p>If I was to write a specification for a computer game, one of the aspects to be described is controls.&#160; To simplify it for discussions sake ”when a player hits ‘fire’, the character will jump.&#160; Jump duration is a maximum of 2 seconds, to a height of 10 units”.&#160; But how this occurs has many options:&#160; </p>
<ul>
<li>Is there in air control? </li>
<li>Is there hang time at peak or is it a parabolic jump? </li>
<li>Does the character slow down in the air?&#160; </li>
<li>If the character hits a ceiling/wall do they fall immediately or still hang? </li>
<li>… </li>
</ul>
<p>New initiatives in games are benchmarked against all the previous successors.&#160; There is always a parallel.&#160; This is why jump times in all 2D platform games are about the same.&#160; </p>
<p>Coming back to HTML, the standard may be open for interpretation, but just because a new standard is being implemented doesn’t mean that the function of the standard should behave any differently that you would normally expect.&#160; </p>
<p>I’ll start with the basics.</p>
<p><strong>Text Rendering</strong></p>
<p>One of the fundamental things that every browser does and has done since the beginning, is render text.&#160; Visually, this is the primary concern of the browser.&#160; So one would expect that this is something that does not merit discussion.&#160; </p>
<p>As such, I’m not sure how this gets through testing, but take a look at the following in Firefox and in parallel have a look in Chrome and IE9.</p>
<link rel="stylesheet" type="text/css" href="http://vaughanknight.com/css/dejavu.css" /><canvas id="text-example" height="150" width="400"></canvas><script type="text/javascript">
var example = document.getElementById('text-example');
var context = example.getContext('2d');
context.fillStyle = "rgb(0,0,0)";
context.strokeStyle = "rgb(255,255,255)";
context.strokeWidth = 1;
context.fillRect(0, 0, 300, 50);
context.fillStyle = "rgb(255,0,0)";
context.fillRect(0, 50, 300, 50);
context.fillStyle = "rgb(0,0,255)";
context.fillRect(0, 100, 300, 50);
context.fillStyle = "rgb(255,255,255)";
context.font = "10px Arial";
context.fillText("Vertical lines in text iIlL|MNPT", 10, 20);
context.fillText("Vertical lines in text iIlL|MNPT", 10, 70);
context.fillText("Vertical lines in text iIlL|MNPT", 10, 120);
context.beginPath();
context.moveTo(5, 0);
context.lineTo(5, 150);
context.closePath();
context.stroke();
</script>
<p>Chrome just AA’s the entire thing into a blurry mess, but at least it makes sense, if undesirable. IE9 realises it’s rendering text, and does more intelligent text smoothing.</p>
<p>But Firefox’s behaviour be described as a bug.&#160; By default, text should be render with no anti aliasing, and if you have some smoothing it shouldn’t degrade the legibility of the text.&#160; Having to design for another browser, or cater for it in code, is bad.&#160; This just makes everyone design in to keep their designs predictable and maintainable. For those without HTML5, or Firefox, or super sonic zoom eyes, let’s have a closer look at FF’s rendering.</p>
<p>&#160;</p>
<p><a href="http://www.vaughanknight.com/images/My-Browser-Wishlist_72E7/image.png"><img style="background-image: none; border-right-width: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.vaughanknight.com/images/My-Browser-Wishlist_72E7/image_thumb.png" width="244" height="61" /></a></p>
<p>NOTE: You do not need 3D glasses to view the above picture.</p>
<p>Once your eyes stop bleeding, lets look at what is actually being rendered.&#160; Anti aliasing with shades of red, green, and blue?&#160; What is going on here isn’t in the style of Apple IIE monochrome monitors (for those that remember) but actual colours being rendered.&#160; A single vertical line has a line of blue, a line of green, and a line of red.&#160; Did anyone actually test this?&#160; It’s like no one knew how to do text smoothing, so they just put 1 of each colour around the text.</p>
<p>Also notice how the vertical line in IE is doing anti aliasing on the 1 pixel line, making it appear transparent, and in Firefox it decides to make a 2 pixel wide line to avoid the issue altogether.&#160; So while IE9 has good text smoothing, the anti aliasing logic in both browsers is broken and inconsistent.</p>
<p>It also negates the awesomeness of WOFF and the Google font API if you have to use bitmap font templates to have consistency (and even then not 100% reliably).</p>
<p><strong>Media Handling</strong></p>
<p>MP3 vs OGG.&#160; I’ve stated my views on this.&#160; Support OGG if you want, but don’t ignore MP3 if you want to be serious about creating a media rich web.&#160; MP3 is out there, everywhere, and creating a barrier for innovation is dumb.</p>
<p>I won’t start on video codecs, that’s just too much of a mess for now.</p>
<p>Secondly, the extremely poor memory management regarding audio.&#160; In all browsers, eventually media elements hit a limit.&#160; For most sites this isn’t an issue.&#160; But at about 50 megs of audio, IE9 stops loading new audio, even though the previous audio elements were removed.&#160; They had to be ‘delete’ed.&#160; Chrome hit this issue a few tracks later.</p>
<p>When deleted every browser behaves consistently and smoothly, except Chrome, which goes silent for no apparent reason at around 280 megs of audio.</p>
<p>You may ask why on earth would a page have 280 megs of audio?&#160; This isn’t isolated to <a href="http://www.wayoutwars.com">www.wayoutwars.com</a> but is also a problem for audio stores where you can preview sample audio, and online radio such as <a href="http://www.lastfm.com">www.lastfm.com</a> that could be playing gigabytes of tracks.</p>
<p><strong>JavaScript</strong></p>
<p>I’m not talking syntax, but being able to crash a browser in JavaScript doing a standard JavaScript call just isn’t acceptable.&#160; </p>
<p>The line was ‘delete a;’ where a was null.&#160; I was trying to reproduce the error, but in isolation it seems to work.&#160; Why does it crash Chrome but not consistently?&#160; I’m currently assuming it’s to do with Chrome trying to be smart around garbage collection that is not thread safe.&#160; </p>
<p>Never mind whether the syntax used is good form, JavaScript should not crash the browser.&#160; And since it crashes the browser, it doesn’t throw a JavaScript error, and has to be debugged from an external debugger like Visual Studio.</p>
<p><strong>Final Thoughts</strong></p>
<p>My biggest issue is that we’ll end up in a world supporting multiple codecs for audio and video to support different browsers, increasing cost of implementation, and reducing budget for innovation.</p>
<p>It’s not all doom and gloom, but for the discussed issues, and others, I feel that there is no short term win. The LCCD (lowest common common denominator) consistently will be the target platform.</p>
]]></content:encoded>
			<wfw:commentRss>http://vaughanknight.com/2011/03/a-standard-html5-standard-standard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nobody Likes A Space Chicken, Everyone Should Love HTML5</title>
		<link>http://vaughanknight.com/2011/03/nobody-likes-a-space-chicken-everyone-should-love-html5/</link>
		<comments>http://vaughanknight.com/2011/03/nobody-likes-a-space-chicken-everyone-should-love-html5/#comments</comments>
		<pubDate>Tue, 15 Mar 2011 12:43:42 +0000</pubDate>
		<dc:creator>Vaughan</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://vaughanknight.com/2011/03/nobody-likes-a-space-chicken-everyone-should-love-html5/</guid>
		<description><![CDATA[Over the last few weeks at work I have been head down involved with building a fun HTML5 game for EMI titled ‘Way Out Wars’. Way Out Wars is a fun game for casual gamers, and provides the much sought after challenge for veterans of the ‘space chicken music discovery typing shoot ‘em up’ genre.&#160; [...]]]></description>
			<content:encoded><![CDATA[<p>Over the last few weeks at work I have been head down involved with building a fun HTML5 game for EMI titled ‘Way Out Wars’.</p>
<p><a href="http://www.vaughanknight.com/images/Way-Out-WarsNobody-Likes-A-Space-Chicken_13D4B/image.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto; padding-top: 0px" title="image" border="0" alt="image" src="http://www.vaughanknight.com/images/Way-Out-WarsNobody-Likes-A-Space-Chicken_13D4B/image_thumb.png" width="551" height="360" /></a></p>
<p><em>Way Out Wars</em> is a fun game for casual gamers, and provides the much sought after challenge for veterans of the ‘space chicken music discovery typing shoot ‘em up’ genre.&#160; The game was built in pure HTML5, with some heavily modified impactjs as the core engine.&#160; Lots of long hours spent tuning nanoseconds off particle render times.</p>
<p>My best is 75 tracks back to back for around 44 million.&#160;&#160; Go play it at <a href="http://www.wayoutwars.com" target="_blank">http://www.wayoutwars.com</a> … preferably <em>before </em>reading the rest of this post to give insight.</p>
<p>Some things achieved in HTML5 that were pretty cool:</p>
<ul>
<li>Real time usable particle effects engine we had to dumb down because it was just looking too busy (yet awesome).&#160; At one stage we had smoke, jets, trails, explosions, musical notes, and swarms.&#160; Unfortunately you couldn’t see the game. </li>
<li>Infinite playlist – Depending on your browser, since Chrome mysteriously dies </li>
<li>Music discovery that’s fun – Songs you hate, songs you like and songs you don’t know, that you can review and purchase. </li>
</ul>
<p>Some pleasant discoveries:</p>
<ul>
<li>HTML5 rocks.&#160; It’s definitely a platform for the future, however it’s not necessarily the be all and end all.&#160; But the game has no browser dependent coding.&#160; It does however have code that checks for issues that may occur in some browsers, there isn’t any code that goes ‘if IE do this, if FF do that’.&#160; <br />NOTE: This does happen for audio however since Firefox hates MP3. </li>
<li>Impactjs rocks!&#160; In the end we probably didn’t need it as much as we thought, but it did so much heavy lifting in the beginning it allowed us to experiment and play around with ideas.&#160; We simply wouldn’t have had a product as far advanced without it. </li>
<li>HTML5 benchmarks don’t coincide with real world scenarios.&#160; Simply ignore them until real world tests turn up.&#160; Every benchmark I do IE9 doesn’t come out on top, but all of our experience with the game has been IE9 is way out on front, with no IE9 specific tuning in sight.&#160; Someone who is familiar with graphics pipelines who understands the concepts behind draw calls, fill rate etc.&#160; needs to give HTML5 the same treatment. </li>
<li>As such, IE9 rocked, and we were pleasantly surprised. </li>
<li>Opera is amazing, although I’ll probably still never use it.&#160; It came in 2nd performance and stability wise. </li>
<li>Firefox and Safari were stable, however their performance lacked. </li>
<li>Chrome was fast, however it’s stability lacked. </li>
<li>Hardware acceleration rocks.&#160; Browsers without it will die slowly as user experience becomes encumbered by poor performance. </li>
<li>The iPad did load it once, but it got too big for it.&#160; This however is promising for HTML5 moving forward when the processing power of these devices steps up.&#160; </li>
</ul>
<p>Some discoveries that were as fun as being jettisoned into the sun by space chickens:</p>
<ul>
<li>Having lots of &lt;audio&gt; elements on a page can cause issues. Clean them up, delete them, and do everything you can to remove any trace of them. This was common for all browsers, with the impact having different results in each.&#160; But cleaning up the audio elements makes all the browsers behave.&#160; And whilst Chrome will still go silent after about 100 songs, without doing this it will crash after 57.&#160; </li>
<li>Oh, and be careful deleting i.e. ‘delete obj;’ audio objects in Chrome, you can crash the browser and all open Chrome windows will stop working.&#160; I think Chrome tries to do garbage collection on audio elements no longer in use.&#160; A quick check ‘if(obj != null) delete obj;’ tends to be stable. </li>
<li>Any browser that doesn’t support MP3 needs to fix that.&#160; It is a bug, not a feature. If every music site in the world has to re-encode their audio to OGG, they will ignore browsers that require it, or simply be ignorant to it. Firefox needs to wake up.&#160; Media companies are going to be staring at mobile devices, and Firefox is the last thing their IE and Safari based offices will test in. </li>
<li>Firefox 3 is antique, Firefox 4 feels like a classic, that still goes well, but won’t keep up for long. A shame.&#160; This feels like a Firefox bash, but it has just been the reality we’ve been dealing with. </li>
<li>Chromes instability.&#160; Chrome is fast, yet buggy. We discovered a critical error that would happen on the 57th track crashing Chrome. After writing a universal piece of code that wouldn’t crash Chrome, we found that at some point, chrome refuses to play audio, and kills audio across all chrome tabs and windows, with no error message.&#160; This came as a surprise to me, and over the coarse of 3 weeks Chrome has been superseded by IE9 now as my default.&#160; </li>
<li>Safari underperformed.&#160; Of the big names it was the worst performer.&#160; </li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://vaughanknight.com/2011/03/nobody-likes-a-space-chicken-everyone-should-love-html5/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>This Blog Post Best Viewed In Netscape Navigator</title>
		<link>http://vaughanknight.com/2011/02/this-blog-post-best-viewed-in-netscape-navigator/</link>
		<comments>http://vaughanknight.com/2011/02/this-blog-post-best-viewed-in-netscape-navigator/#comments</comments>
		<pubDate>Wed, 02 Feb 2011 02:47:01 +0000</pubDate>
		<dc:creator>Vaughan</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[HTML5]]></category>

		<guid isPermaLink="false">http://vaughanknight.com/2011/02/this-blog-post-best-viewed-in-netscape-navigator/</guid>
		<description><![CDATA[&#60;/2 years not posting&#62; HTML5 is great.&#160; I’m really looking forward to it, but with all it’s standardised extended capabilities comes a new frontier, browser performance.&#160; I’ve been playing around with IE9’s GPU accelerated HTML5 SVG, and performance blows Chrome and Firefox out of the water.&#160; Throw in a few physics engines and play around [...]]]></description>
			<content:encoded><![CDATA[<p>&lt;/2 years not posting&gt;</p>
<p>HTML5 is great.&#160; I’m really looking forward to it, but with all it’s standardised extended capabilities comes a new frontier, browser performance.&#160; </p>
<p>I’ve been playing around with IE9’s GPU accelerated HTML5 SVG, and performance blows Chrome and Firefox out of the water.&#160; Throw in a few physics engines and play around a bit more though, and you start to notice the performance spread shifting dramatically.&#160; Because IE9 is doing all the display calculations in GPU, the choke point is the physics engine, and that choke point is the JavaScript engine, so it generally slows down proportionately to world object calculations (once the world step calculation time exceeds your physics time step delta).&#160; </p>
<p>With Firefox and Chrome, you start to notice massive differences early on.&#160; Chrome starts to slow down, but it flies compared to Firefox, which seems to struggle pushing everything through the physics steps and the graphics rendering at a decent frame rate.&#160; If I was to rate the performance in the ‘Eyeball HTML5 Benchmark TM’ it would be 100, 60, 20 to IE9, Chrome, Firefox.</p>
<p>But this isn’t a browser war rant, this is a rant about the problem this creates on the developer side.</p>
<p>At the moment the main considerations when doing an advanced website are limited.&#160; The questions asked by clients are generally straight forward.</p>
<blockquote><p>Will this run on the PC’s of our users (CPU, resolution etc)?&#160; Will it render correctly in all browsers?</p>
</blockquote>
<p>I’m not talking about a bleeding edge benchmark of performance, but something consumer mass market oriented.&#160; My concern is that with the new era of HTML5 RIA apps emerging, the performance gap in rendering and JavaScript, are we going to re-enter a world of ‘Best Viewed in Netscape Navigator’ ?&#160; WebGL is coming in Chrome and Firefox, but Microsoft has no public announcement it is going to come with IE9.&#160; The underlying engines when they arrive will differ drastically in performance.&#160; SVG, Canvas, WebGL, and HTML rendering performance may vary between browser, CPU, and GPU.&#160; </p>
<p>But even on the day that Chrome, Firefox, and IE have relatively equal performance metrics, with mobile internet usage projected to outgrow desktop internet usage by 2014, the problem gets exponentially complex when catering for mobile devices, tablets, and the rest of the crew.</p>
<p>The cost of development and testing goes through the roof.&#160; Creative designers have been trained to think in terms of Flash / Silverlight and the predictable performance metrics, and development houses without foresight will start pumping out amazing creations that only work under lab conditions.</p>
<p>And while as a geek I will write something to push the GPU in IE9, I don’t see it as a compelling reason to develop bleeding edge clock cycle pushing code until the all browsers are up to speed.&#160; I do see GPU acceleration as a reason to use IE9 so hats off to Microsoft for getting that in there.&#160; I’ve found it much snappier than any of the other browsers at the moment.&#160; But throwing something out there publicly knowing that in FIrefox it will crawl along slowly is not compelling at all.</p>
<p>I’ve been hearing a lot about the future of gaming and apps, and simply put, it’s a long way off for now.&#160; The technology is there, but the industry is not.&#160; While the future may hold some exciting things for HTML5, the short to mid term holds some nice standard ways of doing things that for the past 10 years have been HTML and CSS hacks.&#160; And that’s enough to get excited about for now.</p>
<p>PS – Any other browser I haven’t mentioned above is still relevant for this discussion, and the ‘if everyone just used X’ argument simply reinforces the issue.</p>
<p>PPS – IE9 GPU acceleration can be seen working best with SVG, and not to be mistaken with WebGL.&#160; 3rd party 3D libraries I’ve found just come down to JS execution speed, the rendering is the baby step in those scenarios.</p>
]]></content:encoded>
			<wfw:commentRss>http://vaughanknight.com/2011/02/this-blog-post-best-viewed-in-netscape-navigator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Silverlight 3DSMax Exporter &#8211; Update</title>
		<link>http://vaughanknight.com/2009/04/silverlight-3dsmax-exporter-update/</link>
		<comments>http://vaughanknight.com/2009/04/silverlight-3dsmax-exporter-update/#comments</comments>
		<pubDate>Wed, 15 Apr 2009 00:38:04 +0000</pubDate>
		<dc:creator>Vaughan</dc:creator>
				<category><![CDATA[3D]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[3D Studio]]></category>
		<category><![CDATA[3dsmax]]></category>
		<category><![CDATA[Exporter]]></category>

		<guid isPermaLink="false">http://vaughanknight.com/2009/04/silverlight-3dsmax-exporter-update/</guid>
		<description><![CDATA[The exporter is coming along nicely.&#160; I’m really happy with the results.&#160; So much so that I decided to create a Q*Bert scene.&#160; Click on the image blow for the full sized image. In the image you have 3DSMax in the background with all it’s wireframe goodness.&#160; The render on the right, and as you [...]]]></description>
			<content:encoded><![CDATA[<p>The exporter is coming along nicely.&#160; I’m really happy with the results.&#160; So much so that I decided to create a Q*Bert scene.&#160; Click on the image blow for the full sized image.</p>
<p><a href="http://vaughanknight.com/wp-content/uploads/2009/04/qbert.jpg" target="_blank"><img title="qbert" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="352" alt="qbert" src="http://vaughanknight.com/wp-content/uploads/2009/04/qbert-thumb.jpg" width="575" border="0" /></a> </p>
<p>In the image you have 3DSMax in the background with all it’s wireframe goodness.&#160; The render on the right, and as you can see, the Silverlight output in Firefox on the left.</p>
<p>Features in the short term will be more .NET features, as full scene rotation would give fantastic interactivity, and open up the door for useful Silverlight transitions.&#160; Texture mapping is another one I want to look at, mainly focusing on texture scaling and offset.</p>
]]></content:encoded>
			<wfw:commentRss>http://vaughanknight.com/2009/04/silverlight-3dsmax-exporter-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Silverlight 3DSMax Exporter</title>
		<link>http://vaughanknight.com/2009/04/silverlight-3dsmax-exporter/</link>
		<comments>http://vaughanknight.com/2009/04/silverlight-3dsmax-exporter/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 05:57:54 +0000</pubDate>
		<dc:creator>Vaughan</dc:creator>
				<category><![CDATA[3D]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[3D Studio]]></category>
		<category><![CDATA[3dsmax]]></category>
		<category><![CDATA[XAML]]></category>

		<guid isPermaLink="false">http://vaughanknight.com/2009/04/silverlight-3dsmax-exporter/</guid>
		<description><![CDATA[Silverlight 3 comes with the new shiny Projection and PlaneProjection for perspective 3D effects.&#160; One issue is to create rich 3D environments, you need a good toolset, and although Blend is a great tool, it’s not a 3D authoring environment. Enter 3DSMax.&#160; 3D Studio has an awesome scripting capability in the form of MaxScript.&#160; Writing [...]]]></description>
			<content:encoded><![CDATA[<p>Silverlight 3 comes with the new shiny Projection and PlaneProjection for perspective 3D effects.&#160; One issue is to create rich 3D environments, you need a good toolset, and although Blend is a great tool, it’s not a 3D authoring environment.</p>
<p>Enter 3DSMax.&#160; 3D Studio has an awesome scripting capability in the form of MaxScript.&#160; Writing 3DSMAX exporters is a past time of mine, and having had a conduit to John Wainwright (aka Mr MaxScript) at that time I became very fond of 3DSMax and MaxScript.&#160; But here ends the history lesson.</p>
<p>The main aim of the Silverlight 3D Studio Max exporter is to create a pipeline for 3D authoring, through to Silverlight in browser, and convenient stops in between.&#160; It shouldn’t ignore or outcast Visual Studio or Blend (or Photoshop etc), and should not replace them.&#160; But where as Visual Studio is a coding environment, Blend an awesome behavioural and layout authoring environment, neither are good 3D authoring environments.&#160; The Silveright 3DSMax Exporter hopefully will fill that gap.</p>
<p>So first up, lets take the following image.</p>
<p><img title="blue" style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" height="179" alt="blue" src="http://vaughanknight.com/wp-content/uploads/2009/04/blue-thumb.jpg" width="242" border="0" /> </p>
<p>In the screenshot below I’ve taken the above image, applied it as a textures to planes (rectangles), replicated them helix/spiral paths in various directions, textured, translucent, with a blue environment background.&#160; This process took about 2 minutes.</p>
<p><a href="http://vaughanknight.com/wp-content/uploads/2009/04/3dsmax-and-render1.jpg"><img title="3dsmax_and_render" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="425" alt="3dsmax_and_render" src="http://vaughanknight.com/wp-content/uploads/2009/04/3dsmax-and-render-thumb1.jpg" width="583" border="0" /></a> </p>
<p>You can see in the image above the front perspective wireframe, the render, and an angled perspective view showing the planes along the various paths.</p>
<p>But with a click of a button, this 2 minutes of work gets exported to XAML in a second.&#160; Alt tab to Blend (Visual Studio doesn’t like ImageBrush for some reason) and voila, instant 3D.</p>
<p><a href="http://vaughanknight.com/wp-content/uploads/2009/04/blend1.jpg"><img title="blend" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="419" alt="blend" src="http://vaughanknight.com/wp-content/uploads/2009/04/blend-thumb1.jpg" width="576" border="0" /></a> </p>
<p>Note that the background is actually blue, but Blend doesn’t stretch it to the full view by default.&#160; A quick stop over in Visual Studio and every object is named and available in Intellisense.</p>
<p><a href="http://vaughanknight.com/wp-content/uploads/2009/04/intellisense.jpg"><img title="intellisense" style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" height="482" alt="intellisense" src="http://vaughanknight.com/wp-content/uploads/2009/04/intellisense-thumb.jpg" width="372" border="0" /></a> And the real test, taking it to the the browser.&#160; Firing up Firefox gives us…</p>
<p><a href="http://vaughanknight.com/wp-content/uploads/2009/04/firefox1.jpg"><img title="firefox" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="314" alt="firefox" src="http://vaughanknight.com/wp-content/uploads/2009/04/firefox-thumb1.jpg" width="552" border="0" /></a> </p>
<p>So in 2 steps, 1) Export, 2) Build, we have a 3D Studio scene in Firefox.</p>
<p>Currently in v0.001 pre alpha, but I thought I’d post some information about what I’ve been working on.&#160; But it truly is 1 click, 1 build.&#160; No smoke, no mirrors.</p>
<p>So what features does it currently have?&#160; For the time being I’m focusing on only 1 shape, being a rectangle.&#160; Simple shape rotation can be done in Blend.&#160; Max is for full scene creation.&#160; Shapes are the easy part, and the hard part is getting coordinate transformations, texturing, and full scene rotation.&#160; These are the real features that I’m currently working on, and I’ll let you all know when it’s ready to get your dirty mitts on.&#160; Stay tuned.</p>
]]></content:encoded>
			<wfw:commentRss>http://vaughanknight.com/2009/04/silverlight-3dsmax-exporter/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Five Second Test</title>
		<link>http://vaughanknight.com/2009/04/five-second-test/</link>
		<comments>http://vaughanknight.com/2009/04/five-second-test/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 02:22:42 +0000</pubDate>
		<dc:creator>Vaughan</dc:creator>
				<category><![CDATA[Website]]></category>
		<category><![CDATA[fivesecondtest]]></category>
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://vaughanknight.com/2009/04/five-second-test/</guid>
		<description><![CDATA[Following a tweet from shanemo, I decided to check out fivesecondtest.com, and took the 5 second test.&#160; I had no idea what it was prior to turning up, but within 10 seconds the minimalistic site had me sold.&#160; From the site… The five second test is a simple usability test that helps you measure the [...]]]></description>
			<content:encoded><![CDATA[<p>Following a tweet from <a href="http://blogs.msdn.com/shanemo/" target="_blank">shanemo</a>, I decided to check out <a href="http://www.fivesecondtest.com">fivesecondtest.com</a>, and took the 5 second test.&#160; I had no idea what it was prior to turning up, but within 10 seconds the minimalistic site had me sold.&#160; From the site… </p>
<blockquote><p><em>The five second test is a simple usability test that helps you measure the effectiveness of your user interfaces.</em></p>
</blockquote>
<p>I’m a big fan of the “don’t make me think” usability principle, possibly because it’s the only one I truly understand.&#160; But after doing a few tests, you notice that some designs remain vividly in your head, and you can visualise an entire design.&#160; Other designs you can hardly remember, and possibly never knew what they were for.</p>
<p>
<div class="wlWriterEditableSmartContent" id="scid:66721397-FF69-4ca6-AEC4-17E6B3208830:f87b21b8-f6f5-46c7-a274-ef15649095e0" style="padding-right: 0px; display: block; padding-left: 0px; float: none; padding-bottom: 0px; margin: 0px auto; width: 438px; padding-top: 0px"><a style="border:0px" href="http://cid-9a49295c4947266e.skydrive.live.com/redir.aspx?page=browse&amp;resid=9A49295C4947266E!181&amp;ct=photos"><img style="border:0px" alt="View Five Second Test Site" src="http://vaughanknight.com/wp-content/uploads/2009/04/inlinerepresentationbb190bf5bc48481a9534528327b508e8.jpg" /></a>
<div style="width:438px;text-align:right;" ><a href="http://cid-9a49295c4947266e.skydrive.live.com/redir.aspx?page=browse&amp;resid=9A49295C4947266E!181&amp;ct=photos">View Full Album</a></div>
</div>
<p>Having a community of people review your designs is an obvious benefit for submitting designs, but what do you get out of doing the tests?&#160; For one, you get to see designs that work, and in turn that should be a learning experience.&#160; The stark contrast between good and bad designs during 5 seconds really hits home.&#160; Secondly, you get a warm and fuzzy feeling from helping the community of designers out there.</p>
]]></content:encoded>
			<wfw:commentRss>http://vaughanknight.com/2009/04/five-second-test/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ahoy! &#8211; Silverlight Virtual Earth MapControl</title>
		<link>http://vaughanknight.com/2009/03/ahoy-silverlight-virtual-earth-mapcontrol/</link>
		<comments>http://vaughanknight.com/2009/03/ahoy-silverlight-virtual-earth-mapcontrol/#comments</comments>
		<pubDate>Sun, 29 Mar 2009 12:16:18 +0000</pubDate>
		<dc:creator>Vaughan</dc:creator>
				<category><![CDATA[Silverlight]]></category>

		<guid isPermaLink="false">http://vaughanknight.com/?p=128</guid>
		<description><![CDATA[What does a developer do when exploring the possibilities of the new Silverlight MapControl.  Create a pirate map of course! Yarr!  So how do you get the paper look and feel on the map?  It’s a simple, and doesn’t require any C#, you can do it purely via the XAML. Yes, that’s how easy it [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://vaughanknight.com/wp-content/uploads/2009/03/johnnydepppiratesofthecaribbean.jpg"><img style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; margin: 0px; border-right-width: 0px" title="johnny depp pirates of the caribbean" src="http://vaughanknight.com/wp-content/uploads/2009/03/johnnydepppiratesofthecaribbean-thumb.jpg" border="0" alt="johnny depp pirates of the caribbean" width="1" height="0" /></a>What does a developer do when exploring the possibilities of the new Silverlight MapControl.  Create a pirate map of course!</p>
<p><a href="http://vaughanknight.com/wp-content/uploads/2009/03/australia.jpg"><img style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" title="australia" src="http://vaughanknight.com/wp-content/uploads/2009/03/australia-thumb.jpg" border="0" alt="australia" width="589" height="359" /></a></p>
<p>Yarr!  So how do you get the paper look and feel on the map?  It’s a simple, and doesn’t require any C#, you can do it purely via the XAML.</p>
<pre class="brush: xml; title: ; notranslate">
&amp;amp;lt;grid x:name=&amp;amp;quot;LayoutRoot&amp;amp;quot; background=&amp;amp;quot;#FF000000&amp;amp;quot;&amp;amp;gt;
      &amp;amp;lt;img x:name=&amp;amp;quot;Paper&amp;amp;quot; source=&amp;amp;quot;images/ye_atlas.jpg&amp;amp;quot; /&amp;amp;gt;
      &amp;amp;lt;m:map x:name=&amp;amp;quot;MainMap&amp;amp;quot; opacity=&amp;amp;quot;0.5&amp;amp;quot; /&amp;amp;gt;
&amp;amp;lt;/grid&amp;amp;gt;
</pre>
<p>Yes, that’s how easy it is.  The aged paper look doesn’t zoom, I played around with having the paper scroll and zoom with the map, and it gave me a headache.  One of those times when you spend an hour or so finding that your cool idea wasn’t as cool as you thought.  When you zoom in, what does it look like?</p>
<p><a href="http://vaughanknight.com/wp-content/uploads/2009/03/sydney-close.jpg"><img style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" title="sydney_close" src="http://vaughanknight.com/wp-content/uploads/2009/03/sydney-close-thumb.jpg" border="0" alt="sydney_close" width="587" height="350" /></a></p>
<p>But what is missing from the map?  Treasure of course!  YARRR!  Pushpin marks the spot!  So add a few custom pushpins, a bezier path later, and the map shows you the way.  How do you add a pushpin?  The best way is to create a layer to put all your pushpins, that way you can hide/show them all together quite easily.  So your XAML becomes…</p>
<pre class="brush: xml; title: ; notranslate">
&amp;amp;lt;Grid x:Name=&amp;amp;quot;LayoutRoot&amp;amp;quot; Background=&amp;amp;quot;#FF000000&amp;amp;quot;&amp;amp;gt;
    &amp;amp;lt;Image x:Name=&amp;amp;quot;Paper&amp;amp;quot; Source=&amp;amp;quot;images/ye_atlas.jpg&amp;amp;quot; /&amp;amp;gt;
    &amp;amp;lt;m:Map x:Name=&amp;amp;quot;MainMap&amp;amp;quot; Opacity=&amp;amp;quot;0.5&amp;amp;quot; &amp;amp;gt;
        &amp;amp;lt;m:Map.Children&amp;amp;gt;
        &amp;amp;lt;m:MapLayer x:Name=&amp;amp;quot;PushpinLayer&amp;amp;quot;/&amp;amp;gt;
        &amp;amp;lt;/m:Map.Children&amp;amp;gt;
    &amp;amp;lt;/m:Map&amp;amp;gt;
&amp;amp;lt;/Grid&amp;amp;gt;
</pre>
<p>… and by adding the following function which takes the position, the pixel size to resize your image/pushpin icon, and the title text of the pushpin …</p>
<pre class="brush: csharp; title: ; notranslate">
private void AddPushpin(double latitude, double longitude, double size, string title)
{
    // Grab our map layer
    MapLayer ml = MainMap.FindName(&amp;amp;quot;PushpinLayer&amp;amp;quot;) as MapLayer;

    // Create the title for the pushpin
    TextBlock t = new TextBlock();
    t.Text = title;
    t.SetValue(MapLayer.MapPositionProperty,
                    new Location(latitude, longitude));
    t.SetValue(MapLayer.MapPositionMethodProperty,
                    PositionMethod.Center);

    // ... and the Pushpin image
    Image img = new Image();
    img.Width = size;
    img.Height = size;
    img.Source = new BitmapImage(new Uri(&amp;amp;quot;images/skull.png&amp;amp;quot;,
                                                UriKind.Relative));
    img.SetValue(MapLayer.MapPositionProperty,
                        new Location(latitude, longitude));
    img.SetValue(MapLayer.MapPositionMethodProperty,
                        PositionMethod.TopCenter);
    ml.AddChild(img);
    ml.AddChild(t);
}
</pre>
<p>Note the use of the PositionMethod to have the bottom of the title aligned with the top center of the image.  Having this makes life so easy when plotting pushpins on a map around a particular coordinate.</p>
<p>Call AddPushpin in your public Page() constructor, and play around with adding pushpins.  Lots of fun to play around with.  Then by simply adding a bezier path method (which I’m still not happy with yet) and vary the pushpins and voila, there be treasure! YARR!</p>
<p><a href="http://vaughanknight.com/wp-content/uploads/2009/03/new-yaark-treasure.jpg"><img style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" title="new_yaark_treasure" src="http://vaughanknight.com/wp-content/uploads/2009/03/new-yaark-treasure-thumb.jpg" border="0" alt="new_yaark_treasure" width="593" height="367" /></a></p>
<p>If only the sailors of yesteryear had zoomable pannable treasure maps!  Features to come are some pirate ships that float around in the water… and I’d love to add a little mini-canon fight, but time is of the essence.</p>
<p>So why is this exciting?  Well, aside from our privateering friends out there, what it does open up is a great way to communicate hiking trails, cycling tracks, walks.  Feed in a heap of map data and you can overlay anything!  Add a custom map data source and you can really start to expand the possibilities.</p>
]]></content:encoded>
			<wfw:commentRss>http://vaughanknight.com/2009/03/ahoy-silverlight-virtual-earth-mapcontrol/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Game Review &#8211; Street Fighter IV</title>
		<link>http://vaughanknight.com/2009/03/game-review-street-fighter-iv/</link>
		<comments>http://vaughanknight.com/2009/03/game-review-street-fighter-iv/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 16:31:06 +0000</pubDate>
		<dc:creator>Vaughan</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[Street Fighter]]></category>
		<category><![CDATA[Xbox360]]></category>
		<category><![CDATA[Street Fighter IV]]></category>

		<guid isPermaLink="false">http://vaughanknight.com/2009/03/game-review-street-fighter-iv/</guid>
		<description><![CDATA[&#160; Street Fighter IV arrived on my coffee table last month.&#160; I can’t stop playing it.&#160; There are too many reasons why.&#160; Being addicted to Street Fighter II when it came out, I had been waiting a long time for the game to evolve significantly.&#160; Everything post Street Fighter II until now has felt like [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://vaughanknight.com/wp-content/uploads/2009/03/streetfighter42.jpg"><img title="streetfighter42" style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" height="269" alt="streetfighter42" src="http://vaughanknight.com/wp-content/uploads/2009/03/streetfighter42-thumb.jpg" width="474" border="0" /></a>&#160; </p>
<p>Street Fighter IV arrived on my coffee table last month.&#160; I can’t stop playing it.&#160; There are too many reasons why.&#160; Being addicted to Street Fighter II when it came out, I had been waiting a long time for the game to evolve significantly.&#160; Everything post Street Fighter II until now has felt like an experiment in what to do next, and with Street Fighter IV being released, it has finally stepped up.</p>
<p>3D is a big aspect graphically in the game, but fighting is still 2D.&#160; Ultra moves/combos when in action allow for some camera play, as it zips around giving a truly dramatic feel.&#160; In game music is excellent, and the sound FX are top notch.&#160; I would however pay for someone to mute the announcer, and the boy band that plays during the title screen.</p>
<p>Where SF4 really shines is in online multiplayer.&#160; Create a lobby, wait a minute, bam, you’re online kicking but with your leet skillz.&#160; The best online feature is being able to play arcade mode, and still having a lobby available online for people to join, meaning that during quiet times online you can dive straight into the game practise pulling off your 94 move combo.</p>
</p>
</p>
<div class="wlWriterEditableSmartContent" id="scid:66721397-FF69-4ca6-AEC4-17E6B3208830:b078df48-fea1-46af-8a68-f2d9d5ee8882" style="padding-right: 0px; display: block; padding-left: 0px; float: none; padding-bottom: 0px; margin-left: auto; width: 400px; margin-right: auto; padding-top: 0px"><a style="border:0px" href="http://cid-9a49295c4947266e.skydrive.live.com/redir.aspx?page=browse&amp;resid=9A49295C4947266E!158&amp;ct=photos"><img style="border:0px" alt="View Street Fighter IV" src="http://vaughanknight.com/wp-content/uploads/2009/03/inlinerepresentation87ba6aa68f7940a1b9bca5cd334250ff.jpg" /></a>
<div style="width:400px;text-align:right;" ><a href="http://cid-9a49295c4947266e.skydrive.live.com/redir.aspx?page=browse&amp;resid=9A49295C4947266E!158&amp;ct=photos">View Full Album</a></div>
</div>
<p>The new characters are excellent, with 25 characters available (16 available initially, and 9 unlockable characters), and each character feeling just right.&#160; The stories in arcade mode are fun to watch, and the challenge modes provide some extreme combo challenges.&#160; Titles and Icons are a great way to earn some street cred, whilst giving the game more legs.</p>
<p>And then when you think you’re starting to get the new game, you discover focus moves.&#160; Focus moves are the first step in the master part of ‘easy to pick up, hard to master’.&#160; But when you start learning how to use them, watch your online ranking halve overnight.&#160; Moves that were hard to deal with will become trivial, and block turtles now have more to worry about than fireballs and throws.</p>
<p>A game that may not appeal to those who aren’t Street Fighter fans, it’s a must buy for those that were or still are, and it will have you playing online for many months, if not years.</p>
<p>And yes, playing it on a big HD plasma between the <a href="http://rubixel.com/2008/09/street-fighter-ii-ryu-and-ken-rubixels/">two</a> <a href="http://rubixel.com/2008/09/ken-counters-rubixel-ken/">Street</a> <a href="http://rubixel.com/2008/09/ryubik-rubixel-ryu/">Fighter</a> <a href="http://www.rubixel.com">Rubixels</a> is awesome.</p>
<p>Big thumbs up.&#160; 5/5.</p>
<p><a href="http://vaughanknight.com/wp-content/uploads/2009/03/ninja2.png"><img title="ninja" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="36" alt="ninja" src="http://vaughanknight.com/wp-content/uploads/2009/03/ninja-thumb2.png" width="36" border="0" /></a><a href="http://vaughanknight.com/wp-content/uploads/2009/03/ninja2.png"><img title="ninja" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="36" alt="ninja" src="http://vaughanknight.com/wp-content/uploads/2009/03/ninja-thumb2.png" width="36" border="0" /></a><a href="http://vaughanknight.com/wp-content/uploads/2009/03/ninja2.png"><img title="ninja" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="36" alt="ninja" src="http://vaughanknight.com/wp-content/uploads/2009/03/ninja-thumb2.png" width="36" border="0" /></a><a href="http://vaughanknight.com/wp-content/uploads/2009/03/ninja2.png"><img title="ninja" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="36" alt="ninja" src="http://vaughanknight.com/wp-content/uploads/2009/03/ninja-thumb2.png" width="36" border="0" /></a><a href="http://vaughanknight.com/wp-content/uploads/2009/03/ninja2.png"><img title="ninja" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="36" alt="ninja" src="http://vaughanknight.com/wp-content/uploads/2009/03/ninja-thumb2.png" width="36" border="0" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://vaughanknight.com/2009/03/game-review-street-fighter-iv/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Movie Review &#8211; Man on Wire</title>
		<link>http://vaughanknight.com/2009/03/movie-review-man-on-wire/</link>
		<comments>http://vaughanknight.com/2009/03/movie-review-man-on-wire/#comments</comments>
		<pubDate>Sun, 22 Mar 2009 10:43:11 +0000</pubDate>
		<dc:creator>Vaughan</dc:creator>
				<category><![CDATA[Movies]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[Documentary]]></category>
		<category><![CDATA[Man on Wire]]></category>

		<guid isPermaLink="false">http://vaughanknight.com/2009/03/movie-review-man-on-wire/</guid>
		<description><![CDATA[But the one movie I did see on the flight, was Man on Wire.&#160; The story of Philippe Petit, and his amazing stunt back in 1974, doing a wire walk between the towers of the World Trade Centre.&#160; Delivered in a similar fashion to Touching the Void, you can’t help but be captured by the [...]]]></description>
			<content:encoded><![CDATA[<p>But the one movie I did see on the flight, was Man on Wire.&#160; The story of Philippe Petit, and his amazing stunt back in 1974, doing a wire walk between the towers of the World Trade Centre.&#160; Delivered in a similar fashion to Touching the Void, you can’t help but be captured by the story.</p>
<p><a href="http://vaughanknight.com/wp-content/uploads/2009/03/man-on-wire.jpg"><img title="man_on_wire" style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" height="367" alt="man_on_wire" src="http://vaughanknight.com/wp-content/uploads/2009/03/man-on-wire-thumb.jpg" width="489" border="0" /></a></p>
<p>Without spoiling the movie, it also covers his other exploits (including Sydney Harbour Bridge pictured above), and is an exciting insight into the eccentric man himself.&#160; You don’t need to see it tomorrow, but it’s definitely a must see.</p>
<p><a href="http://vaughanknight.com/wp-content/uploads/2009/03/ninja1.png"><img title="ninja" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="36" alt="ninja" src="http://vaughanknight.com/wp-content/uploads/2009/03/ninja-thumb1.png" width="36" border="0" /></a>&#160;<a href="http://vaughanknight.com/wp-content/uploads/2009/03/ninja1.png"><img title="ninja" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="36" alt="ninja" src="http://vaughanknight.com/wp-content/uploads/2009/03/ninja-thumb1.png" width="36" border="0" /></a> <a href="http://vaughanknight.com/wp-content/uploads/2009/03/ninja1.png"><img title="ninja" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="36" alt="ninja" src="http://vaughanknight.com/wp-content/uploads/2009/03/ninja-thumb1.png" width="36" border="0" /></a> <a href="http://vaughanknight.com/wp-content/uploads/2009/03/ninja1.png"><img title="ninja" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="36" alt="ninja" src="http://vaughanknight.com/wp-content/uploads/2009/03/ninja-thumb1.png" width="36" border="0" /></a> <a href="http://vaughanknight.com/wp-content/uploads/2009/03/ninja1.png"><img title="ninja" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="36" alt="ninja" src="http://vaughanknight.com/wp-content/uploads/2009/03/ninja-thumb1.png" width="36" border="0" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://vaughanknight.com/2009/03/movie-review-man-on-wire/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Movie Review Bonanza &#8211; Elegy, Death Race, Ghost Town, Rachel Getting Married</title>
		<link>http://vaughanknight.com/2009/03/movie-review-bonanza-elegy-death-race-ghost-town-rachel-getting-married/</link>
		<comments>http://vaughanknight.com/2009/03/movie-review-bonanza-elegy-death-race-ghost-town-rachel-getting-married/#comments</comments>
		<pubDate>Sun, 22 Mar 2009 10:20:53 +0000</pubDate>
		<dc:creator>Vaughan</dc:creator>
				<category><![CDATA[Movies]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[Death Race]]></category>
		<category><![CDATA[Elegy]]></category>
		<category><![CDATA[Ghost Town]]></category>
		<category><![CDATA[Rachel Getting Married]]></category>

		<guid isPermaLink="false">http://vaughanknight.com/2009/03/movie-review-bonanza-elegy-death-race-ghost-town-rachel-getting-married/</guid>
		<description><![CDATA[I’ve seen a lot of movies over the last week with the flights to Vegas, so I’m throwing them all into a single post.&#160; Being in Vegas, I’ve also become quite fond of the word ‘bonanza’. View Full Album Rachel Getting Married &#8211; Chick in rehab.&#160; Sister getting married.&#160; Drama.&#160; Cry cry.&#160; The end.&#160;&#160;&#160; &#160; [...]]]></description>
			<content:encoded><![CDATA[<p>I’ve seen a lot of movies over the last week with the flights to Vegas, so I’m throwing them all into a single post.&#160; Being in Vegas, I’ve also become quite fond of the word ‘bonanza’.</p>
<p>
<div class="wlWriterEditableSmartContent" id="scid:66721397-FF69-4ca6-AEC4-17E6B3208830:01a78dd9-dc2b-4eea-959e-7194614e3e48" style="padding-right: 0px; display: block; padding-left: 0px; float: none; padding-bottom: 0px; margin: 0px auto; width: 453px; padding-top: 0px"><a style="border:0px" href="http://cid-9a49295c4947266e.skydrive.live.com/redir.aspx?page=browse&amp;resid=9A49295C4947266E!176&amp;ct=photos"><img style="border:0px" alt="View In Flight Movies" src="http://vaughanknight.com/wp-content/uploads/2009/03/inlinerepresentationa65f5fadfba9402486a3b2ac7b3a7e3b.jpg" /></a>
<div style="width:453px;text-align:right;" ><a href="http://cid-9a49295c4947266e.skydrive.live.com/redir.aspx?page=browse&amp;resid=9A49295C4947266E!176&amp;ct=photos">View Full Album</a></div>
</div>
<p>   <strong></strong></p>
<p><strong>Rachel Getting Married &#8211; </strong>Chick in rehab.&#160; Sister getting married.&#160; Drama.&#160; Cry cry.&#160; The end.&#160;&#160;&#160; </p>
<p><a href="http://vaughanknight.com/wp-content/uploads/2009/03/ninja.png"><img title="ninja" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="36" alt="ninja" src="http://vaughanknight.com/wp-content/uploads/2009/03/ninja-thumb.png" width="36" border="0" /></a><a href="http://vaughanknight.com/wp-content/uploads/2009/03/ninja.png"><img title="ninja" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="36" alt="ninja" src="http://vaughanknight.com/wp-content/uploads/2009/03/ninja-thumb.png" width="36" border="0" /></a><a href="http://vaughanknight.com/wp-content/uploads/2009/03/ninja.png"><img title="ninja" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="36" alt="ninja" src="http://vaughanknight.com/wp-content/uploads/2009/03/ninja-thumb.png" width="36" border="0" /></a></p>
<p>&#160;</p>
<p><strong></strong></p>
<p><strong>Elegy &#8211; </strong>Guy meets girl.&#160; Drama.&#160; Sick sick. The end. </p>
<p><a href="http://vaughanknight.com/wp-content/uploads/2009/03/ninja.png"><img title="ninja" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="36" alt="ninja" src="http://vaughanknight.com/wp-content/uploads/2009/03/ninja-thumb.png" width="36" border="0" /></a><a href="http://vaughanknight.com/wp-content/uploads/2009/03/ninja.png"><img title="ninja" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="36" alt="ninja" src="http://vaughanknight.com/wp-content/uploads/2009/03/ninja-thumb.png" width="36" border="0" /></a><a href="http://vaughanknight.com/wp-content/uploads/2009/03/ninja.png"><img title="ninja" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="36" alt="ninja" src="http://vaughanknight.com/wp-content/uploads/2009/03/ninja-thumb.png" width="36" border="0" /></a><a href="http://vaughanknight.com/wp-content/uploads/2009/03/ninja.png"><img title="ninja" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="36" alt="ninja" src="http://vaughanknight.com/wp-content/uploads/2009/03/ninja-thumb.png" width="36" border="0" /></a> </p>
<p>&#160;</p>
</p>
</p>
</p>
</p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong>Death Race &#8211; </strong>Get out of prison if you race.&#160; Zoom Zoom. The end. </p>
<p><a href="http://vaughanknight.com/wp-content/uploads/2009/03/ninja.png"><img title="ninja" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="36" alt="ninja" src="http://vaughanknight.com/wp-content/uploads/2009/03/ninja-thumb.png" width="36" border="0" /></a><a href="http://vaughanknight.com/wp-content/uploads/2009/03/ninja.png"><img title="ninja" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="36" alt="ninja" src="http://vaughanknight.com/wp-content/uploads/2009/03/ninja-thumb.png" width="36" border="0" /></a></p>
<p>&#160;</p>
</p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong>Ghost Town &#8211; </strong>Guy dies.&#160; Guy sees ghosts.&#160; Life change.&#160; The end. </p>
<p><a href="http://vaughanknight.com/wp-content/uploads/2009/03/ninja.png"><img title="ninja" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="36" alt="ninja" src="http://vaughanknight.com/wp-content/uploads/2009/03/ninja-thumb.png" width="36" border="0" /></a><a href="http://vaughanknight.com/wp-content/uploads/2009/03/ninja.png"><img title="ninja" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="36" alt="ninja" src="http://vaughanknight.com/wp-content/uploads/2009/03/ninja-thumb.png" width="36" border="0" /></a><a href="http://vaughanknight.com/wp-content/uploads/2009/03/ninja.png"><img title="ninja" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="36" alt="ninja" src="http://vaughanknight.com/wp-content/uploads/2009/03/ninja-thumb.png" width="36" border="0" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://vaughanknight.com/2009/03/movie-review-bonanza-elegy-death-race-ghost-town-rachel-getting-married/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

