<?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>One Little Robot</title>
	<atom:link href="http://www.onelittlerobot.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.onelittlerobot.co.uk</link>
	<description>Flash, Flex and PHP</description>
	<lastBuildDate>Mon, 09 Aug 2010 20:24:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Actionscript Ant Tool &#8211; Part 1</title>
		<link>http://www.onelittlerobot.co.uk/2010/08/07/actionscript-ant-tool-part-1/</link>
		<comments>http://www.onelittlerobot.co.uk/2010/08/07/actionscript-ant-tool-part-1/#comments</comments>
		<pubDate>Sat, 07 Aug 2010 19:20:11 +0000</pubDate>
		<dc:creator>Kevin Thomas</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Ant]]></category>
		<category><![CDATA[Automation]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://www.onelittlerobot.co.uk/?p=475</guid>
		<description><![CDATA[No one likes repetitive work, it&#8217;s not only boring but is a good way to introduce errors into your code. The best way to eliminate bugs from your code is to not write any code When I first started using frameworks, PureMVC and Caingorm my working processes was to spend a chunk of time setting [...]]]></description>
			<content:encoded><![CDATA[<p>No one likes repetitive work, it&#8217;s not only boring but is a good way to introduce errors into your code. The best way to eliminate bugs from your code is to not write any code <img src='http://www.onelittlerobot.co.uk/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>When I first started using frameworks, PureMVC and Caingorm my working processes was to spend a chunk of time setting up the environment, creating the basic framework files, often these were copied from a previous project and renamed, I toyed with the idea of creating a startup project but this also involved copying and renaming files to get started, not an ideal situation.</p>
<p>Over time I found several projects that would create all the startup files you need to use one of these frameworks but they never seemed quite right for me.</p>
<p>This is where ANT comes in, not only is it a great tool for deploying projects but after installing it in Flash Builder (it comes pre installed if you&#8217;ve installed Flash Builder on top of Eclipse) you have pretty much all the tools you need to build your own tool to quickly start a project.</p>
<p><span id="more-475"></span></p>
<p>That&#8217;s the point of this post so here&#8217;s how I created mine, it&#8217;s tailored to my working practices and I can quickly amend it or explain it to the others on my team. I&#8217;ve recently created a tool to build robot legs projects, unfortunately as I did it for my current employer I&#8217;m not really allowed to share it so this won&#8217;t target a specific framework but should give you the basics to create your own.</p>
<p>If you&#8217;ve got ant installed you&#8217;re good to go, if not have a look <a href="http://www.zoltanb.co.uk/articles/flash-blog/162-fb4-standalone-how-to-install-ant-in-flash-builder-4-premium">here</a>.</p>
<p><img class="alignleft size-full wp-image-517" title="Folder Structure" src="http://www.onelittlerobot.co.uk/wp-content/uploads/2010/08/files2.png" alt="" width="196" height="179" />First things first create a new Flex project, in the root of that project create a folder called builderTool, this is where we&#8217;ll be working. While your at it create a folder in there called templates.</p>
<p>The “templates” folder will contain template files, which will be .as or .mxml files with placeholder tags.</p>
<p>Now we need to create two text files in your builderTool folder, one called build.properties this file will be where we will store properties specific to the tool the other called build.xml this will contain the commands used in the tool.</p>
<h2>The Properties File</h2>
<p>Open up the  build.properties file, we need to define some basic properties for the tool:</p>
<ul>
<li>base folder location, this is the root of your flex project</li>
<li>source folder location, the source folder in your flex project</li>
<li>the template folder location, the template folder we created earlier</li>
</ul>
<p>as well as this we need some project specific properties, these are the ones you&#8217;ll need to change each time you start up a new project. These are:</p>
<ul>
<li>project name</li>
<li>project path</li>
<li>project namespace</li>
<li>your name</li>
<li>your company</li>
<li>your email</li>
<li>the year</li>
</ul>
<p>and lastly the folder names for the framework your using</p>
<ul>
<li>Default folders for model, view and controller files</li>
</ul>
<p>these are just name value pairs in a text file, you can copy the ones below and edit them</p>
<pre class="brush: plain;">
#####################################################################
#
#  CORE Properties
#
#####################################################################

BASE_DIR						=../
SRC_DIR							=${BASE_DIR}src/
TEMPLATES_DIR				=templates

#####################################################################
#
#  PROJECT Properties
#
#####################################################################

# package such as: com.siteName.project
PROJECT_PACKAGE			= com.site.project
# project path such as: com/siteName/project
PROJECT_PATH				= ${SRC_DIR}com/siteName/project/

AUTHOR_NAME					=Your Name
AUTHOR_EMAIL				=your@email.com
COMPANY_NAME				=Your Company Name
PROJECT_NAME				=The Name of the project
YEAR								=2010

#####################################################################
#
#  FRAMEWORK DIRECTORIES
#
#####################################################################

CONTROL_DIR				= ${PROJECT_PATH}control/
CONTROL_PACKAGE		= ${PROJECT_PACKAGE}.control
MODEL_DIR					= ${PROJECT_PATH}model/
MODEL_PACKAGE			= ${PROJECT_PACKAGE}.model
VIEW_DIR					= ${PROJECT_PATH}view/
VIEW_PACKAGE			= ${PROJECT_PACKAGE}.view
</pre>
<p><!-- 		@page { margin: 2cm } 		P { margin-bottom: 0.21cm } -->you&#8217;ll notice that some of the properties in the file require previous properties before they can be defined, also that in order to reference a defined property you need to put it between ${}.</p>
<p>With that done we can get on with creating some commands for the tool.</p>
<h2>The Build File</h2>
<p>Open up the build.xml file, we need to create a project which will be the root node of the file and import the properties we created in the last step.</p>
<p>Now is as good a time as any to open the ant view.</p>
<p>Select Window, Other views&#8230;</p>
<p style="text-align: center;"><!-- 		@page { margin: 2cm } 		P { margin-bottom: 0.21cm } --><img class="size-full wp-image-525 aligncenter" title="Window Dropdown" src="http://www.onelittlerobot.co.uk/wp-content/uploads/2010/08/menu.png" alt="" width="278" height="144" /></p>
<p>In the views popup window, open the ant folder and select ant.</p>
<p><img class="aligncenter size-full wp-image-532" title="Other Views Popup" src="http://www.onelittlerobot.co.uk/wp-content/uploads/2010/08/popup.png" alt="" width="299" height="403" /></p>
<p>we&#8217;ll add some functions to the build file but first drag it from the package explorer to the ant view.</p>
<p>You should see something like this</p>
<p><img class="aligncenter size-full wp-image-528" title="The Ant View" src="http://www.onelittlerobot.co.uk/wp-content/uploads/2010/08/antview.png" alt="" width="420" height="177" /></p>
<pre class="brush: xml;">
&lt;?xml version=&quot;1.0&quot; ?&gt;
&lt;project name=&quot;Demo Ant Project&quot;&gt;
	&lt;property file=&quot;build.properties&quot; /&gt;
&lt;/project&gt;
</pre>
<h3>First Function</h3>
<p>A good first function to create would be to create all the default folders for your framework.</p>
<p style="padding-left: 30px;">Before we do that a brief explanation of how ant works is in order. Ant uses a node called target to contain a series of tasks. These tasks are each defined by a node with various attributes and child nodes.<br />
We&#8217;ll create a target called create folders which will create the framework folders defined in the properties file.</p>
<pre class="brush: xml;">
&lt;target name=&quot;Create Folders&quot;&gt;
	&lt;echo&gt;Start Making Folders&lt;/echo&gt;
	&lt;mkdir dir=&quot;${CONTROL_DIR}&quot; /&gt;
	&lt;mkdir dir=&quot;${MODEL_DIR}&quot; /&gt;
	&lt;mkdir dir=&quot;${VIEW_DIR}&quot; /&gt;
	&lt;echo&gt;Done Making Folders&lt;/echo&gt;
&lt;/target&gt;
</pre>
<p>The name attribute is the title of the function which will show in the ant view<br />
We&#8217;ve used two types of tags used in this function:</p>
<ul>
<li>echo, which displays some feedback in the console view</li>
<li>mkdir which you&#8217;ll recognise if ever used a terminal interface or various other programming languages <a href="http://en.wikipedia.org/wiki/Mkdir">http://en.wikipedia.org/wiki/Mkdir</a>, it creates the directory specified by it&#8217;s dir attribute.</li>
</ul>
<p>After adding this to your build file and saving you should notice a function appear in your ant view, double click on that and ant will create those folders in your source folder, you may need to refresh that folder to see them.</p>
<h3>More Complication</h3>
<p>Thats a good start but now we need to create some files to go in the folders, I&#8217;m going to create a basic model file and populate it with the properties from the properties file we created.</p>
<p>To do this we will need to create a template as file, what you&#8217;ll learn here can also be used to create mxml files for views or pretty much any other type of text file you could want.</p>
<p>Create a new file in the templates folder and name it model.as. Open the file and add the following text</p>
<pre class="brush: as3;">

package @package@
{
	import your.framework.AbstractModel;

	/**
	 *
	 * &lt;p&gt;What does @class.name@ do?&lt;/p&gt;
	 *
	 * Copyright (c) @year@ @company.name@, All Rights Reserved
	 * @author   @author.name@
	 * @contact  @author.email@
	 * @project  @project.name@
	 *
	 */
	public class @class.name@ extends AbstractModel
	{
		public function @class.name@()
			{
				super();
				trace(&quot;I am a new @class.name@&quot;);
			}
	}
}
</pre>
<p>This is a non specific model file, doesn&#8217;t do anything but you should be able to see how it could be filled with all sorts of fancy framework specific stuff.</p>
<p>Notice the tags between @ symbols, those will be replaced when we copy this file using a command, lets get on and write that command now.</p>
<pre class="brush: xml;">
&lt;target name=&quot;Create a model&quot;&gt;
	&lt;description&gt;This Creates a new Model&lt;/description&gt;
	&lt;input message=&quot;Enter model Name:&quot; addproperty=&quot;gesture&quot; /&gt;
	&lt;copy file=&quot;${TEMPLATES_DIR}/Model.as&quot; tofile=&quot;${MODEL_DIR}${gesture}Model.as&quot;&gt;
		&lt;filterchain&gt;
			&lt;replacetokens&gt;
				&lt;token key=&quot;author.name&quot; value=&quot;${AUTHOR_NAME}&quot; /&gt;
				&lt;token key=&quot;author.email&quot; value=&quot;${AUTHOR_EMAIL}&quot; /&gt;
				&lt;token key=&quot;company.name&quot; value=&quot;${COMPANY_NAME}&quot; /&gt;
				&lt;token key=&quot;project.name&quot; value=&quot;${PROJECT_NAME}&quot; /&gt;
				&lt;token key=&quot;package&quot; value=&quot;${MODEL_PACKAGE}&quot; /&gt;
				&lt;token key=&quot;year&quot; value=&quot;${YEAR}&quot; /&gt;
				&lt;token key=&quot;class.name&quot; value=&quot;${gesture}Model&quot; /&gt;
			&lt;/replacetokens&gt;
		&lt;/filterchain&gt;
	&lt;/copy&gt;
	&lt;echo&gt;${MODEL_DIR}${gesture}Model.as created&lt;/echo&gt;
&lt;/target&gt;
</pre>
<p>This one&#8217;s a little more complicated, what we are doing is asking what would you like your model to be called, we do this by using a input tag, this defines a property called gesture which we use to name the file copied to the model folder.</p>
<p>The filterchain defines filters that will be used on the file we want to replace some text in side the file so we use replacetokens and define those tokens using a series of key/value pairs.</p>
<p>If you double click on that command in your ant view you should see get a popup window, type the name of your Model Class in there ant it will be created in you model folder.</p>
<p>I hope that all made sense, there&#8217;s more you can do with this but for now I&#8217;ll stick a copy of the project we&#8217;ve been working on here <a href="http://www.onelittlerobot.co.uk/wp-content/uploads/2010/08/AntDemo1.zip"></a><a href="http://www.onelittlerobot.co.uk/wp-content/uploads/2010/08/AntDemo1.zip">Ant demo files</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.onelittlerobot.co.uk/2010/08/07/actionscript-ant-tool-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The History Trail</title>
		<link>http://www.onelittlerobot.co.uk/2010/02/10/the-history-trail/</link>
		<comments>http://www.onelittlerobot.co.uk/2010/02/10/the-history-trail/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 22:05:05 +0000</pubDate>
		<dc:creator>Kevin Thomas</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Blueprint]]></category>
		<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[Compass]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Sass]]></category>

		<guid isPermaLink="false">http://www.onelittlerobot.co.uk/?p=440</guid>
		<description><![CDATA[I&#8217;ve had a bit of free time recently so fulfilled a promise to my girlfriend to make a site for her. It&#8217;s just about ready to go. http://www.thehistorytrail.co.uk/ Built using the PHP framework Codeigniter for the back end, the CSS was coded using SASS and Compass. And theres a few little bits of Jquery in there. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.onelittlerobot.co.uk/wp-content/uploads/2010/02/historytrail.jpg" rel="shadowbox[post-440];player=img;"><img class="alignleft size-thumbnail wp-image-446" title="The History Trail" src="http://www.onelittlerobot.co.uk/wp-content/uploads/2010/02/historytrail-150x150.jpg" alt="" width="150" height="150" /></a>I&#8217;ve had a bit of free time recently so fulfilled a promise to my girlfriend to make a site for her. It&#8217;s just about ready to go.</p>
<p><a title="The History Trail" href="http://www.thehistorytrail.co.uk/">http://www.thehistorytrail.co.uk/</a></p>
<p>Built using the PHP framework <a title="Codeigniter" href="http://codeigniter.com/">Codeigniter</a> for the back end, the CSS was coded using <a title="SASS" href="http://sass-lang.com/">SASS</a> and <a title="Compass" href="http://wiki.github.com/chriseppstein/compass/">Compass</a>. And theres a few little bits of <a title="Jquery" href="http://jquery.com/">Jquery</a> in there.</p>
<p>It&#8217;s not 100% yet, theres a few style things that need sorting, we&#8217;re working on the content at the moment and what we really want to do with it. But it&#8217;s been an interesting little project that we hope will grow over the coming months. <img src='http://www.onelittlerobot.co.uk/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.onelittlerobot.co.uk/2010/02/10/the-history-trail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yamaha SBV500 and SBV550</title>
		<link>http://www.onelittlerobot.co.uk/2010/02/07/yamaha-sbv500-and-sbv550/</link>
		<comments>http://www.onelittlerobot.co.uk/2010/02/07/yamaha-sbv500-and-sbv550/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 09:33:27 +0000</pubDate>
		<dc:creator>Kevin Thomas</dc:creator>
				<category><![CDATA[Audio]]></category>
		<category><![CDATA[Bass Guitar]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[SBV]]></category>
		<category><![CDATA[Yamaha]]></category>

		<guid isPermaLink="false">http://stuff.nothingmatters.co.uk/?p=418</guid>
		<description><![CDATA[- as this was the only page getting any hits from my old site I decided to update and include it here, it&#8217;s kinda design based - I first came across this bass back in November 2000 I opened Guitarist Magazine and there it was, I immediately fell in love with this weird looking bass [...]]]></description>
			<content:encoded><![CDATA[<p>- as this was the only page getting any hits from my old site I decided to update and include it here, it&#8217;s kinda design based -</p>
<p><a href="http://www.onelittlerobot.co.uk/wp-content/uploads/2008/09/sbv500.jpg" rel="shadowbox[post-418];player=img;"><img class="alignleft" title="sbv500" src="/wp-content/uploads/2008/09/sbv500-300x115.jpg" alt="" width="300" height="115" /></a>I first came across this bass back in November 2000 I opened Guitarist Magazine and there it was, I immediately fell in love with this weird looking bass it had a style like nothing else on the market but I&#8217;d just finished uni and was skint; so even if I could have found one I wouldn&#8217;t have been able to afford it <img src='http://www.onelittlerobot.co.uk/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>At that time when I walked into music shops there seemed to be two kinds of basses, traditional Jazz/Precision style basses (so many clones!) or sleek modern styled basses like the one owned at the time; a lovely looking green Yamaha RBX 760. There didn&#8217;t seem to be any risk takers building basses during the late 90&#8242;s or if there were no one was stocking them. Although there are quite a few out there now I&#8217;d quite like, if only I could justify it to my girlfriend! <img src='http://www.onelittlerobot.co.uk/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>I love the design, it&#8217;s a contradiction of styles that just works for me. Although you could say it&#8217;s based on a traditional Jazz bass the design differs in many ways. It&#8217;s fun without looking cheesy, it has a design heritage dating back to the 60&#8242;s but it still looks fresh.<span id="more-418"></span></p>
<p>The body is a weird reverse cutout that&#8217;s been elongated, it looks sleek; slightly like a reverse Rickenbacker 4003 but with a little less class. The balance isn&#8217;t great but you can forgive that because it looks amazing.</p>
<p>The angled ergonomic headstock shape dates back to the 1960&#8242;s and the original SG line of guitars it gained the range the name &#8220;Samurai&#8221;; I love the simplicity of the design.</p>
<p>Nothing on this bass is complicated, the electronics are passive, the pickups are nice and punchy, within seconds you can dial in the tone you&#8217;re looking for.</p>
<p>Eventually the model was discontinued but I managed to pick one up on ebay, its blue and it became my favorite bass to play.</p>
<p>Body: Solid alder<br />
Neck: Maple, with rosewood fingerboard<br />
Scale: 34&#8243;<br />
Nut Width: 1.57&#8243;<br />
Frets: 20<br />
Electronics: 2 special-design Yamaha single-coils, Individual volume controls, Master tone</p>
<p><a href="http://www.onelittlerobot.co.uk/wp-content/uploads/2008/09/sbv550.jpg" rel="shadowbox[post-418];player=img;"><img class="size-medium wp-image-440 alignleft" title="sbv550" src="http://www.onelittlerobot.co.uk/wp-content/uploads/2008/09/sbv550-300x115.jpg" alt="" width="300" height="115" /></a>A few years later I managed to get hold of a SBV550 in red which has a Precision style pickup while retaining the Jazz pickup at the bridge, the tone is noticeably different to the standard SBV500 you can get that nice Precision bass thump with the bonus of getting back some of the Jazz bass tone if you want it.</p>
<p>This bass was never to my knowledge available in the UK.</p>
<p>The only time I&#8217;ve ever seen one of these on stage Fumi from <a title="Polysics" href="http://www.polysics.com" target="_self">Polysics </a>was playing a 550.</p>
<p>I’ve found a little bit of the history in the <a title="Yamaha Guitar Database" href="http://translate.google.com/translate?hl=en&amp;sl=ja&amp;u=http://www.yamaha.co.jp/product/guitar/eg/database/sg/01/sg-5a.html&amp;sa=X&amp;oi=translate&amp;resnum=7&amp;ct=result&amp;prev=/search%3Fq%3DYamaha%2BSG-5A%26hl%3Den%26rlz%3D1B3GGGL_enGB257GB257%26pwst%3D1" target="_blank">Yamaha Guitar Database</a>.</p>
<p>SB-1C</p>
<p><a href="http://www.onelittlerobot.co.uk/wp-content/uploads/2008/09/sb1c1.jpg" rel="shadowbox[post-418];player=img;"><img class="alignnone size-medium wp-image-425" title="sb1c1" src="http://www.onelittlerobot.co.uk/wp-content/uploads/2008/09/sb1c1-300x102.jpg" alt="" width="300" height="102" /></a></p>
<p>Release November 1968 until around 1971</p>
<p>SB-2</p>
<p><a href="http://www.onelittlerobot.co.uk/wp-content/uploads/2008/09/sb21.jpg" rel="shadowbox[post-418];player=img;"><img class="alignnone size-medium wp-image-426" title="sb21" src="http://www.onelittlerobot.co.uk/wp-content/uploads/2008/09/sb21-300x102.jpg" alt="" width="300" height="102" /></a></p>
<p>Release April 1966 until around 1967</p>
<p>SB-2A</p>
<p><a href="http://www.onelittlerobot.co.uk/wp-content/uploads/2008/09/sb2a1.jpg" rel="shadowbox[post-418];player=img;"><img class="alignnone size-medium wp-image-427" title="sb2a1" src="http://www.onelittlerobot.co.uk/wp-content/uploads/2008/09/sb2a1-300x102.jpg" alt="" width="300" height="102" /></a></p>
<p>Release November 1967 until around 1971</p>
<p>SB-5A</p>
<p><a href="http://www.onelittlerobot.co.uk/wp-content/uploads/2008/09/sb5a1.jpg" rel="shadowbox[post-418];player=img;"><img class="alignnone size-medium wp-image-428" title="sb5a1" src="http://www.onelittlerobot.co.uk/wp-content/uploads/2008/09/sb5a1-300x102.jpg" alt="" width="300" height="102" /></a></p>
<p>Release November 1967 until around 1971 sales</p>
<p>SB-7A</p>
<p><a href="http://www.onelittlerobot.co.uk/wp-content/uploads/2008/09/sb7a1.jpg" rel="shadowbox[post-418];player=img;"><img class="alignnone size-medium wp-image-429" title="sb7a1" src="http://www.onelittlerobot.co.uk/wp-content/uploads/2008/09/sb7a1-300x102.jpg" alt="" width="300" height="102" /></a></p>
<p>Release November 1967 until around 1971</p>
<p>I love the design of these things and the sound is just what I’m looking for.</p>
<p><a href="http://www.onelittlerobot.co.uk/wp-content/uploads/2008/09/both.jpg" rel="shadowbox[post-418];player=img;"><img class="alignnone size-medium wp-image-442" title="both" src="http://www.onelittlerobot.co.uk/wp-content/uploads/2008/09/both-300x190.jpg" alt="" width="300" height="190" /></a></p>
<p><a title="Harmony Central SBV Review" href="http://www.harmony-central.com/Reviews/Yamaha_SBV/">http://www.harmony-central.com/Reviews/Yamaha_SBV/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.onelittlerobot.co.uk/2010/02/07/yamaha-sbv500-and-sbv550/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>I didn’t pick the name! ;)</title>
		<link>http://www.onelittlerobot.co.uk/2009/11/01/i-didnt-pick-the-name/</link>
		<comments>http://www.onelittlerobot.co.uk/2009/11/01/i-didnt-pick-the-name/#comments</comments>
		<pubDate>Sun, 01 Nov 2009 09:00:33 +0000</pubDate>
		<dc:creator>Kevin Thomas</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Blueprint]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.onelittlerobot.co.uk/?p=185</guid>
		<description><![CDATA[I&#8217;ve been playing with a band recently and since we&#8217;ve started getting some gigs I&#8217;ve knocked together a little website (and some flyers), it was a bit of a rush and I&#8217;d like to re-do it using SASS before too long. http://www.thiscausticlife.co.uk/]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been playing with a band recently and since we&#8217;ve started getting some gigs I&#8217;ve knocked together a little website (and some flyers), it was a bit of a rush and I&#8217;d like to re-do it using <a href="http://www.onelittlerobot.co.uk/2009/10/16/sass-and-compass/">SASS</a> before too long.</p>
<p><a href="http://www.thiscausticlife.co.uk/">http://www.thiscausticlife.co.uk/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.onelittlerobot.co.uk/2009/11/01/i-didnt-pick-the-name/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sass and Compass</title>
		<link>http://www.onelittlerobot.co.uk/2009/10/16/sass-and-compass/</link>
		<comments>http://www.onelittlerobot.co.uk/2009/10/16/sass-and-compass/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 21:37:41 +0000</pubDate>
		<dc:creator>Kevin Thomas</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Blueprint]]></category>
		<category><![CDATA[Compass]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Sass]]></category>

		<guid isPermaLink="false">http://www.onelittlerobot.co.uk/?p=157</guid>
		<description><![CDATA[I attended a presentation on using Sass and Compass at work recently. It&#8217;s amazing technology and makes coding in CSS quick and simple. I&#8217;ve been having a bit of a play and managed this site theme on the commute to work over a few days. OK, so it&#8217;s not perfect, I&#8217;m no designer but it&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.onelittlerobot.co.uk/wp-content/uploads/2009/10/sass1.png" rel="shadowbox[post-157];player=img;"><img class="alignleft size-full wp-image-174" title="Sass Code" src="http://www.onelittlerobot.co.uk/wp-content/uploads/2009/10/sass1.png" alt="Sass Code" width="180" height="120" /></a>I attended a presentation on using <a href="http://sass-lang.com/">Sass</a> and <a href="http://compass-style.org/">Compass</a> at work recently. It&#8217;s amazing technology and makes coding in CSS quick and simple. I&#8217;ve been having a bit of a play and managed this site theme on the commute to work over a few days.</p>
<p>OK, so it&#8217;s not perfect, I&#8217;m no designer <img src='http://www.onelittlerobot.co.uk/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  but it&#8217;s amazing how quickly you can get something working using these technologies. One of the real beautys of Sass is that the source files are so readable, so although created quickly it doesn&#8217;t feel hacked together, this means it&#8217;s easy to revisit the code and add to it later.</p>
<p>One of the most confusing aspects of these technologies is that they all call themselves frameworks!?</p>
<p>Sass is in itself almost a new language, based on CSS and <a href="http://haml-lang.com/">Haml</a>, it takes care of all the annoying aspects of CSS, readability, nesting rules, and most important of all variables.</p>
<p>You can now have variables in your CSS code, no more defining things throughout your style sheets and the headaches that result when these change. You simply define some constants at the top of the page for any reusable values. But thats not all, you can define functions as well! In Sass they are called &#8216;Mixins&#8217;, calling a Mixin returns a predefined chuck of code.</p>
<p>You create a Sass file and then compile it to CSS using ruby via the command prompt.</p>
<p>Well if you want to do things the hard way you do, this is where Compass comes in. Compass is another framework, that makes writing CSS even simpler, it comes with a lot of extra functionality onto of that already provided by Sass. As well as a lot of predefined CSS code to include in projects (such as a Sass version of the <a href="http://www.blueprintcss.org/">Blueprint</a> CSS framework) it has ruby commands to make the process of working with Sass simpler.</p>
<p>I&#8217;ve been using Blueprint for some time, the ruby scripts that come with Blueprint are great but nothing compared to using Sass and Compass.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.onelittlerobot.co.uk/2009/10/16/sass-and-compass/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>3D Menu Redux</title>
		<link>http://www.onelittlerobot.co.uk/2009/10/12/3d-menu-redux/</link>
		<comments>http://www.onelittlerobot.co.uk/2009/10/12/3d-menu-redux/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 19:35:00 +0000</pubDate>
		<dc:creator>Kevin Thomas</dc:creator>
				<category><![CDATA[Demos]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[papervision]]></category>

		<guid isPermaLink="false">http://www.onelittlerobot.co.uk/?p=139</guid>
		<description><![CDATA[Playing around with a 3D model we had at work in Flex. Getting the nodes from the collada file and creating some interactions. Takes a little time to load the model and related assets. Click on the buildings to interact with the map. Demo]]></description>
			<content:encoded><![CDATA[<p>Playing around with a 3D model we had at work in Flex. Getting the nodes from the collada file and creating some interactions. Takes a little time to load the model and related assets. Click on the buildings to interact with the map.</p>
<p><a rel="shadowbox;height=480;width=880" href="http://www.onelittlerobot.co.uk/examples/3d/menuRedux/Main.html">Demo</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.onelittlerobot.co.uk/2009/10/12/3d-menu-redux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sudoku</title>
		<link>http://www.onelittlerobot.co.uk/2009/09/27/sudoku/</link>
		<comments>http://www.onelittlerobot.co.uk/2009/09/27/sudoku/#comments</comments>
		<pubDate>Sun, 27 Sep 2009 19:42:58 +0000</pubDate>
		<dc:creator>Kevin Thomas</dc:creator>
				<category><![CDATA[Sudoku]]></category>
		<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[JSON]]></category>

		<guid isPermaLink="false">http://www.onelittlerobot.co.uk/?p=111</guid>
		<description><![CDATA[Another go at a sudoku game, built in flex with a codeignitor backend. Seems to be throwing up the occasional error at the moment just dismiss all and it should be fine. Been thinking about this for ages so will hopefully get some time to work on finishing this soonish. Uses CodeIgniter and JSON for [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="shadowbox;height=580;width=600" href="http://www.onelittlerobot.co.uk/sudoku/demo/Main.swf"><img class="alignleft size-thumbnail wp-image-124" title="sudoku" src="http://www.onelittlerobot.co.uk/wp-content/uploads//sudoku-150x150.png" alt="sudoku" width="150" height="150" /></a>Another go at a sudoku game, built in flex with a codeignitor backend. Seems to be throwing up the occasional error at the moment <img src='http://www.onelittlerobot.co.uk/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  just dismiss all and it should be fine.</p>
<p>Been thinking about this for ages so will hopefully get some time to work on finishing this soonish.</p>
<p>Uses <span>CodeIgniter and JSON for managing the server interaction.<br />
</span></p>
<p><a rel="shadowbox;height=580;width=600" href="http://www.onelittlerobot.co.uk/sudoku/demo/Main.swf">Demo</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.onelittlerobot.co.uk/2009/09/27/sudoku/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Papervision</title>
		<link>http://www.onelittlerobot.co.uk/2009/08/24/papervision-training/</link>
		<comments>http://www.onelittlerobot.co.uk/2009/08/24/papervision-training/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 20:41:44 +0000</pubDate>
		<dc:creator>Kevin Thomas</dc:creator>
				<category><![CDATA[Training]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[papervision]]></category>

		<guid isPermaLink="false">http://onelittlerobot.co.uk/?p=1</guid>
		<description><![CDATA[I’ve been doing a lot of 3D work recently, so was very grateful to get to do some training with Carlos Ulloa the guy who invented it!]]></description>
			<content:encoded><![CDATA[<p>I’ve been doing a lot of 3D work recently, so was very grateful to get to do some training with Carlos Ulloa the guy who invented it!</p>
<p><a href="http://www.onelittlerobot.co.uk/wp-content/uploads/certificate.jpg" rel="shadowbox[post-1];player=img;"></a><a href="http://www.onelittlerobot.co.uk/wp-content/uploads/certificate.jpg" rel="shadowbox[post-1];player=img;"><img class="aligncenter size-medium wp-image-33" title="Papervision Certificate" src="http://www.onelittlerobot.co.uk/wp-content/uploads/certificate-300x225.jpg" alt="" width="300" height="225" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.onelittlerobot.co.uk/2009/08/24/papervision-training/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
