<?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>Tom Byrne</title>
	<atom:link href="http://www.tbyrne.org/feed" rel="self" type="application/rss+xml" />
	<link>http://www.tbyrne.org</link>
	<description></description>
	<lastBuildDate>Mon, 06 Feb 2012 08:06:46 +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>Internet Archive Android App</title>
		<link>http://www.tbyrne.org/internet-archive-android-app</link>
		<comments>http://www.tbyrne.org/internet-archive-android-app#comments</comments>
		<pubDate>Mon, 06 Feb 2012 08:06:46 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.tbyrne.org/?p=916</guid>
		<description><![CDATA[I&#8217;ve just released a new Android App. It allows you to watch out-of-copyright videos from the Internet Archive Database on your phone or tablet. It&#8217;s currently early days and it doesn&#8217;t really have any browse functionality yet, just search fields. An iOS version will be coming soon also.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just released a new Android App.<br />
It allows you to watch out-of-copyright videos from the Internet Archive Database on your phone or tablet.<br />
It&#8217;s currently early days and it doesn&#8217;t really have any browse functionality yet, just search fields.</p>
<p><a href="https://market.android.com/details?id=air.org.tbyrne.browser.InternetArchive"><img src="http://www.tbyrne.org/wp-content/uploads/2012/02/bettypage.jpg" alt="" title="Betty Page - Party Doll" width="480" height="800" class="alignnone size-full wp-image-917" /></a></p>
<p>An iOS version will be coming soon also.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tbyrne.org/internet-archive-android-app/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Evolvex Furniture Builder</title>
		<link>http://www.tbyrne.org/evolvex-furniture-builder</link>
		<comments>http://www.tbyrne.org/evolvex-furniture-builder#comments</comments>
		<pubDate>Sun, 15 Jan 2012 23:01:10 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[away3d]]></category>
		<category><![CDATA[stage3d]]></category>

		<guid isPermaLink="false">http://www.tbyrne.org/?p=907</guid>
		<description><![CDATA[In this flash app I built for Evolvex, users can assemble furniture from different components in a 3D environment. When finished the furniture can be purchased, all of the components, along with a diagram of the furniture gets sent to the user. To build this I used a component architecture which I began to develop for the Nokia Bill Exchange job the year before. The 3D is run using the new Stage3D API of Flash Player 11 and Away3D 4. Check it out here]]></description>
			<content:encoded><![CDATA[<p>In this flash app I built for Evolvex, users can assemble furniture from different components in a 3D environment. When finished the furniture can be purchased, all of the components, along with a diagram of the furniture gets sent to the user.<br />
<span id="more-907"></span></p>
<p>To build this I used a component architecture which I began to develop for the Nokia Bill Exchange job the year before.</p>
<p>The 3D is run using the new Stage3D API of Flash Player 11 and Away3D 4.</p>
<p><a href="http://www.evolvex.com/design-your-own"><img src="http://www.tbyrne.org/wp-content/uploads/2012/01/Untitled-2-300x189.jpg" alt="" title="Evolvex Furniture Builder" width="300" height="189" class="alignnone size-medium wp-image-816" /></a><br />
<a href="http://www.evolvex.com/design-your-own" target="_blank">Check it out here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tbyrne.org/evolvex-furniture-builder/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SWC packaging ANT Task for Flash Builder</title>
		<link>http://www.tbyrne.org/swc-packaging-ant-task-for-flash-builder</link>
		<comments>http://www.tbyrne.org/swc-packaging-ant-task-for-flash-builder#comments</comments>
		<pubDate>Wed, 03 Nov 2010 11:58:33 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Code Thoughts]]></category>
		<category><![CDATA[as3 library]]></category>
		<category><![CDATA[build script]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[swc compiler]]></category>

		<guid isPermaLink="false">http://www.tbyrne.org/?p=820</guid>
		<description><![CDATA[I ended up writing an ANT task which can build an SWC based on a Flash Builder project file. This way I could integrate regular SWC creation into my deployment process, backing up all external code.]]></description>
			<content:encoded><![CDATA[<p><a href='http://www.tbyrne.org/wp-content/uploads/2010/11/SWCPackager.zip'>Download the SWC Packager ANT task here (source included)</a></p>
<p>Often, my project workflows include checkouts of other remote code repositories. This means I can directly edit the code and have it immediately compiled into my project, without having to compile an SWC and copy it into my project. This can lead to problems when the project needs to be rolled back to a previous revision (there is no easy way of knowing which revision the remote repositories shuold be checked out at), and issues with remote repositories that are moved/removed.</p>
<p>In the past I have used the SVN externals to achieve this (including using the &#8216;-r&#8217; option to pin externals to specific revisions), but this solution still didn&#8217;t get around repositories that are moved/removed.</p>
<p>I ended up writing an ANT task which can build an SWC based on a Flash Builder project file. This way I could integrate regular SWC creation into my deployment process, backing up all external code.<br />
The ANT task also has the option to export a manifest XML file detailing all of the classes included in the SWC.</p>
<p>These are the compilation arguments taken from the project file:</p>
<ul>
<li>All classpaths &#038; SWC paths</li>
<li>Accessibility setting</li>
<li>Target flash player</li>
</ul>
<p>These are the additional options:</p>
<ul>
<li><strong>sdk</strong> &#8211; a path to the sdk folder. This is used to find the frameworks directory and the compiler.</li>
<li><strong>projectPath </strong>- a path to the root folder of the project.</li>
<li><strong>sourceExceptions (optional)</strong> &#8211; a comma separated list of source paths to exclude from the SWC (they will still be compiled against, just not included)</li>
<li><strong>linkReport (optional)</strong> &#8211; a path to a link report XML file (as output by the mxmlc compiler), this can be used to specify a list of classes to include. By including the link-report argument in your main project then passing this path to the SWC Packager your SWC will only include classes currently used in your project.</li>
<li><strong>includeMainSource (optional)</strong> &#8211; a boolean specifying whether the main source path should be included in the SWC. Defaults to false.</li>
<li><strong>manifestOutput (optional)</strong> &#8211; a path specifying where the manifest XML file should be saved.</li>
<li><strong>computeDigest (optional)</strong> &#8211; a boolean specifying whether a catalog.xml file should be generated (for use by RSL). Defaults to false.</li>
<li><strong>outputAsDirectory (optional)</strong> &#8211; a boolean specifying whether the compiler should output a folder with AS files instead of an SWC file. Defaults to false.</li>
<li><strong>additionalArgs (optional)</strong> &#8211; additional compiler arguments can be passed through here.</li>
<li><strong>configXML (optional)</strong> &#8211; a string pointing to an additional config XML file.</li>
<li><strong>compileDebug (optional)</strong> &#8211; a boolean specifying whether the debug compiler option should be used. Defaults to false.</li>
<li><strong>verbose (optional)</strong> &#8211; setting this to true will make the SWC Packager print out the full compiler command before executing it. Defaults to false.</li>
</ul>
<p>When includeMainSource is set to true and a link-report is specified, only classes that meet both conditions will be included.</p>
<p>Here is an example of how the task can be used in your ANT script:</p>
<div class="codecolorer-container xml mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:655px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br />13<br />14<br />15<br />16<br />17<br />18<br />19<br />20<br /></div></td><td><div class="xml codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;project</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;SWC Packager&quot;</span> <span style="color: #000066;">basedir</span>=<span style="color: #ff0000;">&quot;../&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span><br />
&nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;property</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;FLEX_HOME&quot;</span> <span style="color: #000066;">value</span>=<span style="color: #ff0000;">&quot;C:\FlexSDKs\4.5.0&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
<br />
&nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;taskdef</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;swcPackager&quot;</span> <span style="color: #000066;">classpath</span>=<span style="color: #ff0000;">&quot;${basedir}\build\SWCPackager.jar&quot;</span> <span style="color: #000066;">classname</span>=<span style="color: #ff0000;">&quot;org.farmcode.antTasks.SWCPackager&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;target</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;Package All Source&quot;</span> <span style="color: #000066;">description</span>=<span style="color: #ff0000;">&quot;Builds all AS code into an SWC.&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;swcPackager</span> <span style="color: #000066;">sdk</span>=<span style="color: #ff0000;">&quot;${FLEX_HOME}&quot;</span> <span style="color: #000066;">projectPath</span>=<span style="color: #ff0000;">&quot;${basedir}&quot;</span></span><br />
<span style="color: #009900;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000066;">includeMainSource</span>=<span style="color: #ff0000;">&quot;true&quot;</span> <span style="color: #000066;">swcOutput</span>=<span style="color: #ff0000;">&quot;${basedir}/build/allCode.swc&quot;</span> <span style="color: #000066;">configXML</span>=<span style="color: #ff0000;">&quot;config.xml&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/target<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;target</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;Package All Third-party Source&quot;</span> <span style="color: #000066;">description</span>=<span style="color: #ff0000;">&quot;Builds all AS code except main src dir into an SWC.&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;swcPackager</span> <span style="color: #000066;">sdk</span>=<span style="color: #ff0000;">&quot;${FLEX_HOME}&quot;</span> <span style="color: #000066;">projectPath</span>=<span style="color: #ff0000;">&quot;${basedir}&quot;</span> <span style="color: #000066;">includeMainSource</span>=<span style="color: #ff0000;">&quot;false&quot;</span></span><br />
<span style="color: #009900;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000066;">includeMainSource</span>=<span style="color: #ff0000;">&quot;true&quot;</span> <span style="color: #000066;">swcOutput</span>=<span style="color: #ff0000;">&quot;${basedir}/build/thirdPartyCode.swc&quot;</span> <span style="color: #000066;">configXML</span>=<span style="color: #ff0000;">&quot;config.xml&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/target<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;target</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;Package All Referenced Source&quot;</span> <span style="color: #000066;">description</span>=<span style="color: #ff0000;">&quot;Builds all referenced AS code except main src dir into an SWC.&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;swcPackager</span> <span style="color: #000066;">sdk</span>=<span style="color: #ff0000;">&quot;${FLEX_HOME}&quot;</span> <span style="color: #000066;">projectPath</span>=<span style="color: #ff0000;">&quot;${basedir}&quot;</span> <span style="color: #000066;">linkReport</span>=<span style="color: #ff0000;">&quot;${basedir}/build/linkReport.xml&quot;</span></span><br />
<span style="color: #009900;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000066;">includeMainSource</span>=<span style="color: #ff0000;">&quot;true&quot;</span> <span style="color: #000066;">swcOutput</span>=<span style="color: #ff0000;">&quot;${basedir}/build/allReferencedCode.swc&quot;</span> <span style="color: #000066;">configXML</span>=<span style="color: #ff0000;">&quot;config.xml&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/target<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/project<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></div></td></tr></tbody></table></div>
<p><a href='http://www.tbyrne.org/wp-content/uploads/2010/11/SWCPackager.zip'>Download the SWC Packager ANT task here (source included)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tbyrne.org/swc-packaging-ant-task-for-flash-builder/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nokia Bill Exchange</title>
		<link>http://www.tbyrne.org/nokia-bill-exchange</link>
		<comments>http://www.tbyrne.org/nokia-bill-exchange#comments</comments>
		<pubDate>Wed, 06 Oct 2010 01:40:31 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[ape]]></category>
		<category><![CDATA[joints]]></category>
		<category><![CDATA[motor2]]></category>
		<category><![CDATA[phone]]></category>
		<category><![CDATA[physics]]></category>

		<guid isPermaLink="false">http://www.tbyrne.org/?p=815</guid>
		<description><![CDATA[This is a microsite I built for Nokia with the great group at JWT. I built the physics portion of the site, all of the items and navigation moving around in the background using Box2D. I also built several of the pages. Check it out here]]></description>
			<content:encoded><![CDATA[<p>This is a microsite I built for Nokia with the great group at <a href="http://www.jwt.com/" target="_blank">JWT</a>.</p>
<p>I built the physics portion of the site, all of the items and navigation moving around in the background using <a href="http://box2dflash.sourceforge.net/" target="_blank">Box2D</a>. I also built several of the pages.</p>
<p><a href="http://nokiabillexchange.com"><img src="http://www.tbyrne.org/wp-content/uploads/2010/10/nokiaBillExchange-300x200.jpg" alt="" title="Nokia Bill Exchange" width="300" height="200" class="alignnone size-medium wp-image-816" /></a><br />
<span id="more-815"></span><br />
<a href="http://nokiabillexchange.com/" target="_blank">Check it out here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tbyrne.org/nokia-bill-exchange/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Bad Eggs</title>
		<link>http://www.tbyrne.org/the-bad-eggs</link>
		<comments>http://www.tbyrne.org/the-bad-eggs#comments</comments>
		<pubDate>Thu, 16 Sep 2010 22:48:14 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[box2d]]></category>
		<category><![CDATA[box2das3]]></category>
		<category><![CDATA[box2dflash]]></category>
		<category><![CDATA[box2dflashas3]]></category>
		<category><![CDATA[gravity]]></category>
		<category><![CDATA[physics]]></category>

		<guid isPermaLink="false">http://www.tbyrne.org/?p=808</guid>
		<description><![CDATA[I&#8217;ve been doing some work down at JWT recently and found myself building this silly physics prototype. You can add eggs and then smash them against one another or the walls. 
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_eggs_1171309725"
			class="flashmovie"
			width="660"
			height="660">
	<param name="movie" value="http://www.tbyrne.org/wp-content/uploads/2010/09/eggs.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://www.tbyrne.org/wp-content/uploads/2010/09/eggs.swf"
			name="fm_eggs_1171309725"
			width="660"
			height="660">
	<!--<![endif]-->
		 
	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been doing some work down at <a href="http://jwt.com.au/" target="_blank">JWT</a> recently and found myself building this silly physics prototype.<br />
You can add eggs and then smash them against one another or the walls.<br />

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_eggs_1071004099"
			class="flashmovie"
			width="660"
			height="660">
	<param name="movie" value="http://www.tbyrne.org/wp-content/uploads/2010/09/eggs.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://www.tbyrne.org/wp-content/uploads/2010/09/eggs.swf"
			name="fm_eggs_1071004099"
			width="660"
			height="660">
	<!--<![endif]-->
		
<p><a href="http://adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>

	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
]]></content:encoded>
			<wfw:commentRss>http://www.tbyrne.org/the-bad-eggs/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A more general CSS</title>
		<link>http://www.tbyrne.org/a-more-general-css</link>
		<comments>http://www.tbyrne.org/a-more-general-css#comments</comments>
		<pubDate>Fri, 06 Aug 2010 04:24:42 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Code Thoughts]]></category>

		<guid isPermaLink="false">http://www.tbyrne.org/?p=554</guid>
		<description><![CDATA[As a language, I like CSS, it has a simple elegance that achieves it&#8217;s humble goals very nicely. It&#8217;s these humble goals that bother me. HTML is an XML based language, and fundamentally, all CSS is doing is targeting nodes within this XML and modifying their attributes. Of course, it&#8217;s not possible to, for example, modify the href property in an anchor tag, and this shows that the implementation of CSS is stifled by it&#8217;s modest goals. Also, CSS&#8217; ever-growing list of selectors shows a fundamental inflexibility in it&#8217;s syntax. Selectors basically target specific nodes within your HTML, this sounds [...]]]></description>
			<content:encoded><![CDATA[<p>As a language, I like CSS, it has a simple elegance that achieves it&#8217;s humble goals very nicely.<br />
It&#8217;s these humble goals that bother me.</p>
<p>HTML is an XML based language, and fundamentally, all CSS is doing is targeting nodes within this XML and modifying their attributes. Of course, it&#8217;s not possible to, for example, modify the <code class="codecolorer text mac-classic"><span class="text">href</span></code> property in an <code class="codecolorer text mac-classic"><span class="text">anchor</span></code> tag, and this shows that the implementation of CSS is stifled by it&#8217;s modest goals.</p>
<p>Also, CSS&#8217; ever-growing list of selectors shows a fundamental inflexibility in it&#8217;s syntax. Selectors basically target specific nodes within your HTML, this sounds to me an awful lot like the job for XPath.</p>
<p>Imagine a CSS where XPath statements replace selectors and a generalised set of property modifiers replaced style declarations.<br />
In this way you could (for example) set all the <code class="codecolorer text mac-classic"><span class="text">target</span></code> attributes within all <code class="codecolorer text mac-classic"><span class="text">anchor</span></code> tags to <code class="codecolorer text mac-classic"><span class="text">&quot;_self&quot;</span></code>.</p>
<div class="codecolorer-container text mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:655px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">//a {<br />
&nbsp; &nbsp; target:set(&quot;_self&quot;);<br />
}</div></td></tr></tbody></table></div>
<p>Or you could remove all the <code class="codecolorer text mac-classic"><span class="text">width</span></code> and <code class="codecolorer text mac-classic"><span class="text">height</span></code> attributes from <code class="codecolorer text mac-classic"><span class="text">img</span></code> tags that don&#8217;t have a <code class="codecolorer text mac-classic"><span class="text">src</span></code> attribute.</p>
<div class="codecolorer-container text mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:655px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">//img[not(@src)] {<br />
&nbsp; &nbsp; width:remove();<br />
&nbsp; &nbsp; height:remove();<br />
}</div></td></tr></tbody></table></div>
<p>Or you could add some copyright info to the <code class="codecolorer text mac-classic"><span class="text">alt</span></code> attribute of any <code class="codecolorer text mac-classic"><span class="text">img</span></code> tags within any <code class="codecolorer text mac-classic"><span class="text">div</span></code> tags with <code class="codecolorer text mac-classic"><span class="text">class=&quot;portfolio&quot;</span></code>.</p>
<div class="codecolorer-container text mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:655px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">//div[@src=&quot;portfolio&quot;]//img {<br />
&nbsp; &nbsp; alt:append(&quot; © 2010&quot;);<br />
}</div></td></tr></tbody></table></div>
<p>The biggest issue I can see arising from this is that styles on HTML elements are not individual attributes but a collection of declarations compiled into a single attribute.<br />
To get around this I have a few solutions.<br />
Firstly we could create a Regular Expression based string modifier which gets executed on the specified attribute of the targeted nodes (in this case the &#8216;style&#8217; node), something like this (here I&#8217;m setting <code class="codecolorer text mac-classic"><span class="text">line-height=20px;</span></code> on all <code class="codecolorer text mac-classic"><span class="text">p</span></code> tags).</p>
<div class="codecolorer-container text mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:655px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">//p{<br />
&nbsp; &nbsp; alt:mod(&quot;line-height\:.*;&quot;, &quot;line-height:20px&quot;);<br />
}</div></td></tr></tbody></table></div>
<p>I think you can probably see that this is not ideal though, it is very verbose, difficult to read and would make cascading declarations a nightmare for the browsers reading this code.</p>
<p>The ideal system (IMO) would unfortunately require a modification to the HTML spec, it would require styles to be broken out into their own child node, for example:</p>
<div class="codecolorer-container html4strict mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:655px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br /></div></td><td><div class="html4strict codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/p.html"><span style="color: #000000; font-weight: bold;">p</span></a>&gt;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/style.html"><span style="color: #000000; font-weight: bold;">style</span></a> display<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;block&quot;</span> float<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;left&quot;</span><span style="color: #66cc66;">/</span>&gt;</span><br />
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/p.html"><span style="color: #000000; font-weight: bold;">p</span></a>&gt;</span><br />
<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">a</span></a>&gt;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/style.html"><span style="color: #000000; font-weight: bold;">style</span></a> <span style="color: #000066;">color</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;#00ff00&quot;</span> &nbsp;<span style="color: #000066;">color</span>.hover<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;#00ffff&quot;</span><span style="color: #66cc66;">/</span>&gt;</span><br />
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">a</span></a>&gt;</span></div></td></tr></tbody></table></div>
<p>And then, to set our style would be a normal attribute setting modifier.</p>
<div class="codecolorer-container text mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:655px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">//p.style {<br />
&nbsp; &nbsp; line-height:set(&quot;20px&quot;);<br />
}</div></td></tr></tbody></table></div>
<p>Alternatively, we could create a style specific attribute modifier. I am reluctant to vouch for this because it is a special case but it could be the more feasible (as it doesn&#8217;t require changes to the HTML spec). It&#8217;d look something like this:</p>
<div class="codecolorer-container text mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:655px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">//p{<br />
&nbsp; &nbsp; style:setStyle(&quot;line-height&quot;, &quot;20px&quot;);<br />
}</div></td></tr></tbody></table></div>
<p>You can see that vastly broadens the scope of CSS to the point that Cascading Style Sheets is no longer an appropriate title (maybe XMod or something is better).<br />
Here are several situations I can think of where such a system could be useful (outside of styling). Remember, none of these permanently affect the underlying XML, they&#8217;re more of a filter through which XML can be viewed.</p>
<ul>
<li>Applying formatting to Word documents using the XDOC file format.</li>
<li>Creating a mobile friendly version of flash files using the XFL file format (i.e. removing filter effects, removing embedded fonts, etc).</li>
<li>Modifying the Firefox UI using the XUL interface files (as if we need another way to customise Firefox).</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.tbyrne.org/a-more-general-css/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Environmental Controls</title>
		<link>http://www.tbyrne.org/environmental-controls</link>
		<comments>http://www.tbyrne.org/environmental-controls#comments</comments>
		<pubDate>Thu, 08 Jul 2010 07:56:17 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Code Thoughts]]></category>

		<guid isPermaLink="false">http://www.tbyrne.org/?p=19</guid>
		<description><![CDATA[Grant Skinner, the renowned ActionScript developer, has recently been playing with applications that span both desktop computers and Android based smart-phones. An idea struck me that this dual-platform would be perfect for a environmental controlling system. Imagine, having installed a simple Remote Control app onto your phone, every time you walk into a hotspot certain controls can be sent onto your handset to give you control over certain systems around you. For example: Restaurant Menu &#8211; Pretty self-explanatory, you&#8217;re able to order you food from your table without waiting. Also, when your order is ready, your phone could act as [...]]]></description>
			<content:encoded><![CDATA[<p>Grant Skinner, the renowned ActionScript developer, has <a href="http://www.gskinner.com/blog/archives/2010/06/air_for_android.html" target="_blank">recently</a> been <a href="http://www.gskinner.com/blog/archives/2010/06/androideroids.html" target="_blank">playing </a>with applications that span both desktop computers and Android based smart-phones.  An idea struck me that this dual-platform would be perfect for a environmental controlling system. Imagine, having installed a simple Remote Control app onto your phone, every time you walk into a hotspot certain controls can be sent onto your handset to give you control over certain systems around you.</p>
<p><span id="more-19"></span>For example:</p>
<ul>
<li><strong>Restaurant Menu</strong> &#8211; Pretty self-explanatory, you&#8217;re able to order you food from your table without waiting. Also, when your order is ready, your phone could act as a buzzer.</li>
<li><strong>Stand-up Comedian Axer</strong> &#8211; Everyone in the room can vote to Axe the currently performing comedian.</li>
<li><strong>Cafe Music Preferences</strong> &#8211; Enter your last.fm account name into the widget and the playlist will lean towards your tastes.</li>
<li><strong>Bill-board Games</strong> &#8211; Use you smart-phone as a controller for a video game on a billboard.</li>
<li><strong>Real-time sports betting</strong> &#8211; Bet in real-time on referee decisions whilst in the Arena stands.</li>
<li><strong>Thermostat</strong> &#8211; Voice your concerns if the you&#8217;re too cold or warm.</li>
</ul>
<p>For obvious reasons it would have to be opt-in.  I envision the controls only being allowed a small piece of screen real-estate to allow multiple to sit on screen at once.</p>
<p>(Keep in mind, it would never be possible to see these three particular controls pictured at one time, they&#8217;re shown together only as an example)</p>
<p><a href="http://www.tbyrne.org/wp-content/uploads/2010/07/AndroidDemo.jpg" rel="lightbox[19]"><img class="alignnone size-medium wp-image-20" title="AndroidDemo" src="http://www.tbyrne.org/wp-content/uploads/2010/07/AndroidDemo-184x300.jpg" alt="" width="184" height="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tbyrne.org/environmental-controls/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Robot&#8217;s Creole</title>
		<link>http://www.tbyrne.org/the-robots-creole</link>
		<comments>http://www.tbyrne.org/the-robots-creole#comments</comments>
		<pubDate>Thu, 08 Jul 2010 03:46:48 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Code Thoughts]]></category>

		<guid isPermaLink="false">http://www.tbyrne.org/?p=6</guid>
		<description><![CDATA[When I first began programming I was appalled at the simplistic nature of the tools being used to create software; and whilst there have been admiral efforts in the past to make programming a more intuitive affair (think node-based programming) very few of these tools have lived on. In my opinion, this is symptomatic of a bigger problem in the way we build software; namely, the strong tethering between programming language, compiler &#38; delivery platform. Imagine a system where, when you typed (in your preferred language), and behind-the-scenes, your IDE was converting all of your code into an XML based representation of [...]]]></description>
			<content:encoded><![CDATA[<p>When I first began programming I was appalled at the simplistic nature of the tools being used to create software; and whilst there have been admiral efforts in the past to make programming a more intuitive affair (think node-based programming) very few of these tools have lived on.</p>
<p>In my opinion, this is symptomatic of a bigger problem in the way we build software; namely, the strong tethering between programming language, compiler &amp; delivery platform.</p>
<p>Imagine a system where, when you typed (in your preferred language), and behind-the-scenes, your IDE was converting all of your code into an XML based representation of the language structures you are typing. These XML representations are what gets saved in your files, NOT your &#8216;human-readable&#8217; programming language.</p>
<p>This effectively turns the code you view in your IDE into a &#8216;rendering&#8217; of the core XML structures in the files.</p>
<p>Consider these benefits:</p>
<ul>
<li>Formatting preferences (like the eternal cuddling brackets debate) would be stored in your IDE, allowing everyone to view the code however they want.</li>
<li>Programmers are not restricted to platforms or compilers. For example, anyone could happily write a Flash application in C#, because both languages would be saved into the same core XML structure.</li>
<li>Pre-compilers and IDE tools would be completely cross-language. Consider having refactoring tools that work across all languages, or code documentation tools that worked across all languages.</li>
<li>New ways of rendering code. Consider being able to have a Colour picker next to colour values, or a popout calendar next to date/time values.</li>
<li>﻿Alternate views of code (e.g. Visual layouts for forms, Class diagrams of entire program, UML diagrams) would all become first class citizens and would be language agnostic.</li>
<li>Breaks down relationship between files and classes. You could have multiple packages/classes in one file, or alternatively you could split classes into multiple files (e.g. a function in each file). This would not change the way you edit the code within the IDE. This could make for easier file handling and version control.</li>
<li>Compilers and Pre-compilers would be faster in two ways; Firstly, they&#8217;d only have to parse XML instead of processor intensive human-readable languages; Secondly, this parsing need only happen once, then all compilers/pre-compilers could use the in memory standard data structures.</li>
</ul>
<h3>Arbitrary Formatting</h3>
<p>When discussing this with people, I have found the biggest concern is to do with arbitrary formatting of code, i.e. occasionally it is beneficial to break ones preferred formatting rules to make code more readable. This could easily be solved by the IDE detecting whenever you&#8217;ve broken your own preferred formatting rules (as defined in the IDE preferences) and insert a &#8216;formatting&#8217; tag into the XML structure, describing the custom formatting. Of course this formatting difference will only be applicable within certain languages, and so these &#8216;formatting&#8217; tag would also be accompanied by information describing which language (or group of languages) the tag applies to. Alternatively this information could be stored in a separate file, keeping the code free of arbitrary data (and potentially making these formatting choices specific to the programmer who made them).</p>
<h3>The Challenges</h3>
<p>There are many challenges that such an idea faces, these are the initial ones that spring to mind.</p>
<h4>Language Types &amp; Paradigms</h4>
<p>Which languages and structures should be able to be represented within this core XML language?</p>
<p>There are vast differences in the structures and paradigms of (for example) Functional Languages and OOP Languages, and much thought must be put into how similar these core items are. For example, the statelessness of Functional programming means that it may not contain non-local variables, this doesn&#8217;t mean that it is incompatible with this system, only that if you use local variables in your program you will not be able to use Functional Compilers.</p>
<h4>Compiler restrictions on language features</h4>
<p>How will your IDE know whether the language features used in your program are available to the compilers you wish to target?</p>
<p>Consider you are writing your application in C# but intend to compile to JavaScript, you use getters and setters in your code (which are not a native feature of JavaScript). There needs to be some way for your IDE to detect that you&#8217;re using invalid code for the JavaScript compiler.</p>
<p>One solution would be to create a standardised way for compilers to declare which language features they support. The programmer would target the intended compilers in the project settings, then the IDE could report on invalid uses.</p>
<h4>Interaction between Strong and Loose typing</h4>
<p>Writing code in a completely loosely typed language (like JavaScript) would not provide enough information for some strongly typed compilers; whilst it would be possible to use a solution like the compiler declaration mentioned above, I believe there is a better solution to this.</p>
<p>Currently, in most OOP languages (Java, C#, AS3, etc) coders use specifically formatted comments to represent information about certain classes/members, which is then used to generate documentation. I believe a similar system could be used to add/display type information in loosely typed languages where adding this information outside of comments would break the language spec. It would be the language parser&#8217;s job to analyse these comments and put them into the correct XML data structures (and likewise I believe documentation information should be stored in standard XML structures, not in arbitrary comments).</p>
<h4>Using native APIs and existing compiled libraries</h4>
<p>All programs use native APIs and existing compiled libraries, whether it&#8217;s simply for base mathematics or multi-dimensional matrix operations (think MATLAB). These APIs need to be referenced in a manner that doesn&#8217;t tie your code to a specific Compiler/Platform.</p>
<p>One solution could be to develop a set of standard API interfaces. Then existing APIs would be packaged up to contain which of the API interfaces it supports and how those APIs get mapped to the internal classes and members. This would allow native APIs and external libraries to be interchangable, and eventually compilers could easily support features that are native to other platforms without modifying the target platform.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tbyrne.org/the-robots-creole/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Russell Investment Calculator</title>
		<link>http://www.tbyrne.org/russell-investment-calculator</link>
		<comments>http://www.tbyrne.org/russell-investment-calculator#comments</comments>
		<pubDate>Sun, 09 May 2010 04:17:53 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.tbyrne.org/?p=639</guid>
		<description><![CDATA[Here is an application I built for Russell Investment during my time at the Farm. It allows customers to work out the best way they can distribute their contributions to maximise their returns. It presented some interesting challenges like building an efficient Data-Grid, and formatting text as it is typed by users (I got to finally use a diff formula). Please contact me if you&#8217;d like to see the finished result (as this is part of Russell&#8217;s product I&#8217;m not at liberty to publicly host it).]]></description>
			<content:encoded><![CDATA[<p>Here is an application I built for <a href="http://www.russell.com/au/" target="_blank">Russell Investment</a> during my time at <a href="http://thefarmdigital.com.au" target="_blank">the Farm</a>.<br />
It allows customers to work out the best way they can distribute their contributions to maximise their returns.<br />
It presented some interesting challenges like building an efficient Data-Grid, and formatting text as it is typed by users (I got to finally use a diff formula).</p>
<p><a href="http://www.tbyrne.org/wp-content/uploads/2010/08/russell.jpg" rel="lightbox[639]"><img class="alignnone size-medium wp-image-640" title="russell" src="http://www.tbyrne.org/wp-content/uploads/2010/08/russell-300x261.jpg" alt="" width="300" height="261" /></a></p>
<p>Please contact me if you&#8217;d like to see the finished result (as this is part of Russell&#8217;s product I&#8217;m not at liberty to publicly host it).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tbyrne.org/russell-investment-calculator/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bonds Hipsters</title>
		<link>http://www.tbyrne.org/bonds-hipsters</link>
		<comments>http://www.tbyrne.org/bonds-hipsters#comments</comments>
		<pubDate>Thu, 08 Apr 2010 07:41:29 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.tbyrne.org/?p=581</guid>
		<description><![CDATA[While at the Farm, I built this site for Bonds, leading one other developer. It connects with your Facebook account and plays a montage of your profile pics along with the Hipsters TVC. Click here to check it out]]></description>
			<content:encoded><![CDATA[<p>While at <a href="http://thefarmdigital.com.au" target="_blank">the Farm</a>, I built this site for Bonds, leading one other developer.<br />
It connects with your Facebook account and plays a montage of your profile pics along with the Hipsters TVC.</p>
<p><a href="http://www.tbyrne.org/wp-content/uploads/2010/08/hipsters.jpg" rel="lightbox[581]"><img src="http://www.tbyrne.org/wp-content/uploads/2010/08/hipsters-300x212.jpg" alt="" title="hipsters" width="300" height="212" class="alignnone size-medium wp-image-583" /></a><br />
<span id="more-581"></span><br />
<a href="http://www.bonds.com.au/MiniSites/Hipsters" target="_blank" class="broken_link">Click here to check it out</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tbyrne.org/bonds-hipsters/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Warner Videos</title>
		<link>http://www.tbyrne.org/warner-videos</link>
		<comments>http://www.tbyrne.org/warner-videos#comments</comments>
		<pubDate>Fri, 05 Mar 2010 02:35:35 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.tbyrne.org/?p=415</guid>
		<description><![CDATA[Here is a site I built during my time at the Farm, leading with another developer. Unfortunately, we (the Farm) didn&#8217;t get the opportunity to design it as they wanted it to match a design from the States. That said, we did use it as an opportunity to finish building visual layout and data-mapping library, which means that based on the XML data coming from the back-end, the entire site can be re-laid out. Check it out here]]></description>
			<content:encoded><![CDATA[<p>Here is a site I built during my time at <a href="http://thefarmdigital.com.au" target="_blank">the Farm</a>, leading with another developer.<br />
Unfortunately, we (the Farm) didn&#8217;t get the opportunity to design it as they wanted it to match a design from the States.<br />
That said, we did use it as an opportunity to finish building visual layout and data-mapping library, which means that based on the XML data coming from the back-end, the entire site can be re-laid out.<br />
<a href="http://www.tbyrne.org/wp-content/uploads/2010/08/Warner.jpg" rel="lightbox[415]"><img src="http://www.tbyrne.org/wp-content/uploads/2010/08/Warner-300x178.jpg" alt="" title="Warner" width="300" height="178" class="alignnone size-medium wp-image-416" /></a></p>
<p><a href="http://www.warnerbros.com.au/" target="_blank">Check it out here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tbyrne.org/warner-videos/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wiggle Time</title>
		<link>http://www.tbyrne.org/wiggle-time</link>
		<comments>http://www.tbyrne.org/wiggle-time#comments</comments>
		<pubDate>Sat, 05 Sep 2009 01:40:03 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.tbyrne.org/?p=395</guid>
		<description><![CDATA[I worked for about 9 months solid on this Virtual World for the Wiggles during my time at the Farm. I was heavily involved right from the conceptual stage, which I think really helped in creating a really great looking and technically accomplished result. In the end I lead a team of about 6 developers; 3 concurrently. Children would move their customised avatar around in the Big Red Car; traversing a richly illustrated, parallax-based world. They could enter the houses of the Wiggles &#38; Co. and had their own house in the world where all of their prizes were stored. [...]]]></description>
			<content:encoded><![CDATA[<p>I worked for about 9 months solid on this Virtual World for the Wiggles during my time at <a href="http://thefarmdigital.com.au" target="_blank">the Farm</a>.<br />
I was heavily involved right from the conceptual stage, which I think really helped in creating a really great looking and technically accomplished result.<br />
In the end I lead a team of about 6 developers; 3 concurrently.</p>
<p>Children would move their customised avatar around in the Big Red Car; traversing a richly illustrated, parallax-based world. They could enter the houses of the Wiggles &amp; Co. and had their own house in the world where all of their prizes were stored. To earn these toys, children played mini-games around the world, helping the characters achieve certain goals. It also included a TV to watch Wiggles video content.</p>
<p>We build a lot of interesting tools for this project including a <a href="http://farmcode.org/post/2009/07/06/Fast-2D-Bezier-Library-for-ActionScript-3.aspx" target="_blank">bezier library</a>, a small AI library and a parallax library. It also integrated with existing open-source libraries like <a href="http://box2dflash.sourceforge.net/" target="_blank">the Box2d physics engine</a>, <a href="http://goasap.googlecode.com" target="_blank">goASAP tweening library</a> and <a href="http://flint-particle-system.googlecode.com" target="_blank">the flint particle engine</a>.</p>

<a href='http://www.tbyrne.org/wiggle-time/wiggletime7' title='Wiggletime7'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/Wiggletime7-150x150.jpg" class="attachment-thumbnail" alt="Wiggletime7" title="Wiggletime7" /></a>
<a href='http://www.tbyrne.org/wiggle-time/wiggletime1' title='Wiggletime1'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/Wiggletime1-150x150.jpg" class="attachment-thumbnail" alt="Wiggletime1" title="Wiggletime1" /></a>
<a href='http://www.tbyrne.org/wiggle-time/wiggletime8' title='Wiggletime8'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/Wiggletime8-150x150.jpg" class="attachment-thumbnail" alt="Wiggletime8" title="Wiggletime8" /></a>
<a href='http://www.tbyrne.org/wiggle-time/wiggletime2' title='Wiggletime2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/Wiggletime2-150x150.jpg" class="attachment-thumbnail" alt="Wiggletime2" title="Wiggletime2" /></a>
<a href='http://www.tbyrne.org/wiggle-time/wiggletime10' title='Wiggletime10'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/Wiggletime10-150x150.jpg" class="attachment-thumbnail" alt="Wiggletime10" title="Wiggletime10" /></a>
<a href='http://www.tbyrne.org/wiggle-time/wiggletime9' title='Wiggletime9'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/Wiggletime9-150x150.jpg" class="attachment-thumbnail" alt="Wiggletime9" title="Wiggletime9" /></a>
<a href='http://www.tbyrne.org/wiggle-time/wiggletime3' title='Wiggletime3'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/Wiggletime3-150x150.jpg" class="attachment-thumbnail" alt="Wiggletime3" title="Wiggletime3" /></a>
<a href='http://www.tbyrne.org/wiggle-time/wiggletime11' title='Wiggletime11'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/Wiggletime11-150x150.jpg" class="attachment-thumbnail" alt="Wiggletime11" title="Wiggletime11" /></a>
<a href='http://www.tbyrne.org/wiggle-time/wiggletime15' title='Wiggletime15'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/Wiggletime15-150x150.jpg" class="attachment-thumbnail" alt="Wiggletime15" title="Wiggletime15" /></a>
<a href='http://www.tbyrne.org/wiggle-time/wiggletime5' title='Wiggletime5'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/Wiggletime5-150x150.jpg" class="attachment-thumbnail" alt="Wiggletime5" title="Wiggletime5" /></a>
<a href='http://www.tbyrne.org/wiggle-time/wiggletime12' title='Wiggletime12'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/Wiggletime12-150x150.jpg" class="attachment-thumbnail" alt="Wiggletime12" title="Wiggletime12" /></a>
<a href='http://www.tbyrne.org/wiggle-time/wiggletime13' title='Wiggletime13'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/Wiggletime13-150x150.jpg" class="attachment-thumbnail" alt="Wiggletime13" title="Wiggletime13" /></a>
<a href='http://www.tbyrne.org/wiggle-time/wiggletime6' title='Wiggletime6'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/Wiggletime6-150x150.jpg" class="attachment-thumbnail" alt="Wiggletime6" title="Wiggletime6" /></a>
<a href='http://www.tbyrne.org/wiggle-time/wiggletime4' title='Wiggletime4'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/Wiggletime4-150x150.jpg" class="attachment-thumbnail" alt="Wiggletime4" title="Wiggletime4" /></a>
<a href='http://www.tbyrne.org/wiggle-time/wiggletime14' title='Wiggletime14'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/Wiggletime14-150x150.jpg" class="attachment-thumbnail" alt="Wiggletime14" title="Wiggletime14" /></a>

]]></content:encoded>
			<wfw:commentRss>http://www.tbyrne.org/wiggle-time/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Gathering bones in bed</title>
		<link>http://www.tbyrne.org/gathering-bones</link>
		<comments>http://www.tbyrne.org/gathering-bones#comments</comments>
		<pubDate>Sun, 05 Apr 2009 09:48:38 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Drawings]]></category>

		<guid isPermaLink="false">http://www.tbyrne.org/?p=847</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[
<a href='http://www.tbyrne.org/gathering-bones/page1-2-4' title='page1.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2011/04/page1.2-150x150.jpg" class="attachment-thumbnail" alt="page1.2" title="page1.2" /></a>
<a href='http://www.tbyrne.org/gathering-bones/page2-2-3' title='page2.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2011/04/page2.2-150x150.jpg" class="attachment-thumbnail" alt="page2.2" title="page2.2" /></a>
<a href='http://www.tbyrne.org/gathering-bones/page3-2-5' title='page3.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2011/04/page3.2-150x150.jpg" class="attachment-thumbnail" alt="page3.2" title="page3.2" /></a>
<a href='http://www.tbyrne.org/gathering-bones/page4-2-5' title='page4.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2011/04/page4.2-150x150.jpg" class="attachment-thumbnail" alt="page4.2" title="page4.2" /></a>
<a href='http://www.tbyrne.org/gathering-bones/page5-2-4' title='page5.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2011/04/page5.2-150x150.jpg" class="attachment-thumbnail" alt="page5.2" title="page5.2" /></a>
<a href='http://www.tbyrne.org/gathering-bones/page7-2-3' title='page7.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2011/04/page7.2-150x150.jpg" class="attachment-thumbnail" alt="page7.2" title="page7.2" /></a>
<a href='http://www.tbyrne.org/gathering-bones/page8-2-4' title='page8.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2011/04/page8.2-150x150.jpg" class="attachment-thumbnail" alt="page8.2" title="page8.2" /></a>
<a href='http://www.tbyrne.org/gathering-bones/page9-2-3' title='page9.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2011/04/page9.2-150x150.jpg" class="attachment-thumbnail" alt="page9.2" title="page9.2" /></a>
<a href='http://www.tbyrne.org/gathering-bones/page10-2-5' title='page10.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2011/04/page10.2-150x150.jpg" class="attachment-thumbnail" alt="page10.2" title="page10.2" /></a>
<a href='http://www.tbyrne.org/gathering-bones/page11-2-5' title='page11.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2011/04/page11.2-150x150.jpg" class="attachment-thumbnail" alt="page11.2" title="page11.2" /></a>
<a href='http://www.tbyrne.org/gathering-bones/page13-2-4' title='page13.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2011/04/page13.2-150x150.jpg" class="attachment-thumbnail" alt="page13.2" title="page13.2" /></a>
<a href='http://www.tbyrne.org/gathering-bones/page15-2-4' title='page15.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2011/04/page15.2-150x150.jpg" class="attachment-thumbnail" alt="page15.2" title="page15.2" /></a>
<a href='http://www.tbyrne.org/gathering-bones/page16-2-5' title='page16.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2011/04/page16.2-150x150.jpg" class="attachment-thumbnail" alt="page16.2" title="page16.2" /></a>
<a href='http://www.tbyrne.org/gathering-bones/page18-2-4' title='page18.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2011/04/page18.2-150x150.jpg" class="attachment-thumbnail" alt="page18.2" title="page18.2" /></a>
<a href='http://www.tbyrne.org/gathering-bones/page19-2-4' title='page19.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2011/04/page19.2-150x150.jpg" class="attachment-thumbnail" alt="page19.2" title="page19.2" /></a>
<a href='http://www.tbyrne.org/gathering-bones/page20-2-3' title='page20.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2011/04/page20.2-150x150.jpg" class="attachment-thumbnail" alt="page20.2" title="page20.2" /></a>
<a href='http://www.tbyrne.org/gathering-bones/page21-2-3' title='page21.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2011/04/page21.2-150x150.jpg" class="attachment-thumbnail" alt="page21.2" title="page21.2" /></a>
<a href='http://www.tbyrne.org/gathering-bones/page22-2-4' title='page22.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2011/04/page22.2-150x150.jpg" class="attachment-thumbnail" alt="page22.2" title="page22.2" /></a>
<a href='http://www.tbyrne.org/gathering-bones/page23-2-2' title='page23.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2011/04/page23.2-150x150.jpg" class="attachment-thumbnail" alt="page23.2" title="page23.2" /></a>
<a href='http://www.tbyrne.org/gathering-bones/page24-2-5' title='page24.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2011/04/page24.2-150x150.jpg" class="attachment-thumbnail" alt="page24.2" title="page24.2" /></a>
<a href='http://www.tbyrne.org/gathering-bones/page25-2-5' title='page25.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2011/04/page25.2-150x150.jpg" class="attachment-thumbnail" alt="page25.2" title="page25.2" /></a>
<a href='http://www.tbyrne.org/gathering-bones/page26-2-4' title='page26.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2011/04/page26.2-150x150.jpg" class="attachment-thumbnail" alt="page26.2" title="page26.2" /></a>
<a href='http://www.tbyrne.org/gathering-bones/page27-2-5' title='page27.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2011/04/page27.2-150x150.jpg" class="attachment-thumbnail" alt="page27.2" title="page27.2" /></a>
<a href='http://www.tbyrne.org/gathering-bones/page28-2-5' title='page28.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2011/04/page28.2-150x150.jpg" class="attachment-thumbnail" alt="page28.2" title="page28.2" /></a>
<a href='http://www.tbyrne.org/gathering-bones/page30-2-4' title='page30.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2011/04/page30.2-150x150.jpg" class="attachment-thumbnail" alt="page30.2" title="page30.2" /></a>
<a href='http://www.tbyrne.org/gathering-bones/page31-2-4' title='page31.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2011/04/page31.2-150x150.jpg" class="attachment-thumbnail" alt="page31.2" title="page31.2" /></a>
<a href='http://www.tbyrne.org/gathering-bones/page32-2-2' title='page32.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2011/04/page32.2-150x150.jpg" class="attachment-thumbnail" alt="page32.2" title="page32.2" /></a>
<a href='http://www.tbyrne.org/gathering-bones/page33-2-3' title='page33.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2011/04/page33.2-150x150.jpg" class="attachment-thumbnail" alt="page33.2" title="page33.2" /></a>
<a href='http://www.tbyrne.org/gathering-bones/page34-2-4' title='page34.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2011/04/page34.2-150x150.jpg" class="attachment-thumbnail" alt="page34.2" title="page34.2" /></a>
<a href='http://www.tbyrne.org/gathering-bones/page35-2-3' title='page35.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2011/04/page35.2-150x150.jpg" class="attachment-thumbnail" alt="page35.2" title="page35.2" /></a>
<a href='http://www.tbyrne.org/gathering-bones/page36-2-3' title='page36.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2011/04/page36.2-150x150.jpg" class="attachment-thumbnail" alt="page36.2" title="page36.2" /></a>
<a href='http://www.tbyrne.org/gathering-bones/page37-2-3' title='page37.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2011/04/page37.2-150x150.jpg" class="attachment-thumbnail" alt="page37.2" title="page37.2" /></a>
<a href='http://www.tbyrne.org/gathering-bones/page38-2-3' title='page38.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2011/04/page38.2-150x150.jpg" class="attachment-thumbnail" alt="page38.2" title="page38.2" /></a>
<a href='http://www.tbyrne.org/gathering-bones/page39-2-3' title='page39.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2011/04/page39.2-150x150.jpg" class="attachment-thumbnail" alt="page39.2" title="page39.2" /></a>
<a href='http://www.tbyrne.org/gathering-bones/page40-2-4' title='page40.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2011/04/page40.2-150x150.jpg" class="attachment-thumbnail" alt="page40.2" title="page40.2" /></a>
<a href='http://www.tbyrne.org/gathering-bones/page41-2-3' title='page41.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2011/04/page41.2-150x150.jpg" class="attachment-thumbnail" alt="page41.2" title="page41.2" /></a>
<a href='http://www.tbyrne.org/gathering-bones/page42-2-3' title='page42.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2011/04/page42.2-150x150.jpg" class="attachment-thumbnail" alt="page42.2" title="page42.2" /></a>

]]></content:encoded>
			<wfw:commentRss>http://www.tbyrne.org/gathering-bones/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Open up to Mail</title>
		<link>http://www.tbyrne.org/open-up-to-mail</link>
		<comments>http://www.tbyrne.org/open-up-to-mail#comments</comments>
		<pubDate>Fri, 20 Feb 2009 04:28:09 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.tbyrne.org/?p=574</guid>
		<description><![CDATA[This is a microsite I built for MercerBell/Australia Post in my time at the Farm. It uses Papervision to move around the room, it took us a long time to get the room looking right, but I think it&#8217;s still quite a nice little execution. Check it out here]]></description>
			<content:encoded><![CDATA[<p>This is a microsite I built for MercerBell/Australia Post in my time at <a href="http://thefarmdigital.com.au" target="_blank">the Farm</a>.</p>
<p>It uses Papervision to move around the room, it took us a long time to get the room looking right, but I think it&#8217;s still quite a nice little execution.</p>
<p><a href="http://www.tbyrne.org/wp-content/uploads/2010/08/mercerbell.jpg" rel="lightbox[574]"><img src="http://www.tbyrne.org/wp-content/uploads/2010/08/mercerbell-300x182.jpg" alt="" title="mercerbell" width="300" height="182" class="alignnone size-medium wp-image-575" /></a><br />
<span id="more-574"></span><br />
<a href="http://www.tbyrne.org/portfolio/mercerbell/" target="_blank">Check it out here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tbyrne.org/open-up-to-mail/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sunbeam Coffee School</title>
		<link>http://www.tbyrne.org/sunbeam-coffee-school</link>
		<comments>http://www.tbyrne.org/sunbeam-coffee-school#comments</comments>
		<pubDate>Fri, 30 Jan 2009 02:02:20 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.tbyrne.org/?p=101</guid>
		<description><![CDATA[I lead a team of three on this site for Sunbeam during my time at the Farm. I&#8217;m still very happy with the result, especially the navigation which still looks really great. Click here to check it out]]></description>
			<content:encoded><![CDATA[<p>I lead a team of three on this site for Sunbeam during my time at <a href="http://thefarmdigital.com.au" target="_blank">the Farm</a>.<br />
I&#8217;m still very happy with the result, especially the navigation which still looks really great.</p>
<p><span id="more-101"></span> <a href="http://www.sunbeamcoffeeschool.com.au" target="_blank"> Click here to check it out</a><br />

<a href='http://www.tbyrne.org/sunbeam-coffee-school/sunbeam1' title='sunbeam1'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/07/sunbeam1-150x150.jpg" class="attachment-thumbnail" alt="sunbeam1" title="sunbeam1" /></a>
<a href='http://www.tbyrne.org/sunbeam-coffee-school/sunbeam2' title='sunbeam2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/07/sunbeam2-150x150.jpg" class="attachment-thumbnail" alt="sunbeam2" title="sunbeam2" /></a>
<a href='http://www.tbyrne.org/sunbeam-coffee-school/sunbeam3' title='sunbeam3'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/07/sunbeam3-150x150.jpg" class="attachment-thumbnail" alt="sunbeam3" title="sunbeam3" /></a>
<a href='http://www.tbyrne.org/sunbeam-coffee-school/sunbeam4' title='sunbeam4'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/07/sunbeam4-150x150.jpg" class="attachment-thumbnail" alt="sunbeam4" title="sunbeam4" /></a>
<a href='http://www.tbyrne.org/sunbeam-coffee-school/sunbeam5' title='sunbeam5'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/07/sunbeam5-150x150.jpg" class="attachment-thumbnail" alt="sunbeam5" title="sunbeam5" /></a>
<a href='http://www.tbyrne.org/sunbeam-coffee-school/sunbeam6' title='sunbeam6'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/07/sunbeam6-150x150.jpg" class="attachment-thumbnail" alt="sunbeam6" title="sunbeam6" /></a>
<a href='http://www.tbyrne.org/sunbeam-coffee-school/sunbeam7' title='sunbeam7'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/07/sunbeam7-150x150.jpg" class="attachment-thumbnail" alt="sunbeam7" title="sunbeam7" /></a>
<a href='http://www.tbyrne.org/sunbeam-coffee-school/sunbeam8' title='sunbeam8'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/07/sunbeam8-150x150.jpg" class="attachment-thumbnail" alt="sunbeam8" title="sunbeam8" /></a>
<a href='http://www.tbyrne.org/sunbeam-coffee-school/sunbeam9' title='sunbeam9'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/07/sunbeam9-150x150.jpg" class="attachment-thumbnail" alt="sunbeam9" title="sunbeam9" /></a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tbyrne.org/sunbeam-coffee-school/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Outdoor Media Awards</title>
		<link>http://www.tbyrne.org/outdoor-media-awards</link>
		<comments>http://www.tbyrne.org/outdoor-media-awards#comments</comments>
		<pubDate>Tue, 06 Jan 2009 08:11:20 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.tbyrne.org/?p=601</guid>
		<description><![CDATA[Here is a site I built for the Glue Society while at the Farm. It was very simple and clean and I still like it. They must have liked it too because they used it for the next years awards too. Click here to check it out]]></description>
			<content:encoded><![CDATA[<p>Here is a site I built for the Glue Society while at <a href="http://thefarmdigital.com.au" target="_blank">the Farm</a>.<br />
It was very simple and clean and I still like it. They must have liked it too because they used it for the next years awards too.</p>
<p><a href="http://www.tbyrne.org/wp-content/uploads/2010/08/OMA.jpg" rel="lightbox[601]"><img src="http://www.tbyrne.org/wp-content/uploads/2010/08/OMA-300x212.jpg" alt="" title="OMA" width="300" height="212" class="alignnone size-medium wp-image-602" /></a><br />
<span id="more-601"></span><br />
<a href="http://outdoorawards.com.au/" target="_blank"> Click here to check it out</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tbyrne.org/outdoor-media-awards/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Brighton &amp; Spain</title>
		<link>http://www.tbyrne.org/brighton-spain</link>
		<comments>http://www.tbyrne.org/brighton-spain#comments</comments>
		<pubDate>Sun, 28 Sep 2008 06:08:29 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Drawings]]></category>

		<guid isPermaLink="false">http://www.tbyrne.org/?p=649</guid>
		<description><![CDATA[These are some of the drawings from a diary I kept on a trip to Brighton &#38; Spain.]]></description>
			<content:encoded><![CDATA[<p>These are some of the drawings from a diary I kept on a trip to Brighton &amp; Spain.</p>

<a href='http://www.tbyrne.org/brighton-spain/page1-2-3' title='page1.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page1.22-150x150.jpg" class="attachment-thumbnail" alt="page1.2" title="page1.2" /></a>
<a href='http://www.tbyrne.org/brighton-spain/page2-2-2' title='page2.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page2.21-150x150.jpg" class="attachment-thumbnail" alt="page2.2" title="page2.2" /></a>
<a href='http://www.tbyrne.org/brighton-spain/page3-2-3' title='page3.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page3.22-150x150.jpg" class="attachment-thumbnail" alt="page3.2" title="page3.2" /></a>
<a href='http://www.tbyrne.org/brighton-spain/page4-2-3' title='page4.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page4.22-150x150.jpg" class="attachment-thumbnail" alt="page4.2" title="page4.2" /></a>
<a href='http://www.tbyrne.org/brighton-spain/page5-2-3' title='page5.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page5.22-150x150.jpg" class="attachment-thumbnail" alt="page5.2" title="page5.2" /></a>
<a href='http://www.tbyrne.org/brighton-spain/page6-2-3' title='page6.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page6.22-150x150.jpg" class="attachment-thumbnail" alt="page6.2" title="page6.2" /></a>
<a href='http://www.tbyrne.org/brighton-spain/page8-2-3' title='page8.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page8.22-150x150.jpg" class="attachment-thumbnail" alt="page8.2" title="page8.2" /></a>
<a href='http://www.tbyrne.org/brighton-spain/page10-2-3' title='page10.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page10.22-150x150.jpg" class="attachment-thumbnail" alt="page10.2" title="page10.2" /></a>
<a href='http://www.tbyrne.org/brighton-spain/page11-2-3' title='page11.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page11.22-150x150.jpg" class="attachment-thumbnail" alt="page11.2" title="page11.2" /></a>
<a href='http://www.tbyrne.org/brighton-spain/page12-2-3' title='page12.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page12.22-150x150.jpg" class="attachment-thumbnail" alt="page12.2" title="page12.2" /></a>
<a href='http://www.tbyrne.org/brighton-spain/page13-2-3' title='page13.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page13.22-150x150.jpg" class="attachment-thumbnail" alt="page13.2" title="page13.2" /></a>
<a href='http://www.tbyrne.org/brighton-spain/page16-2-3' title='page16.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page16.22-150x150.jpg" class="attachment-thumbnail" alt="page16.2" title="page16.2" /></a>
<a href='http://www.tbyrne.org/brighton-spain/page18-2-3' title='page18.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page18.22-150x150.jpg" class="attachment-thumbnail" alt="page18.2" title="page18.2" /></a>
<a href='http://www.tbyrne.org/brighton-spain/page19-2-3' title='page19.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page19.22-150x150.jpg" class="attachment-thumbnail" alt="page19.2" title="page19.2" /></a>
<a href='http://www.tbyrne.org/brighton-spain/page20-2-2' title='page20.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page20.21-150x150.jpg" class="attachment-thumbnail" alt="page20.2" title="page20.2" /></a>
<a href='http://www.tbyrne.org/brighton-spain/page22-2-3' title='page22.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page22.22-150x150.jpg" class="attachment-thumbnail" alt="page22.2" title="page22.2" /></a>
<a href='http://www.tbyrne.org/brighton-spain/page24-2-3' title='page24.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page24.22-150x150.jpg" class="attachment-thumbnail" alt="page24.2" title="page24.2" /></a>
<a href='http://www.tbyrne.org/brighton-spain/page25-2-3' title='page25.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page25.22-150x150.jpg" class="attachment-thumbnail" alt="page25.2" title="page25.2" /></a>
<a href='http://www.tbyrne.org/brighton-spain/page26-2-3' title='page26.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page26.22-150x150.jpg" class="attachment-thumbnail" alt="page26.2" title="page26.2" /></a>
<a href='http://www.tbyrne.org/brighton-spain/page27-2-3' title='page27.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page27.22-150x150.jpg" class="attachment-thumbnail" alt="page27.2" title="page27.2" /></a>
<a href='http://www.tbyrne.org/brighton-spain/page28-2-3' title='page28.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page28.22-150x150.jpg" class="attachment-thumbnail" alt="page28.2" title="page28.2" /></a>
<a href='http://www.tbyrne.org/brighton-spain/page29-2-3' title='page29.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page29.22-150x150.jpg" class="attachment-thumbnail" alt="page29.2" title="page29.2" /></a>
<a href='http://www.tbyrne.org/brighton-spain/page30-2-3' title='page30.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page30.22-150x150.jpg" class="attachment-thumbnail" alt="page30.2" title="page30.2" /></a>
<a href='http://www.tbyrne.org/brighton-spain/page31-2-3' title='page31.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page31.22-150x150.jpg" class="attachment-thumbnail" alt="page31.2" title="page31.2" /></a>
<a href='http://www.tbyrne.org/brighton-spain/page33-2-2' title='page33.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page33.21-150x150.jpg" class="attachment-thumbnail" alt="page33.2" title="page33.2" /></a>
<a href='http://www.tbyrne.org/brighton-spain/page34-2-2' title='page34.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page34.21-150x150.jpg" class="attachment-thumbnail" alt="page34.2" title="page34.2" /></a>
<a href='http://www.tbyrne.org/brighton-spain/page35-2-2' title='page35.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page35.21-150x150.jpg" class="attachment-thumbnail" alt="page35.2" title="page35.2" /></a>
<a href='http://www.tbyrne.org/brighton-spain/page36-2-2' title='page36.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page36.21-150x150.jpg" class="attachment-thumbnail" alt="page36.2" title="page36.2" /></a>
<a href='http://www.tbyrne.org/brighton-spain/page37-2-2' title='page37.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page37.21-150x150.jpg" class="attachment-thumbnail" alt="page37.2" title="page37.2" /></a>
<a href='http://www.tbyrne.org/brighton-spain/page39-2-2' title='page39.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page39.21-150x150.jpg" class="attachment-thumbnail" alt="page39.2" title="page39.2" /></a>
<a href='http://www.tbyrne.org/brighton-spain/page40-2-2' title='page40.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page40.21-150x150.jpg" class="attachment-thumbnail" alt="page40.2" title="page40.2" /></a>
<a href='http://www.tbyrne.org/brighton-spain/page41-2-2' title='page41.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page41.21-150x150.jpg" class="attachment-thumbnail" alt="page41.2" title="page41.2" /></a>
<a href='http://www.tbyrne.org/brighton-spain/page42-2-2' title='page42.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page42.21-150x150.jpg" class="attachment-thumbnail" alt="page42.2" title="page42.2" /></a>
<a href='http://www.tbyrne.org/brighton-spain/page43-2-2' title='page43.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page43.21-150x150.jpg" class="attachment-thumbnail" alt="page43.2" title="page43.2" /></a>
<a href='http://www.tbyrne.org/brighton-spain/page44-2-2' title='page44.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page44.21-150x150.jpg" class="attachment-thumbnail" alt="page44.2" title="page44.2" /></a>

]]></content:encoded>
			<wfw:commentRss>http://www.tbyrne.org/brighton-spain/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Glue Society</title>
		<link>http://www.tbyrne.org/the-glue-society</link>
		<comments>http://www.tbyrne.org/the-glue-society#comments</comments>
		<pubDate>Tue, 05 Aug 2008 03:12:20 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.tbyrne.org/?p=419</guid>
		<description><![CDATA[This is a site I built while at the Farm, I love the design. It was a rebuild of their prior site (also built by the farm), to make it CMS driven. Due to the extremely lightweight design, I was really looking forward to the challenge of making this site as tiny as possible. The finished site was drawn completely in code (except for the several cursor images, which were gifs) and was about 60Kb in size, about the same as a large thumbnail image. Needless to say, I didn&#8217;t bother putting a preloader on it. Click here to check [...]]]></description>
			<content:encoded><![CDATA[<p>This is a site I built while at <a href="http://thefarmdigital.com.au" target="_blank">the Farm</a>, I love the design.<br />
It was a rebuild of their prior site (also built by the farm), to make it CMS driven.</p>
<p>Due to the extremely lightweight design, I was really looking forward to the challenge of making this site as tiny as possible. The finished site was drawn completely in code (except for the several cursor images, which were gifs) and was about 60Kb in size, about the same as a large thumbnail image. Needless to say, I didn&#8217;t bother putting a preloader on it.<br />
<a href="http://www.tbyrne.org/wp-content/uploads/2010/08/glue.jpg" rel="lightbox[419]"><img class="alignnone size-medium wp-image-420" title="glue" src="http://www.tbyrne.org/wp-content/uploads/2010/08/glue-300x219.jpg" alt="" width="300" height="219" /></a></p>
<p><span id="more-419"></span><a href="http://www.gluesociety.com/" target="_blank">Click here to check it out</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tbyrne.org/the-glue-society/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Missing the last tram</title>
		<link>http://www.tbyrne.org/missing-the-last-tram</link>
		<comments>http://www.tbyrne.org/missing-the-last-tram#comments</comments>
		<pubDate>Sat, 02 Aug 2008 07:14:21 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Drawings]]></category>

		<guid isPermaLink="false">http://www.tbyrne.org/?p=115</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[
<a href='http://www.tbyrne.org/missing-the-last-tram/frontcover' title='frontCover'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/frontCover-150x150.jpg" class="attachment-thumbnail" alt="frontCover" title="frontCover" /></a>
<a href='http://www.tbyrne.org/missing-the-last-tram/page31-2' title='page31.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page31.2-150x150.jpg" class="attachment-thumbnail" alt="page31.2" title="page31.2" /></a>
<a href='http://www.tbyrne.org/missing-the-last-tram/page30-2' title='page30.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page30.2-150x150.jpg" class="attachment-thumbnail" alt="page30.2" title="page30.2" /></a>
<a href='http://www.tbyrne.org/missing-the-last-tram/page29-2' title='page29.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page29.2-150x150.jpg" class="attachment-thumbnail" alt="page29.2" title="page29.2" /></a>
<a href='http://www.tbyrne.org/missing-the-last-tram/page28-2' title='page28.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page28.2-150x150.jpg" class="attachment-thumbnail" alt="page28.2" title="page28.2" /></a>
<a href='http://www.tbyrne.org/missing-the-last-tram/page27-2' title='page27.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page27.2-150x150.jpg" class="attachment-thumbnail" alt="page27.2" title="page27.2" /></a>
<a href='http://www.tbyrne.org/missing-the-last-tram/page26-2' title='page26.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page26.2-150x150.jpg" class="attachment-thumbnail" alt="page26.2" title="page26.2" /></a>
<a href='http://www.tbyrne.org/missing-the-last-tram/page25-2' title='page25.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page25.2-150x150.jpg" class="attachment-thumbnail" alt="page25.2" title="page25.2" /></a>
<a href='http://www.tbyrne.org/missing-the-last-tram/page24-2' title='page24.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page24.2-150x150.jpg" class="attachment-thumbnail" alt="page24.2" title="page24.2" /></a>
<a href='http://www.tbyrne.org/missing-the-last-tram/page22-2' title='page22.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page22.2-150x150.jpg" class="attachment-thumbnail" alt="page22.2" title="page22.2" /></a>
<a href='http://www.tbyrne.org/missing-the-last-tram/page21-2' title='page21.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page21.2-150x150.jpg" class="attachment-thumbnail" alt="page21.2" title="page21.2" /></a>
<a href='http://www.tbyrne.org/missing-the-last-tram/page20-2' title='page20.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page20.2-150x150.jpg" class="attachment-thumbnail" alt="page20.2" title="page20.2" /></a>
<a href='http://www.tbyrne.org/missing-the-last-tram/page19-2' title='page19.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page19.2-150x150.jpg" class="attachment-thumbnail" alt="page19.2" title="page19.2" /></a>
<a href='http://www.tbyrne.org/missing-the-last-tram/page18-2' title='page18.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page18.2-e1280733806494-150x150.jpg" class="attachment-thumbnail" alt="page18.2" title="page18.2" /></a>
<a href='http://www.tbyrne.org/missing-the-last-tram/page17-2' title='page17.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page17.2-150x150.jpg" class="attachment-thumbnail" alt="page17.2" title="page17.2" /></a>
<a href='http://www.tbyrne.org/missing-the-last-tram/page16-2' title='page16.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page16.2-150x150.jpg" class="attachment-thumbnail" alt="page16.2" title="page16.2" /></a>
<a href='http://www.tbyrne.org/missing-the-last-tram/page15-2' title='page15.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page15.2-150x150.jpg" class="attachment-thumbnail" alt="page15.2" title="page15.2" /></a>
<a href='http://www.tbyrne.org/missing-the-last-tram/page14-2' title='page14.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page14.2-150x150.jpg" class="attachment-thumbnail" alt="page14.2" title="page14.2" /></a>
<a href='http://www.tbyrne.org/missing-the-last-tram/page13-2' title='page13.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page13.2-150x150.jpg" class="attachment-thumbnail" alt="page13.2" title="page13.2" /></a>
<a href='http://www.tbyrne.org/missing-the-last-tram/page12-2' title='page12.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page12.2-150x150.jpg" class="attachment-thumbnail" alt="page12.2" title="page12.2" /></a>
<a href='http://www.tbyrne.org/missing-the-last-tram/page11-2' title='page11.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page11.2-150x150.jpg" class="attachment-thumbnail" alt="page11.2" title="page11.2" /></a>
<a href='http://www.tbyrne.org/missing-the-last-tram/page10-2' title='page10.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page10.2-150x150.jpg" class="attachment-thumbnail" alt="page10.2" title="page10.2" /></a>
<a href='http://www.tbyrne.org/missing-the-last-tram/page9-2' title='page9.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page9.2-150x150.jpg" class="attachment-thumbnail" alt="page9.2" title="page9.2" /></a>
<a href='http://www.tbyrne.org/missing-the-last-tram/page8-2' title='page8.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page8.2-150x150.jpg" class="attachment-thumbnail" alt="page8.2" title="page8.2" /></a>
<a href='http://www.tbyrne.org/missing-the-last-tram/page7-2' title='page7.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page7.2-150x150.jpg" class="attachment-thumbnail" alt="page7.2" title="page7.2" /></a>
<a href='http://www.tbyrne.org/missing-the-last-tram/page6-2' title='page6.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page6.2-150x150.jpg" class="attachment-thumbnail" alt="page6.2" title="page6.2" /></a>
<a href='http://www.tbyrne.org/missing-the-last-tram/page5-2' title='page5.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page5.2-e1280734024556-150x150.jpg" class="attachment-thumbnail" alt="page5.2" title="page5.2" /></a>
<a href='http://www.tbyrne.org/missing-the-last-tram/page4-2' title='page4.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page4.2-e1280733777748-150x150.jpg" class="attachment-thumbnail" alt="page4.2" title="page4.2" /></a>
<a href='http://www.tbyrne.org/missing-the-last-tram/page3-2' title='page3.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page3.2-150x150.jpg" class="attachment-thumbnail" alt="page3.2" title="page3.2" /></a>
<a href='http://www.tbyrne.org/missing-the-last-tram/page1-2' title='page1.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page1.2-150x150.jpg" class="attachment-thumbnail" alt="page1.2" title="page1.2" /></a>

]]></content:encoded>
			<wfw:commentRss>http://www.tbyrne.org/missing-the-last-tram/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mitsubishi Motors</title>
		<link>http://www.tbyrne.org/mitsubishi-motors</link>
		<comments>http://www.tbyrne.org/mitsubishi-motors#comments</comments>
		<pubDate>Wed, 09 Apr 2008 04:52:54 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.tbyrne.org/?p=609</guid>
		<description><![CDATA[Here is a site I built during my time at the Farm, with several other developers. Click here to have a peek]]></description>
			<content:encoded><![CDATA[<p>Here is a site I built during my time at <a href="http://thefarmdigital.com.au" target="_blank">the Farm</a>, with several other developers.<span id="more-609"></span></p>
<p><a href="http://www.tbyrne.org/wp-content/uploads/2010/08/mitsubishi.jpg" rel="lightbox[609]"><img class="alignnone size-medium wp-image-611" title="mitsubishi" src="http://www.tbyrne.org/wp-content/uploads/2010/08/mitsubishi-300x179.jpg" alt="" width="300" height="179" /></a></p>
<p><a href="http://www.mitsubishi-motors.com.au" target="_blank">Click here to have a peek</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tbyrne.org/mitsubishi-motors/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Centenary of NRL</title>
		<link>http://www.tbyrne.org/centenary-of-nrl</link>
		<comments>http://www.tbyrne.org/centenary-of-nrl#comments</comments>
		<pubDate>Thu, 06 Mar 2008 08:04:29 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.tbyrne.org/?p=587</guid>
		<description><![CDATA[I built this card flipping application of the NRL when I was at the Farm, despite being pretty tiny it&#8217;s a nice little piece. Click here to check out the Players Browser Click here to check out the Clubs Browser]]></description>
			<content:encoded><![CDATA[<p>I built this card flipping application of the NRL when I was at <a href="http://thefarmdigital.com.au" target="_blank">the Farm</a>, despite being pretty tiny it&#8217;s a nice little piece.</p>
<p><a href="http://www.tbyrne.org/wp-content/uploads/2008/03/NRL.jpg" rel="lightbox[587]"><img src="http://www.tbyrne.org/wp-content/uploads/2008/03/NRL-300x170.jpg" alt="" title="NRL" width="300" height="170" class="alignnone size-medium wp-image-590" /></a></p>
<p><a href="http://www.centenaryofrugbyleague.com.au/site/the-players.aspx" target="_blank">Click here to check out the Players Browser</a><br />
<a href="http://www.centenaryofrugbyleague.com.au/site/the-clubs.aspx" target="_blank">Click here to check out the Clubs Browser</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tbyrne.org/centenary-of-nrl/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bonds Homepage</title>
		<link>http://www.tbyrne.org/bonds-homepage</link>
		<comments>http://www.tbyrne.org/bonds-homepage#comments</comments>
		<pubDate>Sun, 30 Sep 2007 01:37:15 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.tbyrne.org/?p=93</guid>
		<description><![CDATA[This is a site I built for Bonds during my time at the Farm. It integrated existing pages from their previous site (i.e. the pages accessed from the top navigation), which restricted us to AS2. Check it out here]]></description>
			<content:encoded><![CDATA[<p>This is a site I built for Bonds during my time at the Farm.<br />
It integrated existing pages from their previous site (i.e. the pages accessed from the top navigation), which restricted us to AS2.</p>
<p><a href="http://www.tbyrne.org/wp-content/uploads/2010/07/bonds.jpg" rel="lightbox[93]"><img class="alignnone size-medium wp-image-94" title="bonds" src="http://www.tbyrne.org/wp-content/uploads/2010/07/bonds-300x246.jpg" alt="" width="300" height="246" /></a><br />
<span id="more-93"></span><a href="http://www.bonds.com.au" target="_blank">Check it out here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tbyrne.org/bonds-homepage/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Inner Fulcrum Old</title>
		<link>http://www.tbyrne.org/the-inner-fulcrum-old</link>
		<comments>http://www.tbyrne.org/the-inner-fulcrum-old#comments</comments>
		<pubDate>Thu, 02 Aug 2007 08:10:24 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Drawings]]></category>

		<guid isPermaLink="false">http://www.tbyrne.org/?p=213</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page1-2-2' title='page1.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page1.21-e1280737662153-150x150.jpg" class="attachment-thumbnail" alt="page1.2" title="page1.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page2-2' title='page2.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page2.2-150x150.jpg" class="attachment-thumbnail" alt="page2.2" title="page2.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page3-2-2' title='page3.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page3.21-150x150.jpg" class="attachment-thumbnail" alt="page3.2" title="page3.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page4-2-2' title='page4.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page4.21-e1280737675777-150x150.jpg" class="attachment-thumbnail" alt="page4.2" title="page4.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page5-2-2' title='page5.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page5.21-150x150.jpg" class="attachment-thumbnail" alt="page5.2" title="page5.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page6-2-2' title='page6.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page6.21-150x150.jpg" class="attachment-thumbnail" alt="page6.2" title="page6.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page7-2-2' title='page7.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page7.21-150x150.jpg" class="attachment-thumbnail" alt="page7.2" title="page7.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page8-2-2' title='page8.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page8.21-150x150.jpg" class="attachment-thumbnail" alt="page8.2" title="page8.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page9-2-2' title='page9.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page9.21-150x150.jpg" class="attachment-thumbnail" alt="page9.2" title="page9.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page10-2-2' title='page10.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page10.21-150x150.jpg" class="attachment-thumbnail" alt="page10.2" title="page10.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page11-2-2' title='page11.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page11.21-150x150.jpg" class="attachment-thumbnail" alt="page11.2" title="page11.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page12-2-2' title='page12.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page12.21-150x150.jpg" class="attachment-thumbnail" alt="page12.2" title="page12.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page13-2-2' title='page13.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page13.21-150x150.jpg" class="attachment-thumbnail" alt="page13.2" title="page13.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page15-2-2' title='page15.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page15.21-150x150.jpg" class="attachment-thumbnail" alt="page15.2" title="page15.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page16-2-2' title='page16.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page16.21-150x150.jpg" class="attachment-thumbnail" alt="page16.2" title="page16.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page17-2-2' title='page17.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page17.21-150x150.jpg" class="attachment-thumbnail" alt="page17.2" title="page17.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page18-2-2' title='page18.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page18.21-150x150.jpg" class="attachment-thumbnail" alt="page18.2" title="page18.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page19-2-2' title='page19.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page19.21-150x150.jpg" class="attachment-thumbnail" alt="page19.2" title="page19.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page21-2-2' title='page21.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page21.21-150x150.jpg" class="attachment-thumbnail" alt="page21.2" title="page21.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page22-2-2' title='page22.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page22.21-150x150.jpg" class="attachment-thumbnail" alt="page22.2" title="page22.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page23-2' title='page23.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page23.2-150x150.jpg" class="attachment-thumbnail" alt="page23.2" title="page23.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page24-2-2' title='page24.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page24.21-150x150.jpg" class="attachment-thumbnail" alt="page24.2" title="page24.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page25-2-2' title='page25.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page25.21-150x150.jpg" class="attachment-thumbnail" alt="page25.2" title="page25.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page26-2-2' title='page26.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page26.21-150x150.jpg" class="attachment-thumbnail" alt="page26.2" title="page26.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page27-2-2' title='page27.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page27.21-150x150.jpg" class="attachment-thumbnail" alt="page27.2" title="page27.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page28-2-2' title='page28.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page28.21-150x150.jpg" class="attachment-thumbnail" alt="page28.2" title="page28.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page29-2-2' title='page29.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page29.21-150x150.jpg" class="attachment-thumbnail" alt="page29.2" title="page29.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page30-2-2' title='page30.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page30.21-150x150.jpg" class="attachment-thumbnail" alt="page30.2" title="page30.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page31-2-2' title='page31.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page31.21-150x150.jpg" class="attachment-thumbnail" alt="page31.2" title="page31.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page32-2' title='page32.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page32.2-150x150.jpg" class="attachment-thumbnail" alt="page32.2" title="page32.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page33-2' title='page33.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page33.2-150x150.jpg" class="attachment-thumbnail" alt="page33.2" title="page33.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page34-2' title='page34.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page34.2-150x150.jpg" class="attachment-thumbnail" alt="page34.2" title="page34.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page35-2' title='page35.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page35.2-150x150.jpg" class="attachment-thumbnail" alt="page35.2" title="page35.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page36-2' title='page36.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page36.2-e1280805319264-150x150.jpg" class="attachment-thumbnail" alt="page36.2" title="page36.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page37-2' title='page37.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page37.2-150x150.jpg" class="attachment-thumbnail" alt="page37.2" title="page37.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page38-2' title='page38.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page38.2-150x150.jpg" class="attachment-thumbnail" alt="page38.2" title="page38.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page39-2' title='page39.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page39.2-150x150.jpg" class="attachment-thumbnail" alt="page39.2" title="page39.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page40-2' title='page40.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page40.2-150x150.jpg" class="attachment-thumbnail" alt="page40.2" title="page40.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page41-2' title='page41.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page41.2-150x150.jpg" class="attachment-thumbnail" alt="page41.2" title="page41.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page42-2' title='page42.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page42.2-150x150.jpg" class="attachment-thumbnail" alt="page42.2" title="page42.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page43-2' title='page43.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page43.2-150x150.jpg" class="attachment-thumbnail" alt="page43.2" title="page43.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page44-2' title='page44.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page44.2-150x150.jpg" class="attachment-thumbnail" alt="page44.2" title="page44.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page45-2' title='page45.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page45.2-150x150.jpg" class="attachment-thumbnail" alt="page45.2" title="page45.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page46-2' title='page46.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page46.2-e1280737549714-150x150.jpg" class="attachment-thumbnail" alt="page46.2" title="page46.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page47-2' title='page47.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page47.2-150x150.jpg" class="attachment-thumbnail" alt="page47.2" title="page47.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page48-2' title='page48.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page48.2-150x150.jpg" class="attachment-thumbnail" alt="page48.2" title="page48.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page49-2' title='page49.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page49.2-150x150.jpg" class="attachment-thumbnail" alt="page49.2" title="page49.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page50-2' title='page50.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page50.2-150x150.jpg" class="attachment-thumbnail" alt="page50.2" title="page50.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/page51-2' title='page51.2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page51.2-150x150.jpg" class="attachment-thumbnail" alt="page51.2" title="page51.2" /></a>
<a href='http://www.tbyrne.org/the-inner-fulcrum-old/titlepage' title='titlePage'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/titlePage-150x150.jpg" class="attachment-thumbnail" alt="titlePage" title="titlePage" /></a>

]]></content:encoded>
			<wfw:commentRss>http://www.tbyrne.org/the-inner-fulcrum-old/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jaguar Banners</title>
		<link>http://www.tbyrne.org/jaguar-arrow-banner</link>
		<comments>http://www.tbyrne.org/jaguar-arrow-banner#comments</comments>
		<pubDate>Tue, 24 Apr 2007 02:27:59 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.tbyrne.org/?p=33</guid>
		<description><![CDATA[Here are some nice little banners I built for Jaguar while at the White Agency. 
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_300x250_jagArrows_771393477"
			class="flashmovie"
			width="300"
			height="250">
	<param name="movie" value="http://www.tbyrne.org/wp-content/uploads/2010/07/300x250_jagArrows.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://www.tbyrne.org/wp-content/uploads/2010/07/300x250_jagArrows.swf"
			name="fm_300x250_jagArrows_771393477"
			width="300"
			height="250">
	<!--<![endif]-->
		 
	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object> 
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_jag054_300x250_name_91916496"
			class="flashmovie"
			width="300"
			height="250">
	<param name="movie" value="http://www.tbyrne.org/wp-content/uploads/2007/04/jag054_300x250_name.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://www.tbyrne.org/wp-content/uploads/2007/04/jag054_300x250_name.swf"
			name="fm_jag054_300x250_name_91916496"
			width="300"
			height="250">
	<!--<![endif]-->
		 
	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>]]></description>
			<content:encoded><![CDATA[<p>Here are some nice little banners I built for Jaguar while at the White Agency.</p>
<p><span id="more-33"></span><br />
<center><br />

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_300x250_jagArrows_460722409"
			class="flashmovie"
			width="300"
			height="250">
	<param name="movie" value="http://www.tbyrne.org/wp-content/uploads/2010/07/300x250_jagArrows.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://www.tbyrne.org/wp-content/uploads/2010/07/300x250_jagArrows.swf"
			name="fm_300x250_jagArrows_460722409"
			width="300"
			height="250">
	<!--<![endif]-->
		
<p><a href="http://adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>

	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_jag054_300x250_name_1866460984"
			class="flashmovie"
			width="300"
			height="250">
	<param name="movie" value="http://www.tbyrne.org/wp-content/uploads/2007/04/jag054_300x250_name.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://www.tbyrne.org/wp-content/uploads/2007/04/jag054_300x250_name.swf"
			name="fm_jag054_300x250_name_1866460984"
			width="300"
			height="250">
	<!--<![endif]-->
		
<p><a href="http://adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>

	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object><br />
</center></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tbyrne.org/jaguar-arrow-banner/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BigPond &#8211; Combi</title>
		<link>http://www.tbyrne.org/bigpond-combi</link>
		<comments>http://www.tbyrne.org/bigpond-combi#comments</comments>
		<pubDate>Fri, 05 Jan 2007 03:55:51 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.tbyrne.org/?p=80</guid>
		<description><![CDATA[This is a microsite I did for BigPond during my time at the White Agency. The campaign was based around the Combi-van that featured in many of their commercials at the time. Check it out here]]></description>
			<content:encoded><![CDATA[<p>This is a microsite I did for BigPond during my time at the White Agency.<br />
The campaign was based around the Combi-van that featured in many of their commercials at the time.<br />
<center><a href="http://www.tbyrne.org/wp-content/uploads/2006/07/combi.jpg" rel="lightbox[80]"><img src="http://www.tbyrne.org/wp-content/uploads/2006/07/combi-300x171.jpg" alt="" title="combi" width="300" height="171" class="alignnone size-medium wp-image-82" /></a></center><br />
<a href="http://tbyrne.org/portfolio/bigpondcombi/" target="_blank">Check it out here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tbyrne.org/bigpond-combi/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pump Banners</title>
		<link>http://www.tbyrne.org/pump-banners</link>
		<comments>http://www.tbyrne.org/pump-banners#comments</comments>
		<pubDate>Wed, 27 Dec 2006 02:57:56 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.tbyrne.org/?p=49</guid>
		<description><![CDATA[Here are some nice little banners I built for Pump while at the White Agency. 
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_container_2006374394"
			class="flashmovie"
			width="300"
			height="250">
	<param name="movie" value="http://www.tbyrne.org/wp-content/uploads/2010/07/container.swf" />
	<param name="flashvars" value="ebMovie1=http://www.tbyrne.org/wp-content/uploads/2010/07/asset1.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://www.tbyrne.org/wp-content/uploads/2010/07/container.swf"
			name="fm_container_2006374394"
			width="300"
			height="250">
		<param name="flashvars" value="ebMovie1=http://www.tbyrne.org/wp-content/uploads/2010/07/asset1.swf" />
	<!--<![endif]-->
		 
	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object> 
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_waterDrops_728x90_508884876"
			class="flashmovie"
			width="728"
			height="90">
	<param name="movie" value="http://www.tbyrne.org/wp-content/uploads/2010/07/waterDrops_728x90.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://www.tbyrne.org/wp-content/uploads/2010/07/waterDrops_728x90.swf"
			name="fm_waterDrops_728x90_508884876"
			width="728"
			height="90">
	<!--<![endif]-->
		 
	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>]]></description>
			<content:encoded><![CDATA[<p>Here are some nice little banners I built for Pump while at the White Agency.</p>
<p><span id="more-49"></span><br />
<center><br />

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_container_1280253879"
			class="flashmovie"
			width="300"
			height="250">
	<param name="movie" value="http://www.tbyrne.org/wp-content/uploads/2010/07/container.swf" />
	<param name="flashvars" value="ebMovie1=http://www.tbyrne.org/wp-content/uploads/2010/07/asset1.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://www.tbyrne.org/wp-content/uploads/2010/07/container.swf"
			name="fm_container_1280253879"
			width="300"
			height="250">
		<param name="flashvars" value="ebMovie1=http://www.tbyrne.org/wp-content/uploads/2010/07/asset1.swf" />
	<!--<![endif]-->
		
<p><a href="http://adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>

	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_waterDrops_728x90_816205160"
			class="flashmovie"
			width="728"
			height="90">
	<param name="movie" value="http://www.tbyrne.org/wp-content/uploads/2010/07/waterDrops_728x90.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://www.tbyrne.org/wp-content/uploads/2010/07/waterDrops_728x90.swf"
			name="fm_waterDrops_728x90_816205160"
			width="728"
			height="90">
	<!--<![endif]-->
		
<p><a href="http://adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>

	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
<p></center></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tbyrne.org/pump-banners/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jaguar &#8211; Hunt For Gorgeous</title>
		<link>http://www.tbyrne.org/jaguar-hunt-for-gorgeous</link>
		<comments>http://www.tbyrne.org/jaguar-hunt-for-gorgeous#comments</comments>
		<pubDate>Fri, 20 Oct 2006 01:57:12 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.tbyrne.org/?p=28</guid>
		<description><![CDATA[This is a site I did for Jaguar during my time at the White Agency. The campaign centred around the narrator attempting to track down Gorgeous, keeping the dialogue ambiguous enough to refer both to the mysterious woman we see glimpses of as well as the car itself. It&#8217;s a well-worn formula but I think it worked really well. I was the only developer on it and technically it was pretty simple. I did enjoy creating the code generated flames on the candles, as well as the transitions in and out of the videos, which required dynamically drawing/animating the video [...]]]></description>
			<content:encoded><![CDATA[<p>This is a site I did for Jaguar during my time at the White Agency.<br />
The campaign centred around the narrator attempting to track down Gorgeous, keeping the dialogue ambiguous enough to refer both to the mysterious woman we see glimpses of as well as the car itself. It&#8217;s a well-worn formula but I think it worked really well.</p>
<p>I was the only developer on it and technically it was pretty simple. I did enjoy creating the code generated flames on the candles, as well as the transitions in and out of the videos, which required dynamically drawing/animating the video into place with a subtle warping effect.</p>
<p><a href="http://www.tbyrne.org/wp-content/uploads/2006/10/gargeous.jpg" rel="lightbox[28]"><img src="http://www.tbyrne.org/wp-content/uploads/2006/10/gargeous-300x183.jpg" alt="" width="300" height="183" class="alignnone size-medium wp-image-623" /></a></p>
<p><a href="http://tbyrne.org/portfolio/huntforgorgeous/" target="_blank">Check it out here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tbyrne.org/jaguar-hunt-for-gorgeous/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Scrawl</title>
		<link>http://www.tbyrne.org/the-scrawl</link>
		<comments>http://www.tbyrne.org/the-scrawl#comments</comments>
		<pubDate>Thu, 03 Aug 2006 03:18:09 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Drawings]]></category>

		<guid isPermaLink="false">http://www.tbyrne.org/?p=283</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[
<a href='http://www.tbyrne.org/the-scrawl/page01' title='page01'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page01-150x150.jpg" class="attachment-thumbnail" alt="page01" title="page01" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page03-2' title='page03'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page031-150x150.jpg" class="attachment-thumbnail" alt="page03" title="page03" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page04' title='page04'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page04-150x150.jpg" class="attachment-thumbnail" alt="page04" title="page04" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page05-2' title='page05'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page051-150x150.jpg" class="attachment-thumbnail" alt="page05" title="page05" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page06-2' title='page06'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page061-150x150.jpg" class="attachment-thumbnail" alt="page06" title="page06" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page07-2' title='page07'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page071-150x150.jpg" class="attachment-thumbnail" alt="page07" title="page07" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page08-2' title='page08'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page081-150x150.jpg" class="attachment-thumbnail" alt="page08" title="page08" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page09' title='page09'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page09-150x150.jpg" class="attachment-thumbnail" alt="page09" title="page09" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page10-3' title='page10'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page101-150x150.jpg" class="attachment-thumbnail" alt="page10" title="page10" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page11-3' title='page11'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page111-150x150.jpg" class="attachment-thumbnail" alt="page11" title="page11" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page12-3' title='page12'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page121-150x150.jpg" class="attachment-thumbnail" alt="page12" title="page12" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page13-3' title='page13'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page131-150x150.jpg" class="attachment-thumbnail" alt="page13" title="page13" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page14-3' title='page14'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page141-150x150.jpg" class="attachment-thumbnail" alt="page14" title="page14" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page15-3' title='page15'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page151-150x150.jpg" class="attachment-thumbnail" alt="page15" title="page15" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page16-3' title='page16'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page161-150x150.jpg" class="attachment-thumbnail" alt="page16" title="page16" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page17' title='page17'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page17-150x150.jpg" class="attachment-thumbnail" alt="page17" title="page17" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page20-3' title='page20'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page201-150x150.jpg" class="attachment-thumbnail" alt="page20" title="page20" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page21-3' title='page21'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page211-150x150.jpg" class="attachment-thumbnail" alt="page21" title="page21" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page22-3' title='page22'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page221-150x150.jpg" class="attachment-thumbnail" alt="page22" title="page22" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page23' title='page23'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page23-150x150.jpg" class="attachment-thumbnail" alt="page23" title="page23" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page24-3' title='page24'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page241-150x150.jpg" class="attachment-thumbnail" alt="page24" title="page24" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page25-3' title='page25'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page251-150x150.jpg" class="attachment-thumbnail" alt="page25" title="page25" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page26-3' title='page26'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page261-150x150.jpg" class="attachment-thumbnail" alt="page26" title="page26" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page27-3' title='page27'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page271-150x150.jpg" class="attachment-thumbnail" alt="page27" title="page27" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page28-3' title='page28'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page281-150x150.jpg" class="attachment-thumbnail" alt="page28" title="page28" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page29-3' title='page29'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page291-150x150.jpg" class="attachment-thumbnail" alt="page29" title="page29" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page30-3' title='page30'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page301-150x150.jpg" class="attachment-thumbnail" alt="page30" title="page30" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page31-3' title='page31'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page311-150x150.jpg" class="attachment-thumbnail" alt="page31" title="page31" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page32-3' title='page32'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page321-150x150.jpg" class="attachment-thumbnail" alt="page32" title="page32" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page33' title='page33'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page33-150x150.jpg" class="attachment-thumbnail" alt="page33" title="page33" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page34' title='page34'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page34-150x150.jpg" class="attachment-thumbnail" alt="page34" title="page34" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page35-3' title='page35'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page351-150x150.jpg" class="attachment-thumbnail" alt="page35" title="page35" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page36-3' title='page36'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page361-150x150.jpg" class="attachment-thumbnail" alt="page36" title="page36" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page37-3' title='page37'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page371-150x150.jpg" class="attachment-thumbnail" alt="page37" title="page37" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page38-3' title='page38'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page381-150x150.jpg" class="attachment-thumbnail" alt="page38" title="page38" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page39-3' title='page39'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page391-150x150.jpg" class="attachment-thumbnail" alt="page39" title="page39" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page40-3' title='page40'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page401-150x150.jpg" class="attachment-thumbnail" alt="page40" title="page40" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page41-3' title='page41'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page411-150x150.jpg" class="attachment-thumbnail" alt="page41" title="page41" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page42-3' title='page42'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page421-150x150.jpg" class="attachment-thumbnail" alt="page42" title="page42" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page43-3' title='page43'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page431-150x150.jpg" class="attachment-thumbnail" alt="page43" title="page43" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page44-3' title='page44'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page441-150x150.jpg" class="attachment-thumbnail" alt="page44" title="page44" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page45-3' title='page45'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page451-150x150.jpg" class="attachment-thumbnail" alt="page45" title="page45" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page46-3' title='page46'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page461-150x150.jpg" class="attachment-thumbnail" alt="page46" title="page46" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page47-3' title='page47'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page471-150x150.jpg" class="attachment-thumbnail" alt="page47" title="page47" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page48-3' title='page48'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page481-150x150.jpg" class="attachment-thumbnail" alt="page48" title="page48" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page49-3' title='page49'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page491-150x150.jpg" class="attachment-thumbnail" alt="page49" title="page49" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page50-3' title='page50'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page501-150x150.jpg" class="attachment-thumbnail" alt="page50" title="page50" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page51-3' title='page51'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page511-150x150.jpg" class="attachment-thumbnail" alt="page51" title="page51" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page52-2' title='page52'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page521-150x150.jpg" class="attachment-thumbnail" alt="page52" title="page52" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page53-2' title='page53'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page531-150x150.jpg" class="attachment-thumbnail" alt="page53" title="page53" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page54-2' title='page54'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page541-150x150.jpg" class="attachment-thumbnail" alt="page54" title="page54" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page55-2' title='page55'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page551-150x150.jpg" class="attachment-thumbnail" alt="page55" title="page55" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page56-2' title='page56'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page561-150x150.jpg" class="attachment-thumbnail" alt="page56" title="page56" /></a>
<a href='http://www.tbyrne.org/the-scrawl/page57' title='page57'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/page57-150x150.jpg" class="attachment-thumbnail" alt="Sybil felt low, real low (as he slowly sunk it in her)" title="page57" /></a>
<a href='http://www.tbyrne.org/the-scrawl/title_page-2' title='title_page'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/08/title_page1-150x150.jpg" class="attachment-thumbnail" alt="title_page" title="title_page" /></a>

]]></content:encoded>
			<wfw:commentRss>http://www.tbyrne.org/the-scrawl/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Coke &#8217;06</title>
		<link>http://www.tbyrne.org/coke-06</link>
		<comments>http://www.tbyrne.org/coke-06#comments</comments>
		<pubDate>Sat, 01 Apr 2006 02:58:53 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.tbyrne.org/?p=58</guid>
		<description><![CDATA[I was lead developer on a Coke&#8217;s main Australian site in 2006. Technically, it had somewhat lofty ambitions, and whilst I was never entirely happy with the final product, it did look great.]]></description>
			<content:encoded><![CDATA[<p>I was lead developer on a Coke&#8217;s main Australian site in 2006.<br />
Technically, it had somewhat lofty ambitions, and whilst I was never entirely happy with the final product, it did look great.<br />

<a href='http://www.tbyrne.org/coke-06/coke1' title='Coke1'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/07/Coke1-150x150.jpg" class="attachment-thumbnail" alt="Coke1" title="Coke1" /></a>
<a href='http://www.tbyrne.org/coke-06/coke2' title='Coke2'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/07/Coke2-150x150.jpg" class="attachment-thumbnail" alt="Coke2" title="Coke2" /></a>
<a href='http://www.tbyrne.org/coke-06/coke3' title='Coke3'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/07/Coke3-150x150.jpg" class="attachment-thumbnail" alt="Coke3" title="Coke3" /></a>
<a href='http://www.tbyrne.org/coke-06/coke4' title='Coke4'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/07/Coke4-150x150.jpg" class="attachment-thumbnail" alt="Coke4" title="Coke4" /></a>
<a href='http://www.tbyrne.org/coke-06/coke5' title='Coke5'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/07/Coke5-150x150.jpg" class="attachment-thumbnail" alt="Coke5" title="Coke5" /></a>
<a href='http://www.tbyrne.org/coke-06/coke6' title='Coke6'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/07/Coke6-150x150.jpg" class="attachment-thumbnail" alt="Coke6" title="Coke6" /></a>
<a href='http://www.tbyrne.org/coke-06/coke7' title='Coke7'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/07/Coke7-150x150.jpg" class="attachment-thumbnail" alt="Coke7" title="Coke7" /></a>
<a href='http://www.tbyrne.org/coke-06/coke8' title='Coke8'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/07/Coke8-150x150.jpg" class="attachment-thumbnail" alt="Coke8" title="Coke8" /></a>
<a href='http://www.tbyrne.org/coke-06/coke9' title='Coke9'><img width="150" height="150" src="http://www.tbyrne.org/wp-content/uploads/2010/07/Coke9-150x150.jpg" class="attachment-thumbnail" alt="Coke9" title="Coke9" /></a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tbyrne.org/coke-06/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BigPond &#8211; Big Splash</title>
		<link>http://www.tbyrne.org/bigpond-big-splash</link>
		<comments>http://www.tbyrne.org/bigpond-big-splash#comments</comments>
		<pubDate>Mon, 05 Dec 2005 04:09:44 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.tbyrne.org/?p=89</guid>
		<description><![CDATA[This was a Christmas e-card game I built for BigPond while working for The White Agency. I believe there are some secret key combinations to make him do some weird moves, but only Brahma knows what they are now. Click here to play it A little piece of trivia; we shot the pool photos at my mum&#8217;s place.]]></description>
			<content:encoded><![CDATA[<p>This was a Christmas e-card game I built for BigPond while working for The White Agency.<br />
I believe there are some secret key combinations to make him do some weird moves, but only Brahma knows what they are now.</p>
<p><a href="http://www.tbyrne.org/wp-content/uploads/2010/07/bigsplash.jpg" rel="lightbox[89]"><img src="http://www.tbyrne.org/wp-content/uploads/2010/07/bigsplash-300x200.jpg" alt="" title="bigsplash" width="300" height="200" class="alignnone size-medium wp-image-90" /></a></p>
<p><a href="http://www.tbyrne.org/portfolio/bigpondbigsplash/detect.htm" target="_blank">Click here to play it</a></p>
<p>A little piece of trivia; we shot the pool photos at my mum&#8217;s place.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tbyrne.org/bigpond-big-splash/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

