<?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>typingincolor.com</title> <atom:link href="http://typingincolor.com/feed/" rel="self" type="application/rss+xml" /><link>http://typingincolor.com</link> <description>brought to you by Andrew Braithwaite</description> <lastBuildDate>Thu, 15 Dec 2011 23:20:27 +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>Create Things tasks from within outlook</title><link>http://typingincolor.com/2011/12/andrew-braithwaite/create-things-tasks-from-within-outlook/</link> <comments>http://typingincolor.com/2011/12/andrew-braithwaite/create-things-tasks-from-within-outlook/#comments</comments> <pubDate>Thu, 15 Dec 2011 23:20:27 +0000</pubDate> <dc:creator>Andrew Braithwaite</dc:creator> <category><![CDATA[Random]]></category> <category><![CDATA[applescript]]></category> <category><![CDATA[code]]></category> <category><![CDATA[outlook]]></category> <category><![CDATA[things]]></category> <guid
isPermaLink="false">http://typingincolor.com/?p=1036</guid> <description><![CDATA[I use FastScripts to run this, and it creates a Things task for each message you&#8217;ve selected in Outlook. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 &#8230; <a
href="http://typingincolor.com/2011/12/andrew-braithwaite/create-things-tasks-from-within-outlook/">Continue reading <span
class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>I use <a
href="http://www.red-sweater.com/fastscripts/" title="FastScripts">FastScripts</a> to run this, and it creates a Things task for each message you&#8217;ve selected in Outlook.</p><div
class="wp_syntax"><table><tr><td
class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
</pre></td><td
class="code"><pre class="applescript" style="font-family:monospace;"><span style="color: #ff0033; font-weight: bold;">tell</span> <span style="color: #0066ff;">application</span> <span style="color: #009900;">&quot;Microsoft Outlook&quot;</span>
	using terms <span style="color: #ff0033; font-weight: bold;">from</span> <span style="color: #0066ff;">application</span> <span style="color: #009900;">&quot;Microsoft Outlook&quot;</span>
		<span style="color: #808080; font-style: italic;">-- get the currently selected message or messages</span>
		<span style="color: #ff0033; font-weight: bold;">set</span> selectedMessages <span style="color: #ff0033; font-weight: bold;">to</span> current messages
&nbsp;
		<span style="color: #808080; font-style: italic;">-- if there are no messages selected, warn the user and then quit</span>
		<span style="color: #ff0033; font-weight: bold;">if</span> selectedMessages <span style="color: #ff0033; font-weight: bold;">is</span> <span style="color: #000000;">&#123;</span><span style="color: #000000;">&#125;</span> <span style="color: #ff0033; font-weight: bold;">then</span>
			<span style="color: #0066ff;">display dialog</span> <span style="color: #009900;">&quot;Please select a message first and then run this script.&quot;</span> <span style="color: #ff0033; font-weight: bold;">with</span> icon <span style="color: #000000;">1</span>
			<span style="color: #ff0033; font-weight: bold;">return</span>
		<span style="color: #ff0033; font-weight: bold;">end</span> <span style="color: #ff0033; font-weight: bold;">if</span>
&nbsp;
		<span style="color: #ff0033; font-weight: bold;">repeat</span> <span style="color: #ff0033; font-weight: bold;">with</span> theMessage <span style="color: #ff0033; font-weight: bold;">in</span> selectedMessages
			<span style="color: #ff0033; font-weight: bold;">set</span> theSubject <span style="color: #ff0033; font-weight: bold;">to</span> subject <span style="color: #ff0033; font-weight: bold;">of</span> theMessage
			<span style="color: #ff0033; font-weight: bold;">set</span> theContent <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #0066ff;">plain</span> <span style="color: #0066ff;">text</span> <span style="color: #0066ff;">content</span> <span style="color: #ff0033; font-weight: bold;">of</span> theMessage
