<?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>The Watchmaker Project</title>
	<atom:link href="http://www.thewatchmakerproject.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thewatchmakerproject.com</link>
	<description>v5.0</description>
	<lastBuildDate>Mon, 14 May 2012 06:03:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Future of Web Design 2012</title>
		<link>http://www.thewatchmakerproject.com/post/future-of-web-design-2012/</link>
		<comments>http://www.thewatchmakerproject.com/post/future-of-web-design-2012/#comments</comments>
		<pubDate>Mon, 14 May 2012 06:03:53 +0000</pubDate>
		<dc:creator>Matthew Pennell</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.thewatchmakerproject.com/?p=96</guid>
		<description><![CDATA[Later today I&#8217;l be jetting off yet again, bound for London and the Future of Web Design conference, taking place over the next two days. Stuart Frisby and I will be there as part of the Booking.com recruitment bandwagon, handing out goodies and trying very hard to tempt the cream of the UK&#8217;s web design [...]]]></description>
			<content:encoded><![CDATA[<p>Later today I&#8217;l be jetting off yet again, bound for London and the <a  href="http://futureofwebdesign.com/london-2012/">Future of Web Design conference</a>, taking place over the next two days.</p>
<p><a  href="http://mrfrisby.com/">Stuart Frisby</a> and I will be there as part of the <a  href="http://www.booking.com/jobs/">Booking.com</a> recruitment bandwagon, handing out goodies and trying very hard to tempt the cream of the UK&#8217;s web design scene to up sticks and relocate to beautiful Amsterdam.</p>
<p>Hopefully we&#8217;ll be able to catch some of the talks while we&#8217;re there as well. I&#8217;m looking forward to hearing Brendan Dawes for the first time; Vitaly &#8220;Smashing Magazine&#8221; Friedman, Steve Fisher and Laura Kalbag will be the first non-Marcottes I&#8217;ve seen talk about Responsive; and the closing talks by Martin Beeby and Mark Boulton both promise to be inspiring.</p>
<p>If you&#8217;re attending, make sure to come and say hi &#8211; and if you overhear anyone complaining about their job, be sure to point them in our direction!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thewatchmakerproject.com/post/future-of-web-design-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Throwing out the kitchen sink</title>
		<link>http://www.thewatchmakerproject.com/post/throwing-out-the-kitchen-sink/</link>
		<comments>http://www.thewatchmakerproject.com/post/throwing-out-the-kitchen-sink/#comments</comments>
		<pubDate>Sat, 07 Apr 2012 13:00:50 +0000</pubDate>
		<dc:creator>Matthew Pennell</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.thewatchmakerproject.com/?p=92</guid>
		<description><![CDATA[In a recent post on the BBC Responsive News blog, Tom Maslen makes the case for a significantly more aggressive browser grading strategy. Browser grading, as a formal concept, was popularised by Yahoo! back in the day. At the time, their support matrix was understandably generous: IE6 and Firefox 2.0 were both &#8220;A-grade&#8221; browsers at [...]]]></description>
			<content:encoded><![CDATA[<p>In <a  title="Cutting the mustard, BBC Responsive News blog" href="http://blog.responsivenews.co.uk/post/18948466399/cutting-the-mustard">a recent post on the BBC Responsive News blog</a>, Tom Maslen makes the case for a significantly more aggressive browser grading strategy.</p>
<p>Browser grading, as a formal concept, was popularised by Yahoo! <a  title="Graded Browser Support on Yahoo! in 2008" href="http://yuiblog.com/blog/2008/02/19/gbs-update-20080219/">back in the day</a>. At the time, their support matrix was understandably generous: IE6 and Firefox 2.0 were both &#8220;A-grade&#8221; browsers at the time, which by Yahoo!&#8217;s standards meant that they deserved the full, bells-and-whistles experience. <a  title="Graded Browser Support on Yahoo!" href="http://yuilibrary.com/yui/docs/tutorials/gbs/">Their policy</a> has changed over the years; they no longer explicitly specify an A/C/X grade to indicate support, but instead use the woolier term &#8220;test baseline&#8221; to determine which browsers belong in their <abbr title="Quality Assurance">QA</abbr> suite. IE6 and their low percentage ilk remain C-grade, meaning they receive:</p>
<blockquote><p>&#8230;nothing more than semantic <abbr title="HyperText Markup Language">HTML</abbr>, the content and experience is highly accessible, unenhanced by decoration or advanced functionality, and forward and backward compatible. Layers of style and behavior are omitted.</p></blockquote>
<p><a  href="http://www.alistapart.com/articles/understandingprogressiveenhancement/">Progressive Enhancement</a> in a nutshell.</p>
<h2>Maslen&#8217;s hierarchy of browser needs</h2>
<p>The BBC&#8217;s approach, while sharing the PE philosophy, is significantly more exclusionary. A single line of JavaScript leverages browser feature detection to decide whether you&#8217;re one of the chosen few:</p>
<blockquote><p><code>if ('querySelector' in document<br />
&amp;&amp; 'localStorage' in window<br />
&amp;&amp; 'addEventListener' in window) {<br />
// bootstrap the javascript application<br />
}</code></p></blockquote>
<p>The upshot of this simple check is that IE9+ and all other modern browsers get the progressive sugar. And, according to Maslen, it also means that (because you now know that your visitor&#8217;s browser supports such useful shortcuts as <code>document.querySelector</code> and <code>window.addEventListener</code>) you can avoid the need for large and slow-to-download JavaScript libraries. Instead:</p>
<blockquote><p>&#8230;we can now develop JavaScript solutions that use native implementations of features that we have grown accustomed to using without having to download polyfilling libraries.</p></blockquote>
<p>I have a problem with this approach.</p>
<h2>Baby with the bath water</h2>
<p>Reducing page weight is a noble aim. A <a  title="Web pages are getting more bloated, and here’s why" href="http://royal.pingdom.com/2011/11/21/web-pages-getting-bloated-here-is-why/">recent article from Pingdom</a> contains some statistics on the increase in average KB over the last year; it&#8217;s certainly true that the golden rule I grew up with &#8211; no page should ever be over 100Kb &#8211; has long since been mothballed. And, as Maslen&#8217;s and Pingdom&#8217;s articles indicate, the explosion in the use of JavaScript libraries is definitely a part of the problem, despite also evidently being the solution to many developers&#8217; prayers. By abstracting away all of the cross-browser headaches and leaving novices with a single, easy to learn API, libraries such as <a  href="http://jquery.com/">jQuery</a> have secured a place in almost every developer&#8217;s default template.</p>
<p>Maslen contends that, if the primary reason for using a library is to work around the lack of universal support for querySelector and the like, you don&#8217;t need it providing you are only targeting browsers with native support for that feature. Bang &#8211; well done, you just reduced your page weight by 32Kb or more!</p>
<p>I have two main issues here:</p>
<ol>
<li>By excluding users on IE8 and lower, you are potentially cutting off a quarter or more of your audience from experiencing the intended experience. This proportion will also vary depending on what day it is (IE usage rises during the week when people are at work without the freedom to choose their browser) and from what part of the world your site is being accessed (IE6&#8242;s share of US traffic might be sub 1%, but could be closer to 50% in China <a  title="IE6 market share (Wikipedia)" href="http://en.wikipedia.org/wiki/Internet_Explorer_6#Market_share">according to Wikipedia</a>).</li>
<li>Replacing library functionality with native doesn&#8217;t really gain you anything in modern browsers. Any decent library will be checking for the native functionality first, so the library function simply becomes a reference to the native function.</li>
</ol>
<p>So, if &#8216;going native&#8217; has no meaningful benefit for A-grade browsers, and you don&#8217;t want to exclude large swathes of your traffic, what are we left with in the &#8220;No&#8221; column for library usage? File size.</p>
<h2>I accidentally a whole JavaScript library</h2>
<p>jQuery and other libraries are attractive because they make it possible to do clever things with web pages without the need to actually learn or understand JavaScript. Novices can drop the core library into a page, throw in a few other plugins, maybe the jQuery UI module as well, and get started on making things appear, disappear, or fly around the page. And for the hobbyist or small business that might be okay, but at scale you naturally start to worry about download speed, concatenation, minification, and all the other <a  href="https://developers.google.com/speed/">site speed</a> buzzwords. But I&#8217;m going to let you in on a little secret&#8230;</p>
<p><em>Nobody ever said that you had to use the whole library.</em></p>
<p>Don&#8217;t need to use any AJAX requests? <strong>Strip that shit out.</strong> Same for animation, event handlers you&#8217;re never going to use, dimension calculations &#8211; in fact, anything that you don&#8217;t actually need to use can be removed (or commented out, then minified using a minifier that ignores comments).</p>
<p>Of course, this approach requires you to know what you&#8217;re doing when it comes to native JavaScript; but so does Maslen&#8217;s proposal, and by choosing to keep the library you&#8217;re scoring some significant benefits:</p>
<ul>
<li>There is now no need to exclude older browsers that don&#8217;t support the native features simulated by the library;</li>
<li>You can spend your time creating new functionality, instead of painstakingly recreating something that was already present in the library you threw away.</li>
</ul>
<p>Library authors have put in many thousands of hours figuring out the most efficient, compact and bug-free way to do most of the things you&#8217;re likely to need on a web site. Ignoring that free labour in favour of doing it yourself to help fewer people just seems like the wrong decision.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thewatchmakerproject.com/post/throwing-out-the-kitchen-sink/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Should your logo link to your homepage? Google says no.</title>
		<link>http://www.thewatchmakerproject.com/post/should-your-logo-link-to-your-homepage-google-says-no/</link>
		<comments>http://www.thewatchmakerproject.com/post/should-your-logo-link-to-your-homepage-google-says-no/#comments</comments>
		<pubDate>Thu, 29 Mar 2012 05:24:43 +0000</pubDate>
		<dc:creator>Matthew Pennell</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.thewatchmakerproject.com/?p=88</guid>
		<description><![CDATA[Ever since I&#8217;ve been building web pages, it has been gospel that your logo (top-left, of course) should be a hyperlink back to your homepage. Jakob Nielsen&#8217;s seminal Homepage Usability recommended as such (with the caveat that the link should not be live on the actual homepage), and it is almost a subconscious action to wrap [...]]]></description>
			<content:encoded><![CDATA[<p>Ever since I&#8217;ve been building web pages, it has been gospel that your logo (top-left, of course) should be a hyperlink back to your homepage. Jakob Nielsen&#8217;s seminal <em><a  href="http://www.useit.com/homepageusability/">Homepage Usability</a></em> recommended as such (with the caveat that the link should not be live on the actual homepage), and it is almost a subconscious action to wrap that <code>IMG</code> or text in an <code>A</code> tag and link it to &#8220;/&#8221;.</p>
<p><img class="alignnone size-full wp-image-89" title="Google+ menu bar screenshot" src="http://www.thewatchmakerproject.com/wp-content/uploads/2012/03/Picture-1.png" alt="" width="617" height="103" /></p>
<p>Strangely though, Google&#8217;s most recent refresh of their apps have dropped this two-decade convention. None of their properties &#8211; GMail, Google Docs, Google+, et al &#8211; make the Google logo into a link; now if you want to return to the default view of the app, you must locate and click the much smaller &#8220;Home&#8221; link (or, in the case of Google+, the even smaller Home icon in the navigation bar).</p>
<p>I suspect that the reason is an attempt to train users that the top light-grey bar on all Google&#8217;s properties is not tied to the app you are currently using, but is instead a persistent area present across the entire range. The right-hand end of the bar is now home to your G+ notifications, avatar and share link, so perhaps they hope that by dedicating the top 100px of the page to their social network they can encourage adoption and/or use. I think that the loss in terms of usability and user expectation is disappointing.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thewatchmakerproject.com/post/should-your-logo-link-to-your-homepage-google-says-no/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>#SUGT &#8211; Stanford University&#8217;s Game Theory course</title>
		<link>http://www.thewatchmakerproject.com/post/sugt-stanford-universitys-game-theory-course/</link>
		<comments>http://www.thewatchmakerproject.com/post/sugt-stanford-universitys-game-theory-course/#comments</comments>
		<pubDate>Wed, 14 Mar 2012 20:58:46 +0000</pubDate>
		<dc:creator>Matthew Pennell</dc:creator>
				<category><![CDATA[Game Theory]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.thewatchmakerproject.com/?p=85</guid>
		<description><![CDATA[Several weeks ago I signed up to receive updates on an innovative new set of online study courses run by Stanford University. I&#8217;d all but forgotten about the course until today, when I received an email informing me that the online resources for the Game Theory course were now open for registration, and the first [...]]]></description>
			<content:encoded><![CDATA[<p>Several weeks ago I signed up to receive updates on an innovative new set of online study courses run by <a  href="http://www.stanford.edu/">Stanford University</a>. I&#8217;d all but forgotten about the course until today, when I received an email informing me that the online resources for the <a  href="https://www.coursera.org/gametheory/">Game Theory course</a> were now open for registration, and the first video available to watch.</p>
<p>I&#8217;ll be spending the weekend watching that video and playing the example games in the <a  href="http://game-theory-lab.org/">Game Theory Lab</a>; for now, I&#8217;m boning up on mostly forgotten probability theory mathematics with the help of <a  href="http://en.wikipedia.org/wiki/Probability_theory">Wikipedia</a>. I&#8217;m taking notes in my trusty moleskine, but I&#8217;ll also use this blog to record what I&#8217;m learning. Here is Wiki&#8217;s plainspeak rundown of the relevant terminology:</p>
<blockquote><p>Consider an experiment that can produce a number of outcomes. The collection of all results is called the <strong>sample space</strong> of the experiment. The <strong>power set</strong> of the sample space is formed by considering all different collections of possible results. For example, rolling a die produces one of six possible results. One collection of possible results corresponds to getting an odd number. Thus, the subset {1,3,5} is an element of the power set of the sample space of die rolls. These collections are called <strong>events</strong>. In this case, {1,3,5} is the <strong>event</strong> that the die falls on some odd number. If the results that actually occur fall in a given event, that event is said to have <strong>occurred</strong>.</p>
<p>Probability is a way of assigning every &#8220;event&#8221; a value between zero and one, with the requirement that the event made up of all possible results (in our example, the event {1,2,3,4,5,6}) be assigned a value of one. To qualify as a <strong>probability distribution</strong>, the assignment of values must satisfy the requirement that if you look at a collection of mutually exclusive events (events that contain no common results, e.g., the events {1,6}, {3}, and {2,4} are all mutually exclusive), the probability that at least one of the events will occur is given by the sum of the probabilities of all the individual events.</p>
<p>The probability that any one of the events {1,6}, {3}, or {2,4} will occur is 5/6. This is the same as saying that the probability of event {1,2,3,4,6} is 5/6. This event encompasses the possibility of any number except five being rolled. The mutually exclusive event {5} has a probability of 1/6, and the event {1,2,3,4,5,6} has a probability of 1 &#8211; absolute certainty.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.thewatchmakerproject.com/post/sugt-stanford-universitys-game-theory-course/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Mindful Designer</title>
		<link>http://www.thewatchmakerproject.com/post/the-mindful-designer/</link>
		<comments>http://www.thewatchmakerproject.com/post/the-mindful-designer/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 13:28:09 +0000</pubDate>
		<dc:creator>Matthew Pennell</dc:creator>
				<category><![CDATA[Sharing]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.thewatchmakerproject.com/?p=82</guid>
		<description><![CDATA[One of the highlights of last week&#8217;s New Adventures conference, which I attended as part of Booking.com&#8217;s recruitment away-team, was Robbie Manson&#8217;s talk on mindfulness. His thoughtful presentation, coupled with a laconic, deliberate delivery made him sound like the smartest Scot you&#8217;ve ever met.]]></description>
			<content:encoded><![CDATA[<p>One of the highlights of last week&#8217;s <a  href="http://2012.newadventuresconf.com/">New Adventures conference</a>, which I attended as part of <a  href="http://booking.com/jobs">Booking.com&#8217;s recruitment</a> away-team, was Robbie Manson&#8217;s talk on mindfulness. His thoughtful presentation, coupled with a laconic, deliberate delivery made him sound like the smartest Scot you&#8217;ve ever met.</p>
<p><iframe src="http://player.vimeo.com/video/35720464?title=0&amp;byline=0&amp;portrait=0" frameborder="0" width="617" height="347"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thewatchmakerproject.com/post/the-mindful-designer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My GTD wishlist</title>
		<link>http://www.thewatchmakerproject.com/post/my-gtd-wishlist/</link>
		<comments>http://www.thewatchmakerproject.com/post/my-gtd-wishlist/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 19:24:54 +0000</pubDate>
		<dc:creator>Matthew Pennell</dc:creator>
				<category><![CDATA[GTD]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.thewatchmakerproject.com/?p=80</guid>
		<description><![CDATA[I like Getting Things Done. I really do. But, ever since reading the book and subscribing to the philosophy, I’ve had trouble nailing down a process that entirely works for me. At the core of Allen’s recommendations is this idea of a “trusted system” and it’s that aspect that I have struggled with. I’ve tried [...]]]></description>
			<content:encoded><![CDATA[<p>I like <a  href="http://en.wikipedia.org/wiki/Getting_Things_Done">Getting Things Done</a>. I really do. But, ever since reading the book and subscribing to the philosophy, I’ve had trouble nailing down a process that entirely works for me.</p>
<p>At the core of Allen’s recommendations is this idea of a “trusted system” and it’s that aspect that I have struggled with. I’ve tried everything from plain text documents to the flavour-du-jour piece of software, but nothing has ever really felt quite right. I sat down and wrote a list of the features that I crave:</p>
<ul>
<li>Access across multiple devices. I want to be able to pull up my projects and lists at home, at work, and when out and about on my phone.</li>
<li>If it’s a web application, it should also be able to work offline &#8211; I don’t want to be rendered impotent due to the internet going down.</li>
<li>It should do “proper” GTD, and not just be a fancy to-do list manager. That means regular reviews, tickler files, the whole works.</li>
<li>Capture should be possible through a variety of different means &#8211; at least email, but anything else is a bonus: voice, calendar, or integration with other apps such as <a  href="http://www.evernote.com/">Evernote</a>.</li>
<li>The ability to function as a mini project management tool as well &#8211; somewhere to write notes, a scratchboard, lists of links and future plans other than in a list format.</li>
</ul>
<p>Reviewing the options available, it’s extremely hard to find something that ticks all my boxes. Plain text (or even pen and paper) is a little tempting, but I’d much rather rely on some form of automated reminder system than my own memory. <a  href="http://www.6wunderkinder.com/wunderlist/">Wunderlist</a>, which is what I’ve been using for the last few months, is okay but little more than a to-do list tool, lacking even a built-in way to manage contexts &#8211; and because of the flat structure, you can’t even create fake contexts as pseudo-projects, because each task can only live in one place. In fact, the only application I’ve really found that is explicitly a GTD enabler is <a  href="http://www.midnightbeep.com/">Midnight Inbox</a>, but every time I’ve attempted to use it it’s either been too fiddly and sensitive to setup in a way that works for me, or horribly buggy.</p>
<p>At the moment, my shortlist (and reservations) looks like this:</p>
<ul>
<li><a  href="https://www.nirvanahq.com/">Nirvana</a>: Web application with offline support and add-by-email, and reasonable note-taking and tagging facilities. Lacks full GTD features.</li>
<li><a  href="http://www.midnightbeep.com/">Midnight Inbox</a>: Beautiful native application, sync-able with Dropbox, and a real GTD process. Has notes plus a “reference” filing area, and planned iPad and iPhone versions &#8211; but no Android! It also seems to have really stupid bugs every time I download a new version…</li>
<li><a  href="http://firetask.com/">Firetask</a>: Another lovely looking application, although again mostly a glorified to-do list. Costs money.</li>
<li><a  href="http://www.potionfactory.com/thehitlist/">The Hit List</a>: I was using this earlier in the year, and got on reasonably well with it &#8211; excellent notes area for every task, really well-integrated GTD aspects like adding contexts when entering tasks (but no actual GTD process). The main drawback with this one is no mobile access unless you use their iPhone app and pay a monthly fee.</li>
</ul>
<p>Obviously the lack of a GTD process isn’t a real problem. Weekly reviews and filing is simply a set of habits I need to get into, and would not be all that hard to implement with some basic recurring tasks and folders in any of these applications.</p>
<p>One final option is of course to roll my own, a solution which of course comes with the freedom to add or leave out whatever features I like. I actually started putting together a <a  href="https://github.com/matthewpennell/GTD-Scrum">GTD-meets-Scrum</a> personal project management tool last year as an excuse to use <a  href="https://www.djangoproject.com/">Django</a>, but it kind of stalled when I reached the limits of my Python programming abilities (or perhaps the limits of the book I was learning it from). I have to admit it’s tempting me again, although probably safely back in the reliable arms of PHP; building a simple to-do list manager would be an extremely fast exercise, then layering on functionality and features would be driven by my actual use of the setup on a daily basis. It might also prove a great opportunity to jump into some new tech, with things like offline and email-as-input method to figure out.</p>
<p>For now, I’m using Nirvana, despite the fuzzy border between contexts and tags they employ, and the weird addition of ‘Focus’ as a third meta-property of tasks and projects. But the more I think about it, the more making my own &#8211; and therefore controlling all my own data &#8211; sounds like the most attractive option.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thewatchmakerproject.com/post/my-gtd-wishlist/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>New Year Revolutions</title>
		<link>http://www.thewatchmakerproject.com/post/new-year-revolutions/</link>
		<comments>http://www.thewatchmakerproject.com/post/new-year-revolutions/#comments</comments>
		<pubDate>Sun, 01 Jan 2012 16:10:07 +0000</pubDate>
		<dc:creator>Matthew Pennell</dc:creator>
				<category><![CDATA[Amsterdam]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.thewatchmakerproject.com/?p=76</guid>
		<description><![CDATA[2011 was an odd year. I’ve been bouncing back and forth to my hometown for fifteen years, moving away then moving back in ever-decreasing circles, but until last year I’d always stayed in the UK. And yet, to claim that our move to Amsterdam in April was something of a big deal is put to [...]]]></description>
			<content:encoded><![CDATA[<p>2011 was an odd year. I’ve been bouncing back and forth to my hometown for fifteen years, moving away then moving back in ever-decreasing circles, but until last year I’d always stayed in the UK. And yet, to claim that our move to Amsterdam in April was something of a big deal is put to shame by the similar stories told by so many other people in the city. Flying across the North Sea, even when accompanied by three small children and two cats, still seems small-scale when compared to relocating from India, New Zealand or Brazil.</p>
<p>Some things have been unexpectedly easy. Finding a school and getting the kids settled was probably our biggest worry, but they’re now virtually fluent (although curiously have not yet taken to conversing in their new ‘secret language’ at home). Signing on with a doctor was also a simple process, and &#8211; like the school &#8211; is just a few minutes away from our apartment.</p>
<p>Other things have not gone so smoothly. While we still have three children, we are down to just a single cat now; Tigger died in late summer, providing me with the first opportunity to try out my ‘telling the kids their beloved pet has died’ routine. They took it fairly well &#8211; it was at least thirty minutes before I heard: “Can we get a puppy?”</p>
<p>Living so close to the centre of a vibrant city is a balancing act at times. Both work and the city itself offer so many diversions and entertainments that it might be easy to feel one is missing out by staying home and early nights, but it’s also true that the best aspect of our move has been the greatly increased time I now have to spend with my wife and children. No more two-hour-a-day commutes and no more freelancing has translated into long walks in the nearby parks, trips into town and many more family moments; I think not having a car also contributes too, as the children have enjoyed both family cycle outings and solo trips on the tram.</p>
<p>The year ended with the most deranged New Year’s Eve we’ve ever experienced. The Dutch apparently have no words for such concepts as “health and safety” or “a safe distance,” and from our third-floor balcony we were treated to a deafening display as the neighbourhood set off as many explosives as they could find, mostly right outside our front door:</p>
<p><object width="617" height="346" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="src" value="http://www.facebook.com/v/10150441034776680" /><embed width="617" height="346" type="application/x-shockwave-flash" src="http://www.facebook.com/v/10150441034776680" allowfullscreen="true" /></object></p>
<p>With Christmas and New Year falling on a weekend, I’ve only had a paltry nine days of unfocused, alcohol- and food-fuelled laziness; back to work tomorrow and time to think about some goals for the coming twelve months.</p>
<h2>Further refining GTD</h2>
<p>Over the last year I’ve tested many different <abbr title="Getting Things Done">GTD</abbr> solutions or combinations of services, but the final result I’ve been living with for a few months, <a  href="http://www.6wunderkinder.com/wunderlist/">Wunderlist</a>, still feels like settling for adequate when perfect is out there. A combination of occasional minor bugs (mostly sync-related), poor UI choices (task notes not easily accessible, no sub-lists), and just generally not using it at times when in theory it should be front-and-centre in my process leads me inexorably to the conclusion that my setup just isn’t working properly for me.</p>
<p>So, <abbr title="New Year's Resolution">NYR</abbr> #1, then:</p>
<blockquote><p>Embark once more into the murky waters of GTD tools and techniques to find the perfect solution.</p></blockquote>
<p>I should probably get around to finishing the damn book, too…</p>
<h2>Be more creative, make more stuff</h2>
<p>I have accumulated many gadgets and bits of software with which to be creative. Nothing which I’d be so arrogant as to call ‘semi-pro,’ but there are an embarrassing number of expensive toys gathering dust about the place. Like (it seems) virtually anyone daring to call themselves a web designer these days, I fancy myself a not entirely incompetent photographer, filmmaker or musician &#8211; and, possessing the tools to realise these pursuits, it seems wasteful to while away (all of) my free time bouncing between a handful of the same websites or killing dragons.</p>
<p>Of course, there are also plenty of opportunities to be more creative in my chosen field. I made a couple of abortive attempts to build semi-useful web apps last year; I’d like to either pick those up again, or perhaps some other new idea. The <a  href="http://12412.org/">12412 project</a> is tempting, but personally I’d rather get good (or better) in one particular area than learn a little about a lot.</p>
<p>NYR #2:</p>
<blockquote><p>Use the tools and skills I have to create something (or several things) new.</p></blockquote>
<p>One project in particular that I hope to launch in January should stretch my writing muscle on a fairly regular basis, and of course I intend to keep posting here when the urge strikes. Who knows, I might even write something about the web one of these days.</p>
<h2><del>Get fit</del> Stay fit</h2>
<p>I’m ending the year fitter than I’ve ever been (at least in adult life). I completed the marathon in October, and since then have explored new areas of the city each week while building up to a respectable distance once more.</p>
<p>So, while the rest of the world is setting goals to get themselves fit, my aim is simply to maintain my current and very enjoyable level of fitness. NYR #3:</p>
<blockquote><p>Stay fit and keep running.</p></blockquote>
<h2>So…</h2>
<p>So, no work-related resolutions, because who knows what this year will bring. I have the same problem filling in those “where do you see yourself in five years” questions on self-appraisal forms. At the moment, I’m happy, productive and relaxed &#8211; and I hope to be able to sustain this feeling well into 2012.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thewatchmakerproject.com/post/new-year-revolutions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2011, My Year In Music</title>
		<link>http://www.thewatchmakerproject.com/post/2011-my-year-in-music/</link>
		<comments>http://www.thewatchmakerproject.com/post/2011-my-year-in-music/#comments</comments>
		<pubDate>Fri, 30 Dec 2011 13:09:55 +0000</pubDate>
		<dc:creator>Matthew Pennell</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.thewatchmakerproject.com/?p=67</guid>
		<description><![CDATA[Back at the junction of 2010 and 2011, for whatever reason, I neglected to record a retrospective of the previous year’s music-listening activity &#8211; or indeed, any sort of look back at the preceding twelve months. These gaps in recorded history niggle at me; like a lot of anally-retentive computer nerds I am an inveterate [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-71" title="Album covers" src="http://www.thewatchmakerproject.com/wp-content/uploads/2011/12/Picture-1.png" alt="" width="127" height="129" />Back at the junction of 2010 and 2011, for whatever reason, I neglected to record a retrospective of the previous year’s music-listening activity &#8211; or indeed, any sort of look back at the preceding twelve months. These gaps in recorded history niggle at me; like a lot of anally-retentive computer nerds I am an inveterate list-maker, and I like nothing more than drawing up information-rich lists of data to discover how my habits changed over the entirely arbitrary period of the past year.</p>
<p>All of the data here comes from <a  href="http://last.fm/">last.fm</a>, which has dutifully collected my scrobbled tracks from both work and home, iTunes and Spotify, since 2005. Most links are to Spotify.</p>
<h2> Top 10 Artists listened to in 2011</h2>
<ol>
<li>Afghan Whigs</li>
<li>Arcade Fire</li>
<li>The Black Crowes</li>
<li>The Gaslight Anthem</li>
<li>Radiohead</li>
<li>Daft Punk</li>
<li>PJ Harvey</li>
<li>The Beatles</li>
<li>Foo Fighters</li>
<li>Elbow/Pearl Jam/Bon Iver</li>
</ol>
<p>This was the year that I discovered <a  href="http://open.spotify.com/artist/5MZc2eVUWhuJh6L6Eyc0M6" target="_blank">The Afghan Whigs</a>. I already had a copy of their album Gentlemen, courtesy of <a  href="http://adactio.com/">Jeremy Keith</a> during the big <a  href="http://pownce.com/">Pownce</a> shutdown of a few years back, but this year I obtained first digital and then physical copies of the rest of their back catalogue, and they are now one of my favourite bands. Lead man Greg Dulli’s current work with <a  href="http://open.spotify.com/artist/0lmPazVDvsQ8FXDcBfKc6r" target="_blank">The Twilight Singers</a> and (with ex-Screaming Trees and QOTSA Mark Lanegan) <a  href="http://open.spotify.com/artist/0hFSUykrqfVXac7E3ZpiaH" target="_blank">The Gutter Twins</a> also ticks a lot of my boxes.</p>
<p>The rest of the top ten comprises a few new album releases this year (Arcade Fire, Daft Punk, PJ Harvey, Foo Fighters) together with some perennial favourites.</p>
<h2>Top 10 Albums listened to in 2011</h2>
<ol>
<li><a  href="http://open.spotify.com/album/1iW5Q2skjFLWhU7JeDhGrZ" target="_blank">1965</a> (The Afghan Whigs)</li>
<li><a  href="http://open.spotify.com/album/4zJBuQXo92Q7QhA5U4V8kw" target="_blank">The Suburbs</a> (Arcade Fire)</li>
<li><a  href="http://open.spotify.com/album/2GC8kfyiyPjyheUUWyEY8F" target="_blank">TRON: Legacy</a> (Daft Punk)</li>
<li><a  href="http://open.spotify.com/album/2wBGb1zLSWrmiOdinWE831" target="_blank">For Emma, Forever Ago</a> (Bon Iver)</li>
<li><a  href="http://open.spotify.com/album/1c2Ee269Rj9w8wn8s3qQu9" target="_blank">Sigh No More</a> (Mumford &amp; Sons)</li>
<li><a  href="http://open.spotify.com/album/3osnojWV9lAEjHCBNYO4dd" target="_blank">Amorica</a> (The Black Crowes)</li>
<li><a  href="http://open.spotify.com/album/5lnQLEUiVDkLbFJHXHQu9m" target="_blank">Wasting Light</a> (Foo Fighters)</li>
<li><a  href="http://open.spotify.com/album/12ectug7mONYUgSgxJSnnC" target="_blank">The Seldom Seen Kid</a> (Elbow)</li>
<li><a  href="http://open.spotify.com/album/2jyvuEp4HePt3KTlXSYvMV" target="_blank">In The Aeroplane Over The Sea</a> (Neutral Milk Hotel)</li>
<li><a  href="http://open.spotify.com/album/1ZFjvEN3C2J1Q1xVhu2YaC" target="_blank">Play</a> (Moby)</li>
</ol>
<p><a  href="http://open.spotify.com/album/1iW5Q2skjFLWhU7JeDhGrZ" target="_blank">1965</a> had almost twice as many plays as the next album on the list, and would have been even more if my stereo scrobbled CDs as well. I also really liked Arcade Fire’s third album and Foo Fighters’ latest, and re-acquired a couple of old favourites lost in house moves or Spring cleans over the years. In particular, The Black Crowes <a  href="http://open.spotify.com/album/3osnojWV9lAEjHCBNYO4dd" target="_blank">Amorica</a> has had a lot of love; for me, it&#8217;s one of those albums that reminds you of a particular time in your life.</p>
<p>Foo Fighters and Daft Punk were the only albums actually released in 2011, and the <a  href="http://open.spotify.com/album/2GC8kfyiyPjyheUUWyEY8F" target="_blank">TRON: Legacy</a> soundtrack was actually my first ever MP3 purchase from Amazon, a process that should be simple but is immeasurably over-complicated by their insistence on using their own download software.</p>
<p>The rest of the top ten &#8211; Bon Iver, Mumford &amp; Sons, Elbow &#8211; reflects the realities of living with someone who doesn’t share 90% of your taste in music; inoffensive modern folk dominates our mealtime or evening listening.</p>
<h2> Track of the year</h2>
<p>It should be no surprise that the track I listened to the most over the last twelve months (twenty-three times according to last.fm) is from the #1 album and band. The Whigs&#8217; final album was recorded in New Orleans and has a real loose, sultry feel to it &#8211; &#8220;Uptown Again&#8221; is the standout track for me:</p>
<p>All of the albums above are available to listen for free on Spotify &#8211; I&#8217;ve collected them into a single playlist for easy exploration: <a  href="http://open.spotify.com/user/matthewpennell/playlist/0UgV8n39dOBN1IFAN3hfLl" target="_blank">2011, My Year In Music</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thewatchmakerproject.com/post/2011-my-year-in-music/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mutation station</title>
		<link>http://www.thewatchmakerproject.com/post/mutation-station/</link>
		<comments>http://www.thewatchmakerproject.com/post/mutation-station/#comments</comments>
		<pubDate>Thu, 22 Dec 2011 07:56:08 +0000</pubDate>
		<dc:creator>Matthew Pennell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.thewatchmakerproject.com/?p=62</guid>
		<description><![CDATA[These road signs strike me as slightly scary. The caption reads &#8220;Area protected by DNA-spray&#8221; but it&#8217;s not entirely clear how that process works. Will the spray somehow extract my own DNA for later identification purposes? Perhaps it will make bits of me drop off for police retrieval. Or maybe the sign is trying to [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-63 alignleft" title="DNA-Spray" src="http://www.thewatchmakerproject.com/wp-content/uploads/2011/12/dna.jpg" alt="Photo of road sign in Holland: This area is protected by DNA-spray" width="234" height="198" />These road signs strike me as slightly scary. The caption reads &#8220;Area protected by DNA-spray&#8221; but it&#8217;s not entirely clear how that process works. Will the spray somehow extract my own DNA for later identification purposes? Perhaps it will make bits of me drop off for police retrieval. Or maybe the sign is trying to tell me that at the first sign of foul-play, I will be sprayed with some other, unknown DNA, leading to uncontrollable mutation so that I have to leave my family and go to live in an upstate New York school with Hugh Jackman.</p>
<p>Actually, that&#8217;s enough to put anyone off committing a crime on this street&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thewatchmakerproject.com/post/mutation-station/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The wrapping finally comes off the new Stedelijk Museum</title>
		<link>http://www.thewatchmakerproject.com/post/the-wrapping-finally-comes-off-the-new-stedelijk-museum/</link>
		<comments>http://www.thewatchmakerproject.com/post/the-wrapping-finally-comes-off-the-new-stedelijk-museum/#comments</comments>
		<pubDate>Mon, 05 Dec 2011 08:36:13 +0000</pubDate>
		<dc:creator>Matthew Pennell</dc:creator>
				<category><![CDATA[Amsterdam]]></category>

		<guid isPermaLink="false">http://www.thewatchmakerproject.com/?p=59</guid>
		<description><![CDATA[&#160; Finally the scaffolding and coverings have been (mostly) removed from the new Stedelijk Museum at the south-west end of Museumplein, and the new building is looking pretty impressive. Like so much modern Dutch architecture it is big on counterweighted overhanging parts (see for example the various hotels and things up near the central library), [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p>Finally the scaffolding and coverings have been (mostly) removed from the new Stedelijk Museum at the south-west end of Museumplein, and the new building is looking pretty impressive.</p>
<p><a  href="http://www.thewatchmakerproject.com/wp-content/uploads/2011/12/image.jpeg" class="thickbox no_icon" title="Stadelijk Museum"><img class="alignnone size-large wp-image-60" title="Stadelijk Museum" src="http://www.thewatchmakerproject.com/wp-content/uploads/2011/12/image-617x324.jpg" alt="Stadelijk Museum in Museumplein" width="617" height="324" /></a></p>
<p>Like so much modern Dutch architecture it is big on counterweighted overhanging parts (see for example the various hotels and things up near the central library), and the material it is coated in has a strange, almost ceramic look to it. The doors have all been covered now so you can&#8217;t see the state of the inside, so hopefully it will all be completed in time for the planned 2012 re-opening.</p>
<p>The <a  href="http://www.stedelijk.nl/">official website</a> is a bit strange as well &#8211; the enormous fixed-position &#8216;T&#8217; initially looks like part of the layout, until you start scrolling&#8230;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thewatchmakerproject.com/post/the-wrapping-finally-comes-off-the-new-stedelijk-museum/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