&nbsp;
			<span style="color: #ff0033; font-weight: bold;">tell</span> <span style="color: #0066ff;">application</span> <span style="color: #009900;">&quot;Things&quot;</span>
				<span style="color: #ff0033; font-weight: bold;">set</span> newToDo <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #0066ff;">make</span> <span style="color: #0066ff;">new</span> <span style="color: #ff0033; font-weight: bold;">to</span> do <span style="color: #ff0033; font-weight: bold;">with</span> <span style="color: #0066ff;">properties</span> <span style="color: #000000;">&#123;</span><span style="color: #0066ff;">name</span>:theSubject<span style="color: #000000;">&#125;</span>
				<span style="color: #ff0033; font-weight: bold;">set</span> tag names <span style="color: #ff0033; font-weight: bold;">of</span> newToDo <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #009900;">&quot;email&quot;</span>
				<span style="color: #ff0033; font-weight: bold;">set</span> notes <span style="color: #ff0033; font-weight: bold;">of</span> newToDo <span style="color: #ff0033; font-weight: bold;">to</span> theContent
			<span style="color: #ff0033; font-weight: bold;">end</span> <span style="color: #ff0033; font-weight: bold;">tell</span>
		<span style="color: #ff0033; font-weight: bold;">end</span> <span style="color: #ff0033; font-weight: bold;">repeat</span>
	<span style="color: #ff0033; font-weight: bold;">end</span> using terms <span style="color: #ff0033; font-weight: bold;">from</span>
<span style="color: #ff0033; font-weight: bold;">end</span> <span style="color: #ff0033; font-weight: bold;">tell</span></pre></td></tr></table></div> ]]></content:encoded> <wfw:commentRss>http://typingincolor.com/2011/12/andrew-braithwaite/create-things-tasks-from-within-outlook/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Alfred Things plugin</title><link>http://typingincolor.com/2011/12/andrew-braithwaite/alfred-things-plugin/</link> <comments>http://typingincolor.com/2011/12/andrew-braithwaite/alfred-things-plugin/#comments</comments> <pubDate>Thu, 15 Dec 2011 23:17:04 +0000</pubDate> <dc:creator>Andrew Braithwaite</dc:creator> <category><![CDATA[Random]]></category> <category><![CDATA[alfred]]></category> <category><![CDATA[applescript]]></category> <category><![CDATA[code]]></category> <category><![CDATA[things]]></category> <guid
isPermaLink="false">http://typingincolor.com/?p=1031</guid> <description><![CDATA[My second applescript for alfred. This time it creates a things task. 1 2 3 4 5 6 7 on alfred_script&#40;q&#41; set theSubject to q tell application &#34;Things&#34; set newToDo to make new to do with properties &#123;name:theSubject&#125; set tag &#8230; <a
href="http://typingincolor.com/2011/12/andrew-braithwaite/alfred-things-plugin/">Continue reading <span
class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>My second applescript for alfred. This time it creates a things task.</p><div
class="wp_syntax"><table><tr><td
class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td
class="code"><pre class="applescript" style="font-family:monospace;"><span style="color: #ff0033; font-weight: bold;">on</span> alfred_script<span style="color: #000000;">&#40;</span>q<span style="color: #000000;">&#41;</span>
	<span style="color: #ff0033; font-weight: bold;">set</span> theSubject <span style="color: #ff0033; font-weight: bold;">to</span> q
	<span style="color: #ff0033; font-weight: bold;">tell</span> <span style="color: #0066ff;">application</span> <span style="color: #009900;">&quot;Things&quot;</span>
		<span style="color: #ff0033; font-weight: bold;">set</span> newToDo <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #0066ff;">make</span> <span style="color: #0066ff;">new</span> <span style="color: #ff0033; font-weight: bold;">to</span> do <span style="color: #ff0033; font-weight: bold;">with</span> <span style="color: #0066ff;">properties</span> <span style="color: #000000;">&#123;</span><span style="color: #0066ff;">name</span>:theSubject<span style="color: #000000;">&#125;</span>
		<span style="color: #ff0033; font-weight: bold;">set</span> tag names <span style="color: #ff0033; font-weight: bold;">of</span> newToDo <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #009900;">&quot;alfred&quot;</span>
	<span style="color: #ff0033; font-weight: bold;">end</span> <span style="color: #ff0033; font-weight: bold;">tell</span>
<span style="color: #ff0033; font-weight: bold;">end</span> alfred_script</pre></td></tr></table></div> ]]></content:encoded> <wfw:commentRss>http://typingincolor.com/2011/12/andrew-braithwaite/alfred-things-plugin/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Alfred ssh plugin</title><link>http://typingincolor.com/2011/12/andrew-braithwaite/alfred-ssh-plugin/</link> <comments>http://typingincolor.com/2011/12/andrew-braithwaite/alfred-ssh-plugin/#comments</comments> <pubDate>Tue, 13 Dec 2011 00:29:41 +0000</pubDate> <dc:creator>Andrew Braithwaite</dc:creator> <category><![CDATA[Random]]></category> <category><![CDATA[alfred]]></category> <category><![CDATA[applescript]]></category> <category><![CDATA[code]]></category> <guid
isPermaLink="false">http://typingincolor.com/?p=1022</guid> <description><![CDATA[I use Alfred (http://www.alfredapp.com/) to speed things up on my mac and it is a brilliant bit of software. I pay for the powerpack and have written a little bit of applescript to allow me to ssh to a server &#8230; <a
href="http://typingincolor.com/2011/12/andrew-braithwaite/alfred-ssh-plugin/">Continue reading <span
class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>I use Alfred (<a
href="http://www.alfredapp.com/">http://www.alfredapp.com/</a>) to speed things up on my mac and it is a brilliant bit of software. I pay for the powerpack and have written a little bit of applescript to allow me to ssh to a server from the launcher.</p><p>I have it set up to so that &#8220;ssh server username&#8221; will connect to server as username. If you don&#8217;t put it a username it will default to &#8220;default&#8221;.</p><div
class="wp_syntax"><table><tr><td
class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
</pre></td><td
class="code"><pre class="applescript" style="font-family:monospace;"><span style="color: #ff0033; font-weight: bold;">on</span> alfred_script<span style="color: #000000;">&#40;</span>q<span style="color: #000000;">&#41;</span>
	<span style="color: #ff0033; font-weight: bold;">set</span> tmp <span style="color: #ff0033; font-weight: bold;">to</span> splitString<span style="color: #000000;">&#40;</span>q, <span style="color: #009900;">&quot; &quot;</span><span style="color: #000000;">&#41;</span>
&nbsp;
	<span style="color: #ff0033; font-weight: bold;">set</span> server <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #0066ff;">item</span> <span style="color: #000000;">1</span> <span style="color: #ff0033; font-weight: bold;">of</span> tmp
&nbsp;
	<span style="color: #ff0033; font-weight: bold;">if</span> length <span style="color: #ff0033; font-weight: bold;">of</span> tmp <span style="color: #ff0033; font-weight: bold;">is</span> <span style="color: #000000;">2</span> <span style="color: #ff0033; font-weight: bold;">then</span> <span style="color: #ff0033; font-weight: bold;">set</span> login <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #0066ff;">item</span> <span style="color: #000000;">2</span> <span style="color: #ff0033; font-weight: bold;">of</span> tmp
	<span style="color: #ff0033; font-weight: bold;">if</span> length <span style="color: #ff0033; font-weight: bold;">of</span> tmp <span style="color: #ff0033; font-weight: bold;">is</span> <span style="color: #000000;">1</span> <span style="color: #ff0033; font-weight: bold;">then</span> <span style="color: #ff0033; font-weight: bold;">set</span> login <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #009900;">&quot;default&quot;</span>
&nbsp;
	<span style="color: #ff0033; font-weight: bold;">set</span> command <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #009900;">&quot;ssh &quot;</span> <span style="color: #000000;">&amp;</span> server <span style="color: #000000;">&amp;</span> <span style="color: #009900;">&quot; -l &quot;</span> <span style="color: #000000;">&amp;</span> login
&nbsp;
	<span style="color: #ff0033; font-weight: bold;">tell</span> <span style="color: #0066ff;">application</span> <span style="color: #009900;">&quot;Terminal&quot;</span>
		do <span style="color: #ff0033; font-weight: bold;">script</span> command
	<span style="color: #ff0033; font-weight: bold;">end</span> <span style="color: #ff0033; font-weight: bold;">tell</span>
<span style="color: #ff0033; font-weight: bold;">end</span> alfred_script
&nbsp;
<span style="color: #ff0033; font-weight: bold;">to</span> splitString<span style="color: #000000;">&#40;</span>aString, delimiter<span style="color: #000000;">&#41;</span>
	<span style="color: #ff0033; font-weight: bold;">set</span> retVal <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #000000;">&#123;</span><span style="color: #000000;">&#125;</span>
	<span style="color: #ff0033; font-weight: bold;">set</span> prevDelimiter <span style="color: #ff0033; font-weight: bold;">to</span> AppleScript<span style="">'</span>s <span style="color: #0066ff;">text</span> <span style="color: #0066ff;">item</span> <span style="color: #0066ff;">delimiters</span>
	log delimiter
	<span style="color: #ff0033; font-weight: bold;">set</span> AppleScript<span style="">'</span>s <span style="color: #0066ff;">text</span> <span style="color: #0066ff;">item</span> <span style="color: #0066ff;">delimiters</span> <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #000000;">&#123;</span>delimiter<span style="color: #000000;">&#125;</span>
	<span style="color: #ff0033; font-weight: bold;">set</span> retVal <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #ff0033;">every</span> <span style="color: #0066ff;">text</span> <span style="color: #0066ff;">item</span> <span style="color: #ff0033; font-weight: bold;">of</span> aString
	<span style="color: #ff0033; font-weight: bold;">set</span> AppleScript<span style="">'</span>s <span style="color: #0066ff;">text</span> <span style="color: #0066ff;">item</span> <span style="color: #0066ff;">delimiters</span> <span style="color: #ff0033; font-weight: bold;">to</span> prevDelimiter
	<span style="color: #ff0033; font-weight: bold;">return</span> retVal
<span style="color: #ff0033; font-weight: bold;">end</span> splitString</pre></td></tr></table></div> ]]></content:encoded> <wfw:commentRss>http://typingincolor.com/2011/12/andrew-braithwaite/alfred-ssh-plugin/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Three Years at the Hut Group</title><link>http://typingincolor.com/2011/11/andrew-braithwaite/three-years-at-the-hut-group/</link> <comments>http://typingincolor.com/2011/11/andrew-braithwaite/three-years-at-the-hut-group/#comments</comments> <pubDate>Tue, 01 Nov 2011 19:52:14 +0000</pubDate> <dc:creator>Andrew Braithwaite</dc:creator> <category><![CDATA[Work]]></category> <category><![CDATA[agile]]></category> <category><![CDATA[Agile Development]]></category> <category><![CDATA[Andrew Braithwaite]]></category> <category><![CDATA[development]]></category> <category><![CDATA[The Hut Group]]></category> <category><![CDATA[work]]></category> <guid
isPermaLink="false">http://typingincolor.com/?p=1013</guid> <description><![CDATA[So it&#8217;s been more or less three years (actually 17th Nov) since I joined the Hut Group, and it&#8217;s not going to be all that long until I&#8217;ve been here longer than I was at IBM (although still a long &#8230; <a
href="http://typingincolor.com/2011/11/andrew-braithwaite/three-years-at-the-hut-group/">Continue reading <span
class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>So it&#8217;s been more or less three years (actually 17th Nov) since I joined the Hut Group, and it&#8217;s not going to be all that long until I&#8217;ve been here longer than I was at IBM (although still a long way to go to overtake Atos). I&#8217;d thought I&#8217;d take this opportunity to look back over the last three years and reflect upon what I&#8217;ve learnt.</p><p><a
href="http://www.thehutgroup.com"><img
class="alignright" title="The Hut Group" src="http://typingincolor.com/pictures/thg.png" alt="" width="300" height="77" /></a>I joined the Hut Group because I was getting bored at Atos Origin. I was working on a project for a large government department and although some of the things we were doing were interesting, it felt like I was destined to work on the project for the long term. A former colleague, Tim, was at the Hut at Head of IT and he asked me to come over and help him sort things out. I turned down the initial offer, but eventually decided to take the opportunity. The main reasons were that I knew Tim, and I wanted to try my hand at web development.</p><p>I joined the Hut Group as a Senior Developer and worked on mostly back-end projects. I integrated with a flowers supplier (not a great success), wrote a backup payment system and made lots and lots of changes to our back office system. I also made a good few changes to the website, including replacing the password reminder system.</p><p>At Atos Origin I had a number of roles as a configuration manager and it seemed natural that I would attempt to sort things out in this area at the Hut as well. We use subversion and I used to police the developers to make sure that they were using it correctly.</p><p>During all of this the development team grew pretty quickly. We I started we had 10 people in the IT department, including the TA, Head of IT and support team. A new CTO joined us, and we went on a recruitment drive that hasn&#8217;t really stopped.</p><p>As the team got bigger I moved into a TA role so that we could provide some technical leadership to the developers. I worked alongside the Chief Technical Architect (James) and helped get some pretty major changes to the platform in. I also spent a lot of time improving our monitoring so we could tell when the platform was having problems.</p><p>About 2 years ago Tim decided to take a new role, so I became the Development Manager and later the Head of Development. Our current CIO (Gareth) joined shortly afterwards and under his leadership we started to introduce agile development.</p><p>Our original process for getting work into the team was for a business stakeholder to fill in a work request form which one of the team would look at and estimate the effort involve. We would group a few of these together and form a project to be delivered. This was the theory in any case. What actually happened is that the work request forms sat in one of several large folders on my desk and pretty much got ignored. What the team actually worked on was whatever a few senior people in the group decided was important. The process wasn&#8217;t very transparent and we had a tendency to start work and not finish it. Things were not great, and nobody was satisfied with performance of the team.</p><p>The first thing we did to more towards an agile methodology was to get control of the work coming in to the team. I went round all the business to talk to them about what work they wanted to be delivered over the next twelve months. These were all written on index cards and James, Gareth and I gave t-shirt size estimates to them all (S, M, L, XL) and fitted them on to a rough plan. We moved away from 15 developers meaning 15 projects on the go, and organised everybody into small teams. We recruited a number of tech leads to lead the teams and they worked with the teams to get the agile practices we want embedded into the team.</p><p>Things began to improve pretty quickly, but it became clear that the Tech Leads were struggling to balance the management side of their role with the technical leadership of the team. We already had a business analyst working with us, and he moved into a project management role and we recruited two more PMs. The PMs work closely with the business to understand their requirements and act as Scrum Master for the project teams. They basically make sure that the developers can concentrate on developing and they remove any impediments that stop them.</p><p>I think the best change we made was decreasing the number of teams. We ended up with 7 teams with a couple of people in them, and this caused a few problems. There was a limit to who people could pair with, and limited the amount of work a team could do. If anybody was on holiday, work basically stopped until they came back. Worst of all it was difficult to get the team to self organise and engender any sort of team spirit. We cut the number of teams down to 3, each with 6 or 7 people in them. We&#8217;ve kept these pretty constant for about six months and they are now very productive. The teams organise themselves (to a certain extent), and we&#8217;ve got a good spirit in all of them.</p><p>The final change we&#8217;ve made is to create a &#8220;Rapid Response&#8221; team. This team handles all the day-to-day requests that come in to the development team. These range from fixing defects, to delivering new pieces of functionality. We aim for a piece of work delivered by the team in 3 days or less. We manage the work of the team using a kanban board, with the business prioritising all the outstanding requests twice a week. The prioritisation meetings take about 15 minutes and we have some really good discussions about what is important to the business. We&#8217;re delivering on average 5 tasks a week and the business like it as they have very clear visibility of what the team is working on now and next. The best thing is that they can see things being delivered.</p><p>So what will the future hold? I personally think we will move away from delivering &#8220;projects&#8221; to delivering features. These will be smaller pieces of work that we can deliver constantly. There will always be projects to deliver, but a lot of what we do is already feature based and a lot of the time we use scrum and sprints to mark time.</p><p>The biggest change on the horizon is that we are recruiting a number of test engineers. These will work with the development teams to promote best practice and help us automate our testing process. We&#8217;ve done some work in this area, but we have a long way to go. I&#8217;m quite excited about some of the things we can do with tools like Cucumber to aid automated acceptance testing.</p><p>What about me? It looks like I am going to get more involved on the technology side of things. We have a number of interesting challenges coming up to make the platform scale to support the continued growth of the business. The good thing about the Hut is we can react quickly to new opportunities and making the IT do this is good fun.</p> ]]></content:encoded> <wfw:commentRss>http://typingincolor.com/2011/11/andrew-braithwaite/three-years-at-the-hut-group/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>BAU becomes Rapid Response</title><link>http://typingincolor.com/2011/10/andrew-braithwaite/bau-becomes-rapid-response/</link> <comments>http://typingincolor.com/2011/10/andrew-braithwaite/bau-becomes-rapid-response/#comments</comments> <pubDate>Thu, 13 Oct 2011 22:17:45 +0000</pubDate> <dc:creator>Andrew Braithwaite</dc:creator> <category><![CDATA[Work]]></category> <category><![CDATA[bau]]></category> <category><![CDATA[kanban]]></category> <category><![CDATA[process]]></category> <category><![CDATA[rapid response]]></category> <guid
isPermaLink="false">http://typingincolor.com/?p=1007</guid> <description><![CDATA[At work we use a kanban process to manage our small change requests with the development team. These requests are pretty much a 50:50 split between new features and defects. We have always used about 15% of our resource to &#8230; <a
href="http://typingincolor.com/2011/10/andrew-braithwaite/bau-becomes-rapid-response/">Continue reading <span
class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>At work we use a kanban process to manage our small change requests with the development team. These requests are pretty much a 50:50 split between new features and defects. We have always used about 15% of our resource to do these requests, but have we only really made any progress once we had a dedicated manager (me!) running the process and dedicated developers doing the work [let's face it, it's the developers who made the difference]. The team is known as the BAU team, and the developers work on it for a 2 week stint and everybody gets to have a go. This has good points and bad points and I&#8217;m still not sure where I am with this. On the good side, it is a great way to spread knowledge through the wider team as the BAU team work on every part of our systems; but as the developers only work on it for a couple of weeks you don&#8217;t really have time to build a team that is self organised and committed to a goal. Having said that, the team have delivered some great pieces of work and I think they have enjoyed the experience overall.</p><p>Anyway, the &#8220;BAU&#8221; name is pretty dull and undersells both the value of the work that the team does and it&#8217;s complexity so we&#8217;ve decided to rename them the Rapid Response Team. I have even done a logo!</p><p>Apologies in advance to our entire Design team and anybody with a modicum of taste for the abomination that am I about to release on the world. I did maths at Uni and I absolutely hated art having realised at an early age that I completely suck at it.</p><p>Anyway&#8230;</p><p><img
alt="Rapid Response Logo" src="http://typingincolor.com/pictures/rapid-response-logo.png" title="Rapid Response" class="alignnone" width="644" height="223" /></p> ]]></content:encoded> <wfw:commentRss>http://typingincolor.com/2011/10/andrew-braithwaite/bau-becomes-rapid-response/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Recruiting developers</title><link>http://typingincolor.com/2011/09/andrew-braithwaite/recruiting-developers/</link> <comments>http://typingincolor.com/2011/09/andrew-braithwaite/recruiting-developers/#comments</comments> <pubDate>Sat, 24 Sep 2011 22:36:48 +0000</pubDate> <dc:creator>Andrew Braithwaite</dc:creator> <category><![CDATA[Work]]></category> <category><![CDATA[recruitment]]></category> <category><![CDATA[work]]></category> <guid
isPermaLink="false">http://typingincolor.com/?p=991</guid> <description><![CDATA[I&#8217;ve just read a very interesting article about recruiting software developers in the Guardian, which pretty much mirrors my feelings on the matter. I do a lot of recruitment and have encountered many of the frustrations described. I&#8217;m going to quote from &#8230; <a
href="http://typingincolor.com/2011/09/andrew-braithwaite/recruiting-developers/">Continue reading <span
class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>I&#8217;ve just read a very interesting article about recruiting software developers in the <a
href="http://www.guardian.co.uk/technology/blog/2011/sep/23/problem-recruitment-software-jobs" target="_blank">Guardian</a>, which pretty much mirrors my feelings on the matter. I do a lot of recruitment and have encountered many of the frustrations described.</p><p>I&#8217;m going to quote from the last paragraph:</p><blockquote><p>To be honest, if someone wrote to me with a nice covering letter and spoke about open source projects that he or she liked, pointed me at a Twitter feed where they were intelligently engaged in the problem domain, and sent me some code that they&#8217;d written, they&#8217;d be more or less hired at this point. No one wants to see a list of technologies with some random skill level or years experience.</p></blockquote><p>If you&#8217;re interested in joining the Hut Group, check out our <a
href="http://www.thehutgroup.com/careers/" target="_blank">careers page</a> and get in touch. I can be reached directly via my twitter account <a
href="http://twitter.com/typingincolor">@typingincolor</a>.</p><p
style="text-align: center;"><a
href="http://www.guardian.co.uk/technology/blog/2011/sep/23/problem-recruitment-software-jobs"><img
class="aligncenter" src="http://static.guim.co.uk/sys-images/Music/Pix/pictures/2008/10/10/Clockwork276.jpg" alt="" width="460" height="276" /></a></p><p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p> ]]></content:encoded> <wfw:commentRss>http://typingincolor.com/2011/09/andrew-braithwaite/recruiting-developers/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Software Engineering Explained</title><link>http://typingincolor.com/2011/09/andrew-braithwaite/software-engineering-explained/</link> <comments>http://typingincolor.com/2011/09/andrew-braithwaite/software-engineering-explained/#comments</comments> <pubDate>Wed, 14 Sep 2011 20:20:57 +0000</pubDate> <dc:creator>Andrew Braithwaite</dc:creator> <category><![CDATA[Development]]></category> <category><![CDATA[development]]></category> <category><![CDATA[work]]></category> <guid
isPermaLink="false">http://typingincolor.com/?p=986</guid> <description><![CDATA[]]></description> <content:encoded><![CDATA[<p><img
class="aligncenter" title="Software Engineering Explained" src="http://typingincolor.com/pictures/software-engineering-explained.png" alt="" width="500" height="375" /></p> ]]></content:encoded> <wfw:commentRss>http://typingincolor.com/2011/09/andrew-braithwaite/software-engineering-explained/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>WANTED &#8211; world class Java developers</title><link>http://typingincolor.com/2011/05/andrew-braithwaite/wanted-world-class-java-developers/</link> <comments>http://typingincolor.com/2011/05/andrew-braithwaite/wanted-world-class-java-developers/#comments</comments> <pubDate>Wed, 25 May 2011 20:03:52 +0000</pubDate> <dc:creator>Andrew Braithwaite</dc:creator> <category><![CDATA[Work]]></category> <category><![CDATA[Agile Development]]></category> <category><![CDATA[development]]></category> <category><![CDATA[recruitment]]></category> <category><![CDATA[The Hut Group]]></category> <category><![CDATA[work]]></category> <guid
isPermaLink="false">http://typingincolor.com/?p=977</guid> <description><![CDATA[As I&#8217;ve mentioned here, I&#8217;m the Development Manager at the Hut Group. We are one of the UK&#8217;s fastest growing technology companies, and the third largest online retailer in the UK. Our goal is to be the largest online retailer in Europe over &#8230; <a
href="http://typingincolor.com/2011/05/andrew-braithwaite/wanted-world-class-java-developers/">Continue reading <span
class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<div><p><a
href="http://www.thehutgroup.com"><img
class="alignright" title="The Hut Group" src="http://typingincolor.com/pictures/thg.png" alt="" width="220" height="58" /></a>As I&#8217;ve mentioned <a
href="http://typingincolor.com/about/">here</a>, I&#8217;m the Development Manager at <a
href="http://www.thehutgroup.com">the Hut Group</a>. We are one of the <a
href="http://www.thehutgroup.com/news/the-hut-group-fastest-growing-company-2009/">UK&#8217;s fastest growing technology companies</a>, and the third largest online retailer in the UK.</p><p>Our goal is to be the largest online retailer in Europe over the next couple of years. We have an excellent development team already but we need to grow to deliver the systems the business needs to support this level of growth.</p><p>We&#8217;ve successfully changed the way we work as a team. We&#8217;ve introduced Agile development to help us work more closely with the business and to enable us to deliver higher quality software more quickly; and it&#8217;s worked really well.</p><p>We develop all of our systems in house, from our websites, through buying, content and finance, to our warehousing systems. As you can imagine, there is a huge breadth of systems we use. We are also building a retail platform that we can offer to our customers to enable them to power their systems.</p><p>It&#8217;s an exciting time to be working at the Hut. We&#8217;ve grown massively over the last few years, and this growth is accelerating. We&#8217;re looking for expert developers to work with us to deliver this growth. We develop in Java, but getting the right person is more important. Whilst we are looking for strong developers, equally important is the ability to communicate effectively.</p><p><a
href="http://www.thehutgroup.com/careers/">Find out more!</a></p></div> ]]></content:encoded> <wfw:commentRss>http://typingincolor.com/2011/05/andrew-braithwaite/wanted-world-class-java-developers/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Management Monkey</title><link>http://typingincolor.com/2011/05/andrew-braithwaite/management-monkey/</link> <comments>http://typingincolor.com/2011/05/andrew-braithwaite/management-monkey/#comments</comments> <pubDate>Wed, 25 May 2011 13:58:23 +0000</pubDate> <dc:creator>Andrew Braithwaite</dc:creator> <category><![CDATA[Random]]></category> <category><![CDATA[joke]]></category> <category><![CDATA[Project Management]]></category> <guid
isPermaLink="false">http://typingincolor.com/?p=975</guid> <description><![CDATA[As a developer of long experience, and a manager more recently: this joke appealed to me A tourist walked into a pet shop and was looking at the animals on display. While he was there,another customer walked in and said &#8230; <a
href="http://typingincolor.com/2011/05/andrew-braithwaite/management-monkey/">Continue reading <span
class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>As a developer of long experience, and a manager more recently: this joke appealed to me</p><blockquote><p>A tourist walked into a pet shop and was looking at the animals on display. While he was there,another customer walked in and said to the shopkeeper, &#8220;I&#8217;ll have a C monkey please.&#8221; The shopkeeper nodded, went over to a cage at the side of the shop and took out a monkey. He fitted a collar and leash, handed to the customer,saying, &#8220;That&#8217;ll be $5,000.&#8221;</p><p>The customer paid and walked out with his monkey. Startled,the tourist went over to the shopkeeper and said,&#8221;That was a very expensive monkey. Most of them are only a few hundred pounds. Why did it cost so much? &#8220;The shopkeeper answered, &#8220;Ah,that monkey can program in C &#8211; very fast,tight code,no bugs,well worth the money.&#8221;</p><p>The tourist looked at a monkey in another cage. &#8220;Hey,that one&#8217;s even more expensive! $10,000! What does it do?&#8221;</p><p>&#8220;Oh,that one&#8217;s a C++ monkey; it can manage object-oriented programming,Visual C++, even some Java All the really useful stuff,&#8221; said the shopkeeper.</p><p>The tourist looked around for a little longer and saw a third monkey in a cage of its own. The price tag around its neck read $50,000.The tourist gasped to the shopkeeper, &#8220;That one costs more than all the others put together! What on earth does it do?&#8221;</p><p>The shopkeeper replied, &#8220;Well, I haven&#8217;t actually seen it do anything, but it says it&#8217;s a project manager&#8221;.</p><p>&nbsp;</p></blockquote> ]]></content:encoded> <wfw:commentRss>http://typingincolor.com/2011/05/andrew-braithwaite/management-monkey/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Happy Birthday to me</title><link>http://typingincolor.com/2011/04/andrew-braithwaite/happy-birthday-to-me/</link> <comments>http://typingincolor.com/2011/04/andrew-braithwaite/happy-birthday-to-me/#comments</comments> <pubDate>Mon, 25 Apr 2011 08:00:13 +0000</pubDate> <dc:creator>Andrew Braithwaite</dc:creator> <category><![CDATA[Random]]></category> <guid
isPermaLink="false">http://typingincolor.com/?p=968</guid> <description><![CDATA[So another year gone and I have reached the ripe old age of 36. I guess I will have to accept that I am now middle aged. The chances of me playing centre-half for City or becoming a rock god &#8230; <a
href="http://typingincolor.com/2011/04/andrew-braithwaite/happy-birthday-to-me/">Continue reading <span
class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>So another year gone and I have reached the ripe old age of 36. I guess I will have to accept that I am now middle aged. The chances of me playing centre-half for City or becoming a rock god are probably now on the remote side, so what I am going to do for the second half of my life?</p><p>The first half has been pretty eventful. I&#8217;ve been married for the best part of 14 years to the girl I met at university, and despite what I may say, I don&#8217;t regret any of it.</p><p>I have two lovely boys who drive me insane but who I wouldn&#8217;t be without.</p><p>I&#8217;ve been pretty successful at work, despite some interesting career choices. I&#8217;ve even ended up managing a team of 30, which I am sure will amuse a number of my former colleagues. I&#8217;ve worked in Belgium for a year, worked for the UK&#8217;s biggest bank, the largest IT company in the world and even the Guernsey Government. I&#8217;ve worked with some brilliant people and written some pretty code.</p><p>It&#8217;s not all been fun. Number 1 son was born four 3 months early, weighing 1lb 9oz. I wouldn&#8217;t want to repeat the night he was born, stressful doesn&#8217;t begin to cover it. I can only guess how much the NHS spent looking after him, but I am eternally grateful to everybody who did. I find it amazing that he shows absolutely no signs of what he want through.</p><p>So the last 35 years have been pretty good on the whole. What to do now?</p> ]]></content:encoded> <wfw:commentRss>http://typingincolor.com/2011/04/andrew-braithwaite/happy-birthday-to-me/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
