<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title>Andrew JD Hudson&apos;s Blog</title><description>Recent content in Articles &amp; Experiments by Andrew JD Hudson</description><link>https://andrewhudson.dev/</link><language>en-gb</language><generator>Astro</generator><item><title>Passed my Civique Exam!</title><link>https://andrewhudson.dev/blog/passed-my-civique-exam/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/passed-my-civique-exam/</guid><description>I took my Civique Exam in the first week of January and I passed with flying colours!</description><pubDate>Thu, 22 Jan 2026 00:00:00 GMT</pubDate><content:encoded>&lt;h2&gt;What is it?&lt;/h2&gt;
&lt;p&gt;New this year the civique exam is an additional pre-requisit for getting a multi-year Titre de Sejour in France.&lt;/p&gt;
&lt;p&gt;At the end of 2025 I had taken the compulsory four-day Civique Training which was really interesting especially the history of France that I did not already know, as well as some information that I didn&apos;t already know about the culture, geography and political landscape of France and Europe.&lt;/p&gt;
&lt;h2&gt;Revision&lt;/h2&gt;
&lt;p&gt;During the course I had made plenty of notes so I went through these again. I also found all the free online tests that I could do and did them over and over. I also read some of the online material on the official &lt;a&gt;https://formation-civique.interieur.gouv.fr/&lt;/a&gt;. I even read a book on the French Revolution at Marion&apos;s parents house over Christmas.&lt;/p&gt;
&lt;h2&gt;The Day&lt;/h2&gt;
&lt;p&gt;Then the day arrived and with it snow on the ground which then turned to smush under the feet and deep puddles and slippery paths and I walked the paths to the exam center in the center of Grenoble. Slush slosh. A passing car sloshed cold water on me but I continued and arrived at the exam center early. I was able to wait and warm up and read through my notes while the time ticked down to the time of the exam.&lt;/p&gt;
&lt;p&gt;The exam was fine and I thought I got more wrong that I did. In the end I only got one wrong. So 39/40. I forgot who Josephine Baker was, but got the rest of the questions correct. Whipeee!&lt;/p&gt;
</content:encoded></item><item><title>Experimenting on the bleeding edge in Chrome Canary with command line Feature Flags</title><link>https://andrewhudson.dev/blog/chrome-canary-feature-flags/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/chrome-canary-feature-flags/</guid><pubDate>Tue, 13 May 2025 00:00:00 GMT</pubDate><content:encoded>&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;I am following the work on a prototype of a new CSS feature that will enable the ability to know which direction the user is scrolling a scrollport &lt;em&gt;aka&lt;/em&gt; &lt;a href=&quot;https://issues.chromium.org/issues/414556050&quot;&gt;Support scroll direction in @scroll-state&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I quickly created a codepen demo and I repeatedly checked Chrome Canary but I could not make my code work.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I realised that to be able to use it the browser needed a special command line feature flag to enable it.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;There are a number of levels of &lt;strong&gt;status&lt;/strong&gt; that a feature can have when being prototyped: &lt;code&gt;Test&lt;/code&gt;, &lt;code&gt;Experimental&lt;/code&gt;, and &lt;code&gt;Stable&lt;/code&gt;. &lt;code&gt;Test&lt;/code&gt; is where the code is so new that to use it you need to use a command line flag. &lt;code&gt;Experimental&lt;/code&gt; is also under a feature flag but this time a more general &quot;Experimental Web Platform Features&quot; which is available to the user in chrome://flags e.g. chrome://flags/#enable-experimental-web-platform-features. The final level is &lt;code&gt;Stable&lt;/code&gt; where the feature does not need any flag and is ready to be shipped.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I looked in https://raw.githubusercontent.com/chromium/chromium/refs/heads/main/third_party/blink/renderer/platform/runtime_enabled_features.json5 and did a search for &lt;code&gt;direction&lt;/code&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The feature flag I wanted was &lt;code&gt;CSSScrollDirectionContainerQueries&lt;/code&gt; and in my terminal on MacOS I typed:&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;pre&gt;&lt;code&gt;/Applications/Google\ Chrome\ Canary.app/Contents/MacOS/Google\ Chrome\ Canary --enable-features=CSSScrollDirectionContainerQueries
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;Writing a custom zsh function to open canary with specified command line feature flags&lt;/h2&gt;
&lt;p&gt;I am using ZSH and instead of remembering all of the above each time I want to open Canary I have created a function into which I can pass the flag name(s):&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;function openCanary() {
	/Applications/Google\ Chrome\ Canary.app/Contents/MacOS/Google\ Chrome\ Canary --enable-features=&quot;$1&quot;;
}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;and then use &lt;code&gt;openCanary CSSScrollDirectionContainerQueries&lt;/code&gt; or even &lt;code&gt;openCanary CSSScrollDirectionContainerQueries,CSSMixins&lt;/code&gt; if I wanted to use CSSMixins and CSSScrollDirectionContainerQueries flags.&lt;/p&gt;
&lt;h2&gt;Debugging&lt;/h2&gt;
&lt;p&gt;If it is not working you will want to check it is not conflicting with other flags. To do this you can go to chrome://version&lt;/p&gt;
&lt;h2&gt;Notes&lt;/h2&gt;
&lt;p&gt;https://chromium.googlesource.com/chromium/src/+/main/third_party/blink/renderer/platform/RuntimeEnabledFeatures.md&lt;/p&gt;
</content:encoded></item><item><title>Displaying CSS variables in CSS Content</title><link>https://andrewhudson.dev/blog/displaying-css-variables-in-css-content/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/displaying-css-variables-in-css-content/</guid><pubDate>Tue, 06 May 2025 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;import BlobsExample from &quot;./BlobsExample.astro&quot;;&lt;/p&gt;
&lt;p&gt;I often have the need to see the in-place value of the a CSS variable on the page to help me debug what I am working on. To be able to do this I need to use CSS &lt;code&gt;counter-reset&lt;/code&gt; in combination with CSS &lt;code&gt;counter()&lt;/code&gt; to display within CSS content on a before or after pseudo element.&lt;/p&gt;
&lt;p&gt;This is for future me as I always need to look it up.&lt;/p&gt;
&lt;h3&gt;CSS&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;.blob {
    --hue: calc(10 * var(--index));

    background: hsl(calc(var(--hue) * 1deg) 100% 50%);

    /* the counter name must be of type &amp;lt;custom-ident&amp;gt;. See https://developer.mozilla.org/en-US/docs/Web/CSS/counter-reset and https://developer.mozilla.org/en-US/docs/Web/CSS/custom-ident
    The second value must be an integer (i.e. cannot have a unit so 30deg would not work here).
    */
    counter-reset: hue var(--hue);

    &amp;amp;::after {
        /* apply the counter value to the css content property */
        content: counter(hue) &quot;deg&quot;;
    }
}
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;HTML&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;div class=&quot;blob&quot; style=&quot;--index: 1&quot;&amp;gt;&amp;lt;/div&amp;gt;
&amp;lt;div class=&quot;blob&quot; style=&quot;--index: 2&quot;&amp;gt;&amp;lt;/div&amp;gt;
&amp;lt;div class=&quot;blob&quot; style=&quot;--index: 3&quot;&amp;gt;&amp;lt;/div&amp;gt;
&amp;lt;div class=&quot;blob&quot; style=&quot;--index: 4&quot;&amp;gt;&amp;lt;/div&amp;gt;
&amp;lt;div class=&quot;blob&quot; style=&quot;--index: 5&quot;&amp;gt;&amp;lt;/div&amp;gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;Output:&lt;/h3&gt;
&lt;p&gt;&amp;lt;BlobsExample /&amp;gt;&lt;/p&gt;
</content:encoded></item><item><title>Getting in the way of writing</title><link>https://andrewhudson.dev/blog/getting-in-the-way-of-writing/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/getting-in-the-way-of-writing/</guid><pubDate>Fri, 18 Apr 2025 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;import { Code } from &apos;astro:components&apos;;
import importedCode from &apos;/script.mjs?raw&apos;;&lt;/p&gt;
&lt;h3&gt;Current Process when attempting to write a blog post&lt;/h3&gt;
&lt;p&gt;I have a need to write a blog so I need to jump through a number of hoops before I can do it.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Update Astro because that is always a thing that is nice and shiny and makes me feel good.&lt;/li&gt;
&lt;li&gt;Start the local server, open up the url in Chrome&lt;/li&gt;
&lt;li&gt;Find an old blog post that I can copy to get the new one started. This takes ages and takes mental energy.&lt;/li&gt;
&lt;li&gt;Set the title and date of the post, as well as optional tags. This takes more energy.&lt;/li&gt;
&lt;li&gt;Finally get round to starting to type the content of the blog post only to run out of mental energy and stop because the initial excitement about sharing something with the world has been reduced to a mear trickle and other things now seem more pressing.&lt;/li&gt;
&lt;li&gt;Convert the blog post into draft mode&lt;/li&gt;
&lt;li&gt;Commit the code to Git because why not&lt;/li&gt;
&lt;li&gt;Never update the blog post again and leave it forever more in draft unfinished mode.&lt;/li&gt;
&lt;/ol&gt;
&lt;h3&gt;Other distractions&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;The design of my site&lt;/li&gt;
&lt;li&gt;the world outside&lt;/li&gt;
&lt;li&gt;the configuration of VS Code that I am using for this repository&lt;/li&gt;
&lt;li&gt;life, the internet, everything outside&lt;/li&gt;
&lt;/ol&gt;
&lt;h2&gt;Is there a better way?&lt;/h2&gt;
&lt;p&gt;Of course the above is shit and this is why I have not written anything good on this site for a long time. The pressures from all sides are preventing me.&lt;/p&gt;
&lt;h3&gt;A better way:&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;Have a script that creates a new blog post from a template e.g. with todays date, an option to enter a title, then once that is done it takes me directly to the new file, with the terminal running the local server and the browser pointing to the newly created page.&lt;/li&gt;
&lt;li&gt;This would prevent me from fiddling with anything that is not the content of the blog. And hopefully it would enable me to create better posts going forwards.&lt;/li&gt;
&lt;/ol&gt;
&lt;h3&gt;Final Solution&lt;/h3&gt;
&lt;p&gt;I have created a &lt;a href=&quot;https://github.com/google/zx&quot;&gt;zx&lt;/a&gt; script and I start it with &lt;code&gt;make create&lt;/code&gt; on the terminal. This then gives me the option of what I would like to call the blog post, then fires up the browser with the new url, fires up the local dev server, and also more importantly it focuses on the new markdown file in VS Code on the correct line to start typing straight away.&lt;/p&gt;
&lt;p&gt;&amp;lt;Code
code={importedCode}
lang=&quot;javascript&quot;
title=&quot;script.mjs&quot;
/&amp;gt;&lt;/p&gt;
</content:encoded></item><item><title>Good Friday not Celebrated in France</title><link>https://andrewhudson.dev/blog/good-friday-not-celebrated-in-france/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/good-friday-not-celebrated-in-france/</guid><pubDate>Fri, 18 Apr 2025 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;First year living in France and it is very strange because in Grenoble where we live the schools are still not on holiday and today is Good Friday.&lt;/p&gt;
&lt;p&gt;France schools are split into three Zones and which zone you are in is the basis for when your holidays are taken. This is true for the Winter Holiday (February for two weeks) and also for Easter (April / May for two weeks).&lt;/p&gt;
&lt;h3&gt;Easter Holidays - aka Vacances de printemps&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Zone A (which Grenoble is in): 19 April - 5 May&lt;/li&gt;
&lt;li&gt;Zone B is: 5 April - 22 Avril&lt;/li&gt;
&lt;li&gt;Zone C is: 12 April - 28 April&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The idea behind it is so that everyone in the country is not on holiday at the same time and not block the resorts, beaches, ski resorts, etc at the same time.&lt;/p&gt;
&lt;p&gt;To me as a expat here feels very strange.&lt;/p&gt;
&lt;p&gt;See &lt;a href=&quot;https://www.service-public.fr/particuliers/vosdroits/F31952?lang=en&quot;&gt;What is the calendar of school holidays 2024-2025, 2025-2026?&lt;/a&gt;&lt;/p&gt;
</content:encoded></item><item><title>Big Two Cyclocross 2024-25</title><link>https://andrewhudson.dev/blog/big-two-2024-2025-cx/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/big-two-2024-2025-cx/</guid><pubDate>Sat, 21 Dec 2024 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Really looking forward to the showdown this Cyclo Cross winter season with Wout van Aert, ~Tom Pidcock~ and Mathieu van der Poel.&lt;/p&gt;
&lt;p&gt;&amp;lt;img
src={&quot;https://pbs.twimg.com/media/GeHrco8WYAE3SWL?format=jpg&amp;amp;name=medium&quot;}
alt=&quot;2024-25 calendar of cyclocross dates for Wout Van Aert&quot;
width=&quot;408&quot;
height=&quot;408&quot;
/&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;img
src={&quot;https://pbs.twimg.com/media/GerF_G-XkAAYCec?format=jpg&amp;amp;name=large&quot;}
alt=&quot;2024-25 calendar of cyclocross dates for Mathieu van der Poel&quot;
width=&quot;408&quot;
height=&quot;408&quot;
/&amp;gt;&lt;/p&gt;
</content:encoded></item><item><title>How to Group View Transitions</title><link>https://andrewhudson.dev/blog/how-to-group-view-transitions/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/how-to-group-view-transitions/</guid><pubDate>Fri, 20 Dec 2024 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;I am currently learning about view-transitions with CSS in great detail.&lt;/p&gt;
&lt;p&gt;I wanted to be able to select all the view transitions of a similar type e.g. in this case all of the headers.&lt;/p&gt;
&lt;p&gt;The problem I had was that all of the headers need a unique view-transition-name so that the browser knows which header to animate to where. If all have the same name it cannot do this and the element transition won&apos;t work.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;header style=&quot;view-transition-name=header-1&quot;&amp;gt;...&amp;lt;/header&amp;gt;
&amp;lt;header style=&quot;view-transition-name=header-2&quot;&amp;gt;...&amp;lt;/header&amp;gt;
&amp;lt;header style=&quot;view-transition-name=header-3&quot;&amp;gt;...&amp;lt;/header&amp;gt;
&amp;lt;header style=&quot;view-transition-name=header-4&quot;&amp;gt;...&amp;lt;/header&amp;gt;
&amp;lt;header style=&quot;view-transition-name=header-5&quot;&amp;gt;...&amp;lt;/header&amp;gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;If you wanted to be able to select all of these 5 headers you would need to:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;html::view-transtion-group(header-1),
html::view-transtion-group(header-2),
html::view-transtion-group(header-3),
html::view-transtion-group(header-4),
html::view-transtion-group(header-5) {
    animation-duration: 333ms;
}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;One line per unique view-transition-name. Not possible for multiple view-transition-names, especially when they are generated based on the content.&lt;/p&gt;
&lt;p&gt;For this site I am generating the view-transition-name based on the slug of the blog post. This means that by default all of the view-transition-names will be unique, and also that they cannot be placed into the CSS without an alternate build step. But it brings a problem when doing more complex work with the view transitions api. Targetting all of the headers to be able to control the way the headers animate between the new and the old views.&lt;/p&gt;
&lt;p&gt;I needed to find another way!&lt;/p&gt;
&lt;h3&gt;view-transition-class to the rescue!&lt;/h3&gt;
&lt;p&gt;After watching this excellent video about View Transitions by Bramus on the Google Chrome team: https://www.youtube.com/watch?v=eY6C_-aDdTo my eyes noticed the view-transtion-class attribute;&lt;/p&gt;
&lt;p&gt;Each header still needs a unique view-transition-name as above but with &lt;code&gt;view-transition-class&lt;/code&gt; you can target all of the headers.&lt;/p&gt;
&lt;p&gt;Still the same HTML:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;header style=&quot;view-transition-name=&quot;header-1&quot;&amp;gt;...&amp;lt;/header&amp;gt;
&amp;lt;header style=&quot;view-transition-name=&quot;header-2&quot;&amp;gt;...&amp;lt;/header&amp;gt;
&amp;lt;header style=&quot;view-transition-name=&quot;header-3&quot;&amp;gt;...&amp;lt;/header&amp;gt;
&amp;lt;header style=&quot;view-transition-name=&quot;header-4&quot;&amp;gt;...&amp;lt;/header&amp;gt;
&amp;lt;header style=&quot;view-transition-name=&quot;header-5&quot;&amp;gt;...&amp;lt;/header&amp;gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;With view-transition-class you can group these with CSS:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;header {
    view-transition-class: header-vt;
}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Then target with CSS:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;html::view-transition-group(.header-vt) {
    animation-duration: 333ms;
}
&lt;/code&gt;&lt;/pre&gt;
</content:encoded></item><item><title>This Week I learned</title><link>https://andrewhudson.dev/blog/this-week-i-learned/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/this-week-i-learned/</guid><pubDate>Thu, 21 Nov 2024 00:00:00 GMT</pubDate><content:encoded>&lt;h2&gt;Netlify Redirects with Astro&lt;/h2&gt;
&lt;p&gt;Yesterday I was attempting to do a redirect on my Astro site which is hosted on Netlify (for free, really excellent hosting!) to my newly created Sveltekit site on a different sub-domain. I followed the recommended method of using a &lt;code&gt;_redirects&lt;/code&gt; file in the &lt;code&gt;public&lt;/code&gt; folder - this is specific to Astro, normally on other Netlify sites it just needs to be in the root of the project.&lt;/p&gt;
&lt;p&gt;Here was my initial code:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;# /public/_redirects
/cv https://cv.andrewhudson.dev
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;but nothing was working.&lt;/p&gt;
&lt;p&gt;I then did some further research and discovered I needed to do a forced redirect because the Astro site still has an existing /cv route and code which meant that the redirect wasn&apos;t working.&lt;/p&gt;
&lt;p&gt;The solution was to use a 301 redirect with some extra &lt;strong&gt;force&lt;/strong&gt; - the &lt;strong&gt;!&lt;/strong&gt;. Here&apos;s the final code I used:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;# /public/_redirects
/cv https://cv.andrewhudson.dev 301!
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;French&lt;/h2&gt;
&lt;p&gt;This week in my French classes at the Alliance Francaise we continued learning the pronouns COD / COI as &amp;lt;a href=&quot;https://learntofrench.com/master-cod-and-coi-in-french-explained/&quot;&amp;gt;explained here&amp;lt;/a&amp;gt; and also continued to utilise the past tenses passé composé and the imparfait.&lt;/p&gt;
&lt;h2&gt;Development&lt;/h2&gt;
&lt;p&gt;I am continuing to learn about CSS anchor positioning with @starting-style and popover action. Further to this I have started a seperate CV site using sveltekit.&lt;/p&gt;
</content:encoded></item><item><title>Cool demos I created in june 2024</title><link>https://andrewhudson.dev/blog/cool-demos-june-2024/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/cool-demos-june-2024/</guid><pubDate>Thu, 04 Jul 2024 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Following on from last year&apos;s &lt;a href=&quot;/blog/cool-demos-june-2023&quot;&gt;cool demos june 2023&lt;/a&gt; I want to showcase some of the cool demos I created in the month of June 2024. I really got in the groove and created a new demo every day for two weeks, each building on the previous.&lt;/p&gt;
&lt;p&gt;Having attended CSS Day in Amsterdam I was hungry to apply some of the new skills that had been showcased during the excellent conference.&lt;/p&gt;
&lt;p&gt;A word of warning: All of these demos work currently in Chromium-based browsers. I hope that Firefox and Safari will soon support anchor positioning so that these demos will work in all browsers.&lt;/p&gt;
&lt;p&gt;&amp;lt;ul class=&quot;demos-list&quot;&amp;gt;
&amp;lt;li&amp;gt;Anchor Positioning to connect two blobs:
&amp;lt;p class=&quot;codepen&quot; data-height=&quot;500&quot; data-theme-id=&quot;dark&quot; data-default-tab=&quot;result&quot; data-slug-hash=&quot;eYaGOXO&quot; data-pen-title=&quot;Linking two points with a box. Using Kizu&apos;s code from https://kizu.dev/anchor-positioning-experiments/&quot; data-user=&quot;bigandy&quot; style=&quot;height: 500px; box-sizing: border-box; display: flex; align-items: center; justify-content: center; border: 2px solid; margin: 1em 0; padding: 1em;&quot;&amp;gt;
&amp;lt;span&amp;gt;See the Pen &amp;lt;a href=&quot;https://codepen.io/bigandy/pen/eYaGOXO&quot;&amp;gt;
Linking two points with a box. Using Kizu&apos;s code from https://kizu.dev/anchor-positioning-experiments/&amp;lt;/a&amp;gt; by Andrew Hudson (&amp;lt;a href=&quot;https://codepen.io/bigandy&quot;&amp;gt;@bigandy&amp;lt;/a&amp;gt;)
on &amp;lt;a href=&quot;https://codepen.io&quot;&amp;gt;CodePen&amp;lt;/a&amp;gt;.&amp;lt;/span&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;/p&amp;gt;
&amp;lt;/li&amp;gt;
&amp;lt;li&amp;gt;Connecting two points with Mouse clicks. Click on the demo!
&amp;lt;p class=&quot;codepen&quot; data-height=&quot;500&quot; data-theme-id=&quot;dark&quot; data-default-tab=&quot;result&quot; data-slug-hash=&quot;RwmLVJp&quot; data-pen-title=&quot;Mouse clicks and anchor positioning&quot; data-user=&quot;bigandy&quot; style=&quot;height: 500px; box-sizing: border-box; display: flex; align-items: center; justify-content: center; border: 2px solid; margin: 1em 0; padding: 1em;&quot;&amp;gt;
&amp;lt;span&amp;gt;See the Pen &amp;lt;a href=&quot;https://codepen.io/bigandy/pen/RwmLVJp&quot;&amp;gt;
Mouse clicks and anchor positioning&amp;lt;/a&amp;gt; by Andrew Hudson (&amp;lt;a href=&quot;https://codepen.io/bigandy&quot;&amp;gt;@bigandy&amp;lt;/a&amp;gt;)
on &amp;lt;a href=&quot;https://codepen.io&quot;&amp;gt;CodePen&amp;lt;/a&amp;gt;.&amp;lt;/span&amp;gt;
&amp;lt;/p&amp;gt;
&amp;lt;/li&amp;gt;
&amp;lt;li&amp;gt;Getting my head around CSS mod()
&amp;lt;p class=&quot;codepen&quot; data-height=&quot;500&quot; data-theme-id=&quot;dark&quot; data-default-tab=&quot;result&quot; data-slug-hash=&quot;RwmLMGx&quot; data-pen-title=&quot;Getting my head around mod()&quot; data-user=&quot;bigandy&quot; style=&quot;height: 500px; box-sizing: border-box; display: flex; align-items: center; justify-content: center; border: 2px solid; margin: 1em 0; padding: 1em;&quot;&amp;gt;
&amp;lt;span&amp;gt;See the Pen &amp;lt;a href=&quot;https://codepen.io/bigandy/pen/RwmLMGx&quot;&amp;gt;
Getting my head around mod()&amp;lt;/a&amp;gt; by Andrew Hudson (&amp;lt;a href=&quot;https://codepen.io/bigandy&quot;&amp;gt;@bigandy&amp;lt;/a&amp;gt;)
on &amp;lt;a href=&quot;https://codepen.io&quot;&amp;gt;CodePen&amp;lt;/a&amp;gt;.&amp;lt;/span&amp;gt;
&amp;lt;/p&amp;gt;
&amp;lt;/li&amp;gt;
&amp;lt;li&amp;gt;CSS mod() v2 - with controls!
&amp;lt;p class=&quot;codepen&quot; data-height=&quot;500&quot; data-theme-id=&quot;dark&quot; data-default-tab=&quot;result&quot; data-slug-hash=&quot;OJYxeGq&quot; data-pen-title=&quot;mod() v2 - with controls!&quot; data-user=&quot;bigandy&quot; style=&quot;height: 500px; box-sizing: border-box; display: flex; align-items: center; justify-content: center; border: 2px solid; margin: 1em 0; padding: 1em;&quot;&amp;gt;
&amp;lt;span&amp;gt;See the Pen &amp;lt;a href=&quot;https://codepen.io/bigandy/pen/OJYxeGq&quot;&amp;gt;
mod() v2 - with controls!&amp;lt;/a&amp;gt; by Andrew Hudson (&amp;lt;a href=&quot;https://codepen.io/bigandy&quot;&amp;gt;@bigandy&amp;lt;/a&amp;gt;)
on &amp;lt;a href=&quot;https://codepen.io&quot;&amp;gt;CodePen&amp;lt;/a&amp;gt;.&amp;lt;/span&amp;gt;
&amp;lt;/p&amp;gt;
&amp;lt;/li&amp;gt;
&amp;lt;li&amp;gt;CSS mod() v3 - advanced version with controls
&amp;lt;p class=&quot;codepen&quot; data-height=&quot;500&quot; data-theme-id=&quot;dark&quot; data-default-tab=&quot;result&quot; data-slug-hash=&quot;KKLXOmg&quot; data-pen-title=&quot;mod() v3&quot; data-user=&quot;bigandy&quot; style=&quot;height: 500px; box-sizing: border-box; display: flex; align-items: center; justify-content: center; border: 2px solid; margin: 1em 0; padding: 1em;&quot;&amp;gt;
&amp;lt;span&amp;gt;See the Pen &amp;lt;a href=&quot;https://codepen.io/bigandy/pen/KKLXOmg&quot;&amp;gt;
mod() v3&amp;lt;/a&amp;gt; by Andrew Hudson (&amp;lt;a href=&quot;https://codepen.io/bigandy&quot;&amp;gt;@bigandy&amp;lt;/a&amp;gt;)
on &amp;lt;a href=&quot;https://codepen.io&quot;&amp;gt;CodePen&amp;lt;/a&amp;gt;.&amp;lt;/span&amp;gt;&amp;lt;/p&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;/li&amp;gt;
&amp;lt;li&amp;gt;sin() css wave
&amp;lt;p class=&quot;codepen&quot; data-height=&quot;500&quot; data-theme-id=&quot;dark&quot; data-default-tab=&quot;result&quot; data-slug-hash=&quot;PovEyrW&quot; data-pen-title=&quot;sin() css&quot; data-user=&quot;bigandy&quot; style=&quot;height: 500px; box-sizing: border-box; display: flex; align-items: center; justify-content: center; border: 2px solid; margin: 1em 0; padding: 1em;&quot;&amp;gt;
&amp;lt;span&amp;gt;See the Pen &amp;lt;a href=&quot;https://codepen.io/bigandy/pen/PovEyrW&quot;&amp;gt;
sin() css&amp;lt;/a&amp;gt; by Andrew Hudson (&amp;lt;a href=&quot;https://codepen.io/bigandy&quot;&amp;gt;@bigandy&amp;lt;/a&amp;gt;)
on &amp;lt;a href=&quot;https://codepen.io&quot;&amp;gt;CodePen&amp;lt;/a&amp;gt;.&amp;lt;/span&amp;gt;
&amp;lt;/p&amp;gt;
&amp;lt;/li&amp;gt;
&amp;lt;li&amp;gt;sin() combined with scroll-driven animations. Make sure you scroll!
&amp;lt;p class=&quot;codepen&quot; data-height=&quot;500&quot; data-theme-id=&quot;dark&quot; data-default-tab=&quot;result&quot; data-slug-hash=&quot;VwOyqgG&quot; data-pen-title=&quot;scroll-animation sin()  (Chrome+)&quot; data-user=&quot;bigandy&quot; style=&quot;height: 500px; box-sizing: border-box; display: flex; align-items: center; justify-content: center; border: 2px solid; margin: 1em 0; padding: 1em;&quot;&amp;gt;
&amp;lt;span&amp;gt;See the Pen &amp;lt;a href=&quot;https://codepen.io/bigandy/pen/VwOyqgG&quot;&amp;gt;
scroll-animation sin()  (Chrome+)&amp;lt;/a&amp;gt; by Andrew Hudson (&amp;lt;a href=&quot;https://codepen.io/bigandy&quot;&amp;gt;@bigandy&amp;lt;/a&amp;gt;)
on &amp;lt;a href=&quot;https://codepen.io&quot;&amp;gt;CodePen&amp;lt;/a&amp;gt;.&amp;lt;/span&amp;gt;
&amp;lt;/p&amp;gt;
&amp;lt;/li&amp;gt;
&amp;lt;li&amp;gt;Two points linked by anchor-positioning with a diagonal line to connect the two dots - needed to work out how to switch the diagonal line based on the relative positions of the two boxes.
&amp;lt;p class=&quot;codepen&quot; data-height=&quot;500&quot; data-theme-id=&quot;dark&quot; data-default-tab=&quot;result&quot; data-slug-hash=&quot;gOJvaZo&quot; data-pen-title=&quot;diagonal lines css (Chrome+) with anchor-positioning &quot; data-user=&quot;bigandy&quot; style=&quot;height: 500px; box-sizing: border-box; display: flex; align-items: center; justify-content: center; border: 2px solid; margin: 1em 0; padding: 1em;&quot;&amp;gt;
&amp;lt;span&amp;gt;See the Pen &amp;lt;a href=&quot;https://codepen.io/bigandy/pen/gOJvaZo&quot;&amp;gt;
diagonal lines css (Chrome+) with anchor-positioning &amp;lt;/a&amp;gt; by Andrew Hudson (&amp;lt;a href=&quot;https://codepen.io/bigandy&quot;&amp;gt;@bigandy&amp;lt;/a&amp;gt;)
on &amp;lt;a href=&quot;https://codepen.io&quot;&amp;gt;CodePen&amp;lt;/a&amp;gt;.&amp;lt;/span&amp;gt;
&amp;lt;/p&amp;gt;
&amp;lt;/li&amp;gt;
&amp;lt;li&amp;gt;Balloons on Strings powered by anchor-positioning
&amp;lt;p class=&quot;codepen&quot; data-height=&quot;500&quot; data-theme-id=&quot;dark&quot; data-default-tab=&quot;result&quot; data-slug-hash=&quot;VwOQWXj&quot; data-pen-title=&quot;Balloons in Strings (Chrome+)&quot; data-user=&quot;bigandy&quot; style=&quot;height: 500px; box-sizing: border-box; display: flex; align-items: center; justify-content: center; border: 2px solid; margin: 1em 0; padding: 1em;&quot;&amp;gt;
&amp;lt;span&amp;gt;See the Pen &amp;lt;a href=&quot;https://codepen.io/bigandy/pen/VwOQWXj&quot;&amp;gt;
Balloons in Strings (Chrome+)&amp;lt;/a&amp;gt; by Andrew Hudson (&amp;lt;a href=&quot;https://codepen.io/bigandy&quot;&amp;gt;@bigandy&amp;lt;/a&amp;gt;)
on &amp;lt;a href=&quot;https://codepen.io&quot;&amp;gt;CodePen&amp;lt;/a&amp;gt;.&amp;lt;/span&amp;gt;
&amp;lt;/p&amp;gt;
&amp;lt;/li&amp;gt;
&amp;lt;li&amp;gt;Mouse cursor controlled owner of balloons. Move your mouse!
&amp;lt;p class=&quot;codepen&quot; data-height=&quot;500&quot; data-theme-id=&quot;dark&quot; data-default-tab=&quot;result&quot; data-slug-hash=&quot;qBGxgLL&quot; data-pen-title=&quot;Mouse  + Balloons in Strings (Chrome+)&quot; data-user=&quot;bigandy&quot; style=&quot;height: 500px; box-sizing: border-box; display: flex; align-items: center; justify-content: center; border: 2px solid; margin: 1em 0; padding: 1em;&quot;&amp;gt;
&amp;lt;span&amp;gt;See the Pen &amp;lt;a href=&quot;https://codepen.io/bigandy/pen/qBGxgLL&quot;&amp;gt;
Mouse  + Balloons in Strings (Chrome+)&amp;lt;/a&amp;gt; by Andrew Hudson (&amp;lt;a href=&quot;https://codepen.io/bigandy&quot;&amp;gt;@bigandy&amp;lt;/a&amp;gt;)
on &amp;lt;a href=&quot;https://codepen.io&quot;&amp;gt;CodePen&amp;lt;/a&amp;gt;.&amp;lt;/span&amp;gt;
&amp;lt;/p&amp;gt;
&amp;lt;/li&amp;gt;
&amp;lt;li&amp;gt;Boxes around another box with CSS and maths. Hover the big square!
&amp;lt;p class=&quot;codepen&quot; data-height=&quot;500&quot; data-theme-id=&quot;dark&quot; data-default-tab=&quot;result&quot; data-slug-hash=&quot;eYaMNdv&quot; data-pen-title=&quot;Boxes around a box CSS animation&quot; data-user=&quot;bigandy&quot; style=&quot;height: 500px; box-sizing: border-box; display: flex; align-items: center; justify-content: center; border: 2px solid; margin: 1em 0; padding: 1em;&quot;&amp;gt;
&amp;lt;span&amp;gt;See the Pen &amp;lt;a href=&quot;https://codepen.io/bigandy/pen/eYaMNdv&quot;&amp;gt;
Boxes around a box CSS animation&amp;lt;/a&amp;gt; by Andrew Hudson (&amp;lt;a href=&quot;https://codepen.io/bigandy&quot;&amp;gt;@bigandy&amp;lt;/a&amp;gt;)
on &amp;lt;a href=&quot;https://codepen.io&quot;&amp;gt;CodePen&amp;lt;/a&amp;gt;.&amp;lt;/span&amp;gt;
&amp;lt;/p&amp;gt;
&amp;lt;script async src=&quot;https://cpwebassets.codepen.io/assets/embed/ei.js&quot;&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;/li&amp;gt;
&amp;lt;!-- &amp;lt;li&amp;gt;Boxes moving around box with lines to center. CSS anchor positioning. Hover the big square! - Seems to be be broken by a Chrome update. I will investigate when I have the time!
&amp;lt;p class=&quot;codepen&quot; data-height=&quot;500&quot; data-theme-id=&quot;dark&quot; data-default-tab=&quot;result&quot; data-slug-hash=&quot;LYodVMM&quot; data-pen-title=&quot;Boxes around box with line to middle (Chrome+)&quot; data-user=&quot;bigandy&quot; style=&quot;height: 500px; box-sizing: border-box; display: flex; align-items: center; justify-content: center; border: 2px solid; margin: 1em 0; padding: 1em;&quot;&amp;gt;
&amp;lt;span&amp;gt;See the Pen &amp;lt;a href=&quot;https://codepen.io/bigandy/pen/LYodVMM&quot;&amp;gt;
Boxes around box with line to middle (Chrome+)&amp;lt;/a&amp;gt; by Andrew Hudson (&amp;lt;a href=&quot;https://codepen.io/bigandy&quot;&amp;gt;@bigandy&amp;lt;/a&amp;gt;)
on &amp;lt;a href=&quot;https://codepen.io&quot;&amp;gt;CodePen&amp;lt;/a&amp;gt;.&amp;lt;/span&amp;gt;
&amp;lt;/p&amp;gt;
&amp;lt;/li&amp;gt;
&amp;lt;li&amp;gt;v2 Boxes moving around box with lines to center. CSS anchor positioning. Hover the big square! - Seems to be be broken by a Chrome update. I will investigate when I have the time!
&amp;lt;p class=&quot;codepen&quot; data-height=&quot;500&quot; data-theme-id=&quot;dark&quot; data-default-tab=&quot;result&quot; data-slug-hash=&quot;vYwRyPq&quot; data-pen-title=&quot;v2 Boxes around box with line to middle (Chrome+)&quot; data-user=&quot;bigandy&quot; style=&quot;height: 500px; box-sizing: border-box; display: flex; align-items: center; justify-content: center; border: 2px solid; margin: 1em 0; padding: 1em;&quot;&amp;gt;
&amp;lt;span&amp;gt;See the Pen &amp;lt;a href=&quot;https://codepen.io/bigandy/pen/vYwRyPq&quot;&amp;gt;
v2 Boxes around box with line to middle (Chrome+)&amp;lt;/a&amp;gt; by Andrew Hudson (&amp;lt;a href=&quot;https://codepen.io/bigandy&quot;&amp;gt;@bigandy&amp;lt;/a&amp;gt;)
on &amp;lt;a href=&quot;https://codepen.io&quot;&amp;gt;CodePen&amp;lt;/a&amp;gt;.&amp;lt;/span&amp;gt;
&amp;lt;/p&amp;gt; --&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;/li&amp;gt;
&amp;lt;/ul&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;!-- Make sure this is only once here! --&amp;gt;
&amp;lt;script async src=&quot;https://cpwebassets.codepen.io/assets/embed/ei.js&quot;&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;style&amp;gt;
.demos-list {
.cp_embed_wrapper {
margin-block: 1rem;
}
}
&amp;lt;/style&amp;gt;&lt;/p&gt;
</content:encoded></item><item><title>Big Three Cyclocross 2023-24</title><link>https://andrewhudson.dev/blog/big-three-cx-2023-24/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/big-three-cx-2023-24/</guid><pubDate>Sun, 10 Dec 2023 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;import { Picture } from &quot;astro:assets&quot;;
import image from &quot;./big-three-cyclocross.avif&quot;;&lt;/p&gt;
&lt;p&gt;Really looking forward to the showdown this Cyclo Cross winter season with Wout van Aert, Tom Pidcock and Mathieu van der Poel.&lt;/p&gt;
&lt;p&gt;&amp;lt;Picture
src={image}
formats={[&quot;avif&quot;, &quot;webp&quot;]}
alt=&quot;2023-24 calendar of cyclocross dates where Mathieu van der Poel, Tom Pidcock and Wout van Aert are participating&quot;
/&amp;gt;&lt;/p&gt;
</content:encoded></item><item><title>Cool demos I created in june 2023</title><link>https://andrewhudson.dev/blog/cool-demos-june-2023/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/cool-demos-june-2023/</guid><pubDate>Wed, 14 Jun 2023 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&amp;lt;ul class=&quot;demos-list&quot;&amp;gt;
&amp;lt;li&amp;gt;Ferris Wheel with CSS Trig and sibling-count web-component. I wanted to try out CSS Trigonometric functions (cos() and sin()) and I wanted a better way of knowing how many siblings a parent had and what the index of each sibling was. So I created a web-component &lt;code&gt;sibling-count&lt;/code&gt; to do the dark magic for me.
&amp;lt;p class=&quot;codepen&quot; data-height=&quot;500&quot; data-theme-id=&quot;dark&quot; data-default-tab=&quot;result&quot; data-slug-hash=&quot;OJovxRW&quot;  data-user=&quot;bigandy&quot; style=&quot;height: 500px; box-sizing: border-box; display: flex; align-items: center; justify-content: center; border: 2px solid; margin: 1em 0; padding: 1em;&quot;&amp;gt;
&amp;lt;span&amp;gt;See the Pen &amp;lt;a href=&quot;https://codepen.io/bigandy/pen/OJovxRW&quot;&amp;gt;
Ferris wheel : Using sibling-count web component and CSS Trig&amp;lt;/a&amp;gt; by Andrew Hudson (&amp;lt;a href=&quot;https://codepen.io/bigandy&quot;&amp;gt;@bigandy&amp;lt;/a&amp;gt;)
on &amp;lt;a href=&quot;https://codepen.io&quot;&amp;gt;CodePen&amp;lt;/a&amp;gt;.&amp;lt;/span&amp;gt;
&amp;lt;/p&amp;gt;
&amp;lt;/li&amp;gt;
&amp;lt;li&amp;gt;Subgrid with CSS Nesting collection of books. Turns out subgrid is coming to Chrome (currently in Chrome Canary), and I guess Edge; it already is in both Safari and Firefox. CSS Nesting is in Chrome/Safari/Edge and is coming to Firefox (currently in Nightly behind a flag).
&amp;lt;p class=&quot;codepen&quot; data-height=&quot;500&quot; data-theme-id=&quot;dark&quot; data-default-tab=&quot;result&quot; data-slug-hash=&quot;rNQNJEZ&quot; data-user=&quot;bigandy&quot; style=&quot;height: 500px; box-sizing: border-box; display: flex; align-items: center; justify-content: center; border: 2px solid; margin: 1em 0; padding: 1em;&quot;&amp;gt;
&amp;lt;span&amp;gt;See the Pen &amp;lt;a href=&quot;https://codepen.io/bigandy/pen/rNQNJEZ&quot;&amp;gt;
CSS Subgrid Book Cards&amp;lt;/a&amp;gt; by Andrew Hudson (&amp;lt;a href=&quot;https://codepen.io/bigandy&quot;&amp;gt;@bigandy&amp;lt;/a&amp;gt;)
on &amp;lt;a href=&quot;https://codepen.io&quot;&amp;gt;CodePen&amp;lt;/a&amp;gt;.&amp;lt;/span&amp;gt;
&amp;lt;/p&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;/li&amp;gt;
&amp;lt;li&amp;gt;
Relative Color Syntax. Supported in Safari but not currently in Firefox/Chrome/Edge.
&amp;lt;p class=&quot;codepen&quot; data-height=&quot;500&quot; data-default-tab=&quot;html,result&quot; data-slug-hash=&quot;KKxYdRj&quot; data-user=&quot;bigandy&quot; style=&quot;height: 500px; box-sizing: border-box; display: flex; align-items: center; justify-content: center; border: 2px solid; margin: 1em 0; padding: 1em;&quot;&amp;gt;
&amp;lt;span&amp;gt;See the Pen &amp;lt;a href=&quot;https://codepen.io/bigandy/pen/KKxYdRj&quot;&amp;gt;
relative color syntax + cos() - Works in Safari/Chrome/Edge&amp;lt;/a&amp;gt; by Andrew Hudson (&amp;lt;a href=&quot;https://codepen.io/bigandy&quot;&amp;gt;@bigandy&amp;lt;/a&amp;gt;)
on &amp;lt;a href=&quot;https://codepen.io&quot;&amp;gt;CodePen&amp;lt;/a&amp;gt;.&amp;lt;/span&amp;gt;
&amp;lt;/p&amp;gt;
&amp;lt;/li&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;li&amp;gt;
Scroll driven animations. Works currently in Chrome Canary. Scroll the page, see the circular text rotate.
&amp;lt;p class=&quot;codepen&quot; data-height=&quot;500&quot; data-theme-id=&quot;dark&quot; data-default-tab=&quot;result&quot; data-slug-hash=&quot;xxapgva&quot; data-user=&quot;bigandy&quot; style=&quot;height: 500px; box-sizing: border-box; display: flex; align-items: center; justify-content: center; border: 2px solid; margin: 1em 0; padding: 1em;&quot;&amp;gt;
&amp;lt;span&amp;gt;See the Pen &amp;lt;a href=&quot;https://codepen.io/bigandy/pen/xxapgva&quot;&amp;gt;
css scroll animation + css trig&amp;lt;/a&amp;gt; by Andrew Hudson (&amp;lt;a href=&quot;https://codepen.io/bigandy&quot;&amp;gt;@bigandy&amp;lt;/a&amp;gt;)
on &amp;lt;a href=&quot;https://codepen.io&quot;&amp;gt;CodePen&amp;lt;/a&amp;gt;.&amp;lt;/span&amp;gt;
&amp;lt;/p&amp;gt;
&amp;lt;/ul&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;!-- Make sure this is only once here! --&amp;gt;
&amp;lt;script async src=&quot;https://cpwebassets.codepen.io/assets/embed/ei.js&quot;&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;style&amp;gt;
.demos-list {
.cp_embed_wrapper {
margin-block: 1rem;
}
}
&amp;lt;/style&amp;gt;&lt;/p&gt;
</content:encoded></item><item><title>Raspberry Pi from MacOS via SD Card</title><link>https://andrewhudson.dev/blog/installing-raspberry-pi-notes/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/installing-raspberry-pi-notes/</guid><pubDate>Sat, 10 Apr 2021 00:00:00 GMT</pubDate><content:encoded>&lt;ul&gt;
&lt;li&gt;get the image: https://www.raspberrypi.org/software/operating-systems/&lt;/li&gt;
&lt;li&gt;install the image: https://www.raspberrypi.org/documentation/installation/installing-images/mac.md&lt;/li&gt;
&lt;li&gt;&lt;code&gt;diskutil list&lt;/code&gt; to find out the rdisk that your SD is associated with&lt;/li&gt;
&lt;li&gt;&lt;code&gt;diskutil unmountDisk /dev/diskN&lt;/code&gt; replacing the rdiskN with the number of the disk your SD card is associated with&lt;/li&gt;
&lt;li&gt;&lt;code&gt;sudo dd bs=1m if=path_of_your_image.img of=/dev/rdiskN; sync&lt;/code&gt; replacing the rdiskN with the number of the disk your SD card is associated with. In my case this is &lt;code&gt;sudo dd bs=1m if=/Users/andrew/Downloads/2021-03-04-raspios-buster-armhf-lite.img of=/dev/rdisk3; sync&lt;/code&gt; (you can see the progress by pressing ctrl+t)&lt;/li&gt;
&lt;li&gt;this will put the image on /Volumes/boot which will be accessible from the command line&lt;/li&gt;
&lt;li&gt;&lt;code&gt;sudo diskutil eject /dev/rdiskN&lt;/code&gt; to eject the SD card.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Set up Wifi on the card&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;https://www.raspberrypi.org/documentation/configuration/wireless/headless.md&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;cd /Volumes/boot&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;vim wpa_suplicant.conf&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;enter wifi and country code in the file but that note that this will need to be the 2.4GHz network if you have a Raspberry Pi that does not support 5GHz.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
country=GB&amp;lt;Insert 2 letter ISO 3166-1 country code here&amp;gt;

network={
ssid=&quot;&amp;lt;Name of your wireless LAN&amp;gt;&quot;
psk=&quot;&amp;lt;Password for your wireless LAN&amp;gt;&quot;
}
&lt;/code&gt;&lt;/pre&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;enable ssh https://www.raspberrypi.org/documentation/remote-access/ssh/README.md easiest is to place a &lt;code&gt;ssh&lt;/code&gt; file in the sd card during setup&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;eject the SD card and put in the raspberry pi and turn it on&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Format the SD Card&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;sudo diskutil eraseDisk FAT32 RASPBIAN MBRFormat /dev/diskN&lt;/code&gt; replacing diskN with your disk number found by running &lt;code&gt;diskutil list&lt;/code&gt;. Note that this gives the name RASBIAN to the SD Card so now you can cd into /Volumes/RASPBIAN. I followed this site: https://www.michaelcrump.net/the-magical-command-to-get-sdcard-formatted-for-fat32/&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Install Nodejs on the raspberry pi&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Need to SSH into the PI first then you can do the command line work.&lt;/li&gt;
&lt;li&gt;Follow this as it worked for me: https://www.instructables.com/Install-Nodejs-and-Npm-on-Raspberry-Pi/&lt;/li&gt;
&lt;li&gt;&lt;code&gt;wget https://nodejs.org/dist/v14.16.1/node-v14.16.1-linux-armv7l.tar.gz&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;tar -xzf node-v14.16.1-linux-armv7l.tar.gz&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;cd node-v14.16.1-linux-armv7l/&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;sudo cp -R * /usr/local/&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Check if node is installed &lt;code&gt;node -v&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Check if npm is installed &lt;code&gt;npm -v&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Install Apache&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;https://www.raspberrypi.org/documentation/remote-access/web-server/apache.md&lt;/li&gt;
&lt;li&gt;Should be able to navigate to &lt;code&gt;http://raspberrypi.lan/&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Files should be kept in &lt;code&gt;/var/www/html/&lt;/code&gt; directory&lt;/li&gt;
&lt;li&gt;Folder and file permissions for the var/www folder : https://www.raspberrypi.org/forums/viewtopic.php?t=155067&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Johnny Five Button on Pi&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;npm install johnny-five raspi-io&lt;/li&gt;
&lt;li&gt;create index.js&lt;/li&gt;
&lt;li&gt;=======&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Install Dependencies&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;sudo apt install vim nginx git&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;install rustup: &lt;code&gt;curl --proto &apos;=https&apos; --tlsv1.2 -sSf https://sh.rustup.rs | sh&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;install openssl and direnv: &lt;code&gt;sudo apt install openssl direnv&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;cargo build --release&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;install more deps &lt;code&gt;sudo apt install libprotobuf-dev protobuf-compiler&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;try again &lt;code&gt;cargo build --release&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Install the 64 bit version of the Raspberry Pi OS&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;https://illegalexception.schlichtherle.de/raspbian/2019/09/21/how-to-upgrade-raspbian-to-a-64-bit-kernel/&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Run Next with pm2&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;https://trinitytuts.com/tips/deploying-a-nextjs-app-in-production-with-pm2/&lt;/li&gt;
&lt;li&gt;Create the build first &lt;code&gt;npm run build&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;pm2 start npm --name &quot;Next App&quot; -- start&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Save pm2 settings &lt;code&gt;pm2 save&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;With nginx make sure the correct permissions: &lt;code&gt;sudo chown -R pi:www-data /var/www&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Code to run the button on raspberry pi with johnny-five&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;const five = require(&quot;johnny-five&quot;);
const Raspi = require(&quot;raspi-io&quot;).RaspiIO;
const board = new five.Board({
    io: new Raspi(),
});

board.on(&quot;ready&quot;, function () {
    const button1 = new five.Button(&quot;P1-7&quot;);

    button1.on(&quot;press&quot;, async () =&amp;gt; {
        console.log(&quot;button1 pressed&quot;);
    });
});
&lt;/code&gt;&lt;/pre&gt;
&lt;ul&gt;
&lt;li&gt;Needs to be run with sudo privileges e.g. &lt;code&gt;sudo node index.js&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
</content:encoded></item><item><title>How I use get_iplayer to download the latest Gilles Peterson show!</title><link>https://andrewhudson.dev/blog/get-iplayer-download-gilles-peterson/get-iplayer-download-gilles-peterson/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/get-iplayer-download-gilles-peterson/get-iplayer-download-gilles-peterson/</guid><pubDate>Sun, 28 Mar 2021 00:00:00 GMT</pubDate><content:encoded>&lt;h2&gt;How to use get_iplayer&lt;/h2&gt;
&lt;p&gt;&lt;a href=&quot;https://github.com/get-iplayer/get_iplayer&quot;&gt;get_iplayer&lt;/a&gt; is a tool for downloading TV and Radio shows from the BBC iPlayer. I want to use it to get the latest Gilles Peterson show, and download it onto a folder on my machine.&lt;/p&gt;
&lt;h3&gt;Run a search for Gilles Peterson&apos;s shows:&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&amp;lt;pre&amp;gt;&amp;lt;code&amp;gt;get_iplayer --type=radio &quot;Gilles Peterson&quot;&amp;lt;/code&amp;gt;&amp;lt;/pre&amp;gt;&lt;/li&gt;
&lt;li&gt;This returns a list of the 5 latest shows with their corresponding IDs e.g. &amp;lt;strong&amp;gt;Gilles Peterson - Words &amp;amp; Music From Pino Palladino, BBC Radio 6 Music, m000t5dn&amp;lt;/strong&amp;gt; where &amp;lt;strong&amp;gt;m000t5dn&amp;lt;/strong&amp;gt; is the ID.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;How to download this show&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&amp;lt;pre&amp;gt;&amp;lt;code&amp;gt;get_iplayer --pid=m000t5dn&amp;lt;/code&amp;gt;&amp;lt;/pre&amp;gt; record a radio programme using the PID (m000t5dn) from its Sounds URL in high quality (320k), with fallback to lower quality if not available (default setting):.&lt;/li&gt;
&lt;li&gt;&amp;lt;pre&amp;gt;&amp;lt;code&amp;gt;get_iplayer --pid=m000t5dn --radio-quality=med&amp;lt;/code&amp;gt;&amp;lt;/pre&amp;gt; is a lower quality 96k - much more reasonable at 130.31MB&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;div class=&quot;notes&quot;&amp;gt;&lt;/p&gt;
&lt;h3&gt;How to: Download the latest version of get_iplayer&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://github.com/get-iplayer/get_iplayer/wiki/osx&quot;&gt;Full instructions for Macos are here&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Navigate to https://github.com/get-iplayer/get_iplayer_macos/releases and grab the latest MacOS version&lt;/li&gt;
&lt;li&gt;Download and then ctrl+click the installer as the installer is not signed.&lt;/li&gt;
&lt;li&gt;Update the cache by running &amp;lt;pre&amp;gt;&amp;lt;code&amp;gt;get_iplayer --refresh --type=tv,radio&amp;lt;/code&amp;gt;&amp;lt;/pre&amp;gt; or &amp;lt;pre&amp;gt;&amp;lt;code&amp;gt;get_iplayer --refresh --type=radio&amp;lt;/code&amp;gt;&amp;lt;/pre&amp;gt; if only want radio.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;lt;/div&amp;gt;&lt;/p&gt;
</content:encoded></item><item><title>2020 in Review</title><link>https://andrewhudson.dev/blog/2020-review/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/2020-review/</guid><description>Some highlights of 2020</description><pubDate>Thu, 31 Dec 2020 00:00:00 GMT</pubDate><content:encoded>&lt;h1&gt;This Year&lt;/h1&gt;
&lt;p&gt;Obviously this year was dominated by Covid and its related carnage but overall the year was a good one as well as a tiring one.&lt;/p&gt;
&lt;h2&gt;Family&lt;/h2&gt;
&lt;p&gt;We were lucky so spend a month in France with Marion&apos;s parents in the summer and two weeks with my parents following this. Otherwise we didn&apos;t really see anyone and are really looking forward to the time in the future we can all get together.&lt;/p&gt;
&lt;h2&gt;Coffee&lt;/h2&gt;
&lt;p&gt;We used the inforced working from home as an extravagant excuse to get a posh espresso machine and make delicious coffee every day. Both Marion and I are keen drinkers of the dark stuff so we made a lot of coffee last year.&lt;/p&gt;
&lt;h2&gt;Job&lt;/h2&gt;
&lt;p&gt;My third year at Venture Harbour and learned a tonne this year. Design Systems, serverless functions, Nextjs, GraphQL, CSS Modules, Firebase, and Postgress. Outside of work I took this further with some cool personal projects with my Raspberry Pi and SQLite and Hasura databases. I think I am starting finally to move away from design and CSS as my favorite areas of interest and really enjoy working with the stack we have going at work. I love controlling things through tech in the real world so having the Pi projects going is a good way to take a step back and build something useful in the house for all my family.&lt;/p&gt;
&lt;h2&gt;Health and Fitness&lt;/h2&gt;
&lt;p&gt;I did a lot of running this year. Only during the first lockdown and during the post-holiday quarantine did things reduce. It was a year that I smashed my running goal of 1,000 km and in the end I did 826.4 miles which equals 1330km!. In 2021 I want to run further and achieve 1,000+ miles. There were no races due to Covid but if things change in 2021 I&apos;d like to run my first marathon. I also did a lot of walking and cycling as a family, and did some e-biking when in France with Marion which was super fun.&lt;/p&gt;
</content:encoded></item><item><title>2019 Review</title><link>https://andrewhudson.dev/blog/2019-summary/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/2019-summary/</guid><description>2019 in Review</description><pubDate>Tue, 31 Dec 2019 00:00:00 GMT</pubDate><content:encoded>&lt;h2&gt;What a year 2019 has been!&lt;/h2&gt;
&lt;p&gt;What a year 2019 has been! I&apos;m currently in France on holiday and looking back on what the year 2019 was for me. Work-wise I did loads of JavaScript including working on an Electron desktop application called Serene and its companion Chrome and Firefox extension. This uses loads of React, Node, and Firebase to handle all the data, as well as styled-jsx to handle the styling. Every day is a day for learning! I also worked on a big project using React on BrokerNotes. So all in all I grew a lot as a developer in 2019!&lt;/p&gt;
&lt;p&gt;On the personal side we moved house to Wallingford, Arthur started primary school, and I re-focused on running again. Emma turned one, and Arthur four. There have been holidays and weekends away.&lt;/p&gt;
&lt;h2&gt;Highlights:&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Moved house&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;finally we&apos;re in our house in Wallingford after renting in Cholsey for 9 months.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Family&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Arthur started school in September which has made life more interesting with two different locations to drop/pick up kids in the morning and evenings. He is enjoying school a lot and learning a great amount too.&lt;/li&gt;
&lt;li&gt;We Travelled to Croatia for a holiday in June, then other holidays have been to France for a wedding, a family&lt;/li&gt;
&lt;li&gt;Emma turned one and continues to deprive us of sleep. She has a very strong character.&lt;/li&gt;
&lt;li&gt;Marion started a new job, and has also caught the running bug. It was amazing to run with her over the Christmas break so I&apos;ll be looking forward to run with her in 2020!&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;I Got Fit&lt;/strong&gt;
This year has been a year dominated with exercise and collecting Vitality Points. - Ran and exercised lots - Took a 6 week swimming course - Ran two trail half-marathons, a 10k and a Park Run&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Work&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Worked on Serene all year learning lots of Electron; levelling up my React and Node and learning Firebase and CSS-in-JS with styled-jsx. On BrokerNotes I also used React with a big project being released in December that can be re-used in different projects next year.&lt;/li&gt;
&lt;li&gt;Conferences:
&lt;ul&gt;
&lt;li&gt;React Advanced&lt;/li&gt;
&lt;li&gt;WP Engine Summit&lt;/li&gt;
&lt;li&gt;JAMStack Conference London&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ol&gt;
</content:encoded></item><item><title>Music I&apos;m Currently Listening to</title><link>https://andrewhudson.dev/blog/music-notes-1/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/music-notes-1/</guid><description>The top 3 albums I am listening to.</description><pubDate>Wed, 27 Mar 2019 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Top three albums I am listening to at the moment:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&quot;Love What Survives&quot; by Mount Kimbie&lt;/li&gt;
&lt;li&gt;&quot;Lux Prima&quot; by Karen O and Dangermouse&lt;/li&gt;
&lt;li&gt;&quot;Benji&quot; by Sun Kil Moon&lt;/li&gt;
&lt;/ol&gt;
</content:encoded></item><item><title>Exercise Notes #1</title><link>https://andrewhudson.dev/blog/exercise-notes-1/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/exercise-notes-1/</guid><description>This is the first of many exercise notes where I focus on what exercise I have been doing and how I&apos;m feeling.</description><pubDate>Wed, 20 Mar 2019 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;In the first of possibly more than one I review what I have been doing in terms of exercise in the last week. I will see how I feel about them. Could be changed to monthly.&lt;/p&gt;
&lt;p&gt;This week I have been running three times, and the gym twice. I&apos;ve decided to aim for some realistic but challenging running goals, they are sub-20min 5k, then sub-40min 10k. For the first one I want to this in the gym first then outdoors. Running on the treadmill at the gym is a more controlled environment because you can enter a pace and then you stick to it whereas outside you need to navigate a course and remember to keep running as fast as possible.&lt;/p&gt;
</content:encoded></item><item><title>Running Goals for 2019.</title><link>https://andrewhudson.dev/blog/running-goals-2019/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/running-goals-2019/</guid><description>In this post I finally write down the goals I want to achieve in running.</description><pubDate>Sun, 17 Mar 2019 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;This year I really would like to achieve some cool things in running. Here are some of them:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;sub 20 minute 5k (first on a treadmill, then in real-life e.g. park run)&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;sub 40 minute 10k (this will have to be done on strava)&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Complete a trail half-marathon. I have signed up for two trail half-marathons:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;May 25th 2019 &lt;a href=&quot;http://www.maverick-race.com/races/2019/5/25/maverick-x-tribe-run-free-marathon-2019&quot;&gt;Maverick x TRIBE Run Free Half Marathon 2019&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;October 12th 2019 &lt;a href=&quot;http://www.maverick-race.com/races/theoriginaloxfordshire2019&quot;&gt;The Maverick inov-8 Original Oxfordshire 2019&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Run Further than I know how to: (See how far I can run):&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;[x] 12 miles. (done! &lt;a href=&quot;https://www.strava.com/activities/2206638011&quot;&gt;12.11 miles - 11.03.2019&lt;/a&gt; and &lt;a href=&quot;https://www.strava.com/activities/2782317723&quot;&gt;Super Muddy and Wet Maverick Oxfordshire - trail half&lt;/a&gt;)&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;[x] 13 miles. (done see 15 miles)&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;[x] 14 miles (done see 15 miles)&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;[x] 15 miles (done! &lt;a href=&quot;https://www.strava.com/activities/2395541069&quot;&gt;Hot and mountainous Maverick Tribe 24k&lt;/a&gt;)&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;[ ] 16 miles&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;[ ] 17 miles&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;[ ] 18 miles&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;[ ] 19 miles&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;[ ] 20 miles&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;[ ] 21 miles&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;[ ] 22 miles&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;[ ] 23 miles&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;[ ] 24 miles&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;[ ] 25 miles&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;[ ] 26 miles&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;[ ] 26.2 miles+&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;[ ] 50k!&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
</content:encoded></item><item><title>Trialling Eleventy.</title><link>https://andrewhudson.dev/blog/trialling-eleventy/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/trialling-eleventy/</guid><description>I wanted to be able to write without having to fucking login to WordPress, I didn&apos;t want to use Jekyll or Gatsby. Thus I am using Eleventy.</description><pubDate>Tue, 12 Mar 2019 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;I have been using WordPress to write for a long time but lately I have been wanting something different, seperating the place where you write from the internet and allowing one to focus on the writing not the process of putting the writing live in a web browser.&lt;/p&gt;
&lt;p&gt;I have used Jeykll in the past but that process was much slower than I&apos;d like. It felt like going into the stone age - Ruby, poor developer experience.&lt;/p&gt;
&lt;h2&gt;Requirements of a new blogging platform&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Uses markdown&lt;/li&gt;
&lt;li&gt;Uses JS&lt;/li&gt;
&lt;li&gt;Browser sync and local server easy to setup and use&lt;/li&gt;
&lt;li&gt;Easy to get started with a blog with archive, tagging and ability to schedule posts&lt;/li&gt;
&lt;li&gt;Deploy easily and quickly with Netlify on push of code to Github.&lt;/li&gt;
&lt;/ol&gt;
&lt;h2&gt;What are the contenders?&lt;/h2&gt;
&lt;p&gt;I can see two main contenders: Eleventy and Gatsby. Out of the box Eleventy is simpler to set up and doesn&apos;t really require learning anything in terms of different tech stacks whereas Gatsby is React based and uses GraphQL as its API. I have made a simple Gatsby site in the past that pulls in data from WordPress, Strava and Contentful but for this case I want to be able to use markdown files to be able to write posts in the text editor (or IA Writer if I decide that place would be better in the future).&lt;/p&gt;
&lt;h2&gt;I have an Eleventy Site on &lt;a href=&quot;https://andrewhudson.blog&quot;&gt;andrewhudson.blog&lt;/a&gt;.&lt;/h2&gt;
&lt;p&gt;This site is built using the Eleventy Blog Starter and was incredibly easy to get going without having to learn much new other than being able to write a custom filter to not show future posts. It uses Nunjucks as the templating engine and is super quick, has Browser Sync for local development and blog post previewing.&lt;/p&gt;
&lt;h2&gt;I have a Gatsby Site on &lt;a href=&quot;https://bigandy.netlify.com&quot;&gt;bigandy.netlify.com&lt;/a&gt;.&lt;/h2&gt;
</content:encoded></item><item><title>Addicted to Vitality Points.</title><link>https://andrewhudson.dev/blog/vitality-points/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/vitality-points/</guid><description>This is a post on My Blog about my addiction to Vitality Points.</description><pubDate>Tue, 12 Mar 2019 00:00:00 GMT</pubDate><content:encoded>&lt;h2&gt;Introduction&lt;/h2&gt;
&lt;p&gt;Many people get addicted to exercise but I am addicted to Vitality Points.&lt;/p&gt;
&lt;h2&gt;Vitality?&lt;/h2&gt;
&lt;p&gt;If you are not aware what Vitality is and what Vitality Points are here is a quick introduction. Vitality is a health insurance provider that I get with my current job. To incentivise people to become healthier and stay healthy, there is a system called Vitality Points where you earn points for doing exercise, eating healthily, and being healthy (e.g. visit the dentist, pass fitness test, pass health test, don&apos;t smoke, etc). The more points you get the better the partner benefits.&lt;/p&gt;
&lt;h3&gt;Benefits&lt;/h3&gt;
&lt;p&gt;The more point you the better your grading. You start on bronze and then there is Silver, Gold and the top rating is Platinum. Who wouldn&apos;t want to be rated platinum? The more luxurious your grading the better the partner benefits. For example with Evans Cycles on Bronze you get £250 off the price of a £500 bike, whereas on platinum you would get £500 off the price of a £1000 bike. There are many other &lt;a href=&quot;https://www.vitality.co.uk/rewards/partners/&quot;&gt;deals like this&lt;/a&gt; with brands such as BA, Ocado, or Mr &amp;amp; Mrs Smith.&lt;/p&gt;
&lt;h3&gt;Amazon Prime&lt;/h3&gt;
&lt;p&gt;To further incentivise you to get points there are other schemes within Vitaliy Points such as their Amazon Prime deal. You need to get 160 points per month - which means you have to do the maximum of 40 points per week which means exercise on at least 5 days per week. But you do get Amazon Prime free for each of the months that you get the 160 points. And free is good!&lt;/p&gt;
&lt;h2&gt;Exercise&lt;/h2&gt;
&lt;p&gt;To get the 40 weekly points I regularly go to the gym 3x a week, plus go for an hour+ walk with the family on the weekend, plus a weekend run. In essence it forces me out of the house to do something almost every day which is good.&lt;/p&gt;
&lt;h2&gt;Other Points&lt;/h2&gt;
&lt;p&gt;You get points in other ways, such as using a guided meditation app (such as headspace), and buying healthy food from Ocado. There are other less frequent sources of points such as annual health, fitness, and dental checks.&lt;/p&gt;
&lt;h2&gt;My position&lt;/h2&gt;
&lt;p&gt;Since starting at the beginning of November 2018 I am currently on 1640 points (on 14.03.2019) which makes me a Gold rating, with 2400 being the next target to reach Platinum. I will continue to get points every week assuming that I am fit and healthy.&lt;/p&gt;
</content:encoded></item><item><title>Looking back to 2018</title><link>https://andrewhudson.dev/blog/looking-back-to-2018/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/looking-back-to-2018/</guid><pubDate>Tue, 01 Jan 2019 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Emma was born in May and for the rest of the year our lives were turned upside down. One is fun but you forget about the early months and the lack of sleep but finally she&apos;s getting into more of a routine. We moved house in September.&lt;/p&gt;
&lt;h2&gt;Fitness&lt;/h2&gt;
&lt;p&gt;Gym and running and walking have been my main forms of fitness after work paid both Gym membership and Vitality Health Insurance - the latter means that I need to get points to unlock other benefits - so it is for points that I go to the gym, for a run etc. I have already started to lose some weight and regain fitness and will look for some events to enter in 2019 to double down on the motivation for training.&lt;/p&gt;
&lt;h2&gt;House&lt;/h2&gt;
&lt;p&gt;Moved house in September, to a rental place while our new house is still being built. Already its in the countryside and bigger than the previous one so many benefits though being a rental place we can&apos;t do what we want to it and the insulation is poor so bills are high now that winter is here. Much closer to both nursery and work so commuting is dramatically reduced.&lt;/p&gt;
&lt;h2&gt;Job&lt;/h2&gt;
&lt;p&gt;The final two weeks of 2018 ended with me working on a super interesting project creating a Chrome Extension and companion MacOS app - just the ground work so far but really different from anything that I have done before and a break from working on websites.&lt;/p&gt;
&lt;p&gt;I released two PWAs, did lots of performance work across multiple projects as well as the regular craft of creating new templates for sites.&lt;/p&gt;
&lt;h2&gt;Family&lt;/h2&gt;
&lt;p&gt;Arthur is almost 4 and continuously learning new skills and cracking us up. At the moment he&apos;s learning how to use a peddle bike having had a balance bike since his 3rd birthday. We&apos;ve just chosen our preferred primary school and will find which one he will go to in April before starting in September. Marion is on mat leave with Emma until Spring.&lt;/p&gt;
&lt;p&gt;We have been to France for our main holiday in July so that I could watch the first stage of the Tour de France as it was super close to Marion&apos;s parents house. We have visited family and friends in France as well, showing Emma to everyone.&lt;/p&gt;
</content:encoded></item><item><title>How to trigger a webhook with WordPress</title><link>https://andrewhudson.dev/blog/how-to-trigger-a-webhook-with-wordpress/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/how-to-trigger-a-webhook-with-wordpress/</guid><pubDate>Fri, 12 Oct 2018 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;I have a Gatsby site &lt;a href=&quot;http://andrewhudson.me&quot;&gt;andrewhudson.me&lt;/a&gt; which is a static Server Side Rendered (SSR) site built using React and hosted on Netlify. I wanted to trigger a build when I published a new post (or updated an existing one) in WordPress and here&apos;s how I did it.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Get webhook url from Netlify&lt;/li&gt;
&lt;li&gt;In WordPress code:&lt;/li&gt;
&lt;/ol&gt;
&lt;pre&gt;&lt;code&gt;    function ah_webhook_netlify_post() {
    	$url = &apos;https://api.netlify.com/build_hooks/XXXXXXXXXXX&apos;;

    	$args =	array(
    		&apos;method&apos; =&amp;gt; &apos;POST&apos;,
    		&apos;timeout&apos; =&amp;gt; 5,
    		&apos;blocking&apos; =&amp;gt; false,
            );
    	wp_remote_post( $url, $args );
    }
    add_action( &apos;publish_post&apos;, &apos;ah_webhook_netlify_post&apos; );
&lt;/code&gt;&lt;/pre&gt;
</content:encoded></item><item><title>Automate Opening Zoom MacOS</title><link>https://andrewhudson.dev/blog/automate-opening-application-macos/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/automate-opening-application-macos/</guid><description>I detail how to automate the opening of Zoom on MacOS using crontab.</description><pubDate>Wed, 15 Aug 2018 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;At work we have daily standups using Zoom and my colleague Ryo asked if it was possible to automate the opening of the Zoom app in the correct meeting group at a specific time every day.&lt;/p&gt;
&lt;h2&gt;Steps:&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;open terminal&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;crontab -e&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;57 8 * * 1-5 ~/openZoom.sh&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&apos;esc&apos; and &apos;:wq&apos; to exit crontab&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;create ~/openZoom.sh with the following :&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;#! /bin/bash -l&lt;/p&gt;
&lt;p&gt;open https://zoom.us/j/&amp;lt;meeting-id&amp;gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;chmod +x ~/openZoom.sh&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;h2&gt;Crontab syntax&lt;/h2&gt;
&lt;p&gt;I have used 57 8 * * 1-5 ~/openZoom.sh and I will break that down command by command:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;57 - minutes past the hour&lt;/li&gt;
&lt;li&gt;8 - hours&lt;/li&gt;
&lt;li&gt;* - day (month i.e. it could be fourth day of the month)&lt;/li&gt;
&lt;li&gt;* - month (i.e. it could be 2 and thus February)&lt;/li&gt;
&lt;li&gt;1-5 - day (of the week, I have used 1-5 so Mon-Fri)&lt;/li&gt;
&lt;li&gt;~/openZoom.sh - executes the ~/openZoom.sh file&lt;/li&gt;
&lt;/ul&gt;
</content:encoded></item><item><title>New Arrival – Emma Hudson</title><link>https://andrewhudson.dev/blog/new-arrival-emma-hudson/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/new-arrival-emma-hudson/</guid><pubDate>Wed, 13 Jun 2018 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;We are proud and happy to announce the arrival of our Emma Hudson born on 29th May weighing 3.0kg. I’ve just returned back to work after 2 weeks paternity leave. Her big brother Arthur is super proud! Summer is here and we&apos;re applying for a passport so that we can visit the grandparents and extended family in France.&lt;/p&gt;
</content:encoded></item><item><title>I am implementing web mentions on this website.</title><link>https://andrewhudson.dev/blog/implementing-web-mentions-website/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/implementing-web-mentions-website/</guid><pubDate>Sat, 28 Oct 2017 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;After attending View Source Conference in London Yesterday I am now in the process of adding web mentions to my website. &lt;a href=&quot;https://viewsourceconf.org/london-2017/#building-blocks_summary&quot;&gt;Jeremy Keith&apos;s talk&lt;/a&gt;.&lt;/p&gt;
</content:encoded></item><item><title>Running January</title><link>https://andrewhudson.dev/blog/running-january/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/running-january/</guid><description>Today is the final day of January and at lunch I will go for a run. I have run at least three times a week for four weeks now.</description><pubDate>Tue, 31 Jan 2017 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Today is the final day of January and at lunch I will go for a run. I have run at least three times a week for four weeks now. From this week I aim to run at least four times a week as I increase my weekly mileage upwards to 20+ miles a week from 15+ miles a week.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Week 1&lt;/strong&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;03/01/2017 &lt;a href=&quot;https://www.strava.com/activities/819740301&quot;&gt;Steventon Loop&lt;/a&gt;; 2.9 mi; 23:40; Cold &lt;em&gt;and&lt;/em&gt; I forgot my long-sleeve top and thicker shorts; First run of 2017.&lt;/li&gt;
&lt;li&gt;05/01/2017 &lt;a href=&quot;https://www.strava.com/activities/821939368&quot;&gt;Milton and Steventon Loop&lt;/a&gt; 4.8 mi; 39:26; Remembered my cold weather clothes. Cold but sunny, mud was iced up. Fatigued today.&lt;/li&gt;
&lt;li&gt;07/01/2017 &lt;a href=&quot;https://www.strava.com/activities/823762273&quot;&gt;Chilton A34 Underpass via Harwell and back&lt;/a&gt; 8.0 mi; 1:10:20; Morning; Foggy until got above it then sun/blue skies; 8 degrees; Third of the week!&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;strong&gt;Week 2&lt;/strong&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;09/01/2017 &lt;a href=&quot;https://www.strava.com/activities/826263274&quot;&gt;Muddy Muddy Reverse Steventon&lt;/a&gt; 4.0 mi; 34:31; muddy and slippery; a bit of rain; mild.&lt;/li&gt;
&lt;li&gt;11/01/2017 &lt;a href=&quot;https://www.strava.com/activities/828402032&quot;&gt;Milton Loop&lt;/a&gt;; 3.2 mi; 25:18; Knackered today; sunny, mild; a bit of wind.&lt;/li&gt;
&lt;li&gt;13/01/2017 &lt;a href=&quot;https://www.strava.com/activities/830466350&quot;&gt;Extended Milton and Steventon Loop&lt;/a&gt; 5.5mi; 45:40; Cold wind; muddy and waterlogged; wet feet squelch squerch; hill!&lt;/li&gt;
&lt;li&gt;15/01/2017 &lt;a href=&quot;https://www.strava.com/activities/832542811&quot;&gt;Wet GWP circumnavigation&lt;/a&gt; 6.5mi; 52:40; Wet and then down Cow Lane very muddy; Need some off road shoes!&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;strong&gt;Week 3&lt;/strong&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;17/01/2017 &lt;a href=&quot;https://www.strava.com/activities/834879492&quot;&gt;Slippery Steventon Loop&lt;/a&gt; 4.0mi; 35:54; Very slippery, esp. next to railway; not much energy today; 4C and a bit sunny.&lt;/li&gt;
&lt;li&gt;19/01/2017 &lt;a href=&quot;https://www.strava.com/activities/837064791&quot;&gt;CW Milton Loop&lt;/a&gt; 3.2mi; 24:50; sunny but cold; faster than usual.&lt;/li&gt;
&lt;li&gt;21/01/2017 &lt;a href=&quot;https://www.strava.com/activities/838909784&quot;&gt;Chilton Upton Coldie&lt;/a&gt; 10.5mi; 1:27:48; Brrrr was super cold. Sunny. Finally found way to link Chilton and Upton!&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;strong&gt;Week 4&lt;/strong&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;24/01/2017 &lt;a href=&quot;https://www.strava.com/activities/842608918&quot;&gt;Extended Steventon Loop&lt;/a&gt; 5.0mi; 40:46; Sunny; less cold but enough for mud to be mostly frozen; saw a heron and two deer.&lt;/li&gt;
&lt;li&gt;26/01/2017 &lt;a href=&quot;https://www.strava.com/activities/844819486&quot;&gt;Fast CW Milton Loop&lt;/a&gt; 3.2mi; 23:29; Cold; Decided to run some fast sections. Lots of people running opposite direction.&lt;/li&gt;
&lt;li&gt;28/01/2017 &lt;a href=&quot;https://www.strava.com/activities/846765686&quot;&gt;Extended Pointe du plombe&lt;/a&gt; 8.5mi; 1:11:14; warm, sunny, windy towards Pointe du plombe, lunch run; fast in&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;strong&gt;Week 5&lt;/strong&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;31/01/2017 &lt;a href=&quot;https://www.strava.com/activities/850386543&quot;&gt;CCW Milton Loop&lt;/a&gt; 3.2mi; 24:03; Humid, grey and horrible; lots of runners going other way.&lt;/li&gt;
&lt;/ol&gt;
</content:encoded></item><item><title>Entered Reading Half</title><link>https://andrewhudson.dev/blog/entered-reading-half/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/entered-reading-half/</guid><description>Starting 2017 with great intentions to do more running I have signed up for Reading half marathon on the 19th March.</description><pubDate>Mon, 09 Jan 2017 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;It is the second week of January and I have signed up for Reading half-marathon on 19th of March. It&apos;s been a number of years since I last ran the Reading Half and I am looking forward to returning to where I used to live and run through the streets. My aim at the moment is to go out three times a week, gradually increasing the weekly mileage. Today I went out on a four mile off-road route, it was very muddy and slippery in places. Having this race, and others, as goals will hopefully keep my motivation up when things get difficult and not see me stopping running for so long (like I did at the end of last year after picking up an injury due to over training). I would like to run a marathon this year and have already started the search for an ideal candidate as well as looking at other shorter distances (like the half-marathon and 10k).&lt;/p&gt;
</content:encoded></item><item><title>FF Conf 2016</title><link>https://andrewhudson.dev/blog/ff-conf-2016/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/ff-conf-2016/</guid><description>I have wanted to attend FFConf for as many years as it has been running and this year I was lucky to attend. Here are my notes from the talks which stood out to me...</description><pubDate>Thu, 24 Nov 2016 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;a href=&quot;https://2016.ffconf.org/&quot;&gt;FFConf&lt;/a&gt; is a front-end conference held in Brighton every year and here are my notes from the talks that stood out:&lt;/p&gt;
&lt;h3&gt;Future CSS - Rachel Andrew &lt;a href=&quot;http://www.slideshare.net/rachelandrew/nextlevel-css?utm_content=buffer7cb6c&quot;&gt;SLIDES&lt;/a&gt;&lt;/h3&gt;
&lt;p&gt;Rachel covered a number of different future / current in some browsers CSS such as flexbox, grid, @supports, shapes and path-clipping, initial letter, css variables and calc, position: sticky and scroll snapping.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;flexbox: already &lt;a href=&quot;http://caniuse.com/#search=flexbox&quot;&gt;good browser support&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;grid: coming to browsers in Spring 2017. Where flexbox is for one dimension, grid is for two dimensions. Can be used alongside flexbox not either or.
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://gridbyexample.com&quot;&gt;Grid By Example - Examples/Tutorials/Videos&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://igalia.github.io/css-grid-layout/enable.html&quot;&gt;How to enable&lt;/a&gt; in Canary/Firefox/Opera/Safari&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;@supports feature detection with CSS. e.g. &lt;a href=&quot;http://www.lottejackson.com/learning/supports-will-change-your-life&quot;&gt;Supports will Change your Life&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://webplatform.adobe.com/shapes/&quot;&gt;Shapes&lt;/a&gt; + Path-clipping &lt;a href=&quot;http://bennettfeely.com/clippy/&quot;&gt;cool clip-path tool&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;position: sticky; Firefox, Safari, Canary. &lt;a href=&quot;https://css-tricks.com/position-sticky-2/&quot;&gt;Overview on CSS-tricks&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://css-tricks.com/introducing-css-scroll-snap-points/&quot;&gt;scroll snapping&lt;/a&gt; Supported by Firefox, Edge/IE11/Safari (partial).&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;Technologic (human after all): accessibility remix - Léonie Watson - &lt;a href=&quot;http://ljwatson.github.io/decks/2016/ffconf/index.html#&quot;&gt;SLIDES&lt;/a&gt;&lt;/h3&gt;
&lt;p&gt;Excellent accessibility talk with reference to screen readers, writing HTML with aria-roles.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Aria roles&lt;/li&gt;
&lt;li&gt;Aria name e.g. aria-labelledby&lt;/li&gt;
&lt;li&gt;Aria state e.g. aria-checked&lt;/li&gt;
&lt;li&gt;Use inbuilt HTML semantics e.g. use button not div with aria-role=&quot;button&quot;&lt;/li&gt;
&lt;li&gt;Test without mouse, using screen reader&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;Optimise Your Web Development Workflow - Umaar Hansa&lt;/h3&gt;
&lt;p&gt;100+ slides with many cool features that are in Chrome Dev Tools. Tools including:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;analyse unused css&lt;/li&gt;
&lt;li&gt;box- and text-shadow in dev tools&lt;/li&gt;
&lt;li&gt;workspaces v2&lt;/li&gt;
&lt;li&gt;terminal in browser (Mac Only)&lt;/li&gt;
&lt;li&gt;ctrl-shift-p: allows you to enter commands like you do with sublime text.&lt;/li&gt;
&lt;li&gt;&lt;a&gt;enable devtools experiments&lt;/a&gt; e.g. Allow Custom UI Themes&lt;/li&gt;
&lt;li&gt;&lt;a&gt;enable experimental web platform features&lt;/a&gt; e.g. grid&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Open dev tools, press F1, Goto &quot;experiments&quot; tab, press shift 6 times. Check out his &lt;a href=&quot;https://umaar.com/dev-tips/&quot;&gt;dev tool tips&lt;/a&gt; for more!&lt;/p&gt;
&lt;h2&gt;Other Write-ups&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://medium.com/mr-tech-stories/reasons-why-ffconf-2016-was-a-successful-tech-conference-2cbacaae6864#.958g3izhe&quot;&gt;https://medium.com/mr-tech-stories/reasons-why-ffconf-2016-was-a-successful-tech-conference-2cbacaae6864#.958g3izhe&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://espeo.eu/blog/ffconf-best-web-frontend-conference/&quot;&gt;http://espeo.eu/blog/ffconf-best-web-frontend-conference/&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://medium.com/etch-stories/full-frontal-the-conference-experience-c1c11ff9370d#.m5zljiute&quot;&gt;https://medium.com/etch-stories/full-frontal-the-conference-experience-c1c11ff9370d#.m5zljiute&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</content:encoded></item><item><title>30 running days of September</title><link>https://andrewhudson.dev/blog/30-running-days-september/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/30-running-days-september/</guid><description>Last month I decided to go running every day. That&apos;s 30 days of going outside into the fresh and cool/warm/hot air and going running. Day after day after day, running.</description><pubDate>Mon, 03 Oct 2016 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Last month I decided to go running every day. That&apos;s 30 days of going outside into the fresh and cool/warm/hot air and going running. Day after day after day, running. To make things interesting I decided to do a range of different routes so that I was never running the same route from one day to the next: short distance, long distance, medium distance, tarmac, off-road, to the beach (on holiday) and so on. I did my first ever parkrun, ran a half-marathon distance, and joined the local running club. I ran 140 miles (225km) in 30 days making an average of 4.6 miles a day. The furthest I ran was 13.3 miles (last Friday) and the shortest was 2 miles (a few different occasions). How far will I run in October?&lt;/p&gt;
</content:encoded></item><item><title>First ever parkrun</title><link>https://andrewhudson.dev/blog/first-ever-parkrun/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/first-ever-parkrun/</guid><description>On Saturday morning I ran my first ever parkrun - Didcot Parkrun. 5k is a fast and painful all out distance, but once complete it sets up the weekend nicely.</description><pubDate>Mon, 19 Sep 2016 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;On Saturday morning I set off out of the door at 0830 to run to the start of &lt;a href=&quot;http://www.parkrun.org.uk/didcot/&quot;&gt;Didcot Parkrun&lt;/a&gt; a weekly free timed 5k running route. After the recent hot weather it was much cooler (13°C) and I jogged there too quickly so I had at least 15 minutes trying to stay warm. I chatted with someone who&apos;d already done the course before and then the volunteers also gave a description of the route. Three laps of a grass field then a mile along a paved footpath. I finished in 21:50 at a pace of 7:00 mins/mile, that final mile was tortuous just following someone trying to get closer to them but not managing, then sprinting the final 20 meters, knackered but relieved that the suffering had finished. [lazy] [/lazy]&lt;/p&gt;
</content:encoded></item><item><title>Morning Runner</title><link>https://andrewhudson.dev/blog/morning-runner/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/morning-runner/</guid><description>Some people might say that there is never enough time in the day to go running. But there is always time. In the morning before everyone is up!</description><pubDate>Fri, 08 Jul 2016 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Some people might say that there is never enough time in the day to go running, especially with a toddler and a full-time job. But there is always time for something you want to make time for.&lt;/p&gt;
&lt;h3&gt;Excuses&lt;/h3&gt;
&lt;p&gt;The year and a half since Arthur was born there was never time for running. After commuting back from work, then playing with Arthur in the evening, giving him his bath and putting him to bed. After this dinner, relax, bed. Where is there time for running?&lt;/p&gt;
&lt;h3&gt;Solution&lt;/h3&gt;
&lt;p&gt;There is a solution! Go running before Arthur wakes up, before work when it is quiet and the grass smells of dew. I&apos;ve been doing this for the last two weeks. It is incredible! Once I get back I&apos;ve already completed something challenging so that day is always going to be a successful one.&lt;/p&gt;
&lt;h3&gt;Outcome&lt;/h3&gt;
&lt;p&gt;I set up my running kit the night before, everything is ready so that I just have a glass of water and put my kit on and go. Anything that prevents you from running is a mental barrier so having organised the kit the decision has been made. Go running!&lt;/p&gt;
</content:encoded></item><item><title>The Economy of Keystrokes - Kyle Simpson</title><link>https://andrewhudson.dev/blog/the-economy-of-keystrokes/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/the-economy-of-keystrokes/</guid><description>Earlier today I watched this is a excellent video about writing code that can be read, understood, documented and accessible to all that will use it in the future (be that you, your team or anyone else).</description><pubDate>Wed, 03 Feb 2016 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Earlier today I watched this is a excellent video about writing code that can be read, understood, documented and accessible to all that will use it in the future (be that you, your team or anyone else).&lt;/p&gt;
</content:encoded></item><item><title>Happy 2016!!!</title><link>https://andrewhudson.dev/blog/happy-2016/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/happy-2016/</guid><description>It&apos;s the 4th of January and my first day back in the UK after an fantastic holiday with family in France - the food, weather and company were excellent, and Arthur wants to walk everywhere and has learned how to stand up with help of furniture.</description><pubDate>Mon, 04 Jan 2016 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;It&apos;s the 4th of January and my first day back in the UK after an fantastic holiday with family in France - the food, weather and company were excellent, and Arthur wants to walk everywhere and has learned how to stand up with help of furniture. It&apos;s that time of the year when resolutions are made, but this year I will continue with mine from last year, and add some more:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Continue Learning JavaScript and French&lt;/li&gt;
&lt;li&gt;Increase exercise (running and cycling)&lt;/li&gt;
&lt;li&gt;Reduce amount of stuff I have (by selling or recycling)&lt;/li&gt;
&lt;/ul&gt;
</content:encoded></item><item><title>Realtime Communication with socket.io and WordPress</title><link>https://andrewhudson.dev/blog/realtime-communication-with-socket-io-and-wordpress/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/realtime-communication-with-socket-io-and-wordpress/</guid><description>Last night I watched this video about connecting socket.io and WordPress for realtime update of WordPress content. This is incredible!</description><pubDate>Sat, 14 Nov 2015 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Last night I watched this video about connecting socket.io and WordPress for realtime update of WordPress content. This is incredible! https://videopress.com/v/FzBGgDr9 Related to this I have been learning about programming IOT (Internet of Things; in my case it is Arduino and Raspberry Pi and electronic components) that I want to be able to control via a webpage and store the information in a Database. I have already followed a tutorial connecting a Angular page with my Arduino board.&lt;/p&gt;
</content:encoded></item><item><title>Using forecast.io with WordPress</title><link>https://andrewhudson.dev/blog/using-forecast-io-with-wordpress/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/using-forecast-io-with-wordpress/</guid><description>How to use the WordPress Transients API and wp remote get() to grab the latest weather from the forecast.io API.</description><pubDate>Thu, 22 Oct 2015 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;For ages this sites has had the tagline &quot;I&apos;m a front-end and WordPress developer based in &lt;strong&gt;sunny&lt;/strong&gt; Oxfordshire. hello!&quot; and I wanted to be able to update the &lt;strong&gt;sunny&lt;/strong&gt; with the days weather. How British I know! I am using &lt;a href=&quot;https://codex.wordpress.org/Function_Reference/wp_remote_get&quot;&gt;wp_remote_get()&lt;/a&gt; to grab a &lt;a href=&quot;https://developer.forecast.io/docs/v2&quot;&gt;JSON object from the forecast.io API&lt;/a&gt;, then selecting the part that I want - the current weather - and storing this in my database using &lt;a href=&quot;https://codex.wordpress.org/Transients_API&quot;&gt;WordPress Transients API&lt;/a&gt; to cache the result for 3 hours so that I don&apos;t make multiple API calls (and so I don&apos;t go over the 1000 API calls per day). I have wrapped the code in a shortcode so that I can call it wherever I like.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;function ah_shortcode_weather( $atts, $content ) {
	$response_args = [
		&apos;timeout&apos; =&amp;gt; 120,
	];

	$transient_name = &apos;weather&apos;; // Name of value in database.
	$cache_time = 3; // Time in hours between updates.

	// If the transient is not set
	if ( false === ( $weather = get_transient( $transient_name ) ) ) {
	   // Get new $response from the weather api
	   $response = wp_remote_get( &apos;https://api.forecast.io/forecast/APIKEY/LATITUDE,LONGITUDE?units=uk&apos;, $response_args );
	   // Check if response is an array
	   if ( is_array( $response ) ) {
			// Get response body
			$response_body = json_decode( $response[&apos;body&apos;] );
			// Get Current Weather Summary
			$weather = strtolower( $response_body-&amp;gt;currently-&amp;gt;summary );
			// Set the transient
			set_transient( $transient_name, $weather, 60 * 60 * $cache_time );
		}
	}

	$html = $weather;

	return esc_html( $html );
}

add_shortcode( &apos;weather&apos;, &apos;ah_shortcode_weather&apos; );
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;To use this I call it with the shortcode &quot;weather&quot;. &lt;strong&gt;EDIT:&lt;/strong&gt; after a week of using this the weather is almost always &quot;partly cloudy&quot;. Welcome to autumn/winter! **EDIT (19.08.2016) :**Having used this shortcode in the tagline of my site its not very positive displaying the horrible British weather so have removed it from the tagline. You can still find it here: The Weather is currently : [weather]&lt;/p&gt;
</content:encoded></item><item><title>Codepen all the things</title><link>https://andrewhudson.dev/blog/codepen-all-the-things/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/codepen-all-the-things/</guid><description>Every time I have an issue with code I turn straight to codepen to make a small demo to concentrate on only the parts that will affect the problem. If it is JS then I add the minimum HTML and then work through the issue in the JS window, same if it is with CSS. I love it.</description><pubDate>Thu, 15 Oct 2015 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Every time I have an issue with code I turn straight to &lt;a href=&quot;http://codepen.io/&quot;&gt;codepen&lt;/a&gt; to make a small demo to concentrate on only the parts that will affect the problem. If it is JS then I add the minimum HTML and then work through the issue in the JS window, same if it is with CSS. I love it.&lt;/p&gt;
</content:encoded></item><item><title>Angular with WP API</title><link>https://andrewhudson.dev/blog/angular-with-wp-api/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/angular-with-wp-api/</guid><description>Here is how you can use the WP API to pull in the 10 latest posts using Angular.</description><pubDate>Tue, 18 Aug 2015 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;I wanted to be able to use the WP API to show my latest posts on an external site, and here&apos;s how I did it using Angular. You need:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;A WordPress site with the latest version of the &lt;a href=&quot;https://github.com/WP-API/WP-API&quot;&gt;WP API Plugin&lt;/a&gt; (I am using 2.0 Beta 4.0) from Github (use develop branch)&lt;/li&gt;
&lt;li&gt;A copy of &lt;a href=&quot;https://angularjs.org/&quot;&gt;Angular&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;html:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;	Latest 10 Posts from big-andy.co.uk
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;js:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;var app = angular.module(&apos;app&apos;, []);

// filter to convert html to trusted html.
app.filter(&apos;to_trusted&apos;, [&apos;$sce&apos;, function($sce){
	return function(text) {
		return $sce.trustAsHtml(text);
	};
}]);

// Add a controller
app.controller( &apos;AppCtrl&apos;, [&apos;$scope&apos;, &apos;$http&apos;, function( $scope, $http ) {
	// Load posts from the WordPress API
	$http({
		cache: true,
		method: &apos;GET&apos;,
		url: &apos;https://big-andy.co.uk/wp-json/wp/v2/posts&apos;,
		params: {
			&apos;filter[posts_per_page]&apos; : 10
		},
	}).
	success( function( data, status, headers, config ) {
		$scope.posts = data;
	});
}]);
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&lt;a href=&quot;http://bigandy.pw/angular/&quot;&gt;See Demo&lt;/a&gt; or &lt;a href=&quot;http://codepen.io/bigandy/pen/aOxPLM/&quot;&gt;See Codepen Demo&lt;/a&gt; [lazy]&lt;/p&gt;
&lt;p&gt;See the Pen &lt;a href=&quot;http://codepen.io/bigandy/pen/aOxPLM/&quot;&gt;Angular WP API&lt;/a&gt; by Andrew Hudson (&lt;a href=&quot;http://codepen.io/bigandy&quot;&gt;@bigandy&lt;/a&gt;) on &lt;a href=&quot;http://codepen.io&quot;&gt;CodePen&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;[/lazy]&lt;/p&gt;
</content:encoded></item><item><title>Arthur is 6 months Old</title><link>https://andrewhudson.dev/blog/arthur-is-6-months-old/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/arthur-is-6-months-old/</guid><pubDate>Tue, 11 Aug 2015 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;On Saturday it was 6 months since Arthur was born and he&apos;s doing really well. Attempting to crawl, he also talks and smiles a lot. &lt;img src=&quot;https://big-andy.co.uk/content/uploads/2015/08/arthur-6mths-685x1024.jpg&quot; alt=&quot;arthur-6mths&quot; /&gt; Did I mention that he loves food? &lt;img src=&quot;https://big-andy.co.uk/content/uploads/2015/08/arthur-food-cucumber.jpg&quot; alt=&quot;arthur-food-cucumber&quot; /&gt; &lt;img src=&quot;https://big-andy.co.uk/content/uploads/2015/08/arthur-food-spinach.jpg&quot; alt=&quot;arthur-food-spinach&quot; /&gt;&lt;/p&gt;
</content:encoded></item><item><title>UX of Offline</title><link>https://andrewhudson.dev/blog/ux-of-offline/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/ux-of-offline/</guid><pubDate>Thu, 21 May 2015 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;https://vimeo.com/125479288&lt;/p&gt;
</content:encoded></item><item><title>Arthur is now 80 days old</title><link>https://andrewhudson.dev/blog/arthur-is-now-80-days-old/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/arthur-is-now-80-days-old/</guid><description>Time flies. Arthur is now 11.5 weeks old and doing well. Each day he continues to change and life is a continual wonder, both for us to observe his new skills and abilities and for him.</description><pubDate>Wed, 29 Apr 2015 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Time flies. Arthur is now 11.5 weeks old and doing well. Each day he continues to change and life is a continual wonder, both for us to observe his new skills and abilities and for him. Here&apos;s a photo of him that I took last week. &lt;img src=&quot;https://big-andy.co.uk/content/uploads/2015/04/day-73-11.jpg&quot; alt=&quot;day-73-11&quot; /&gt;&lt;/p&gt;
</content:encoded></item><item><title>New Arrival - Arthur Hudson</title><link>https://andrewhudson.dev/blog/new-arrival-arthur-hudson/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/new-arrival-arthur-hudson/</guid><description>We are proud and happy to announce the arrival of our Arthur Hudson born on 8th February weighing 3.5kg.</description><pubDate>Mon, 16 Mar 2015 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;We are proud and happy to announce the arrival of our Arthur Hudson born on 8th February weighing 3.5kg. I&apos;ve returned back to work after 2 weeks paternity leave and time has flown past since then. Now he&apos;s 5 weeks old and growing fast, starting to speak fluent gaggle gargble, sucking his thumb, and smiling at us. We&apos;ve just started to read to him before he goes to bed. Last weekend we went to Suffolk with his Grandparents to meet the extended family (my Mum&apos;s side) including his great grandmother, various great aunties and uncles and so forth, and in May we will go to France to meet the extended family there. 0 days old: &lt;img src=&quot;https://big-andy.co.uk/content/uploads/2015/03/day-0-with-mr-fox-768x1024.jpg&quot; alt=&quot;day-0-with-mr-fox&quot; /&gt; 10 days old: &lt;img src=&quot;https://big-andy.co.uk/content/uploads/2015/03/day-10-mr-fox-685x1024.jpg&quot; alt=&quot;day-10-mr-fox&quot; /&gt;&lt;/p&gt;
</content:encoded></item><item><title>Distracted? Let&apos;s make technology that helps us spend our time well</title><link>https://andrewhudson.dev/blog/distracted-lets-make-technology-helps-us-spend-time-well/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/distracted-lets-make-technology-helps-us-spend-time-well/</guid><pubDate>Wed, 28 Jan 2015 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;This is an excellent TEDx talk about distractions from technology, and value to be gained from spending our time well. https://www.youtube.com/watch?v=jT5rRh9AZf4&lt;/p&gt;
</content:encoded></item><item><title>This is Water</title><link>https://andrewhudson.dev/blog/water/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/water/</guid><pubDate>Wed, 21 Jan 2015 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;https://www.youtube.com/watch?v=8CrOL-ydFMI via/&lt;a href=&quot;http://css-tricks.com/web-devvy-ways-practice-gratitude-empathy/&quot;&gt;CSS Tricks&lt;/a&gt;&lt;/p&gt;
</content:encoded></item><item><title>Name One &amp; Maxxi Soundsystem &apos;One In Three&apos;</title><link>https://andrewhudson.dev/blog/name-one-maxxi-soundsystem-one-three/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/name-one-maxxi-soundsystem-one-three/</guid><description>A lack of deep bass music these days (unless I&apos;ve not found the good stuff) I found this on Veerle&apos;s Music.</description><pubDate>Fri, 09 Jan 2015 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;https://www.youtube.com/watch?v=FurrtMv0kjU via &lt;a href=&quot;http://veerlepieters.tumblr.com/&quot;&gt;Veerle&apos;s Music&lt;/a&gt;&lt;/p&gt;
</content:encoded></item><item><title>Do One Thing Well</title><link>https://andrewhudson.dev/blog/one-thing-well/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/one-thing-well/</guid><pubDate>Tue, 16 Dec 2014 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Here&apos;s a &lt;a href=&quot;https://medium.com/small-giants/just-right-list-da769c3c25b9&quot;&gt;list of things&lt;/a&gt; that show product design that focuses on doing one thing excellently well not trying to do everything at an average standard.&lt;/p&gt;
</content:encoded></item><item><title>Thoughts on Inbox</title><link>https://andrewhudson.dev/blog/thoughts-inbox/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/thoughts-inbox/</guid><description>I&apos;ve been a keen user of google inbox for over a month and here are my initial thoughts.</description><pubDate>Thu, 04 Dec 2014 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;I&apos;ve been a keen user of &lt;a href=&quot;https://inbox.google.com&quot;&gt;google inbox&lt;/a&gt; for over a month and here are my initial thoughts. I love it! Plus points:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;ability to tick all of the emails and threads that you have read or actioned and not see them on the main page&lt;/li&gt;
&lt;li&gt;set up to-dos.&lt;/li&gt;
&lt;li&gt;the design is really something special, it focuses you on the task in hand and looks stunning too.&lt;/li&gt;
&lt;li&gt;I love that you can pin emails,&lt;/li&gt;
&lt;li&gt;delay reading emails until later (e.g. tomorrow, next week, or some specified time).&lt;/li&gt;
&lt;li&gt;automatic categorisation of emails into groups such as &quot;Social&quot; or &quot;Purchases&quot; or &quot;Travel&quot;,&lt;/li&gt;
&lt;li&gt;delay reading these categories until a specified time each week or day.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Minus points:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Have to click on chat icon to then open new chats could this have been incorporated into the plus icon at the bottom right?&lt;/li&gt;
&lt;li&gt;Difficult to see whether other chat people are online or not (unless they are using Inbox already)&lt;/li&gt;
&lt;/ul&gt;
</content:encoded></item><item><title>I heart Podcasts</title><link>https://andrewhudson.dev/blog/heart-podcasts/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/heart-podcasts/</guid><description>So I&apos;ve finally started to listen to Serial, downloaded a Podcasting app, and fell in love with This American Life, restarting my affair with podcasts.</description><pubDate>Wed, 03 Dec 2014 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;So I&apos;ve finally started to listen to &lt;a href=&quot;http://serialpodcast.org/&quot;&gt;Serial&lt;/a&gt;, downloaded a &lt;a href=&quot;https://play.google.com/store/apps/details?id=au.com.shiftyjelly.pocketcasts&quot;&gt;Podcasting app&lt;/a&gt;, and fell in love with &lt;a href=&quot;http://www.thisamericanlife.org&quot;&gt;This American Life&lt;/a&gt;, restarting my affair with podcasts. I used to listed to a lot of tech podcasts about 4 years ago when Zeldman was at the start of his &lt;a href=&quot;http://5by5.tv/bigwebshow/1&quot;&gt;Big Web Show&lt;/a&gt; series, and before that with &lt;a href=&quot;http://twit.tv/show/this-week-in-tech&quot;&gt;TWIT&lt;/a&gt; but somewhere in between I lost interest. Perhaps it was listening about the day job while relaxing after doing the day job had lost its appeal. The quality of the output of Serial, This American Life and others is outstanding, and listening to interesting stories is an excellent way of relaxing, there&apos;s even a way of listening through my Sonos to Serial (isn&apos;t it amazing, technology adapting to different trends of use!) It is so simple to listen to, any room in the house, or at work or on my phone. What are the great podcasts to listen to? Which ones should I check out next (once I have caught up with Serial)? This post was inspired by the video in &lt;a href=&quot;http://www.theverge.com/2014/11/28/7302227/the-future-is-podcasts&quot;&gt;this verge article&lt;/a&gt;&lt;/p&gt;
</content:encoded></item><item><title>Hoorah for Science and Exploration</title><link>https://andrewhudson.dev/blog/hoorah-science-exploration/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/hoorah-science-exploration/</guid><description>Yesterday the scientists at the European Space Agency managed to plant a probe on a comet. It took 10 years to get there and great teamwork and planning.</description><pubDate>Thu, 13 Nov 2014 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;This is one of the first image provided from the mission to plant a probe on the comet 67P. I could look at it for hours and marvel at the wonders of humanity.&lt;/p&gt;
</content:encoded></item><item><title>All the Stars - The Shifting Sands</title><link>https://andrewhudson.dev/blog/all-the-stars-the-shifting-sands/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/all-the-stars-the-shifting-sands/</guid><description>I heard this last Thursday while baking my wife&apos;s birthday cake, and put it here before I forget the band.</description><pubDate>Mon, 10 Nov 2014 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;I heard this last Thursday on &lt;a href=&quot;http://www.bbc.co.uk/programmes/b04ndsyz&quot;&gt;6music&lt;/a&gt; while baking my wife&apos;s birthday cake, and put it here before I forget the band. An incredible sound. https://soundcloud.com/fishrider-records/all-the-stars-the-shifting&lt;/p&gt;
</content:encoded></item><item><title>José Gonzalez - Every Age</title><link>https://andrewhudson.dev/blog/jose-gonzalez-every-age/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/jose-gonzalez-every-age/</guid><description>I&apos;ve always loved the music of José Gonzalez after hearing “Heartbeats” in 2004. Now he&apos;s released a new track “Every Age” and here&apos;s the video of it.</description><pubDate>Wed, 05 Nov 2014 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;The new song by José Gonzalez : https://www.youtube.com/watch?v=I_iY2RQWNzM&lt;/p&gt;
</content:encoded></item><item><title>Two to Become Three</title><link>https://andrewhudson.dev/blog/two-become-three/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/two-become-three/</guid><description>This is where I announce that my wife is pregnant with our first child.</description><pubDate>Wed, 05 Nov 2014 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;This is where I announce that my wife is pregnant with our first child. Yesterday marked 27 weeks pregnancy and the baby is due in February 2015. We have already started to take in the advice of friends who have already had babies, and given clothes from ones whose baby is now a toddler. Mothercare is already our destination when we need to go shopping on the weekend. I have built a cot, chest of drawers and wardrobe that my parents kindly bought us, and this all resides in what used to be my office. Over the next weeks we need to find some decorations for the room and babify it (we’re thinking animals and owls at the moment), and buy clothes and a pushchair. At the end of the month we will start the NCT course with other expectant parents.&lt;/p&gt;
</content:encoded></item><item><title>Why Work doesn&apos;t happen at work</title><link>https://andrewhudson.dev/blog/work-doesnt-happen-work/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/work-doesnt-happen-work/</guid><description>An excellent TED video where Jason Fried explains why work doesn&apos;t happen at work</description><pubDate>Fri, 10 Oct 2014 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;http://www.ted.com/talks/jason_fried_why_work_doesn_t_happen_at_work&lt;/p&gt;
</content:encoded></item><item><title>Road to Page Speed Perfection</title><link>https://andrewhudson.dev/blog/road-page-speed-perfection/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/road-page-speed-perfection/</guid><description>A tweet inspired me to improve my page speed score and I managed to get both mobile and desktop to 100.</description><pubDate>Thu, 21 Aug 2014 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;This morning Smashing Magazine tweeted about their latest Page Speed Score: https://twitter.com/smashingmag/status/502334585511084033 And I wanted to know if it was possible if I could achieve that or better (preferably better!). Someone replied to the initial tweet saying that there was already a tutorial by Dave Rupert in &lt;a href=&quot;http://daverupert.com/2014/07/rwd-bloat/&quot;&gt;two&lt;/a&gt; &lt;a href=&quot;http://daverupert.com/2014/07/rwd-bloat-part-ii/&quot;&gt;parts&lt;/a&gt;, I read the articles and applied what Dave learnt to my site. I have achieved 100 in both Mobile and Desktop and here&apos;s &lt;a href=&quot;https://developers.google.com/speed/pagespeed/insights/?url=https%3A%2F%2Fbig-andy.co.uk&quot;&gt;my score&lt;/a&gt;.&lt;/p&gt;
&lt;h2&gt;Changes I made&lt;/h2&gt;
&lt;p&gt;As I am using nginx and spdy 3.1 my site was already fast. 91 on desktop and 75 on mobile. But this was far from perfect so I:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Deferred the loading of the web font. If you wait for the webfont to load before the html is loaded onto the page then that&apos;s a significant blocker. I used &lt;a href=&quot;https://gist.github.com/hdragomir/8f00ce2581795fd7b1b7&quot;&gt;javascript that defers font loading&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Inlined the CSS using a &lt;a href=&quot;https://github.com/bigandy/big-andy.co.uk/blob/master/content/themes/v4/header.php#L9&quot;&gt;WordPress include&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Future improvements&lt;/h2&gt;
&lt;p&gt;While the numbers say that it&apos;s 100% I am still not fully happy with this solution. I need to do resolve two issues:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;I want to automate the production of the critical css (at the moment all the CSS is inlined, rather than the critical css) but I had issues with Foundation&apos;s grid and Dave&apos;s method of creating the critical css.&lt;/li&gt;
&lt;li&gt;find a better way of including the cloud.typography.com font&lt;/li&gt;
&lt;/ol&gt;
</content:encoded></item><item><title>How I run my site</title><link>https://andrewhudson.dev/blog/run-site/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/run-site/</guid><description>Skills that I’ve learned in my day job have enabled working on the latest version of this site much more simple and pleasurable than previously. I use Gulp, Bower and Continuous deployment to streamline everything.</description><pubDate>Thu, 21 Aug 2014 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Skills that I&apos;ve learned in my day job have enabled working on the latest version of this site much more simple and pleasurable than previously. I use Gulp, Bower and Continuous deployment to streamline everything.&lt;/p&gt;
&lt;h2&gt;Gulp&lt;/h2&gt;
&lt;p&gt;I&apos;ve been using Gulp for about 6 months (and Grunt for a similar time before that) and it is incredible in that I can automate most of the small tasks that make a site faster to develop and to load. For example, I&apos;ve started to use &lt;strong&gt;uncss&lt;/strong&gt; which removes extraneous CSS after comparing the html on a specified set of pages with the CSS file and removing any CSS that is not required. Awesome! I use &lt;strong&gt;autoprefixer&lt;/strong&gt; to add in or remove vendor prefixes (depending on the latest specs). At the moment I can specify which browsers I want to support and I chose to have &apos;the latest 2 versions&apos;. I use &lt;strong&gt;gulp-sass&lt;/strong&gt; which combines and minifies the CSS from the .scss files. It is super-shit-hot fast compared to Grunt. Good use of &lt;strong&gt;livereload&lt;/strong&gt; to monitor my code and refresh the browser when I&apos;ve done something. No more cmd-r for me! I also remove console.log() and alert() from the JS, lint my WordPress php, and create SVG spritesheets.&lt;/p&gt;
&lt;h2&gt;Bower&lt;/h2&gt;
&lt;p&gt;One simple line of code fetches jquery and adds it to your project&lt;/p&gt;
&lt;p&gt;bower install jquery&lt;/p&gt;
&lt;p&gt;. Before you had to go to the jquery site, manually download, then create a new file in your project and save the new file. Such effort is now reduced to a single line of command line.&lt;/p&gt;
&lt;h2&gt;Continuous Deployment&lt;/h2&gt;
&lt;p&gt;I used to use Capistrano and that was incredible but required you to manually type a deployment instruction when you were ready to deploy, and a lot of setting up too. DeployHQ reduces all of that and it monitors Github (where I keep my code) for a signal to deploy the code. So if I push code to a specific branch it goes live straight away. Incredible!&lt;/p&gt;
</content:encoded></item><item><title>Goodbye Facebook</title><link>https://andrewhudson.dev/blog/goodbye-facebook/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/goodbye-facebook/</guid><description>What is the point of Facebook if not to compare yourself with others. I have had enough of this and have deleted my account. Here&apos;s why.</description><pubDate>Sat, 16 Aug 2014 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;I&apos;ve deleted my facebook account. I feel amazing. Here&apos;s why. For many years I have had a Facebook account but have hardly ever used it. Sometimes I shared pictures, or messages, sometimes just to keep up with the news of people that I used to go to school and university, or out of touch friends. But what for? To look over the shoulder or through the window of those you used to know, of people from your past. What is the point of this? Recently we moved house and the estate has its own Facebook group, and I would often spend time reading the (mostly idiotic) messages left there; people complaining and getting wound up over the smallest things. What a waste of time it all is. Isn&apos;t time better spent learning and doing rather than comparing your life to that of others? So. Slowly the process began. Removing people from my Facebook (unfriending them), people that I went to school with, people that I never really cared about in the first place. Then the Facebook groups, then Facebook itself. Download all your history (and uploaded photos). Then press the blue button to delete Facebook (takes 14 days). I feel free, more free than I did last week. &lt;strong&gt;Update: (22.12.2014)&lt;/strong&gt; I have just signed up to Facebook again, this time for reasons that I can keep in contact with Family with baby photos after Marion has given birth. I will block it at work so it won&apos;t be a distraction.&lt;/p&gt;
</content:encoded></item><item><title>Mr Scruff IN Piccadilly Records</title><link>https://andrewhudson.dev/blog/mr-scruff-piccadilly-records/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/mr-scruff-piccadilly-records/</guid><description>During my university days I lived in Manchester and frequently went to Piccadilly records for my weekly music fix. Mr Scruff was one of the excellent artists that kept me sane.</description><pubDate>Wed, 13 Aug 2014 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;During my university days I lived in Manchester and frequently* went to Piccadilly records (and Vinyl Exchange) and Mr Scruff was one of the excellent artists that kept me sane. So when I saw that &lt;a href=&quot;http://www.mixmag.net/words/news/100-vnyl-welcome-piccadilly-records&quot;&gt;Mixmag had interviewed Mr Scruff IN Piccadilly Records&lt;/a&gt; I had to share it with you. https://www.youtube.com/watch?v=BStO2u4W0mo *thank god for the student loan, I bought an incredible amount of tuneage from those record shops along Oldham Street!&lt;/p&gt;
</content:encoded></item><item><title>https</title><link>https://andrewhudson.dev/blog/https/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/https/</guid><pubDate>Thu, 07 Aug 2014 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;I read this morning that &lt;a href=&quot;http://googleonlinesecurity.blogspot.co.uk/2014/08/https-as-ranking-signal_6.html&quot;&gt;google ranks https:// sites higher than http:// sites&lt;/a&gt;, and I watched the video from this years I/O conference : https://www.youtube.com/watch?v=cBhZ6S0PFCY and decided that I&apos;d have a go at making this site https://big-andy.co.uk. &lt;a href=&quot;https://www.ssllabs.com/ssltest/analyze.html?d=big-andy.co.uk&quot;&gt;Here&apos;s the proof that my site is https&lt;/a&gt;&lt;/p&gt;
</content:encoded></item><item><title>New Server</title><link>https://andrewhudson.dev/blog/new-server/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/new-server/</guid><pubDate>Tue, 05 Aug 2014 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Logged into server last night. &quot;The server operating system has reached the end of its life, please upgrade to Ubuntu 14.04&quot;. I&apos;d wanted to try out the new London Digital Ocean droplet, update to 14.04, and install some extra such as Varnish*. This was a perfect oportunity! *although now that I&apos;ve setup spdy and https varnish is no longer an option.&lt;/p&gt;
</content:encoded></item><item><title>Maximal Sentence Length</title><link>https://andrewhudson.dev/blog/maximal-sentence-length/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/maximal-sentence-length/</guid><description>Gov.uk “use sentences less than 25 words long”, which is an excellent idea and one that I have started using on this site.</description><pubDate>Mon, 04 Aug 2014 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Earlier today I read why &lt;a href=&quot;https://insidegovuk.blog.gov.uk/2014/08/04/sentence-length-why-25-words-is-our-limit/&quot;&gt;gov.uk use sentences less than 25 words long&lt;/a&gt; is an excellent idea and one that I have started out on this site. It focuses you the author on creating short concise sentences with no cruft, and does not alienate or confuse readers.&lt;/p&gt;
</content:encoded></item><item><title>Re-install for better performance</title><link>https://andrewhudson.dev/blog/re-install-better-performance/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/re-install-better-performance/</guid><description>The last few days at work I have been prevented from using Adobe products and with no solution I had to format and re-install.</description><pubDate>Mon, 04 Aug 2014 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;The last few days at work I have been prevented from using Adobe products and with no solution I had to format and re-install. Re-installation gives you a chance to throw away everything and only install things that you really need. Sure the installation process took five hours but it gave me a chance to do some reading and freshen my computer up.&lt;/p&gt;
</content:encoded></item><item><title>Picture Featured Image Post</title><link>https://andrewhudson.dev/blog/picture-featured-image-post/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/picture-featured-image-post/</guid><description>The new &lt;picture&gt; element is incredible if you want to serve different images based on the width of the browser that the user is viewing your site on. While the browsers are currently working on implementing the spec, you can implement it with a polyfill called picturefill.js. I&apos;ve applied this to my WordPress site and will detail how I&apos;ve done it, starting first with featured images.</description><pubDate>Wed, 11 Jun 2014 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;The new &amp;lt;picture&amp;gt; element is incredible if you want to serve different images based on the width of the browser that the user is viewing your site on. The syntax is&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;picture&amp;gt;
&amp;lt;source media=&quot;(min-width: 1400px)&quot; srcset=&quot;largest-image.jpg&quot; /&amp;gt;
&amp;lt;source media=&quot;(min-width: 1000px)&quot; srcset=&quot;large.jpg&quot; /&amp;gt;
&amp;lt;source media=&quot;(min-width: 750px)&quot; srcset=&quot;medium.jpg&quot; /&amp;gt;
&amp;lt;source media=&quot;(min-width: 500px)&quot; srcset=&quot;small.jpg&quot; /&amp;gt;
&amp;lt;img src=&quot;fallback-image.jpg&quot; /&amp;gt;
&amp;lt;/picture&amp;gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;The media attribute tells the browser at which width (or more specific which minimum width) the image should be shown. The srcset attribute gives the location of the file as src does in usual &amp;lt;img&amp;gt; element tags.&lt;/p&gt;
</content:encoded></item><item><title>Running in Space</title><link>https://andrewhudson.dev/blog/running-space/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/running-space/</guid><pubDate>Wed, 04 Jun 2014 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Look at how astronauts on the ISS can run in space. https://www.youtube.com/watch?v=_ikouWcXhd0&lt;/p&gt;
</content:encoded></item><item><title>USA Pro road race champion</title><link>https://andrewhudson.dev/blog/usa-pro-road-race-champion/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/usa-pro-road-race-champion/</guid><pubDate>Wed, 28 May 2014 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;This guy became the USA Pro road race champion. http://vimeo.com/81173752&lt;/p&gt;
</content:encoded></item><item><title>Updating my Site</title><link>https://andrewhudson.dev/blog/updating-site/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/updating-site/</guid><pubDate>Thu, 15 May 2014 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Currently I am in the process of updating this site. I have already switched to a new theme “v4” and I am using Bower, Gulp, Foundation 5, Sass, jshint, nodesass. I have switched the typography over to use Sentinel (via typography.com&apos;s new cloud typography service) and the body is (currently) Open Sans… soon to use something different, probably via typography.com as well. Instead of spending months not pushing what I have done, I&apos;m doing changes and pushing changes. So things will break, and things will change.&lt;/p&gt;
</content:encoded></item><item><title>Making of Road Bike Party 2</title><link>https://andrewhudson.dev/blog/making-road-bike-party-2/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/making-road-bike-party-2/</guid><pubDate>Mon, 12 May 2014 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Wow, if you&apos;ve ever seen the incredible &lt;a href=&quot;http://youtu.be/HhabgvIIXik&quot;&gt;Road Bike Party 2&lt;/a&gt; then you&apos;ll love to see how they made it. http://youtu.be/xhI3CUDEWfU&lt;/p&gt;
</content:encoded></item><item><title>Cool Surf Photography Video</title><link>https://andrewhudson.dev/blog/cool-surf-photography-video/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/cool-surf-photography-video/</guid><pubDate>Wed, 30 Apr 2014 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;CREATORS: Clark Little on Staring Down Shorebreak for The Perfect Shot http://vimeo.com/92529798&lt;/p&gt;
</content:encoded></item><item><title>Croix de Fer</title><link>https://andrewhudson.dev/blog/croix-de-fer/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/croix-de-fer/</guid><pubDate>Thu, 24 Apr 2014 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;So I have a new bike. My new bike criteria was for a 4-season, commuter, explorer bike, I chose the &lt;a href=&quot;http://www.genesisbikes.co.uk/bikes/adventure/multi-sport/croix-de-fer/&quot;&gt;Genesis Croix de Fer&lt;/a&gt; with &lt;a href=&quot;http://www.wiggle.co.uk/topeak-super-tourist-dx-rear-rack/&quot;&gt;Topeak rack&lt;/a&gt;, &lt;a href=&quot;http://roadcyclinguk.com/gear/sks-bluemels-mudguards-review-7746.html&quot;&gt;SKS mudguards&lt;/a&gt; and &lt;a href=&quot;http://www.wiggle.co.uk/ortlieb-back-roller-classic-panniers/&quot;&gt;Ortlieb panniers&lt;/a&gt;. Last night I rode it back from the shop in the rain and with a rucsac on my back (the panniers have yet to arrive from Wiggle) and it was a good experience, my first with mudguards. Need to make some adjustments, and swap the SPD peddles from my MTN bike, but looking forward to taking it on trips soon.&lt;/p&gt;
</content:encoded></item><item><title>An SVG</title><link>https://andrewhudson.dev/blog/svg/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/svg/</guid><pubDate>Thu, 16 Jan 2014 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Here&apos;s an inline SVG image. &lt;img src=&quot;https://big-andy.co.uk/content/uploads/kiwi.svg&quot; alt=&quot;kiwi&quot; /&gt;&lt;/p&gt;
</content:encoded></item><item><title>WebP images</title><link>https://andrewhudson.dev/blog/webp/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/webp/</guid><pubDate>Thu, 16 Jan 2014 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Here are a couple of webP images. I plucked them from this &lt;a href=&quot;https://developers.google.com/speed/webp/gallery1&quot;&gt;example webp gallery&lt;/a&gt;. &lt;img src=&quot;https://big-andy.co.uk/content/uploads/1.sm_.webp&quot; alt=&quot;1.sm&quot; /&gt; &lt;img src=&quot;https://big-andy.co.uk/content/uploads/5.sm_.webp&quot; alt=&quot;5.sm&quot; /&gt;&lt;/p&gt;
</content:encoded></item><item><title>Goals for 2014</title><link>https://andrewhudson.dev/blog/goals-2014/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/goals-2014/</guid><pubDate>Tue, 14 Jan 2014 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;My key goals for the current year are:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Improve my JavaScript,&lt;/li&gt;
&lt;li&gt;Solve my Rubick&apos;s Cube,&lt;/li&gt;
&lt;li&gt;Do more exercise&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Improve my JavaScript&lt;/h2&gt;
&lt;p&gt;Here&apos;s why. I&apos;ve been a web developer for 3.5 years and have over this time taught myself to do a range of different things with JavaScript: animation, canvas, ajax, json, and other functionality on a per project basis, but never have I felt that I fully understand everything that is going on and I want to change so that I have a better knowledge and build on that more advanced skills. To feel out of depth is a good thing and to have to learn is a good thing because you are out of your comfort zone and not bored with what your job so I think it&apos;s an excellent challenge to learn something so varied and in ways complex.&lt;/p&gt;
&lt;h2&gt;Solve my Rubick&apos;s Cube&lt;/h2&gt;
&lt;p&gt;Something I&apos;ve always wanted to be able to do. Doing some every day and trying different tactics, I&apos;m amazed that people are able to be able to solve this thing. Excellent for the brain and not in front of the screen!&lt;/p&gt;
&lt;h2&gt;More Exercise&lt;/h2&gt;
&lt;p&gt;Since moving house last August I have changed from my routine of regularly running and cycling to only commuting to work and back by bike. I&apos;d like to change that this year (and further into the future!) and get out running at lunchtime (too dark in the evenings) and if possible get out on my bike on the weekend. Good for stress and physique.&lt;/p&gt;
</content:encoded></item><item><title>Lessons Learnt from breaking Servers</title><link>https://andrewhudson.dev/blog/lessons-learnt-breaking-servers/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/lessons-learnt-breaking-servers/</guid><pubDate>Tue, 10 Dec 2013 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Last week I decided to upgrade the version of nginx that I&apos;m using to run this site. Without taking any backups. On a Thursday evening when I was going to be busy for the entire weekend. What could possibly go wrong? Well, as it turns out, everything! All my sites also were offline, and it took me many hours to call decide that I wasn&apos;t going to be able to fix it and then to call it quits. I fired up a new instance on Digital Ocean with my files and databases backed up. Those hours were very frustrating and stressful. I think I learned a bit more about servers so that next time I will be able to do it properly. That next time is not going to be for a good few weeks! Now luckily I am now back online, on a new server (fortunately I back up everything on git, and could log in to grab the file uploads and take a Database dump).&lt;/p&gt;
</content:encoded></item><item><title>Automation (my) Solution</title><link>https://andrewhudson.dev/blog/automation-solution/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/automation-solution/</guid><pubDate>Wed, 04 Dec 2013 00:00:00 GMT</pubDate><content:encoded>&lt;pre&gt;&lt;code&gt;#!/bin/bash


function newSite {
 local appdir=&quot;/Applications/XAMPP/htdocs/$1&quot;
 local sourcedir=&quot;/Applications/XAMPP/htdocs/source&quot;
 local author=&quot;Andrew JD Hudson&quot;
 local themedir=&quot;/Applications/XAMPP/htdocs/$1/content/themes/$1&quot;
 local starterTheme=&quot;es-theme&quot;
 local httpd\_vhosts=&quot;/Applications/XAMPP/etc/extra/httpd-vhosts.conf&quot;
 local git=&quot;ssh://git@bitbucket.org/bigandy&quot;

 if \[ ! -d $appdir \]
        then
          mkdir -p $appdir/wp
          mkdir -p $appdir/content/themes/$1

          # Copy Directories
          cp -rf $sourcedir/wp/ $appdir/wp
          cp -rf $sourcedir/$starterTheme/ $appdir/content/themes/$1

          # Copy files
          cp $sourcedir/{wp-config,index}.php $appdir
          cp $sourcedir/source.sublime-project $appdir/$1.sublime-project
          cp $sourcedir/source.sublime-workspace $appdir/$1.sublime-workspace

          # change folder url in sublime-project
          sed -i &apos;&apos; &apos;s/source/&apos;$1&apos;/&apos; $appdir/$1.sublime-project


          # Remove the git repos from the original source folders
          rm -rf $appdir/content/themes/$1/.git/
          rm -rf $appdir/wp/.git/

          # swap %%THEME\_NAME%% with $1 in sass file
          # $appdir/content/themes/$1/sass/style.sass
          sed -i &apos;&apos; &apos;s/Starter Theme/&apos;$1&apos;/&apos; $appdir/content/themes/$1/sass/style.sass

          sed -i &apos;&apos; &apos;s/odo/&apos;$1&apos;/&apos; $appdir/wp-config.php

          # Create the initial stylesheet
          cd $appdir/content/themes/$1 &amp;amp;&amp;amp; grunt sass

          if \[ ! $2 \]
            then
              $2 = $1
          fi

          # Git init, add, commit, set origin, push to origin
          cd $appdir/content/themes/$1 &amp;amp;&amp;amp; git init &amp;amp;&amp;amp; git add -A &amp;amp;&amp;amp; git commit -m &quot;initial commit of theme files&quot; &amp;amp;&amp;amp; git remote add origin $git/$2.git &amp;amp;&amp;amp; git push -u origin --all

          # Add folder and url to httpd-vhosts.conf
          echo &apos;
 ServerName &apos;$1&apos;.local
DocumentRoot &quot;&apos;$appdir&apos;&quot; &apos; | sudo tee -a $httpd\_vhosts &amp;gt; /dev/null

         # /etc/hosts set up
         sudo sed -ie &apos;s/^127.0.0.1 localhost.\*$/&amp;amp; &apos;$1&apos;.local/g&apos; /etc/hosts

         # restart apache so the above changes to httpd-vhosts.conf will take effect
         sudo apachectl restart

         # Create DB
         # mysql -u root -e &quot;CREATE DATABASE IF NOT EXISTS $1\_db;&quot;; exit;
         #

         # subl $appdir/
         # Open Project in Sublime Text 3
         cd $appdir &amp;amp;&amp;amp; subl --project ${1}.sublime-project
          # TODO
          # 1. Plugins - how to compile a list of plugins in a folder, or import from a list? see bulk plugin installer plugin (http://wordpress.org/plugins/bulk-plugin-installation/)
          # 2. Import test DB with all installs from test.sql


        else
          echo &quot;Please choose a name that is not $1&quot;
      fi
 }

 newSite $1 $2
&lt;/code&gt;&lt;/pre&gt;
</content:encoded></item><item><title>Breaking Borders #3</title><link>https://andrewhudson.dev/blog/breaking-borders-3/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/breaking-borders-3/</guid><pubDate>Wed, 21 Aug 2013 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Last night with the guys from work I went to the third edition of Breaking Borders (bi-monthly web meetup at Reading University). Speakers were Seb Lee-Delisle (lasers!) and Adam Onishi (Nurturing the Roots). To add even further excellence I won a limited edition Lunar Trails print (pictured above, credit: &lt;a href=&quot;http://www.flickr.com/photos/sebleedelisle&quot;&gt;seb&lt;/a&gt;) from &lt;a href=&quot;http://seb.ly/&quot;&gt;Seb Lee-Delisle&lt;/a&gt; which will look superb in my new office.&lt;/p&gt;
</content:encoded></item><item><title>I&apos;ve Entered Henley Half-Marathon</title><link>https://andrewhudson.dev/blog/ive-entered-henley-half-marathon/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/ive-entered-henley-half-marathon/</guid><pubDate>Tue, 20 Aug 2013 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;I&apos;ve done it, signed up for Henley half-marathon. It was a choice of two different half-marathons on the very same day: Oxford (£31) and Henley (£21) of which I really wanted to do Oxford and Henley but the extra cost swung it to Henley. Our friend Christelle is also doing Henley, and I&apos;ve cycled up the steep (very steep!) hill and have walked around the area so know a little of what it&apos;ll be like. Much pain and sufferance will be endured no doubt! This gives me something to get my arse into gear about as I have not run since June 5th (ouch, that&apos;s a long time ago!). So. There&apos;s a local running club: Didcot Runners, I can commute to work (2.8 miles), and explore for new running routes from our new house. &lt;a href=&quot;http://www.timeanddate.com/countdown/generic?iso=20131013T0930&amp;amp;p0=1233&amp;amp;msg=Henley+Half-Marathon&quot;&gt;Countdown to Henley Half-Marathon&lt;/a&gt;&lt;/p&gt;
</content:encoded></item><item><title>i Made that too!</title><link>https://andrewhudson.dev/blog/i-made-that-too/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/i-made-that-too/</guid><pubDate>Thu, 08 Aug 2013 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;I&apos;ve been at Electric Studio for 7 months and following on from my &lt;a href=&quot;http://big-andy.co.uk/blog/i-made-that/&quot;&gt;first site list&lt;/a&gt; I&apos;ve a few more sites that I&apos;ve developed:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://www.nationalpersonalsafetyday.co.uk/&quot;&gt;National Personal Safety Day 2013&lt;/a&gt; - Responsive site for event&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.londonmarine.co.uk/&quot;&gt;London Marine Consultancy&lt;/a&gt; - Marine Consultancy - ships, etc&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://2013.tcsevents.co.uk/&quot;&gt;TCS Events 2013&lt;/a&gt; - Events Micro-site&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.thefrogclapham.co.uk/&quot;&gt;The Frog&lt;/a&gt; - Pub&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.printrun.com/&quot;&gt;Printrun&lt;/a&gt; - Promotional Gifts site&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.qatarwhalesharkproject.com/ar/&quot;&gt;Qatar Whale Shark Research&lt;/a&gt; - conversion of theme to arabic (rtl)&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.isobelweddings.com/&quot;&gt;Isobel Weddings&lt;/a&gt; - wedding planner based in Oxford&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.opteksystems.com/&quot;&gt;Optek Systems&lt;/a&gt; - provider of precision laser micromachining equipment&lt;/li&gt;
&lt;/ul&gt;
</content:encoded></item><item><title>One Week to Go! </title><link>https://andrewhudson.dev/blog/one-week-to-go/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/one-week-to-go/</guid><pubDate>Thu, 01 Aug 2013 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;What a week this one has been, returning to work after two weeks ill (tonsillitis / Quinsy — not very nice). Last night we ordered a fridge and the night before a washing machine. Still need to order a matress otherwise we&apos;ll be sleeping on an airbed. Currently on the lookout for second hand sofabed and sofa. Time is moving very quickly. We&apos;ve waited so long to move house and it&apos;s crazy that its almost here. Just one week away! The next days will be spent enjoying the sunshine, packing, and finding that mattress!&lt;/p&gt;
</content:encoded></item><item><title>10 Years! </title><link>https://andrewhudson.dev/blog/10-years/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/10-years/</guid><pubDate>Thu, 11 Jul 2013 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Thinking about &lt;a href=&quot;/rippin-kitten-miss-kitten/&quot;&gt;Rippin Kitten&lt;/a&gt; and this years &lt;a href=&quot;http://m.guardian.co.uk/sport/tourdefrance&quot;&gt;Tour de France&lt;/a&gt; especially &lt;a href=&quot;http://inrng.com/tour/#Stage17&quot;&gt;stages 17 and 18&lt;/a&gt; brings back memories of the summer of 2003 when I was Kayaking in the French Alps, seeing my first Tour de France and missing my graduation ceremony. That summer I graduated with a degree in Chemistry from the University of Manchester. Now 10 years have passed! I graduated with a degree in Chemistry, moved to Cambridge for 3 years and then travelled through Europe via InterRail, and walked the Coast-to-Coast path before moving back to Reading and meeting Marion. Two more years and we hiked the GR20 (Europe&apos;s toughest long distance walking path). I completed my Web Design qualification and changed career to become a web developer. We got married, had our honeymoon in Peru and got two cats. Now we&apos;re waiting to move into our first home and move to Didcot (hopefully early August).&lt;/p&gt;
</content:encoded></item><item><title>Rippin Kitten — Miss Kitten </title><link>https://andrewhudson.dev/blog/rippin-kitten-miss-kitten/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/rippin-kitten-miss-kitten/</guid><pubDate>Thu, 11 Jul 2013 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;http://www.youtube.com/watch?v=VTYJZtnUuF0 I&apos;ve not heard this in a long time, way back at uni, but listening to the new LP by Jon Hopkins something clicked and I had to check this out.&lt;/p&gt;
</content:encoded></item><item><title>New Pixies Song!</title><link>https://andrewhudson.dev/blog/new-pixies-song/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/new-pixies-song/</guid><pubDate>Tue, 02 Jul 2013 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;a href=&quot;http://www.guardian.co.uk/music/musicblog/2013/jul/01/new-music-pixies-bagboy&quot;&gt;Pixies — Bagboy&lt;/a&gt; found this via the Guardian Music Site&lt;/p&gt;
</content:encoded></item><item><title>The Tallest Man on Earth — Walk the Line</title><link>https://andrewhudson.dev/blog/the-tallest-man-on-earth-walk-the-line/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/the-tallest-man-on-earth-walk-the-line/</guid><pubDate>Tue, 25 Jun 2013 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;I&apos;ve been listening to The Tallest Man on Earth all morning and I really like it. Shades of José Gonzalez, amazing voice and guitar singer songwriter. http://www.youtube.com/watch?v=3sndqSG-h_E&lt;/p&gt;
</content:encoded></item><item><title>Reading to Par by bike</title><link>https://andrewhudson.dev/blog/reading-to-par-by-bike/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/reading-to-par-by-bike/</guid><pubDate>Mon, 17 Jun 2013 00:00:00 GMT</pubDate></item><item><title>Back on the Bike!</title><link>https://andrewhudson.dev/blog/back-on-the-bike/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/back-on-the-bike/</guid><pubDate>Mon, 20 May 2013 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Yesterday Marion and I cycled to Didcot to see the progress of our new house. We cycled there together and after seeing the house (the roof is now on!) and having lunch outside of Sainsburys I cycled solo home. Good day out! Very tired and achey now!&lt;/p&gt;
</content:encoded></item><item><title>Space Oddity - Commander Chris Hadfield </title><link>https://andrewhudson.dev/blog/space-oddity-commander-chris-hadfield/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/space-oddity-commander-chris-hadfield/</guid><pubDate>Mon, 13 May 2013 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;This is what the internet was made for. Incredible! http://www.youtube.com/watch?v=KaOC9danxNo&lt;/p&gt;
</content:encoded></item><item><title>i Made That!</title><link>https://andrewhudson.dev/blog/i-made-that/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/i-made-that/</guid><pubDate>Thu, 25 Apr 2013 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;I&apos;ve been at Electric Studio for almost three months and in this time I&apos;ve made a number of different sites, of which I am proud to share two (the ones that have gone live):&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://www.faradion.co.uk/&quot;&gt;Faradion&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.satyayoga.co.uk&quot;&gt;Satya Yoga&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</content:encoded></item><item><title>Reading Half-Marathon Failiure</title><link>https://andrewhudson.dev/blog/reading-half-marathon-failiure/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/reading-half-marathon-failiure/</guid><description>This year I didn’t run the Reading Half-Marathon. I’d signed up for it on the 30th of August last year and I totally was committed to doing it, right until the beginning of February when I changed jobs.</description><pubDate>Mon, 18 Mar 2013 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;This year I didn&apos;t run the Reading Half-Marathon. I&apos;d signed up for it on the 30th of August last year and I totally was committed to doing it, right until the beginning of February when I changed jobs. While I was at HeathWallace there was an active running club that went out every Wednesday evening after work for 7+ miles and since being at Electric Studio there is none. But this is a &lt;strong&gt;big excuse&lt;/strong&gt; which hides the fact that I have been lazy and not been running for 2 months. In the new job I have magnificent countryside to go running in, and even has shower so I can go running at lunchtime. Starting this lunchtime I will start running again. Just because running for me is a way of getting rid of the stresses of life (work, commuting, Winter) and good way of keeping fit.&lt;/p&gt;
</content:encoded></item><item><title>Time flying by</title><link>https://andrewhudson.dev/blog/electric-studio-first-month/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/electric-studio-first-month/</guid><pubDate>Fri, 01 Mar 2013 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Flying past is the time, with no time to breathe or lookup and take in the scenery or contemplate what has happened or what is happening.&lt;/p&gt;
</content:encoded></item><item><title>Responsive conference</title><link>https://andrewhudson.dev/blog/responsive-conference/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/responsive-conference/</guid><pubDate>Fri, 01 Mar 2013 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;I&apos;m in Brighton sipping coffee and eating a patisserie waiting for the start of #responsiveconf which is the first responsive web design conference that I&apos;ve been to. Responsive is the future and I am keen to learn more skills pick up new ideas and listen to what is currently happening in the rwd field.&lt;/p&gt;
</content:encoded></item><item><title>Between Jobs</title><link>https://andrewhudson.dev/blog/between-jobs/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/between-jobs/</guid><pubDate>Tue, 29 Jan 2013 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Last week I finished my first ever web job - creative developer at HeathWallace - and took the train north to New Adventures in Web Design in Nottingham. The conference was incredible, such a vast array of different talks ideas and information that I haven&apos;t even started to finish taking it all in. After returning South on Friday, a weekend in Winchester for a friend&apos;s birthday leads me to here, Tuesday, where I have the week off before I start my new job - front-end WordPress developer at Electric Studio. I have been learning how to use my brand new 15&quot; MacBook Pro Retina - first time I have ever owned (or really used) a Mac and its taking a lot of adjusting to get used to things after spending my entire computer life on a PC. Everything is &lt;strong&gt;different&lt;/strong&gt; and not necessarily in a good way. To write this post, and make a few updates to my site, I have gone back to the PC (with mini extremely low resolution 10 year old monitor). When I start my new job I will be forced to use the Mac every day so will soon get up to speed with everything that I have not learnt so far. Snow has now gone, rain in its place. I think I will now get my coat and shoes on and take a walk into town and get some fresh air.&lt;/p&gt;
</content:encoded></item><item><title>Running 2013 – Week 2</title><link>https://andrewhudson.dev/blog/running-2013-week-2/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/running-2013-week-2/</guid><pubDate>Wed, 23 Jan 2013 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;The second week of running for 2013 was not much better than the first week. Snow, travel and a WordPress meetup in London all were excuses. I did go out once with the work running club. &lt;strong&gt;8.66 miles&lt;/strong&gt; in ~ 1:15.&lt;/p&gt;
</content:encoded></item><item><title>Running 2013 - Week 1</title><link>https://andrewhudson.dev/blog/running-2013-week-1/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/running-2013-week-1/</guid><pubDate>Mon, 14 Jan 2013 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;A summary of the first week of running this year goes like this. After the lack of miles over the Christmas period (I only ran once, on Christmas Day) it made starting running again more difficult. Only two times this week and I will try and increase my number to three the next couple of weeks.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Monday - 4.8miles in 0:38:20 - river route&lt;/li&gt;
&lt;li&gt;Wednesday - 5.3miles in 0:41:42 - Whitley with HW&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Total Mileage - 10.1 miles&lt;/p&gt;
</content:encoded></item><item><title>Allo Darlin - Tallulah </title><link>https://andrewhudson.dev/blog/allo-darlin-tallulah/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/allo-darlin-tallulah/</guid><pubDate>Wed, 09 Jan 2013 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;http://www.youtube.com/watch?v=1KtlzdrKd-8 Been listening to the excellent &lt;a href=&quot;http://www.imprintthisonyourmind.co.uk&quot;&gt;Imprint this on your Mind Podcast&lt;/a&gt; recently and this tune popped out amoung the best tunes of 2012 (&lt;a href=&quot;http://www.imprintthisonyourmind.co.uk/podcast-44-best-of-2012&quot;&gt;podcast #44&lt;/a&gt;) sounding very summery and happy.&lt;/p&gt;
</content:encoded></item><item><title>Joe Banfi - Guts and Bones</title><link>https://andrewhudson.dev/blog/joe-banfi-guts-and-bones/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/joe-banfi-guts-and-bones/</guid><pubDate>Wed, 09 Jan 2013 00:00:00 GMT</pubDate></item><item><title>Happy New Year 2013!</title><link>https://andrewhudson.dev/blog/happy-new-year-2013/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/happy-new-year-2013/</guid><pubDate>Wed, 02 Jan 2013 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;I want to wish you a very happy new year. Twenty Twelve was an incredible year for me and I hope this continue into 2013. I&apos;ll outline my goals for Twenty Thirteen:&lt;/p&gt;
&lt;h2&gt;Goals for 2013&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Improve typing : take online course + practice&lt;/li&gt;
&lt;li&gt;Eat more fruit and veg&lt;/li&gt;
&lt;li&gt;Write one blog post a week (minimum)&lt;/li&gt;
&lt;li&gt;Learn more about JavaScript, jQuery and Backbone&lt;/li&gt;
&lt;li&gt;Read more, especially on iPad&lt;/li&gt;
&lt;li&gt;Listen more, especially podcasts and 6Music, KCRW&lt;/li&gt;
&lt;li&gt;Go running 3 times a week&lt;/li&gt;
&lt;/ol&gt;
</content:encoded></item><item><title>New Job</title><link>https://andrewhudson.dev/blog/new-job/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/new-job/</guid><pubDate>Wed, 02 Jan 2013 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;At the end of December I accepted an offer to become a front-end WordPress developer with &lt;a href=&quot;http://www.electricstudio.co.uk/&quot;&gt;Electric Studio&lt;/a&gt; a WordPress studio in Abingdon, Oxfordshire and I am really looking forward to it. The new position will focus on building responsive, highly optimised and mobile-first sites powered by WordPress. It will be my chance to learn a great deal - JavaScript, PHP, mobile and RWD - and a chance to be a professional (rather than working for friends - for free) WordPress developer, something that I have been looking for for a very long time!&lt;/p&gt;
</content:encoded></item><item><title>Summary of 2012</title><link>https://andrewhudson.dev/blog/summary-of-2012/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/summary-of-2012/</guid><pubDate>Mon, 31 Dec 2012 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Here are the highlights of 2012:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Married (two ceremonies, two parties, two countries)&lt;/li&gt;
&lt;li&gt;Honeymoon in Peru&lt;/li&gt;
&lt;li&gt;Two kittens - Inti and Punku&lt;/li&gt;
&lt;li&gt;London Olympics - Kayak Slalom and Road Race&lt;/li&gt;
&lt;li&gt;Getting New Job&lt;/li&gt;
&lt;li&gt;New website&lt;/li&gt;
&lt;li&gt;Lots of cycling and running&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;At the end of this year - twenty twelve - while listening to Joël&apos;s band and trying out iA Writer I look back on what has been a very busy year. Most of the first half of the year was taken up with preparation for our marriage in France (9th June). The latter half was no less busy - Olympics, Kittens, a new website, and a new job. Since being here in France for Christmas I have finally started using the iPad for more than just internet, TV, Twitter, and game playing. I am using it for reading the eBooks that have been waiting patiently in my Dropbox. I think that getting my new job has focused me. I have to learn, to get better. The new job will be a lot more mobile orientated and the first two books that I have read are “Mobile First” and “The Mobile Book” (only on Chapter Two of this interesting book, and it&apos;s excellent so far). I&apos;ve also started reading “Designing for Emotion” and started using the Readability app to remove the excesses of design and allow me to focus on what is most important: reading!&lt;/p&gt;
</content:encoded></item><item><title>Jessica Hische: Lettering for a Living</title><link>https://andrewhudson.dev/blog/jessica-hische-lettering-for-a-living/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/jessica-hische-lettering-for-a-living/</guid><pubDate>Sun, 16 Dec 2012 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;http://vimeo.com/47428975 This morning I had the pleasure of watching this excellent talk from Interlink Conference by Jessica Hische, who has been one of my heroes for a while. I never knew she was so funny and she gave such an excellent presentation about her career and the projects that she has been involved in. I&apos;m really looking forward to seeing her talk at &lt;a href=&quot;http://2013.newadventuresconf.com/&quot;&gt;New Adventures in Web Design 2013&lt;/a&gt; in Nottingham in January.&lt;/p&gt;
</content:encoded></item><item><title>Sunday Morning Sweatshop Run</title><link>https://andrewhudson.dev/blog/sunday-morning-sweatshop-run/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/sunday-morning-sweatshop-run/</guid><pubDate>Sun, 16 Dec 2012 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;This morning was the first of Sweatshop&apos;s training runs for the 2013 Reading Half-Marathon. For some unknown reason I decided to go fast from the start so for most of the first lap (of two) I was first. Then two people overtook me as my energy and speed waned. The sessions are held every 2 weeks* leading up to the Reading Half-Marathon and increase in mileage by one mile every time. Stats: 6miles in 45:31. *Here&apos;s the full list of runs leading up to the Half-Marathon: » 16 December - 5 miles » 30 December - 6 miles » 13 January - 7 miles » 27 January - 8 miles » 10 February - 9 miles » 24 February - 10 miles » 3 March - 11 miles » 17 March - RACE DAY - 13.1 miles&lt;/p&gt;
</content:encoded></item><item><title>Yorkshire Tour de France 2014 Grand Depart</title><link>https://andrewhudson.dev/blog/yorkshire-tour-de-france-2014-grand-depart/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/yorkshire-tour-de-france-2014-grand-depart/</guid><pubDate>Fri, 14 Dec 2012 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;This is incredible news: Yorkshire has been &lt;a href=&quot;http://www.bbc.co.uk/sport/0/cycling/20724621&quot;&gt;awarded the Grand Depart for the 2014 Tour de France&lt;/a&gt;. Two stages in Yorkshire and the third will potentially finish in London.&lt;/p&gt;
</content:encoded></item><item><title>Post-illness Whitley HW Run</title><link>https://andrewhudson.dev/blog/post-illness-whitley-hw-run/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/post-illness-whitley-hw-run/</guid><pubDate>Wed, 12 Dec 2012 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Last night I went for a run with the HW club the same route as last week. It was cold, much more so than last week, and icy in places. I was recovering from illness but still managed to go. Lungs bursting and heart pumping I ran with Jason (Marathon Man), cutting back every so often to catch back with the others. 6.3 miles in 54:09.&lt;/p&gt;
</content:encoded></item><item><title>Friday River</title><link>https://andrewhudson.dev/blog/friday-river/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/friday-river/</guid><pubDate>Fri, 07 Dec 2012 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Ran tonight with Marion along the river. 4.0 miles in 37:32. Took my weekly total to 20.3 miles which I think must be a &lt;em&gt;lifetime record&lt;/em&gt; for me!&lt;/p&gt;
</content:encoded></item><item><title>Turbo Thursday</title><link>https://andrewhudson.dev/blog/turbo-thursday/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/turbo-thursday/</guid><pubDate>Fri, 07 Dec 2012 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;I did 31 minutes on the turbo trainer tonight, first time I&apos;ve done any form of cycling as exercise since August. It took absolutely ages to start because all of the kit was scattered round the house, the tires needed pumping up and I needed to remember how to cycle again. Was good though!&lt;/p&gt;
</content:encoded></item><item><title>Whitley with HW Group</title><link>https://andrewhudson.dev/blog/whitley-with-hw-group/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/whitley-with-hw-group/</guid><pubDate>Thu, 06 Dec 2012 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Last night I went running with the work running group and we did Whitley. Was pretty cold but good to do a route that didn&apos;t involve Caversham, Prospect Park or the river. 5.9 miles in 55:56.&lt;/p&gt;
</content:encoded></item><item><title>Monday Long Run</title><link>https://andrewhudson.dev/blog/monday-long-run/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/monday-long-run/</guid><pubDate>Tue, 04 Dec 2012 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Last night I went for my longest run since Feb with 10.4 miles through Caversham, Emmer Green and along the flooded river.&lt;/p&gt;
</content:encoded></item><item><title>Happy St.Andrew&apos;s Day!</title><link>https://andrewhudson.dev/blog/happy-st-andrews-day/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/happy-st-andrews-day/</guid><pubDate>Fri, 30 Nov 2012 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Today is St Andrew&apos;s Day and as my name is Andrew I&apos;m wishing all other Andrews a happy St Andrews!&lt;/p&gt;
</content:encoded></item><item><title>Two Girl Kittens</title><link>https://andrewhudson.dev/blog/two-girl-kittens/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/two-girl-kittens/</guid><pubDate>Wed, 28 Nov 2012 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;This afternoon Marion took the cats to the vet and what we thought once as two boy kittens are now &quot;girls&quot;. So Inti and Punku are girls!&lt;/p&gt;
</content:encoded></item><item><title>Running - Five weeks</title><link>https://andrewhudson.dev/blog/running-five-weeks/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/running-five-weeks/</guid><pubDate>Tue, 27 Nov 2012 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Last five weeks have been really good as I have been running on average least twice a week every week since October 28th when I woke up early to go running along the river. I have been helped by going running with a friend and also the work running club. It helps with the motivation if you have other people to go running with - at least in the tricky first month.&lt;/p&gt;
&lt;p&gt;What differences have I noticed? Well the first couple of weeks I had bad shin spint in my right shin and this slowed me down. I&apos;ve not lost weight but I have lost a bit of fat on my tummy. I&apos;m more confident to go longer distances than I ever was before, I used to cringe at the thought of running 5 miles but I have done that on five of the running sessions, the furthest was 7.6 miles with the work club.&lt;/p&gt;
&lt;p&gt;I think I prefer running long distances and seeing how far I can run. Obviously re-starting running is initially to train for the Reading Half-Marathon next March (now 110 days away) but sometime I&apos;d like to see if I could run further...possibly one day even a marathon.&lt;/p&gt;
</content:encoded></item><item><title>Jason Santa Maria : Saying No</title><link>https://andrewhudson.dev/blog/jason-santa-maria-saying-no/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/jason-santa-maria-saying-no/</guid><pubDate>Mon, 19 Nov 2012 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;http://vimeo.com/53155584&lt;/p&gt;
</content:encoded></item><item><title>HW Running Club</title><link>https://andrewhudson.dev/blog/hw-running-club/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/hw-running-club/</guid><pubDate>Thu, 15 Nov 2012 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Last night was my first time with the work running club and we did 7.6 miles around Caversham and West Reading in 1:10:41 with some hills and lots of pavements.&lt;/p&gt;
</content:encoded></item><item><title>Cold Feet</title><link>https://andrewhudson.dev/blog/cold-feet/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/cold-feet/</guid><pubDate>Mon, 05 Nov 2012 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Winter seems to have arrived early bringing cold air inside and out. Currently I&apos;m freezing my arse off at the office at work and after work I&apos;m going to go running with my friend Ale.&lt;/p&gt;
</content:encoded></item><item><title>Moving to AWS</title><link>https://andrewhudson.dev/blog/moving-to-aws/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/moving-to-aws/</guid><pubDate>Mon, 05 Nov 2012 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Following up from my decision to &lt;a href=&quot;http://big-andy.co.uk/blog/changing-web-hosts/&quot;&gt;change web host&lt;/a&gt; I have decided to go with AWS. Now I&apos;ve migrated this site to a Amazon Web Services (AWS) EC2 Micro instance (free for 1 year) and after getting used to the different way of doing things (control is all command line, no web interface at all) I&apos;m extremely happy with the outcome.&lt;/p&gt;
&lt;p&gt;The server is in the cloud (in Ireland - they have lots of clouds in Ireland as it rains a lot) and on a non-shared host it&apos;s much much faster (for me in England) and I am getting to learn more about Apache and MySQL and command line.&lt;/p&gt;
&lt;p&gt;There are a few things that I need to figure out : setting permissions while doing a Capistrano deploy, setting up email (for the Contact Form).&lt;/p&gt;
&lt;p&gt;I&apos;m still migrating sites over from one host to the other so the Photos are currently not accessible.&lt;/p&gt;
</content:encoded></item><item><title>Changing Web Hosts</title><link>https://andrewhudson.dev/blog/changing-web-hosts/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/changing-web-hosts/</guid><pubDate>Wed, 31 Oct 2012 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;For the last six years my sites have been hosted by Dreamhost and for the vast majority of that time I have been a happy customer. Unlimited email addresses, sites, sub-domains, and databases. Easy to use web interface, and excellent customer support. So why am I looking to move away?&lt;/p&gt;
&lt;p&gt;Reliability and speed. Over the last number of months my sites have been un-available due to spikes in traffic to other users on the same shared box as me. Secondly, the fact that the servers are based on the west coast of the USA meaning users in UK get a slower site.&lt;/p&gt;
&lt;p&gt;What are my options? I&apos;m currently testing out the free tier of AWS, and also looking at other paid services including Rackspace and Media Temple which both will be at least double the cost that I am paying with Dreamhost.&lt;/p&gt;
&lt;p&gt;My main criteria are speed and uptime. Will post more thoughts when I have made my decision.&lt;/p&gt;
</content:encoded></item><item><title>Running with Ale</title><link>https://andrewhudson.dev/blog/running-with-ale/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/running-with-ale/</guid><description>Last night I went running with Ale around Prospect Park. 4.5 miles in 45:58.</description><pubDate>Wed, 31 Oct 2012 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Last night I went running with my friend Alejandro - aka Ale - around Prospect Park. Not run with him before but was good to do, not fast but somehow I managed to injure my right shin. Second run of the week. Hopefully this&apos;ll be better before I next go running. 137 days until Reading Half-marathon. Must keep the training going. If I make three times this week I will be super-happy. Need to get some proper running shorts and gloves. Now that winter is here. Dark dark dark as we went across the park but nice to be running on grass better than pavement.&lt;/p&gt;
</content:encoded></item><item><title>JavaScript : the Good Parts</title><link>https://andrewhudson.dev/blog/javascript-the-good-parts/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/javascript-the-good-parts/</guid><pubDate>Tue, 30 Oct 2012 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;It seems to me that the future of front-end development is with JavaScript and that now is a good time to become much better at writing and using it. So to aid my knowledge I&apos;ve just started to read the book &lt;a href=&quot;http://www.amazon.com/JavaScript-Good-Parts-Douglas-Crockford/dp/0596517742&quot;&gt;JavaScript: The Good Parts&lt;/a&gt; by Douglas Crockford. I am also starting to learn about the &lt;a href=&quot;http://http://backbonejs.org/&quot;&gt;Backbone.js library&lt;/a&gt;. I spoke to a colleague today in the JS team here at work and he said the best way to learn about it is to make something with it so hopefully soon I&apos;ll have something to show!&lt;/p&gt;
</content:encoded></item><item><title>140 days - Reading Half Marathon</title><link>https://andrewhudson.dev/blog/140-days-reading-half-marathon/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/140-days-reading-half-marathon/</guid><pubDate>Mon, 29 Oct 2012 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Today marks the end of British Summer Time (BST) and start of Reading Half-marathon training. Today also marks 140 days until the race and its the first time I&apos;ve run in over a month. Just a small run to get me back into it and I plan to go running on Tuesday to continue my training process. Start small aim big! Looking forward to Tuesday!&lt;/p&gt;
</content:encoded></item><item><title>Music - a year in retrospective</title><link>https://andrewhudson.dev/blog/music-a-year-in-retrospective/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/music-a-year-in-retrospective/</guid><pubDate>Sat, 27 Oct 2012 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;I&apos;ve been a member of the Rough Trade Album Club for the last year and not really listened to all the CDs so this afternoon while trying out my new desk chair and tidying the office I&apos;m listening to &lt;strong&gt;all&lt;/strong&gt; of them!&lt;/p&gt;
</content:encoded></item><item><title>Birthday #32</title><link>https://andrewhudson.dev/blog/birthday-32/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/birthday-32/</guid><pubDate>Wed, 24 Oct 2012 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Today is my 32nd birthday and I am at work bug fixing. Marion made me an excellent (chocolate!) birthday cake and tonight a surprise is planned.&lt;/p&gt;
</content:encoded></item><item><title>The 2013 Tour de France</title><link>https://andrewhudson.dev/blog/the-2013-tour-de-france/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/the-2013-tour-de-france/</guid><description>The route of the 100th edition of the Tour de France has just been released and Marion, Rob, Rich, Nick &amp; I are planning to see some action.</description><pubDate>Wed, 24 Oct 2012 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Every year since the first time that I went to see the Tour de France go up Alpe d&apos;Huez in 2003 - I&apos;ve wanted to go back to France and see some more live action. I managed to see it when in 2007 it came to London but not been over to see it in France. Until now. My wife Marion, my bro Rob, and my cousins&apos; boyfriends Rich and Nick are all planning to go and see some stages of next years - the 100th edition - race. For &lt;a href=&quot;http://inrng.com/2012/10/2013-tour-de-france/&quot;&gt;full stage details check this inrng post&lt;/a&gt;&lt;/p&gt;
</content:encoded></item><item><title>Chris Coyier - Big Web Show</title><link>https://andrewhudson.dev/blog/chris-coyier-big-web-show/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/chris-coyier-big-web-show/</guid><pubDate>Sun, 21 Oct 2012 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Right now listening to the &lt;a href=&quot;http://5by5.tv/bigwebshow/74&quot;&gt;latest Big Web Show&lt;/a&gt; with &lt;a href=&quot;http://css-tricks.com/&quot;&gt;Chris Coyier&lt;/a&gt; being interviewed by &lt;a href=&quot;http://www.zeldman.com/&quot;&gt;Jeffrey Zeldman&lt;/a&gt;&lt;/p&gt;
</content:encoded></item><item><title>Beta Guardian Site</title><link>https://andrewhudson.dev/blog/beta-guardian-co-uk/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/beta-guardian-co-uk/</guid><pubDate>Fri, 19 Oct 2012 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Yesterday I read that the Guardian website is &lt;a href=&quot;http://www.guardian.co.uk/help/developer-blog/2012/oct/18/responsive-design-guardian-introduction&quot;&gt;currently being re-developed&lt;/a&gt; and is &lt;a href=&quot;http://beta.guardian.co.uk&quot;&gt;currently in Beta&lt;/a&gt;. The site is going to be responsive, mobile first, using &lt;a href=&quot;http://smacss.com/&quot;&gt;SMACSS&lt;/a&gt; (a OOCSS methodology which I am currently reading up on) and &lt;a href=&quot;http://requirejs.org/&quot;&gt;requirejs&lt;/a&gt;. It is incredibly fast and from my point of view it looks beautiful.&lt;/p&gt;
</content:encoded></item><item><title>Sass 3.2: Silent Classes</title><link>https://andrewhudson.dev/blog/sass-3-2/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/sass-3-2/</guid><pubDate>Tue, 16 Oct 2012 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;I&apos;m a huge fan of Sass and this slidedeck shows how to use the newly updated @extend functionality in Sass 3.2 to help write better CSS. https://speakerdeck.com/anotheruiguy/sass-32-silent-classes &lt;a href=&quot;https://speakerdeck.com/u/anotheruiguy/p/sass-32-silent-classes&quot;&gt;Speakerdeck : sass 3.2 silent classes&lt;/a&gt;&lt;/p&gt;
</content:encoded></item><item><title>Gathering Festival this weekend</title><link>https://andrewhudson.dev/blog/gathering-festival-this-weekend/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/gathering-festival-this-weekend/</guid><pubDate>Mon, 15 Oct 2012 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Looking forward to going to Gathering festival this Saturday in Oxford. Features bands including George Ezra, Swiss Lips and Paws. &lt;a href=&quot;http://gatheringfestival.tumblr.com/&quot;&gt;Gathering Festival - October 20th - various venues in Oxford&lt;/a&gt;&lt;/p&gt;
</content:encoded></item><item><title>Inti and Punku - first photos</title><link>https://andrewhudson.dev/blog/inti-and-punku/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/inti-and-punku/</guid><pubDate>Fri, 12 Oct 2012 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Inti is the one with white patch under its chin (first two photos). Punku is the one with fluffy hair (latter two photos). [gallery ids=&quot;1329,1327,1326,1328&quot;] This week we finally collected our two kittens from Marion&apos;s colleague Simon. We&apos;d looked after their &lt;a href=&quot;http://big-andy.co.uk/blog/benny/&quot;&gt;elder brother Benny&lt;/a&gt; for a few days but now was the time it got real and we got our own kittens! We collected them on Weds evening and it took them a while to get used to their new house and us - Punku still needs some litter training (he doesn&apos;t like walking in the litter tray!) But they are getting crazier and crazier as each day passes. Fighting each other and playing with the home-made string toys and leaping all over the place and exploring everywhere. Taking photos of them is difficult because they move so fast and are so black. I&apos;ll continue to take lots of photos and put them up here.&lt;/p&gt;
</content:encoded></item><item><title>XKCD</title><link>https://andrewhudson.dev/blog/xkcd/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/xkcd/</guid><pubDate>Fri, 05 Oct 2012 00:00:00 GMT</pubDate></item><item><title>George Ezra - It&apos;s Just My Skin</title><link>https://andrewhudson.dev/blog/george-ezra-its-just-my-skin/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/george-ezra-its-just-my-skin/</guid><pubDate>Sat, 29 Sep 2012 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;http://soundcloud.com/george-ezra/george-ezra-its-just-my-skin&lt;/p&gt;
</content:encoded></item><item><title>Going on Holiday to France</title><link>https://andrewhudson.dev/blog/going-on-holiday-to-france/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/going-on-holiday-to-france/</guid><pubDate>Fri, 14 Sep 2012 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Tomorrow morning we&apos;ll catch the train to Gatwick Airport then fly to Marseille for a week in Provence. Really can&apos;t wait!&lt;/p&gt;
</content:encoded></item><item><title>Don&apos;t Hack the Core</title><link>https://andrewhudson.dev/blog/dont-hack-the-core/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/dont-hack-the-core/</guid><pubDate>Tue, 11 Sep 2012 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;As often as you are tempted it&apos;s a very bad idea to hack the WordPress core. Each time an update is made, your changes are over-written. A very bad practice!&lt;/p&gt;
</content:encoded></item><item><title>James Burke - Admiral Shovel and the Toilet Roll</title><link>https://andrewhudson.dev/blog/audio/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/audio/</guid><pubDate>Mon, 10 Sep 2012 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Your Browser does not support the HTML5 Audio element.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://archive.dconstruct.org/2012/admiralshovel&quot;&gt;Link from dConstruct 2012 archive&lt;/a&gt; &lt;a href=&quot;http://media.io/&quot;&gt;Useful online mp3 -&amp;gt; ogg convertor&lt;/a&gt;&lt;/p&gt;
</content:encoded></item><item><title>Kittens</title><link>https://andrewhudson.dev/blog/kittens/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/kittens/</guid><pubDate>Mon, 10 Sep 2012 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Kittens now are ~4 weeks old still being nursed by their mum.&lt;/p&gt;
</content:encoded></item><item><title>Benny</title><link>https://andrewhudson.dev/blog/benny/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/benny/</guid><pubDate>Sun, 09 Sep 2012 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;[gallery]&lt;/p&gt;
</content:encoded></item><item><title>Putting Photos online with WordPress</title><link>https://andrewhudson.dev/blog/putting-photos-online-with-wordpress/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/putting-photos-online-with-wordpress/</guid><pubDate>Sun, 09 Sep 2012 00:00:00 GMT</pubDate><content:encoded>&lt;ol&gt;
&lt;li&gt;Take photos off of camera&lt;/li&gt;
&lt;li&gt;Choose which ones you want to put online&lt;/li&gt;
&lt;li&gt;Optimise with program such as &lt;a href=&quot;http://www.xnconvert.com/&quot;&gt;XnConvert&lt;/a&gt;
&lt;ul&gt;
&lt;li&gt;I personally like to change the size to a max width of 1000px,&lt;/li&gt;
&lt;li&gt;reduce the jpg quality to 70%,&lt;/li&gt;
&lt;li&gt;and have them load progressively.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Upload&lt;/li&gt;
&lt;li&gt;Attach to Post&lt;/li&gt;
&lt;li&gt;Link with [gallery link=&quot;file&quot;] shortcode&lt;/li&gt;
&lt;/ol&gt;
</content:encoded></item><item><title>Big CSS</title><link>https://andrewhudson.dev/blog/big-css/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/big-css/</guid><pubDate>Fri, 07 Sep 2012 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;a href=&quot;https://speakerdeck.com/u/csswizardry/p/big-css&quot;&gt;Presentation&lt;/a&gt; by Harry Roberts (@csswizardry) at canvas conf&lt;/p&gt;
</content:encoded></item><item><title>Cats</title><link>https://andrewhudson.dev/blog/cats/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/cats/</guid><pubDate>Fri, 07 Sep 2012 00:00:00 GMT</pubDate></item><item><title>Post London 2012 Blues</title><link>https://andrewhudson.dev/blog/post-london-2012-blues/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/post-london-2012-blues/</guid><pubDate>Mon, 13 Aug 2012 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;17 days of excellent sport and fantastic atmosphere have rocked this country following the London 2012 Olympic Games. Now, sadly, they have finished and life is somewhat flat as a result of this. No ferocious patriotism, no fantastic atmosphere and more importantly no sport to follow. How will summer ever be the same after this?&lt;/p&gt;
</content:encoded></item><item><title>Honey Moon</title><link>https://andrewhudson.dev/blog/honey-moon/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/honey-moon/</guid><pubDate>Wed, 07 Mar 2012 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Last night we booked our flights to Peru where Marion and I are going on Honeymoon! I am really excited and looking forward to going to the Andes and seeing Machu Picchu. We fly out 2 days after getting married.&lt;/p&gt;
</content:encoded></item><item><title>1Q84</title><link>https://andrewhudson.dev/blog/1q84/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/1q84/</guid><pubDate>Sun, 13 Nov 2011 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Haruki Murakami is my favorite author and I am on the final chapter of the first book of his triple-book epic &quot;1Q84&quot; that I received for my birthday from Marion&apos;s parents. I will say its really good but definitely not as weird as the other books; and no cats.&lt;/p&gt;
</content:encoded></item><item><title>Web Dev Conf</title><link>https://andrewhudson.dev/blog/web-dev-conf/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/web-dev-conf/</guid><pubDate>Thu, 20 Oct 2011 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;I&apos;m really looking forward to tonight because tonight I am going to Bristol for my first ever “&lt;a href=&quot;http://webdevconf.com/&quot;&gt;Web Developers Conference&lt;/a&gt;”.&lt;/p&gt;
</content:encoded></item><item><title>Radiohead Remixes Stream</title><link>https://andrewhudson.dev/blog/radiohead-remixes-strea/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/radiohead-remixes-strea/</guid><pubDate>Thu, 06 Oct 2011 00:00:00 GMT</pubDate></item><item><title>Tropical Music</title><link>https://andrewhudson.dev/blog/tropical-music/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/tropical-music/</guid><pubDate>Mon, 03 Oct 2011 00:00:00 GMT</pubDate></item><item><title>Turbo Training</title><link>https://andrewhudson.dev/blog/turbo-training/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/turbo-training/</guid><pubDate>Mon, 03 Oct 2011 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Darkness arrives way to early at this time of the year, too early for cycling after work and departs too late to go in the morning before work. Thus I had the choice of hanging up my road bike and doing no exercise during the week or to continue the good work that I had done on the bike since starting road cycling in July. Of course I could have switched to running after work â€” and indeed I might do that as well â€” but I am obsessed about cycling and wanted to see what the Turbo Trainer had to offer! I have so far done four different sessions since starting last Tuesday, going every other day for 30mins+. The first session was the hardest because I didn&apos;t know what I was letting myself in for, and I was training in front of one of &lt;a href=&quot;http://www.thesufferfest.com/&quot;&gt;The Sufferfest&lt;/a&gt; videos - supposed to be the hardest cycling workout videos on the market. Each week I will increase the duration by five minutes and see where that gets me, and each week I will train once to a sufferfest video to keep me extra motivated. Having no access to training books I am experimenting with what works best but always include a good warmup, and alternations between hard and medium with some recovery in between. I use my Garmin 405 to track my heartrate and plan to get a cadence attachment so I can measure how fast I am peddling (I&apos;ve read that a cadence of 90-110 rpm is optimum). Hopefully there will be some weekends where I can go out riding where I will see how much effect this training is having, plus it will be great to taste the fresh country air again.&lt;/p&gt;
</content:encoded></item><item><title>Fourtet Remix of Radiohead</title><link>https://andrewhudson.dev/blog/fourtet-remix-of-radiohead/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/fourtet-remix-of-radiohead/</guid><pubDate>Sat, 17 Sep 2011 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;a href=&quot;http://soundcloud.com/radiohead/03-separator-four-tet-rmx&quot;&gt;Separator - Four Tet RMX&lt;/a&gt; by &lt;a href=&quot;http://soundcloud.com/radiohead&quot;&gt;Radiohead&lt;/a&gt; via &lt;a href=&quot;http://www.fourtet.net/&quot;&gt;Fourtet.net&lt;/a&gt;&lt;/p&gt;
</content:encoded></item><item><title>Sixty miles!</title><link>https://andrewhudson.dev/blog/sixty-miles/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/sixty-miles/</guid><pubDate>Mon, 01 Aug 2011 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;It&apos;s been a bloody long time since I rode that far on a bike and the final 10 miles were those of a suffering knackered empty excuse for a cyclist who is paying for his lack of fitness and over eager speed-demon start. On Sunday one week after buying my Bianchi road bike I did the medium Evans sportive ride. I started five minutes after Marion (she did the short route) from Whitchurch Hill and the pace was very fast with lots of people racing from the off, spurring me to go fast and overtake them. Lots of people were in groups but I was solo. I stopped at ~40 miles for a snack bar and again at 45 but this was not enough and I really struggled in the final 5-10 miles. Yes I completed the route in 3h35m with average speed of 16.5mph and max of 38mph. Looking forward to doing more rides, joining a cycling club and getting faster!&lt;/p&gt;
</content:encoded></item><item><title>Olympics a Year away</title><link>https://andrewhudson.dev/blog/olympics-a-year-away/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/olympics-a-year-away/</guid><pubDate>Wed, 27 Jul 2011 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Today marks start ofÂ  one-year count-down to the 2012 London Olympics. Already there is much in the press and warm-up events that are here to help prepare for next summer. One event that I am really interested in is the Olympic Cycling &lt;a href=&quot;http://www.cyclingweekly.co.uk/news/latest/529520/stars-line-up-for-olympic-road-race-test-event.html&quot;&gt;Road Race warm-up&lt;/a&gt; to be held on the 14th of August. The event includes many riders from this years Tour de France, including sprinters Mark Cavendish and Tom Boonen.&lt;/p&gt;
</content:encoded></item><item><title>Bad Mood Monday</title><link>https://andrewhudson.dev/blog/bad-mood-monday/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/bad-mood-monday/</guid><pubDate>Mon, 25 Jul 2011 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;This incredibly accurate image shows what I am feeling like this Monday morning. Tired achy, grumpy. (cheers to &lt;a href=&quot;http://rob-hudson.com&quot;&gt;my Bro&lt;/a&gt; for the link) In other news I bought a new road bike, a &lt;a href=&quot;http://www.bianchi.com/Uk/Bikes/Bikes_Detail.aspx?ProductIDMaster=51346&quot;&gt;Bianchi Via Nirone 7 Sora, 2011&lt;/a&gt;, and went cycling with Marion in the countryside to the North of Reading. Now I ache a lot due to my lack of fitness and the uncomfortableness of a road bike compared to the mountain bike I usually ride. I spent the rest of the weekend watching the final two stages of this years Tour de France.&lt;/p&gt;
</content:encoded></item><item><title>The Rules</title><link>https://andrewhudson.dev/blog/the-rules/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/the-rules/</guid><pubDate>Mon, 25 Jul 2011 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;a href=&quot;http://www.velominati.com/blog/the-rules/&quot;&gt;The Rules of Road Cycling&lt;/a&gt; (again cheers bro for the link!)&lt;/p&gt;
</content:encoded></item><item><title>Back from Italy</title><link>https://andrewhudson.dev/blog/back-from-italy/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/back-from-italy/</guid><pubDate>Thu, 21 Jul 2011 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Back from a week in Tuscany. A wedding, the furnace of mid-summer Florence and mosquitos. All this mixed with plenty of deliciously sun-soaked (often red-flagged) beaches, plenty of bottles of Chianti and oodles of pizza. A great holiday!&lt;/p&gt;
</content:encoded></item><item><title>Blogging via iPad2</title><link>https://andrewhudson.dev/blog/blogging-via-ipad2/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/blogging-via-ipad2/</guid><pubDate>Fri, 24 Jun 2011 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Ever since buying my iPad2 in March I have always wanted to write a blog post and send it live from the magical device, I even bought a wireless keyboard to make the process easier. I believe that there is something quite fantastical about being able to write in the peace and quiet of wherever you want (in my case the lounge with the calming clock tick-tock and the blue sky and sunshine out of the window) having no constraint to be in front of the computer screen. With the WordPress app I am able to do all this and send it &quot;live&quot; where it goes straight to this site, or &quot;pending review&quot; where I can edit it on the Wordpress admin area, or if I want to add further links and photos to the post, before publishing to live at a later date.&lt;/p&gt;
</content:encoded></item><item><title>Blogging via Google Docs</title><link>https://andrewhudson.dev/blog/blogging-via-google-docs/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/blogging-via-google-docs/</guid><pubDate>Wed, 22 Jun 2011 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Earlier this week I stumbled upon a video explaining &lt;a href=&quot;http://www.mediabistro.com/10000words/how-to-run-a-news-site-and-newspaper-using-wordpress-and-google-docs_b4781&quot;&gt;how to run a news site and newspaper using Wordpress and Google Docs&lt;/a&gt; and I thought that I would take their advice and try it out. So this post is written in Google Docs and will be transferred, once I have finished writing it, using a plugin called &lt;a href=&quot;http://wordpress.org/extend/plugins/docs-to-wordpress/installation/&quot;&gt;Docs to WordPress&lt;/a&gt; and the WordPress xml-rpc. In google docs set up two unique folders (or collections) called, for example, â€œTo Publishâ€ and â€œPublishedâ€. Grab the unique the last characters from each of the folderâ€™s URL, along with your username and password as &lt;a href=&quot;http://dev.bangordailynews.com/2011/06/20/quick-update-to-the-docs-to-wordpress-plugin/&quot;&gt;outlined in this article&lt;/a&gt; and put them into the wp-config.php file in the root of your site. I think that this is great when you want to have time to compose a post without the distraction of the rest of your blog, or the internet, with the ability to work collaboratively with others working on the same document as you. For example the writer and the editor can work together on the document and when finished tag the document â€œto publishâ€ and then it gets sent to wordpress to be published. You cannot publish directly because you need to go into the wordpress build and click publish which I think is good because it stops you if you Â send something accidentally.&lt;/p&gt;
</content:encoded></item><item><title>Mid-summer</title><link>https://andrewhudson.dev/blog/mid-summer/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/mid-summer/</guid><pubDate>Tue, 21 Jun 2011 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Reading writing and listening. Today is mid-summer and fete de la musique, a time of music and celebration. I am reading listening to Nada Surf, reading &quot;Zen and the Art of Motorcycle Maintenance&quot; and writing this short aside.&lt;/p&gt;
</content:encoded></item><item><title>Speed!!!</title><link>https://andrewhudson.dev/blog/speed/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/speed/</guid><pubDate>Thu, 26 May 2011 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Lately I seem to be totally obsessed with speed and tonight I have made two fantastic advances in my quest for online speed:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;I installed a wireless N network card on my computer which finally grants me access to super-fast speeds of 30 meg broadband. The old wireless usb stick could only handle wireless g and maxed out at 5-10 meg. I disabled the option on the router to broadcast in wireless n and wireless g/b because I was only getting the same as if I had wireless g i.e. slow slow slow.&lt;/li&gt;
&lt;li&gt;I have finished &lt;a href=&quot;http://blog.big-andy.co.uk/wordpress/website-optimisation/&quot;&gt;optimising my blog&lt;/a&gt; (hopefully soon I will turn my whole website into a wordpress driven website) using the W3 Total Cache plugin, and some excellent online tutorials because it&apos;s not very easy to get the plugin working properly. I had big problems with the minification of css and javascript files and this &lt;a href=&quot;https://wordpress.org/support/topic/plugin-w3-total-cache-how-i-got-my-w3tc-working-with-minify-gzip?replies=5&amp;amp;utm_source=feedburner&amp;amp;utm_medium=feed&amp;amp;utm_campaign=Feed%3A+W3TOTALCACHE+%28W3+Total+Cache+by+W3+EDGE%29#post-2121518&quot;&gt;fantastic tutorial&lt;/a&gt;. I am now getting scores (with the Firefox addon PageSpeed) 97-99% ratings.&lt;/li&gt;
&lt;/ol&gt;
&lt;h3&gt;Future&lt;/h3&gt;
&lt;p&gt;Now I have achieved success in the optimisation of my blog, what is next on the list of things that I want to do? First of all I have started to learn how to use Git. If you don&apos;t know what it is then here&apos;s a quick explanation. For a group of developers to work on the same code at the same time, to track what they have done, we need a version control system and git is one of the excellent alternatives out there, as well as Mercurial and SVN (both of which I use at work). I had a basic introduction earlier this month when I was doing the &lt;a href=&quot;http://chirontransformation.com&quot;&gt;Chiron Transformation Website&lt;/a&gt; but beyond that I knew very little how to do more than the most basic of functions, so I want to learn more! Otherwise I want to turn my website &lt;a href=&quot;http://www.big-andy.co.uk&quot;&gt;big-andy.co.uk&lt;/a&gt; fully into a wordpress website, improve this blog and add some more features (e.g. HTML5 to the form), and write more often on this blog about what I am doing. I also want to add a portfolio section where I document which websites I have made and how I did them.&lt;/p&gt;
&lt;h3&gt;Weekend&lt;/h3&gt;
&lt;p&gt;This weekend I am going to Buxton in Derbyshire walking with the entire Pidgeon (my mum&apos;s side of the family) clan. I really can&apos;t wait!&lt;/p&gt;
</content:encoded></item><item><title>Website Optimisation</title><link>https://andrewhudson.dev/blog/website-optimisation/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/website-optimisation/</guid><pubDate>Fri, 20 May 2011 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;I love speed, everything to do to get something done faster is must for me. This week I finally have fiber-optic internet and now I am looking to extend my passion for speed through in relation to THIS website. Why am I going to do this? I hate waiting for a website to load, you hate it too, right? There&apos;s far too much you&apos;d prefer to be doing than waiting for a download to happen or a web page to open. How am I going to do this?&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Compression of files (CSS and javascript),&lt;/li&gt;
&lt;li&gt;use of heavy browser caching (via the .htaccess file),&lt;/li&gt;
&lt;li&gt;use of database caching (this is done by a wordpress plugin called W3 Total Cache)&lt;/li&gt;
&lt;li&gt;use of a Content Delivery Network (CDN)&lt;/li&gt;
&lt;/ol&gt;
&lt;h2&gt;1. Compression&lt;/h2&gt;
&lt;p&gt;The larger the file the longer it takes to download resulting in a much slower page load time compared to when the files are compressed. Personally I use the &lt;a href=&quot;http://wordpress.org/extend/plugins/wp-css/&quot;&gt;WP CSS&lt;/a&gt; plugin although now I have installed the &lt;a href=&quot;http://wordpress.org/extend/plugins/w3-total-cache/&quot;&gt;W3 Total Cache&lt;/a&gt; (W3TC) plugin I might remove it and trust W3TC to do it all. When developing a site normally one might split the styles into a number of different style sheets (e.g. content.css, layout.css, reset.css, fonts.css) but this is a bad move. Each file requires request puts more strain on the internet connection and thus has a big impact on page speed. I combine all my css into one stylesheet (including the print css too) as recommended in the &lt;a href=&quot;http://html5boilerplate.com/&quot;&gt;HTML5 Boilerplate&lt;/a&gt; .&lt;/p&gt;
&lt;h2&gt;2. Caching&lt;/h2&gt;
&lt;p&gt;Browser caching is the process that web browsers use to keep the files associated with a web page (css, javascript, images, and so on) on file so that they don&apos;t need to be downloaded again if the user visits another page in the site, or even comes back after visiting another site. As a website administrator you can change the amount of time that the browser will keep the files, so that the browser keeps files for a long time and don&apos;t need to continually download them. On Apache servers this can be controlled using by changing settings in the .htaccess file in the root folder of your site. There is excellent documentation on best practice on the HTML5 boilerplate website.&lt;/p&gt;
&lt;h2&gt;3. Database Caching&lt;/h2&gt;
&lt;p&gt;Using a database driven website is great if you are writing a blog or another data-heavy website, but when a lot of users start to visit your site the amount of work that the server has to do each time a user visits adds up and will become a bottleneck on high-traffic sites. If, however, you cache the pages using a plugin and store the pages as static files then the server doesn&apos;t need to do anything once a user visits, just display the content (like any non database driven site). I am using w3TC to do this.&lt;/p&gt;
&lt;h2&gt;4. Content Delivery Network&lt;/h2&gt;
&lt;p&gt;The world is a big place and even with today&apos;s fast internet connections the users - if for example your web server is situated in London - from USA are going to have a different page load time compared to those in London. If, however, you have access to a CDN your images, css, javascript (and so on) are hosted on a number of different servers all around the world, so your user in USA will have a much faster page load speed. I am trying out &lt;a href=&quot;http://www.maxcdn.com/&quot;&gt;Max CDN&lt;/a&gt; (after hearing of them and doing an offer through &lt;a href=&quot;http://appsumo.com&quot;&gt;AppSumo&lt;/a&gt;). I&apos;ll let you know how it goes... I have just setup my package so will see how it goes over the next week or so!&lt;/p&gt;
</content:encoded></item><item><title>Wedding and Website</title><link>https://andrewhudson.dev/blog/wedding-and-website/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/wedding-and-website/</guid><pubDate>Fri, 20 May 2011 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Yeah it&apos;s been really hectic lately, life that is! I&apos;ve been working on a wordpress website for a designer called Kat, Marion and I have found a venue for our wedding and a date.&lt;/p&gt;
&lt;h2&gt;Wedding&lt;/h2&gt;
&lt;p&gt;Over Easter we visited Marion&apos;s parents in La Rochelle and went to see six different wedding reception venues to the south of La Rochelle and after much decision making chose Domaine du Seudre - between La Rochelle and Bordeaux - and picked a date too. It feels great to have these two key things sorted out and now we really can set about planning the wedding in earnest!&lt;/p&gt;
&lt;h2&gt;Website&lt;/h2&gt;
&lt;p&gt;This is what I have been upto for the last 3 weeks solidly every evening and weekend day. I am really pleased with the outcome, &lt;a href=&quot;http://chirontransformation.com&quot;&gt;chirontransformation.com&lt;/a&gt;, which went live earlier this week. I found out today that the customer has started putting content in the site and it&apos;s interesting to see what&apos;s happening! I learnt a hell of a lot about how to make a website in wordpress - utilising wordpress&apos; new content-management abilities, custom-fields, custom loops, cross-browser testing. I built it using HTML5 and CSS3 with fallbacks for less capable browsers using the excellent &lt;a href=&quot;http://www.modernizr.com/&quot;&gt;Modernizr&lt;/a&gt; Javascript library.&lt;/p&gt;
</content:encoded></item><item><title>Back to Running!</title><link>https://andrewhudson.dev/blog/back-to-running/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/back-to-running/</guid><pubDate>Mon, 18 Apr 2011 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;A gorgeous evening to go running it&apos;s the first time since winter that I&apos;ve been out and the sun was shining and it was hot. It really feels fantastic to go our running and at the moment I am glowing on the inside. I ran my the river route in 21m08s.&lt;/p&gt;
</content:encoded></item><item><title>Plugin Error Fixed!!!</title><link>https://andrewhudson.dev/blog/plugin-error-fixed/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/plugin-error-fixed/</guid><pubDate>Fri, 01 Apr 2011 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;I have found out what I was doing wrong to cause my wordpress &lt;a href=&quot;http://blog.big-andy.co.uk/wordpress/plugin-error/&quot;&gt;plugin to throw up an error&lt;/a&gt; and it was this: On activation you put a piece of code that says&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;code&gt;register_activation_hook(__FILE__,&apos;install_function&apos;);&lt;/code&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;which basically means when the plugin is activated run the install_function. Problem turned out that I the function but hadn&apos;t named it correctly so the register_activation_hook wasn&apos;t looking for the right thing. I love it when I can work out how to solve things, and in the process learn a bit more about how to write a good plugin. Happy Days!&lt;/p&gt;
</content:encoded></item><item><title>Coffee and Photos</title><link>https://andrewhudson.dev/blog/coffee-and-photos/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/coffee-and-photos/</guid><pubDate>Thu, 31 Mar 2011 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Marion (my fianceÃ©) has posted a couple of new posts with photos from our &lt;a href=&quot;http://www.marionmouttou.co.uk/uncategorized/courchevel/&quot;&gt;skiing holiday in Courchevel&lt;/a&gt; and &lt;a href=&quot;http://www.marionmouttou.co.uk/travel/walking-week-end-in-january/&quot;&gt;walking in the Peak District in January&lt;/a&gt;.&lt;/p&gt;
</content:encoded></item><item><title>Plugin Error</title><link>https://andrewhudson.dev/blog/plugin-error/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/plugin-error/</guid><pubDate>Thu, 31 Mar 2011 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Trying to work on my plugin this evening has been frustrating because I keep on getting an error that says :&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;The plugin generated 303 characters of unexpected output during activation. If you notice â€œheaders already sentâ€ messages, problems with syndication feeds or other issues, try deactivating or removing this plugin.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;And I have been banging my head against a wall trying to fix this issue. Not really a big problem in that the plugin works as intended but if a wordpress user sees this error more than likely they will panic, deactivate and delete the plugin and run for the hills. How to solve it?&lt;/p&gt;
</content:encoded></item><item><title>Plugin Development (part one) [wordpress]</title><link>https://andrewhudson.dev/blog/plugin-development-part-one-wordpress/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/plugin-development-part-one-wordpress/</guid><pubDate>Wed, 30 Mar 2011 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;This is the first time that I have started to make a plugin and here I shall write about the process of making it. To begin with I will explain why you might want to make a plugin, then I will go into the process behind creating one.&lt;/p&gt;
&lt;h3&gt;Why plugin?&lt;/h3&gt;
&lt;p&gt;A plugin is a way to extend the powers of wordpress in a particular direction without having the hastle of going into the back-end and getting your hands dirty.&lt;/p&gt;
&lt;h3&gt;The process&lt;/h3&gt;
&lt;p&gt;To start with you have to have an idea of what you want to do. In my case I have an external application that requires a key that is specific to the owner of the blog. They enter the code in the admin area of the plugin, it stores the code in the site&apos;s database and calls this code when required.&lt;/p&gt;
&lt;h3&gt;Puzzle pieces&lt;/h3&gt;
&lt;p&gt;For the plugin to be able to work you need a few different components (pieces):&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Admin areaâ€”place to enter the &quot;key&quot; (code);&lt;/li&gt;
&lt;li&gt;Way to store write code to database;&lt;/li&gt;
&lt;li&gt;Way to access code from DB;&lt;/li&gt;
&lt;li&gt;Way to write code to required place in wordpress (e.g. in the footer.php or loop.php);&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;In the next post I will outline how I have done this.&lt;/p&gt;
</content:encoded></item><item><title>Southampton Summer Time</title><link>https://andrewhudson.dev/blog/southampton-summer-time/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/southampton-summer-time/</guid><pubDate>Sun, 27 Mar 2011 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;This morning marked the beginning of Summer (time) and signalled a spring forward in time and renewal in the air. Yesterday Marion and I went to Southampton primarily to go to the Apple Store and buy an iPad2, go to Ikea, and enjoy the sunshine. I was utterly destroyed to find out that all the iPad2s had already sold out so I would be returning empty handed and after having a trial of the tablet in the shop it really feels amazing but I&apos;ll have to wait a few weeks before I can get my own. To lift myself out of the gadgetless depression we got some coffee and cake from a cafÃ© and sat in the grass in the park and chilled. We then went to Ikea and bought a few things for the house and dreamed of the time in the future where we will have a home for ourselves (rather than rent a furnished house with someone else&apos;s fashion and decoration). The weather was really hot when we finally stepped outside so we bought lunch from M&amp;amp;S and took it to the park and soaked up the sun. In the afternoon once the sun had disappeared behind clouds and a cold wind had started we went to a pub and watched 5 minutes of England vs. Wales in 3D with no 3D glasses (a recipe for a big headache) and then returned to Reading.&lt;/p&gt;
</content:encoded></item><item><title>Ipad2 Prices</title><link>https://andrewhudson.dev/blog/ipad2-prices/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/ipad2-prices/</guid><pubDate>Tue, 22 Mar 2011 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Looks like the iPad2 is cheaper than the original iPad. 16GB wifi is Â£399 whereas original was Â£429 (source: &lt;a href=&quot;http://www.guardian.co.uk/technology/blog/2011/mar/22/ipad-apple&quot;&gt;Guardian&lt;/a&gt;).&lt;/p&gt;
</content:encoded></item><item><title>Spring in Madrid</title><link>https://andrewhudson.dev/blog/springtime-in-madrid/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/springtime-in-madrid/</guid><pubDate>Tue, 22 Mar 2011 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;As mentioned earlier last week we &lt;a href=&quot;http://blog.big-andy.co.uk/travel/going-to-madrid/&quot;&gt;travelled to Madrid&lt;/a&gt; on Friday to see our friends Cesar and Inma. We were collected by Cesar at the airport and drove to their home where we had delicious home-made tapas and caught up with their news. Saturday morning arrived quickly and after we pulled the blinds up (we in the UK definitely should all get blinds!) we were blinded by the blue sky and strong sunshine that poured into their apartment. After a quick shower we jumped out into the street and headed for a local purras (Madrid&apos;s giant version of churros) and chocolate. Mmm delicious! A power slap in the face getting the blood super-saturated with sugar and fat, and also laying the foundation for the weekend to come we then explored much of Madrid&apos;s center including a futuristic house where everything was controlled by mobile phone or computer. For lunch we had the famous &lt;em&gt;Cocido MadrileÃ±o&lt;/em&gt; which consists of a starter of soup, followed by chickpeas and vegetables, then the most enormous pile of meat (chicken, beef, ham, chorizo, blood sausage) which we were only able to eat 50% of. In the afternoon we went walking once more and found the Parque del Retiro and joined the ten thousand &lt;em&gt;MadrileÃ±os&lt;/em&gt; celebrating the first decent weather of the year and saw mime artists, graffiti artists and punch and Judy shows centralised round the lake and chilled out on the grass for a while relaxing. In the evening we went to see a Jazz Quartet at Clamores Jazz and then hit a few clubs (first Tupaware -ok, too many English- then Penta Bar where they played everything from Spanish to worldwide 80s 90s music - really excellent place!). Sunday we started early again having coffee at Cesar and Inma&apos;s place before heading into town. We saw the Plaza de Toros Las Ventas Museo Taurino (Bull Ring) and markets in town before going to have Tapas. Tapas is what they do in Madrid on Sunday. All afternoon long. We were met by Cesar&apos;s sister and her boyfriend and had lots and lots of tapas. We had to walk this off and again set out into the city and found a delightful park below the cathedral and watched people and took in the last of the weekends sun rays before taking the tube back to Cesar and Inma&apos;s and onto the Airport. A fantastic weekend!&lt;/p&gt;
</content:encoded></item><item><title>ManU Chelsea Quarters</title><link>https://andrewhudson.dev/blog/manu-chelsea-quarters/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/manu-chelsea-quarters/</guid><pubDate>Fri, 18 Mar 2011 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;The draw for the quarter-finals of the Champions League was made earlier this morning and ManU were drawn against Chelsea. Here&apos;s the full draw :&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Real Madrid v &lt;strong&gt;TOTTENHAM&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;CHELSEA&lt;/strong&gt; v &lt;strong&gt;MAN UTD&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;Barcelona v Shakhtar Donetsk&lt;/li&gt;
&lt;li&gt;Inter Milan v Schalke 04&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;(courtesy of the &lt;a href=&quot;http://news.bbc.co.uk/sport1/hi/football/9428748.stm&quot;&gt;BBC sport website&lt;/a&gt; )&lt;/p&gt;
</content:encoded></item><item><title>Going to Madrid</title><link>https://andrewhudson.dev/blog/going-to-madrid/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/going-to-madrid/</guid><pubDate>Thu, 17 Mar 2011 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Tomorrow afternoon we&apos;ll be taking the airplane to Madrid to see our good friends Cesar and Inma in their new home for the first time since they moved there last year. I can&apos;t wait to go back to Madrid after briefly stopping there in 2005 on my epic round Europe train trip. I slept in Madrid station on the street because I arrived at midnight and there was no accomodation in the city or any way of getting there. After my night on the tarmac I found that I&apos;d been bitten 30 times on my back, tummy and legs by insects and spent the next week itching and in agony, but that&apos;s another story. So you can imagine that I am looking forward to a return trip to see what actually Madrid has to offer!&lt;/p&gt;
</content:encoded></item><item><title>IE9 is here</title><link>https://andrewhudson.dev/blog/ie9-is-here/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/ie9-is-here/</guid><pubDate>Tue, 15 Mar 2011 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;The latest version of Internet Explorer IE9 is here and now is the time to work out if Microsoft has finally found the answer to Firefox, Chrome, Safari and Opera? Probably not but it&apos;ll be good to see in what ways they have caught up.&lt;/p&gt;
</content:encoded></item><item><title>Pancake Time!</title><link>https://andrewhudson.dev/blog/pancake-time/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/pancake-time/</guid><pubDate>Tue, 08 Mar 2011 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Another Shrove Tuesday arrives and now we&apos;re going to head out to Pancakes at Dave&apos;s.&lt;/p&gt;
</content:encoded></item><item><title>iPad2?</title><link>https://andrewhudson.dev/blog/ipad2/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/ipad2/</guid><pubDate>Thu, 03 Mar 2011 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;After the introduction last night of the latest apple iPad I&apos;m deciding whether Apple is still the best or have the other manufacturers (Motorola, HP, Samsung) produced something better?&lt;/p&gt;
</content:encoded></item><item><title>TED - Work/Life Balance</title><link>https://andrewhudson.dev/blog/ted-worklife-balance/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/ted-worklife-balance/</guid><pubDate>Mon, 28 Feb 2011 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;This is an excellent TED talk about the work-life balance.&lt;/p&gt;
</content:encoded></item><item><title>River and Back - 21m19s [Running]</title><link>https://andrewhudson.dev/blog/river-and-back-21m19s-running/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/river-and-back-21m19s-running/</guid><pubDate>Thu, 03 Feb 2011 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Second run of the week after doing the same route in much colder conditions after work on Monday (22m14s though I had to wait to cross traffic for at least 30s). Listened to Mew and Air and Foals. I went swimming on Tuesday when I did 20 lengths. This is the start of the beginning of my return to fitness.&lt;/p&gt;
</content:encoded></item><item><title>Last weekend was &quot;Creating Custom Posts&quot;</title><link>https://andrewhudson.dev/blog/last-weekend-was-creating-custom-posts/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/last-weekend-was-creating-custom-posts/</guid><pubDate>Mon, 17 Jan 2011 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Last weekend I realised how little I actually knew about Wordpress (the CMS/blog system that powers my blog). My intention was to learn how to create custom posts and have a different page of the blog where these posts would appear. For example, I would create a running log and every entry would go to the &quot;Running&quot; page. After a weekend of pulling my hair out I managed to create these custom posts, with taxonomies. But the other more interesting part of my goal was not successful. I have a book called &quot;Wordpress Bible&quot; and this is helpful but it feels as if everything in the back end is gobbly goop. Perhaps I need to take it one-step at a time and break down into components and understand each one before going right into the deep end. Anyway that is for sometime in the future, not now, as I am going to the &lt;a href=&quot;http://newadventuresconf.com/&quot;&gt;New Adventures in Web Design&lt;/a&gt; conference on the 20th in Nottingham, and this Friday Marion will join me so we can go for a weekend camping in the Peak District.&lt;/p&gt;
</content:encoded></item><item><title>Onwards into the future!</title><link>https://andrewhudson.dev/blog/onwards-into-the-future/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/onwards-into-the-future/</guid><pubDate>Sat, 15 Jan 2011 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Now that my first post of 2011 is under my belt I can feel confident to write some more. You see for me the more I write the easier writing becomes. Yes yes yes onwards with the post! In the previous post I wrote down the key highlights of what I did in 2010 and now in this post I will write what I hope to do this year.&lt;/p&gt;
&lt;h3&gt;Improve Fitness&lt;/h3&gt;
&lt;p&gt;I have not done much exercise since I changed careers back in August and I&apos;d like to change this by doing more in the coming year. I&apos;ve been playing badminton with my friend Rob but this is only every other week, I&apos;d like to play more. Otherwise I want to re-start my running, go once or twice a week, and go swimming at the local pool once a week.&lt;/p&gt;
&lt;h3&gt;Learn French&lt;/h3&gt;
&lt;p&gt;Having proposed to Marion and having completed my Web-Design qualification I now have more time to do more studying and I want to re-start learning French. I plan to start a French qualification in February at the local university.&lt;/p&gt;
&lt;h3&gt;Learn more Web Languages&lt;/h3&gt;
&lt;p&gt;Already it&apos;s the second week of January and I have been busy beginning my quest to learn Javascript so I can apply this knowledge at work and in my own projects. It&apos;s something that I&apos;ve long wanted to do and just before Christmas I began &lt;a href=&quot;http://courses.sitepoint.com/javascript-live&quot;&gt;Sitepoint&apos;s Javascript Live&lt;/a&gt; course. At work have also been learning some jQuery too. Secondly I want to learn more PHP so I can improve my skills within Wordpress (see next point) and have some experience with back-end web development.&lt;/p&gt;
&lt;h3&gt;Wordpress Theming&lt;/h3&gt;
&lt;p&gt;Currently 20% of the world&apos;s websites are run using &lt;a href=&quot;http://wordpress.org/&quot;&gt;Wordpress&lt;/a&gt; which is the opensource blog/CMS platform which is also the platform that I use to run this blog. I have begun learning how to make my own themes and about how Wordpress works in greater detail. I want to become a Wordpress Themer (someone who makes themes, possibly to sell them or use them on other peoples websites).&lt;/p&gt;
&lt;h3&gt;Write and Read&lt;/h3&gt;
&lt;p&gt;I have already started to keep a log of all the books (currently it&apos;s in a notebook but hopefully sometime I will add a page to this blog where I will detail them) that I have read which should motivate me to read more books. Second to this I want to write more too, both in the form of blog posts here and also to keep in better contact with friends. I know that this is a big list but hopefully I will be able to succeed with the majority of them. Until next time, adios amigos!&lt;/p&gt;
</content:encoded></item><item><title>The Year 2010</title><link>https://andrewhudson.dev/blog/the-year-2010/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/the-year-2010/</guid><pubDate>Sat, 15 Jan 2011 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;To start again you have to let go of the past and move forward to free yourself of the baggage that weighed you down. This is what I want to do with this post, to finalise the year 2010 and get ready to embrace 2011. For me the year that was 2010 was an incredible year full of life changing activities and one where a number of big goals were completed. I&apos;ll list them here:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Proposed to my now fianceÃ© Marion on the top of Glastonbury Tor - June.&lt;/li&gt;
&lt;li&gt;Completed my &quot;Masters CIW Designer&quot; course thus ending a long 2.5 year journey - December.&lt;/li&gt;
&lt;li&gt;I Became a front-end Web Developer for Heath Wallace and beginning my career in web- August.&lt;/li&gt;
&lt;li&gt;Quit Thames Water and thus ending my careerÂ  in Chemistry - July.&lt;/li&gt;
&lt;li&gt;Completing the toughest long-distance walking route - Corisca&apos;s GR20 - with Marion - September.&lt;/li&gt;
&lt;li&gt;I passed my course in Digital Photography - January.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;My next post will contain what I want to do in 2011 so keep your eyes out for that! Until then, adios amigos!&lt;/p&gt;
</content:encoded></item><item><title>2010 review</title><link>https://andrewhudson.dev/blog/2010-review/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/2010-review/</guid><pubDate>Wed, 12 Jan 2011 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;The year that was 2010 was for me a very good one and I completed a number of goals and I will summarise them here. I completed my Masters CIW Designer course. I proposed to my now fiancee Marion. I did the toughest long-distance walking paths, Corsica&apos;s GR20. I passed my photography course. I changed career to become a front-end web developer for HeathWallace. I quit my job at Thames Water. I embraced Technology and bought an iPhone. I look forward to this year 2011 to see what it will bring to me.&lt;/p&gt;
</content:encoded></item><item><title>I passed!!!</title><link>https://andrewhudson.dev/blog/i-passed/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/i-passed/</guid><pubDate>Thu, 16 Dec 2010 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;This is the end of a long journey which I started a long time ago. In April 2008 I persuaded myself and my girlfriend (now fiancee) Marion that I wanted to change career and it would be great if I would do some training in web designâ€”something that I had been dreaming of ever since teaching myself to code after graduating from universityâ€”and she pointed out an advert to Advent Training who had been doing lots of adverts on the TV and internet at the time. The first two modules of the &quot;Masters CIW Designer&quot; course were CompTIA A+ and A+ Technician exam. Basically to get me to be able to install, fix, troubleshoot any hardware or software in Windows. I really enjoyed being able to learn more about what goes on inside the computers and was able to learn a lot of useful stuff. The next moduleâ€”the first of the CIW modulesâ€”was called CIW Foundations. It taught a little about coding, but was mostly about networking, business and very basic web stuff. The penultimate module, CIW Site Designer, was my favorite and was mostly about coding websites in different languages (although mainly HTML). I read a lot of other books at the time, books about Web Standards, Usability, and went to several UX meetups in London, I revamped my own website using all that I&apos;d learnt and started applying for jobs in web design/development. I got the job that I was dreaming of and thus made my own progression from Chemist to Web Developer. It was after passing this exam that I found out that the company that I was doing the course throughâ€”Advent Trainingâ€”had gone bust and I was thus left in a haitus not knowing whether I could finish my course. Luckily a new company came along and I could continue my course. The final exam was CIW E-commerce and it really sucked. I hate most (though not all) of the topics and studying was a nightmare because of my new job and not having the energy or motivation to sit down and study after a long day on the computer at work. So this month I have taken a number of days off as holiday from work and stuck to it, learning and revising the subjects in the book. Today I took the exam in Wokingham and passed with 84% (the pass mark was 68%). I am very happy now as you can imagine! You can call me a &quot;CIW Web Design Professional&quot; if you&apos;d like to. Otherwise Andy is good for me;) Now I can focus on enjoying life a little and absorbing the festive Christmas atmosphere. After Christmas I will start to learn French.&lt;/p&gt;
</content:encoded></item><item><title>Still Studying</title><link>https://andrewhudson.dev/blog/still-studying/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/still-studying/</guid><pubDate>Mon, 13 Dec 2010 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;It&apos;s really cold in this office where I am studying. So cold that I cannot really feel my feet. I do have some really good music - the Tron soundtrack by Daft Punk - to keep my ears warm, however, and eleven jumpers and three pairs of jeans to keep my body and legs warm. So you can rest easily in your warm offices and homes. That is all.&lt;/p&gt;
</content:encoded></item><item><title>Studying</title><link>https://andrewhudson.dev/blog/studying/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/studying/</guid><pubDate>Wed, 08 Dec 2010 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Work, study. Work, study. That&apos;s all I am doing at the moment. The exam is next Thursday and I am doing lots of revision for it. Nothing else.&lt;/p&gt;
</content:encoded></item><item><title>Sunday Morning</title><link>https://andrewhudson.dev/blog/sunday-morning/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/sunday-morning/</guid><pubDate>Sun, 28 Nov 2010 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Good morning to all out there on this beautiful brilliantly cold ice-blue Sunday morning! On the stereo is Mercury Rev&apos;s &quot;All is But a Dream&quot; and I&apos;ve just finished a glass of delicious orange juice. Recently I have been quite busy learning more about wordpress and how to customise it further. How to add custom javascript libraries, custom CSS. All that&apos;s happening can be seen over at my &lt;a href=&quot;http://www.test.big-andy.co.uk/blog&quot;&gt;test blog&lt;/a&gt;. I am using the starkers HTML5 theme as a starting point and also using the HTML5 boilerplate CSS reset so that I am working from a base-line so that any changes I make make it mine even more. Experimenting with CSS3 and also learning more about PHP and how PHP is implemented in wordpress. Yes I am having a great time! Outside the air is cold and frost lies on the ground and inside I wonder if it&apos;s now time to have some breakfast, time to get moving onwards with the day and then do some studying (I am revising for the final module of my Masters CIW course).&lt;/p&gt;
</content:encoded></item><item><title>update</title><link>https://andrewhudson.dev/blog/update-2/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/update-2/</guid><pubDate>Thu, 04 Nov 2010 00:00:00 GMT</pubDate><content:encoded>&lt;h3&gt;current&lt;/h3&gt;
&lt;p&gt;I&apos;ve been learning a lot about CSS3 lately. Having bought a copy of Andy Clarke&apos;s &lt;a href=&quot;http://hardboiledwebdesign.com/&quot;&gt;Hardboiled Web Design&lt;/a&gt; I have also started to do some 2d and 3d transitions. While I cannot use these in my working life it&apos;s great to be able to experiment and learn by experiment on my own test sites.&lt;/p&gt;
&lt;h3&gt;future&lt;/h3&gt;
&lt;p&gt;Soon in the future I hope to make a start on re-designing my own website and blog, using HTML5 and CSS3 techniques to enhance it all with a template for the whole non-blog site, and a different one for the blog.&lt;/p&gt;
</content:encoded></item><item><title>shake shake shake</title><link>https://andrewhudson.dev/blog/shake-shake-shake/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/shake-shake-shake/</guid><pubDate>Fri, 08 Oct 2010 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Weekends always come so quickly but never last for long. It&apos;s been another busy couple of months: my new job, completing the GR20, and returning to running. Stay tuned for catch-up.&lt;/p&gt;
</content:encoded></item><item><title>Friday the Thirteenth</title><link>https://andrewhudson.dev/blog/friday-the-thirteenth/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/friday-the-thirteenth/</guid><pubDate>Fri, 13 Aug 2010 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;A quick post at the end of a very busy week of work. I am getting my head around SVN and the workings of life as a developer. I&apos;m looking forward to learning more and increasing my skillset. I am reading a book about Accessability &quot;Building Accessible Websites&quot; in the evenings and beginning to pick up some jQuery too. The more you know the better a developer you are. So I&apos;ve been told!&lt;/p&gt;
</content:encoded></item><item><title>Thursday Training</title><link>https://andrewhudson.dev/blog/thursday-training/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/thursday-training/</guid><pubDate>Thu, 12 Aug 2010 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;This morning before work I went for my first run in 6 weeks. And I feel really great for having done it. Twenty minutes and the route was my normal &quot;River Loop&quot;.&lt;/p&gt;
</content:encoded></item><item><title>Writing from w.bloggar</title><link>https://andrewhudson.dev/blog/writing-from-w-bloggar/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/writing-from-w-bloggar/</guid><pubDate>Thu, 12 Aug 2010 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;While I listen to the latest podcast from &lt;a href=&quot;http://5by5.tv/bigwebshow/16&quot;&gt;The Big Web Show&lt;/a&gt; (a weekly show about different topics related to the web, hosted by &lt;a href=&quot;http://www.zeldman.com/&quot;&gt;Zeldman&lt;/a&gt; and &lt;a href=&quot;http://hivelogic.com/&quot;&gt;Dan Benjamin&lt;/a&gt;) I try out a new tool for blogging.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;w.bloggar&lt;/strong&gt;
I used to use w.bloggar a very long time ago when I was first getting into the blogging game. That was a long time before Wordpress&apos; in-browser compose post function was usable. Now going back I can see that w.bloggar is still a great way of composing posts, there is no distraction and you actually feel that you are sitting at the type-writer and composing &quot;serious content&quot;.&lt;/li&gt;
&lt;/ol&gt;
</content:encoded></item><item><title>Wednesday Stress</title><link>https://andrewhudson.dev/blog/wednesday-stress/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/wednesday-stress/</guid><pubDate>Wed, 11 Aug 2010 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;What began as a simple entry to life as a developer has quickly descended into a life with ten thousand different strands each taking up all of my time resources and abilities. I&apos;m a beginner and have not done the vast number of things that they&apos;re asking me to do before. Yes I&apos;ll get quicker when I have mastered how to do it all, but for now I am very stressed.&lt;/p&gt;
</content:encoded></item><item><title>Tuesday Fuckup</title><link>https://andrewhudson.dev/blog/tuesday-fuckup/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/tuesday-fuckup/</guid><pubDate>Tue, 10 Aug 2010 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;I thought that I would be playing badminton right now. Instead I am at home typing into my computer. That&apos;s a bad swap and it happened because of a mix-up with my friend Rob (my fault). Anyway now I am at home and doing some typing. Typing is good for the soul I think, and the more you type the easier it becomes. In my last job I was continually brain deprived (i.e. by monotonous boring brain numbing work) so my ability to type sentences withered and almost died away. That&apos;s why I am trying to write in this blog more. To bring back my brain from the abyss.&lt;/p&gt;
</content:encoded></item><item><title>Monday and Knackered</title><link>https://andrewhudson.dev/blog/monday-and-knackered/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/monday-and-knackered/</guid><pubDate>Mon, 09 Aug 2010 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Every time I open up the &quot;New Post&quot; section of my blog admin and wait for the words to come to my fingers. The space to write is so large (I have a 23&quot; monitor and it spans the entire width of the page) that I am always put off. So I now will try other methods to put down my words.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;Method 1&lt;/strong&gt; is QuickPress the in-built window on the main page of wordpress&apos; admin section. Room for 4 lines of text at a time, no more, and breadth and space for lines of words and sentences to form quickly without the distractions of an empty page of whiteness.&lt;/li&gt;
&lt;/ol&gt;
</content:encoded></item><item><title>Final Day Chemist</title><link>https://andrewhudson.dev/blog/final-day-chemist/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/final-day-chemist/</guid><pubDate>Fri, 30 Jul 2010 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Today marks the end of my career as a chemist, something that I have been working and studying for 13 years (since the start of my A-levels in 1997). Its been a long windy road with lots of fantastic moments meeting loads of great wonderful people, I think that now is the time for different more exciting and interesting challenges. Now I must cycle to the lab and one last time I will put on my white lab coat safety specs and mad scientist voice... and then on Monday I will be free to follow my heart and take my first step as a Front-End Web Developer.&lt;/p&gt;
</content:encoded></item><item><title>Coffee break</title><link>https://andrewhudson.dev/blog/coffee-break/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/coffee-break/</guid><pubDate>Wed, 21 Jul 2010 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;This morning not feeling very well I had to skip brekki so that I arrived at 10 o&apos;clock absolutely starving and in need of energy and some coffee. Also as I feel that this blog is in great need of artwork and photography I took a photo of the new book &quot;It&apos;s only a Movie&quot; by Mark Kermode I started last night.&lt;/p&gt;
</content:encoded></item><item><title>Big News #2 {new job}</title><link>https://andrewhudson.dev/blog/big-news-2-new-job/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/big-news-2-new-job/</guid><pubDate>Tue, 20 Jul 2010 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Just under two weeks separate the end of my Chemistry career and the beginning of my new career in web development. I have a job as Front End Web Developer for &lt;a href=&quot;http://www.heathwallace.co.uk/&quot;&gt;Heath Wallace&lt;/a&gt; starting on August 2nd based here in Reading, UK. I am hugely excited about the change, something that I have been working hard to achieve over the last two years with my web design course, reading books, writing code, learning and continuously studying hard.&lt;/p&gt;
</content:encoded></item><item><title>Big News #1 {marriage}</title><link>https://andrewhudson.dev/blog/big-news-1/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/big-news-1/</guid><pubDate>Sat, 10 Jul 2010 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;I have some really fantastic news to share with you. Marion and I are going to get married. I proposed at the top of Glastonbury Tor on our 3-year anniversary which was one month ago. We&apos;re both really happy and are starting to think of places in France where we can get married. It&apos;ll be somewhere next to the sea, either the Med (where Marion grew up) or the Atlantic (where her parents live now).&lt;/p&gt;
</content:encoded></item><item><title>First Training Runs with Forerunner 405</title><link>https://andrewhudson.dev/blog/first-training-runs-with-forerunner-405/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/first-training-runs-with-forerunner-405/</guid><pubDate>Thu, 24 Jun 2010 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;For our 3-year anniversary Marion gave me a Garmin Forerunner 405 which is a running/cycling watch with GPS and heart rate. While out running it gives you pace information, you can train against a virtual partner, and see which &lt;a href=&quot;http://www.brianmac.co.uk/hrm1.htm&quot;&gt;Heart Rate Zone&lt;/a&gt; you are in. So far I have used it twice as you can see below. We are going to do &lt;a href=&quot;http://en.wikipedia.org/wiki/GR20&quot;&gt;Corsica&apos;s GR20&lt;/a&gt; this August/September. Rumoured to be the hardest toughest long-distance path in the world, this is something that we&apos;ve been dreaming of since we started going out 3 years ago. We&apos;ve booked the flights to Corsica and now the training begins! &lt;a href=&quot;http://connect.garmin.com/activity/37915229&quot;&gt;First Training Run&lt;/a&gt; - running at lunchtime is great in that you can go while you are full of energy but our shower at work is in a small room with no air extraction and on a hot day like this I was hotter and wetter after the shower than before. This route was one that I have done plenty of times before and is one of the shortest. The day was hot and sunny and as this was my first run since May 10th I wanted a short route. &lt;a href=&quot;http://connect.garmin.com/activity/37915226&quot;&gt;Second Training Run&lt;/a&gt; - aiming to stay under 70% of max-HR (Heart Rate) I&apos;m still really unfit so I couldn&apos;t keep my HR below 90% for any time - without resorting to walking - so I ran slow enough and stayed at approx 90% for the entire run. The day was hot and sunny but compared to the run on Monday I was able to enjoy running and the fantastic day, look at the scenery along the canal. I am amazed at all the stats that the watch/computer gives me and you can upload the routes to the Garmin Connect website where you can see your route on google maps, see all the heart rate/pace/time information as well as calories burnt, elevation climbed/descended, and more. I will keep on training with the watch and post the results here.&lt;/p&gt;
</content:encoded></item><item><title>A new Dawn - A new Speedo!</title><link>https://andrewhudson.dev/blog/a-new-dawn-a-new-speedo/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/a-new-dawn-a-new-speedo/</guid><pubDate>Thu, 17 Jun 2010 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;New Speedo for my bike! This morning I fitted it to the bike and rode to work. Normally I am happy to race cars and then take a breather, but with a device that tells you exactly how fast you are going the competitive side comes out and you have to go faster, even if you knacker yourself out in the process. The device is a &lt;a href=&quot;http://www.evanscycles.com/products/cateye/strada-wireless-8-function-computer-ec008446?utm_source=froogle&amp;amp;utm_medium=froogle&amp;amp;utm_campaign=froogle&quot;&gt;Cateye Strada Wireless 8 Function Computer&lt;/a&gt;.&lt;/p&gt;
</content:encoded></item><item><title>Monday Morning!</title><link>https://andrewhudson.dev/blog/monday-morning/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/monday-morning/</guid><pubDate>Mon, 07 Jun 2010 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;The weekend flew past and it&apos;s Monday morning. Before I go to work I will tell you what&apos;s been going on since last I wrote. I passed my penultimate CIW exam - CIW Site Designer - with 91%, went to London Web Standards (about accessibility), had my first ever IT job interview, to the (6th) annual Pidgeon Walking Weekend in (Herefordshire), and to my brother&apos;s birthday drinks in London. Otherwise I have been learning about the Typographic Grid (with help from &lt;a href=&quot;http://www.markboulton.co.uk/journal/comments/five-simple-steps-to-designing-grid-systems-preface&quot;&gt;Mark Boulton&apos;s site&lt;/a&gt;, and &lt;a href=&quot;http://www.amazon.co.uk/Making-Breaking-Grid-Layout-Workshop/dp/1592531253&quot;&gt;Making and Breaking the Grid: A Graphic Design Layout Workshop&quot;&lt;/a&gt; book) and learning some PHP. This week I am going away somewhere (either Bath or Brighton) to celebrate the three years that Marion and I have been going out together. Tonight I am going to &lt;a href=&quot;http://www.londonwebstandards.org/&quot;&gt;London Web Standards&lt;/a&gt; which tonight is about HTML5 and Flash.&lt;/p&gt;
</content:encoded></item><item><title>Weekend and Studying</title><link>https://andrewhudson.dev/blog/weekend-and-studying/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/weekend-and-studying/</guid><pubDate>Sun, 16 May 2010 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Sunday afternoon and the birds are cheeping, otherwise it&apos;s quiet and I am taking a break from studying. This week has been a busy one with my first ever &lt;a href=&quot;http://readinggeeknight.com/&quot;&gt;Reading Geek Night&lt;/a&gt; with &lt;a href=&quot;http://akamike.net&quot;&gt;Mike Robinson&lt;/a&gt; talking about &quot;HTML5 Today&quot;, &lt;a href=&quot;http://twitter.com/cluetrainee&quot;&gt;Mark Adams&lt;/a&gt; &quot;Geeks are Gods&quot;, &lt;a href=&quot;http://www.chris-alexander.co.uk/&quot;&gt;Chris Alexander&lt;/a&gt; on &quot;Darks arts of SEO&quot; and &lt;a href=&quot;http://www.workhousecoffee.co.uk/&quot;&gt;Workhouse Coffee&apos;s&lt;/a&gt; &quot;Coffee Geeks&quot;. Wednesday we went to see Foals play at the Academy in Oxford, preceded by an excellent meal in Coco on Cowley Road. Thursday night. Otherwise this week I have been studying and coding.&lt;/p&gt;
&lt;h3&gt;Coding&lt;/h3&gt;
&lt;p&gt;Currently on the coding side of things I am working on putting the top 3 (or 5) &lt;a href=&quot;http://blog.big-andy.co.uk&quot;&gt;blog.big-andy.co.uk&lt;/a&gt; headlines, with a small summary, on the main page of my site &lt;a href=&quot;http://www.big-andy.co.uk&quot;&gt;big-andy.co.uk&lt;/a&gt;. So far I have succeeded in getting information e.g. headline, summary on a page on &lt;a href=&quot;http://test.big-andy.co.uk/index.php&quot;&gt;my test site&lt;/a&gt; but that still needs some more work before it will go on my main site. Also I have been working on some JS and PHP.&lt;/p&gt;
&lt;h3&gt;Studying&lt;/h3&gt;
&lt;p&gt;This week has been intense. I have been doing lots of online mock exams as well as practising areas that I need to improve on. This morning and last night I took 3 online &quot;Full Exam&quot; exams and scored 93% then 96% respectively. I think I am ready for the proper exam and to move onwards.&lt;/p&gt;
</content:encoded></item><item><title>Foals and Coco</title><link>https://andrewhudson.dev/blog/foals-and-coco/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/foals-and-coco/</guid><pubDate>Thu, 13 May 2010 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Last night we went to see Foals at the Oxford Academy and was thoroughly impressed by the band. Very tight musically and some really good songs. I was however dissapointed that a lot of their songs sound very similar with the same beat/rhythm and this band are an excellent party band, if you want class then listen to another band. Stand out song was the superb Spanish Sahara. Before the gig looking for urgent nourishment walking along Cowley Road we discovered Coco.&lt;/p&gt;
</content:encoded></item><item><title>Running Again!</title><link>https://andrewhudson.dev/blog/running-again-2/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/running-again-2/</guid><pubDate>Mon, 10 May 2010 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Tonight after work I went running for the first time since the 24th of February. Not very far and not a very long run (15m07s) to go around the streets but great to be running!&lt;/p&gt;
</content:encoded></item><item><title>Weekend and PHP time</title><link>https://andrewhudson.dev/blog/weekend-and-php-time/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/weekend-and-php-time/</guid><pubDate>Sat, 08 May 2010 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Good Evening Folks! I have been working on some PHP recently. I have decided to change from .html to .php on &lt;a href=&quot;http://www.big-andy.co.uk/&quot;&gt;big-andy.co.uk&lt;/a&gt; so that I could use a consistant navigation bar and any changes that I made would be only to one (navigation.php) file rather than 10+ files (with .html). I did have some difficulty, however, with my current testing situation. I am using XAMPP on my PC to test what I make before I publish it online. The root of my XAMPP site is http://localhost/ and the root of my website is http://big-andy.co.uk so I wanted to do some PHP to show the root and based on this to serve a different navigation (xampp-navigation.php or navigation.php) depending whether the page was on the XAMPP server or on the web-server. I did it like this:&lt;/p&gt;
&lt;p&gt;&amp;lt;?php
if ($_SERVER[&quot;SERVER_NAME&quot;] == &quot;localhost&quot;){ include&apos;../php/xampp-navigation.php&apos;;} else {include&apos;../php/navigation.php&apos;;}
?&amp;gt;&lt;/p&gt;
&lt;p&gt;Thus the problem is now overcome and I can go back to my real life as a normal person. In other news the conservative scum have gained more seats than any other party in the UK General Election much to my distaste. They didn&apos;t gain enough seats to have a majority and we are now in a hung-parliament (no one party has a majority) for the first time since 1974. Will they do a deal with the lib-dems, or will the lib-dems do a deal with Labour scum? It&apos;s my Mum&apos;s Birthday today so &quot;Happy Birthday Mum!&quot; we&apos;re going over to Sandhurst tomorrow to have dinner at a restaurant with &lt;a href=&quot;http://www.rob-hudson.com/&quot;&gt;my brother&lt;/a&gt;, &lt;a href=&quot;http://www.marionmouttou.co.uk&quot;&gt;my girlfriend&lt;/a&gt; (both of whom need urgently to update their websites by the way) my Dad and Mum.&lt;/p&gt;
</content:encoded></item><item><title>Dorset Wind Blast</title><link>https://andrewhudson.dev/blog/dorset-wind-blast/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/dorset-wind-blast/</guid><pubDate>Thu, 06 May 2010 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Thank god for short weeks in May (there are 2) which allow for escape into the countryside. We went to Dorset via the New Forest, camping on the coast near Lyme Regis. After an exceptionally warm April the temperature turned down and we were buffeted by heavy showers and cold wind. Walking along the coast, searching for fossils on the beach, and getting fresh country air. Finally we finished by visiting Lulworth Cove, a beautiful coastal village, for sunshine icecream and more walking. At the end of May we&apos;re off to the Brecon Beacons for the 6th Pidgeon Walking Weekend with 20+ family. Cannot wait!&lt;/p&gt;
</content:encoded></item><item><title>Grid Layout</title><link>https://andrewhudson.dev/blog/grid-layout/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/grid-layout/</guid><pubDate>Thu, 06 May 2010 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;The last couple of nights I have been working on implementing some grid techniques (horizontal and vertical alignment of content) and have &lt;a href=&quot;http://www.big-andy.co.uk/ideas/grid960.php&quot;&gt;uploaded my first template&lt;/a&gt;. Now I realise its just a start and there&apos;s much more to learn but Im enjoying the process!&lt;/p&gt;
</content:encoded></item><item><title>Ideas</title><link>https://andrewhudson.dev/blog/ideas/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/ideas/</guid><pubDate>Tue, 27 Apr 2010 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;what this blog is missing in my opinion is something creative that&apos;s not text-related. In other words it needs photos, graphics, design... and doodles!&lt;/p&gt;
</content:encoded></item><item><title>CIW Site-Designer</title><link>https://andrewhudson.dev/blog/ciw-site-designer/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/ciw-site-designer/</guid><pubDate>Mon, 26 Apr 2010 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Web-design has always been a passion of mine and two years ago I started a course called Masters CIW Designer through a company called Advent Training. While progress has been at times fast I still have not finished the course and now that Advent Training have gone bust my training is being provided by Computeach and I have a deadline of July 17th 2010 to finish the course. There&apos;s nothing like a deadline to focus one&apos;s attention and I am cracking on with the course material!&lt;/p&gt;
</content:encoded></item><item><title>you should really download the new  blur song!</title><link>https://andrewhudson.dev/blog/new-blur-song/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/new-blur-song/</guid><pubDate>Sun, 18 Apr 2010 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;sunny outside and this is a quick short post! You can download for free the new &lt;a href=&quot;http://www.blur.co.uk/&quot;&gt;blur&lt;/a&gt; song which they recorded for yesterday&apos;s &lt;a href=&quot;http://www.recordstoreday.com/Home&quot;&gt;independent record shop day&lt;/a&gt; as a limited edition 1000-copy single sided 7&quot; vinyl. At midnight they released it for free via their website as mp3 (5Mb) and un-compressed wav (34 Mb but much better quality!). Yesterday went to Oxford and apparently it was also Oxford Folk Festival and there were hundreds of morris dancers on the streets. Otherwise we went to the covered market for a Ben&apos;s Cookie and then to the grass to sit down and enjoy the cloudless skies and blue hot sunshine.&lt;/p&gt;
</content:encoded></item><item><title>Looking Forward - [Post from iPhone]</title><link>https://andrewhudson.dev/blog/looking-forward-post-from-iphone/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/looking-forward-post-from-iphone/</guid><pubDate>Thu, 25 Mar 2010 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;This is an interesting experience: I am now writing this post from my iPhone. Not the easiest of experiences but allows one to post on the go, or at least compose draft posts on the go. Tonight I am going to go to my first ever twestival (charity fundraising event for the Twitter community, held globally today) in Reading. Excited and expectant but entering an unknown world: the world of people that uses twitter. Yes I have met people through Twitter and met and know a few people that use Twitter to communicate. But a whole room of them specifically there because of Twitter? Looking forward to going on holiday with my girlfriend Marion. Where are we going? That&apos;s a surprise that I will find out the answer to on Saturday morning when we arrive at the airport for our flight. Which airport and what destination? Both of which I am dying to find out!&lt;/p&gt;
</content:encoded></item><item><title>Not Running [from iPhone]</title><link>https://andrewhudson.dev/blog/not-running-from-iphone/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/not-running-from-iphone/</guid><pubDate>Thu, 25 Mar 2010 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;This year I had to pull out of attempting the Reading Half-Marathon because of injury to my left knee I sustained from crashing my bike. Now that spring is here - you can tell by the relentless rain and grey skies - I want to start going running again. Seeing the many thousand runners participate in this years race (we were spectating from the bottom of Russell Street at mile 7 of the course) just makes me want to go out and run. My knee still hurts. The road back will be long and bumpy. But I am ready for the journey back to fitness.&lt;/p&gt;
</content:encoded></item><item><title>sunshine walk along the river</title><link>https://andrewhudson.dev/blog/sunshine-walk-along-the-river/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/sunshine-walk-along-the-river/</guid><pubDate>Sun, 07 Mar 2010 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;This morning we went for a walk along the river to get some fresh air and were blasted away by strong in the face winds and bright blue sunshine. Keeping to my promise I did take a couple of photos but the hands were too cold to take more than that and I am only now (5pm) starting to warm up again. After a sausage and fried egg sandwich lunch (ingredients bought at the farmers market yesterday morning) we watched the FA Cup quarter-final between Reading and Aston Villa. Reading easily outclassed their Premier League opponents in the first-half and went into the break 2-0 up. Unfortunately the away team scorred three goals and Reading were left optimistically prodding and firing balls towards the Aston Villa net but could not succeed. The game finished &lt;a href=&quot;http://news.bbc.co.uk/sport1/hi/football/fa_cup/8549646.stm&quot;&gt;4-2 to Aston Villa&lt;/a&gt;. This afternoon I am listening to &lt;a href=&quot;http://www.myspace.com/foals&quot;&gt;Foals&lt;/a&gt; and &lt;a href=&quot;http://www.myspace.com/sebastianrochford&quot;&gt;Polar Bear&lt;/a&gt; and just about to start studing the final two chapters of the first book of my CIW Foundations Course. They both are on Microsoft Expression Web. Later I hope to study a bit of PHP.&lt;/p&gt;
</content:encoded></item><item><title>Running to Work #2 [20m58s]</title><link>https://andrewhudson.dev/blog/running-to-work-2/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/running-to-work-2/</guid><pubDate>Wed, 24 Feb 2010 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;man that one was a tough one, the legs restricted by my running tights, the lungs by flegm, and the head by a desire to be back in bed due to illness. I ran to work, and coughed lots. That&apos;s all folks...!&lt;/p&gt;
</content:encoded></item><item><title>Running Home #4 [19m40s]</title><link>https://andrewhudson.dev/blog/running-home-4/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/running-home-4/</guid><pubDate>Tue, 23 Feb 2010 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Coughing hard from tonight&apos;s run, the first of the week, but glad I did go running as I took the weekend off and didn&apos;t have the energy or motivation to run yesterday. I have been suffering since Friday with a cold which is probably from the forced training effort. Less than 4 weeks to go until the Reading Half-Marathon now.&lt;/p&gt;
</content:encoded></item><item><title>Friday Summary </title><link>https://andrewhudson.dev/blog/friday-summary/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/friday-summary/</guid><pubDate>Fri, 19 Feb 2010 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Writing this is in itself quite knackering because I have tired and drawn myself out with all the running (and running about) that I have done this week. When I realised last Sunday that the Reading Half-Marathon was just 5 weeks away I figured that I had to start my training right away or forgo the attempt this year. So I have run every working day this week, five days in a row, and I have to say that it has been a real awakener. The first three days went well, I ran either to or from work and it felt good to be running again (I&apos;d not run since the middle of December), but the run on Thursday was tough and I imagine that the run this afternoon will be something of an out of body experience;) I have the start of a cold and I am feeling knackered and empty which are both symptoms of over-doing it. I am going to take a break from running tomorrow and I think that I will go for a run along the river on Sunday, a longer run than I have done so far. Possibly I will run all the way to Pangbourne and get the train back. I&apos;ll let you know when I have done it!&lt;/p&gt;
</content:encoded></item><item><title>Running Home #3 [20m40s]</title><link>https://andrewhudson.dev/blog/running-home-3/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/running-home-3/</guid><pubDate>Fri, 19 Feb 2010 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;I ran home from work on Friday and took my time, and was slowed more by having to wait at traffic lights to cross the road. Was cold and didn&apos;t have long-sleeved top as had forgotten at home to bring it. The sun was out and sky was blue!&lt;/p&gt;
</content:encoded></item><item><title>Along Canal Bridge [30min - 3.91miles]</title><link>https://andrewhudson.dev/blog/along-canal-bridge/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/along-canal-bridge/</guid><pubDate>Thu, 18 Feb 2010 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Not having time to run to or from work I needed to go out running at lunchtime. It was raining and muddy too as I ran along the canal listening to Laura Marling and Mariachi El Bronx on the mp3 player. Tough at the end but nice to do a different route. &lt;a href=&quot;http://www.gmap-pedometer.com/?r=3488095&quot;&gt;The route&lt;/a&gt; was 3.91 miles which equates to a 7min40s /mile pace.&lt;/p&gt;
</content:encoded></item><item><title>Running Home #2 [19m11s]</title><link>https://andrewhudson.dev/blog/running-home-1/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/running-home-1/</guid><pubDate>Wed, 17 Feb 2010 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Despite my legs being heavy and my stomach full of chocolate birthday cake (thanks Aklile, happy birthday again!) I ran home tonight. Warmer and lighter than the run on Monday. Now my legs are really heavy and walking up and down stairs is not easy. Roll on tomorrow!&lt;/p&gt;
</content:encoded></item><item><title>Running to Work [20m07s - 2.69miles]</title><link>https://andrewhudson.dev/blog/running-to-work/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/running-to-work/</guid><pubDate>Tue, 16 Feb 2010 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Yesterday I made the bold decision to carry on my running to/from work regime and skipped breakfast and jumped into my running kit with just a cup of coffee to wake me up. Cold, a bit wet and slighly more up-hill than the other way round. A great start to the day!&lt;/p&gt;
</content:encoded></item><item><title>Running Home [19m14s - 2.69miles]</title><link>https://andrewhudson.dev/blog/running-home-19m14s-2-69miles/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/running-home-19m14s-2-69miles/</guid><pubDate>Mon, 15 Feb 2010 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Tonight I ran &lt;a href=&quot;http://www.gmap-pedometer.com/?r=3477810&quot;&gt;home from work - 2.69 miles&lt;/a&gt; in 19mins14s which equates to a 7.08min/mile pace . Not momentous in distance but definitely the start of the training for the Reading Half-Marathon (which will take place in less than 5 weeks time) and something to do every day or every other day for the time between now and 21st March.&lt;/p&gt;
</content:encoded></item><item><title>Happy New Year!</title><link>https://andrewhudson.dev/blog/happy-new-year/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/happy-new-year/</guid><pubDate>Fri, 15 Jan 2010 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Well it&apos;s been a couple of weeks into 2010 and lots of snow has fallen and almost melted again. Christmas and New Year were great and lots of great food and superb company! I&apos;ve not been running because of the snow on the ground and because of different illnesses. But soon all the snow will be gone and I will be better! On Wednesday I took my CIW Foundations exam and passed with 91%! So that means that I am a &quot;CIW Associate&quot; and can move onto the 4th exam: CIW Site Designer. Now I have a bit of spare time before the books for this course arrive I will have time to sleep and then some time to work on my website so that I can say yes that&apos;s me!&lt;/p&gt;
</content:encoded></item><item><title>Tonight it snew</title><link>https://andrewhudson.dev/blog/tonight-it-snew/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/tonight-it-snew/</guid><pubDate>Tue, 22 Dec 2009 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;2 o&apos;clock sharp: snow started falling from the dark grey clouds. 3-45 gets heavier and heavier. By the time its time to leave (1630) there&apos;s a carpet of cars along the road and ten cm snow on the pavements. Times like this I feel lucky to have a bike. Not that cycling home was easy. Weaving in and out of stationary cars my eyes crammed shut to keep the snow from hitting my eyeballs and keeping the bike vertical to avoid sliding on the hidden black ice it was a beautiful and fantastic experience.We were going to do some christmas shopping but the shops closed early so their staff could get home safely. Still there are 2 more shopping days before Christmas. I cannot wait! Not been running for a week because of illness and the snow-ice-rain. I did buy a new pair of Nike Air Pegassus on Saturday and I am thinking of going soon. When the snow has melted or departed. We&apos;ll see!&lt;/p&gt;
</content:encoded></item><item><title>Running - Prospect Park with Cesar</title><link>https://andrewhudson.dev/blog/running-prospect-park-with-cesar/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/running-prospect-park-with-cesar/</guid><pubDate>Sat, 12 Dec 2009 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;The head was hungover but the feet needed to move, plus I&apos;d made a promise to Cesar that we&apos;d be going running in the morning. Seemed like a good idea last night. Yes, and it was. The sun was shining and the air was cool and for the first time I could wear my shades. I ran to Cesar&apos;s place and then we jogged to and around Prospect Park. Windy in parts but fantastic way to blast away the hangover! 4.69miles in 37m06s. &lt;a href=&quot;http://www.gmap-pedometer.com/?r=3363718&quot;&gt;Prospect Park with Cesar [4.69miles]&lt;/a&gt;&lt;/p&gt;
</content:encoded></item><item><title>Wiggo into the Sky</title><link>https://andrewhudson.dev/blog/wiggo-into-the-sky/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/wiggo-into-the-sky/</guid><pubDate>Thu, 10 Dec 2009 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Brad Wiggins, British cycling god, has today &lt;a href=&quot;http://www.cyclingnews.com/news/bradley-wiggins-signs-with-team-sky&quot;&gt;signed to join the British pro-team &quot;Team Sky&quot;&lt;/a&gt;. This is awesome news for British cycling and I hope that this can bring more cyclists onto the roads and into jerseys to battle it out for medals and glory for Britain. Today sucked. Really tired from the running and studying that I&apos;ve been doing and a crappy day at work. It&apos;s the Christmas party tomorrow so there&apos;s that to look forward to! Hopefully I can go running before work tomorrow, either then or on Saturday.&lt;/p&gt;
</content:encoded></item><item><title>Running - Short River</title><link>https://andrewhudson.dev/blog/running-short-river/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/running-short-river/</guid><pubDate>Wed, 09 Dec 2009 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Second run of the week and it was damp foggy and dark. I&apos;ve run this route in the daytime but in the dark it was much better. Sections of unlit running along and before the river. Legs hurt but this is expected after 2 runs in week after not running for so long. 19&apos;13&quot; for 2.68 miles. &lt;a href=&quot;http://www.gmap-pedometer.com/?r=3360812&quot;&gt;short river&lt;/a&gt;.&lt;/p&gt;
</content:encoded></item><item><title>Let the Training Begin! [Running!]</title><link>https://andrewhudson.dev/blog/let-the-training-begin-running/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/let-the-training-begin-running/</guid><pubDate>Mon, 07 Dec 2009 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;My first run of the season (not including running in NYC) was tonight and it was good to be outside and running! Only 2.17 miles in 15&apos;28&quot; (7.07min/mile pace) I was a small step on the long journey that is ahead of me until next March when I will be doing my third &lt;a href=&quot;http://www.readinghalfmarathon.com/&quot;&gt;Reading Half-Marathon&lt;/a&gt; on the 21th March 2010. It&apos;ll be my fifth half-marathon. &lt;a href=&quot;http://www.gmap-pedometer.com/?r=3357569&quot;&gt;Here&apos;s the Gmaps-pedometer Route&lt;/a&gt;&lt;/p&gt;
</content:encoded></item><item><title>juxtaposition of time</title><link>https://andrewhudson.dev/blog/juxtaposition-of-time/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/juxtaposition-of-time/</guid><pubDate>Mon, 16 Nov 2009 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;listening to Gilles Peterson using the cans that Marion bought me for my birthday is one of life&apos;s greatest pleasures. That and sorting things out. I took Marion to New York City at the end of Oct for her birthday and it&apos;s been a harsh week recovering from the tiredness and jetlag that hit us as we came back to this side of the Ocean. I took hundreds of photos on my newly bought super-wide angle zoom lens (Nikon AF-S Nikkor 10-24mm f/3.5-4.5G ED DX to give it its fullest of full titles!) and now am in the process of sifting through them.&lt;/p&gt;
&lt;h2&gt;Sunday #1&lt;/h2&gt;
&lt;p&gt;you can see the weather was superb. this was taken while we were watching my cousin Ethan&apos;s soccer game. my cousin ethan (yellow, number 14) on his 9th birthday tearing it up. and there were still some leaves on the trees. We went walking with Sean to cure our jetlag. break at the top to catch our breaths. with the trees around us it was difficult to see the sky. big breath for birthday boy! 9 big ones.&lt;/p&gt;
</content:encoded></item><item><title>Photography at TVU</title><link>https://andrewhudson.dev/blog/photography-at-tvu/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/photography-at-tvu/</guid><pubDate>Sun, 11 Oct 2009 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;I have started a photography evening course - specifically titled &quot;ABC Level 3 Award in Digital Photo-Imaging&quot; - at the Thames Valley University every week starting last week. After the first week introductions to the course, the facilities and our opportunity to ask questions and answer the teacher&apos;s (Mike&apos;s) questions we didn&apos;t take any photos. After ordering my DSLR (I eventually decided to get a Nikon d80 after countless times failing to &quot;win&quot; my eBay bids for the Nikon d40) and some faffing around with the seller (and paypal) it eventually arrived on Monday. Not just a camera but also a camera rucsac, filters, 50mm Nikkor f1.8 lens, a huge reflector, and spare battery, and battery grip. The weather this week since the camera arrived has been dodgy. Raining 60% of the time and dark the other 40%. I took the camera out on Tue night to try it outside, as well as testing out on Marion at every opportunity too! Last night (Thu) was the second lesson. We learnt about ISO, Aperture and Shutter Speed. And this time we were put into pairs and told to go into the canteen and take photos of each other. My partner Gareth had an enormously heavy D300 and 18-200mm combination. It was difficult for me with my 50mm lens not being able to zoom in/out, it&apos;s going to take a long time to get used to that! But but but I do have the lens of my film camera (Nikon f80) which is a sigma 28-80mm f3.5 zoom. The quality of lenses are not the same (the Nikkor lens being better) but until I get more lens(es) this is all I have to shoot with. My homework:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;3 shots of the same scene using different white balance (WB) settings (including which one is using the &quot;correct&quot; WB);&lt;/li&gt;
&lt;li&gt;3 shots under Aperture Priority (f11)
&lt;ol&gt;
&lt;li&gt;1 shot @ 1/30;&lt;/li&gt;
&lt;li&gt;1Â  shot @ 1/125;&lt;/li&gt;
&lt;li&gt;1 shot @ 1/500.&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;3 shots under Shutter Priority (1/60):
&lt;ol&gt;
&lt;li&gt;1 shot @ Large D.o.F (depth of Field);&lt;/li&gt;
&lt;li&gt;1 shot @ Medium DoF;&lt;/li&gt;
&lt;li&gt;1 shot @ Small DoF&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I must include how I made these shots. As well as writing up the notes from the lesson last night. Sounds intreaguing.&lt;/p&gt;
</content:encoded></item><item><title>roll of film and the white cup of tea</title><link>https://andrewhudson.dev/blog/roll-of-film-and-the-white-cup-of-tea/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/roll-of-film-and-the-white-cup-of-tea/</guid><pubDate>Tue, 29 Sep 2009 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Good evening everyone. Back online blogging again after what seems like forever. Today I had my eyes tested and I didn&apos;t recieve my digital SLR (Nikon d80) in the post (hopefully it will arrive in time for my first photography lesson - which happens to be tomorrow night). Not wanting to splash out and pay big money on my first ever DSLR I had a good look around the internet and in photography magazines and decided that I wanted to get the Nikon d40, but after countless failed bids on eBay and not being able to find a decently priced model elsewhere I decided to go for the more expensive and higher-spec d80. Last week was really hectic. I finally decided that I needed less distraction and had to tell my brother that I couldn&apos;t work on his project which was tough for both of us: I wanted to do it and learn on the job, and he wanted to help me and get on of his projects moving faster. Anyway. More study time for me! Since deciding to take a photography evening course at the local university I have discovered many many excellent websites, photographers and ideas. Two of my favorite websites are &lt;a href=&quot;http://blog.chasejarvis.com/blog/&quot;&gt;Chase Jarvis&lt;/a&gt; and &lt;a href=&quot;http://strobist.blogspot.com/2009/09/light-is-not-your-problem.html&quot;&gt;Strobist&lt;/a&gt;. The course starts tomorrow evening and if my camera arrives I will start putting photos on this blog. Watch out!&lt;/p&gt;
</content:encoded></item><item><title>champions league draw</title><link>https://andrewhudson.dev/blog/champions-league-draw/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/champions-league-draw/</guid><pubDate>Thu, 27 Aug 2009 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;strong&gt;Champions League group stage draw (thanks &lt;a href=&quot;http://news.bbc.co.uk/sport1/hi/football/europe/8223263.stm&quot;&gt;bbc sport&lt;/a&gt;):&lt;/strong&gt; &lt;strong&gt;Group A&lt;/strong&gt; Bayern Munich Juventus Bordeaux Maccabi Haifa &lt;strong&gt;Group B&lt;/strong&gt; MANCHESTER UNITED CSKA Moscow Besiktas Wolfsburg &lt;strong&gt;Group C&lt;/strong&gt; AC Milan Real Madrid Marseille FC Zurich &lt;strong&gt;Group D&lt;/strong&gt; CHELSEA Porto Atletico Madrid APOEL Nicosia &lt;strong&gt;Group E&lt;/strong&gt; LIVERPOOL Lyon Fiorentina Debrecen &lt;strong&gt;Group F&lt;/strong&gt; Barcelona Inter Milan Dinamo Kiev Rubin Kazan &lt;strong&gt;Group G&lt;/strong&gt; Sevilla RANGERS Stuttgart Unirea Urziceni &lt;strong&gt;Group H&lt;/strong&gt; ARSENAL AZ Alkmaar Olympiakos Standard Liege &lt;strong&gt;Fixture dates:&lt;/strong&gt; 15/16 September 29/30 September 20/21 October 3/4 November 24/25 November 8/9 December&lt;/p&gt;
</content:encoded></item><item><title>this is the week</title><link>https://andrewhudson.dev/blog/this-is-the-week/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/this-is-the-week/</guid><pubDate>Thu, 27 Aug 2009 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;this is where it happens? Ok then you&apos;ve got me as I sit here in my office listening to Noah and the Whale&apos;s new album (the beautiful sad &lt;em&gt;the first days of spring&lt;/em&gt;). This week has gone, shuffled quickly and noisily past, like the wind buffeting the trees in the garden. It&apos;s been emotional, and sad, and happy, and mad. But soon it is over.&lt;/p&gt;
</content:encoded></item><item><title>Blue Sky Fly</title><link>https://andrewhudson.dev/blog/blue-sky-fly/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/blue-sky-fly/</guid><pubDate>Thu, 20 Aug 2009 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Outta the window, out there, it&apos;s just wonderful. Blue sky. Wonderful blue sky. I love it! =&amp;gt; Link &lt;a href=&quot;http://www.noupe.com/design/60-unusual-business-card-ideas.html&quot;&gt;60 Unusual Business Cards&lt;/a&gt;&lt;/p&gt;
</content:encoded></item><item><title>start of the championship, stay safe in taiwan</title><link>https://andrewhudson.dev/blog/start-of-the-championship-stay-safe-in-taiwan/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/start-of-the-championship-stay-safe-in-taiwan/</guid><pubDate>Sat, 08 Aug 2009 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;saturday afternoon. week went fast past the eyes and now again its the weekend. last week: rained a lot but manged to get outside a lot too. I played badminton on Thurs with Rob (I played better than last week), went to see &quot;The Taking of Pelham 123&quot; (poor poor film) at the cinema. We had a picnic by the river last night; and walked along the river on Weds eve... it was great to be in the outside and not stuck inside at home. Tonight we&apos;re having a bbq and I have made &lt;a href=&quot;http://allrecipes.com/Recipe/Caramel-Shortbread-Squares/Detail.aspx&quot;&gt;caramel shortbread squares&lt;/a&gt;. Now I am going to the shops and get things for later. Have a good weekend!&lt;/p&gt;
</content:encoded></item><item><title>Weekend!</title><link>https://andrewhudson.dev/blog/weekend/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/weekend/</guid><pubDate>Fri, 31 Jul 2009 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;This is Friday afternoon and I am about to leave for home. The week has been long and tiring but I played badminton with my school friend Rob! Last weekend I went to London with Marion. To a music festival with my brother and his friends Summer Sundae in Clapham Common with bands I am Kloot, King Creosote and some others... the festival was sponsored by the ice-cream manufacturer Ben &amp;amp; Jerrys and all around the festival site there were tents dishing out the many B&amp;amp;J ice-cream flavours! The sun was out and we chilled, had ice-cream, and listened to the music. It was great! Fun follows fun and on Sunday Marion and I went to the Saatchi Gallery (recommended to me by someone I met at a party - very colourful!) and then to Brick Lane. I love music and one of my favorite shops is Rough Trade off Brick Lane. After having some delicious food from a market we went to RT and M bought me the latest White Jeans [is that what they&apos;re called?] album and had a good look around. Another passion of mine is Graffiti and we found a road called Bacon Street where all the walls are fantastically painted (graffiti&apos;d). Many cool and different paints there! I have put the photos we took on my flickr page (&lt;a href=&quot;http://www.flickr.com/photos/andysan&quot;&gt;http://www.flickr.com/photos/andysan&lt;/a&gt;) if you want to check it out. This week has been a matter of survival. It&apos;s been tough at work and after work I&apos;ve been studying or reading a lot. So it was great last night to play Rob at badminton and throw away some of the stress. Today I am aching all over but it was great fun! Thanks Rob for chasing me so we could organise this game! This weekend we&apos;re going to Winchester and then on Sunday to my parents (to see a whole flock of relatives). Tonight we&apos;re going to the cinema.&lt;/p&gt;
</content:encoded></item><item><title>Photos </title><link>https://andrewhudson.dev/blog/photos/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/photos/</guid><pubDate>Mon, 13 Jul 2009 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Sorting out photos on the computer. Have not put any photos online in a long time but looking into sorting that out. Also looking into batch processing, web optimising and such like.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;using xnview to batch process (image optimise for faster download speeds, all in one go);&lt;/li&gt;
&lt;li&gt;organising photos on computer into logical folders&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Now I have done that I will move onto my studying. I am on the final chapter of book1 of my CIW Foundations Course:Â  Site Development Foundations. Off I go! See you later:)&lt;/p&gt;
</content:encoded></item><item><title>Le Weekend d&apos;Ã©tÃ©</title><link>https://andrewhudson.dev/blog/le-weekend-dete/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/le-weekend-dete/</guid><pubDate>Sun, 14 Jun 2009 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;The weekend. Friday evening I met up with Cesar (he&apos;s just back from his honeymoon in Thailand) at the &lt;a href=&quot;http://www.nagsheadreading.com/&quot;&gt;Nag&apos;s Head&lt;/a&gt; and joined by Marion in the back garden for a few beers in the sunshine. Nice! Saturday we bought beer food and supplies from the super-market and crawled back under huge backpacks (both of our rucsacs weighed at least 20kg) back home to cook for my parents. Marion made a delicious Tagine and some tasty gazpacho, while I made &lt;a href=&quot;http://allrecipes.com/Recipe/Mediterranean-Black-Olive-Bread/Detail.aspx&quot;&gt;black olive bread&lt;/a&gt; and lemon sherbert (from Jamie Oliver&apos;s &quot;Jamie&apos;s Italy&quot; cookbook. We also did some chores and I juggled in the garden â€” something that I&apos;ve not done since moving to this house. It was great to be out in the fantastic weather juggling in the garden; so relaxing and good fun too! The meal went well and it was super to see my parents who were both in top form. Today, Sunday, and the weather again was hot but mixed with some clouds. We had breakfast in the garden and read on the grass in the garden. I juggled some more and Marion finished her book. I&apos;ve just finished &quot;&lt;a href=&quot;http://www.amazon.co.uk/Kings-Mountains-Colombias-Cycling-Changed/dp/1854109111&quot;&gt;Kings of the Mountains&lt;/a&gt;&quot; by Matt Rendell and now I am going back to &quot;&lt;a href=&quot;http://en.wikipedia.org/wiki/The_Golden_Notebook&quot;&gt;The Golden Notebook&lt;/a&gt;&quot; by Dorris Lessing.Â  I&apos;ve just made some cumin bread (adaption of the black olive bread with a tablespoon of cumin seeds instead of the black olives) and I need to put it in the oven now. This week ahead: study, run, juggle.&lt;/p&gt;
</content:encoded></item><item><title>Gah. Just get the words down then!</title><link>https://andrewhudson.dev/blog/gah-just-get-the-words-down-then/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/gah-just-get-the-words-down-then/</guid><pubDate>Sun, 07 Jun 2009 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Been back from Spain since Weds and been doing a lot of tidying and sorting out in the house this weekend, as well as watching sport (tennis and formula one) and the new google wave demonstration (&lt;a href=&quot;http://wave.google.com&quot;&gt;wave.google.com&lt;/a&gt;). Spain was amazing. The idea that we could so much different stuff in the 18 days that we were there is mind-blowing when I think about it now. We did mountains, we did cities and we went to a wedding of our friends Cesar and Inma. and we did the beach too. Now with our sun-tans fading and our white skin re-appearing it&apos;s time that we took stock of what we want to get done in life and stop compaining about what we are not doing. Like writing a blog. Easy to say you want to do it but when you open up the page to write a post, the words fall flat and bounce off the screen. How to get round this problem? Type faster! Last Friday was my brother&apos;s 25+1 birthday and we want into London to &quot;The Living Room W1&quot; to celebrate it with him and his crazy friends and our crazy family. It was a super evening and made better by the availability of Sailor Jerry (my favorite rum!) and some delicious music.&lt;/p&gt;
</content:encoded></item><item><title>5ifth day of being ill</title><link>https://andrewhudson.dev/blog/5ifth-day-of-being-ill/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/5ifth-day-of-being-ill/</guid><pubDate>Thu, 23 Apr 2009 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Greets folks, sitting here in the lounge at home waiting for the pizzas to arrive it&apos;s been a hell of an ill week for me. Sunday morning I woke early and watched some of the Chinese GP before going back to bed then re-awoke feeling really really cold and chilly despite the fact that it was a gorgeous day with lots of sun hotness and blue skies. The next days until now I have been struck with this fever (one moment hot, the next cold) which meant that sleep hasn&apos;t been easy - for Marion either - and the last couple I thought I&apos;d gotten rid of the fever only for a stomach bug to hit me. So, fingers crossed, here&apos;s looking forward to my first pizza in ages.!. In this time since being ill I have watched the majority of the first season of &quot;The Wire&quot; (BBC 2 are showing all 5 series back-to-back!) reading up on web-design techniques:&lt;/p&gt;
</content:encoded></item><item><title>Reading Half-Marathon</title><link>https://andrewhudson.dev/blog/reading-half-marathon/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/reading-half-marathon/</guid><pubDate>Mon, 30 Mar 2009 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;That finishing line brings only pain and aching limbs but getting there was first fun then tiring then enduring then exhausting. Still I managed to reach the finish line and before the race, after doing less training than I have ever done before a half-marathon (by a huge margin), I would be happy to reach the finish line. The weather was fantastic. Blue skies, a slight breeze and warm temperature (not too hot). The first 4 miles were good fun, I was enjoying the event and enjoying the music that I was listening to. Not rushing, just keeping myself moving at a standard pace. At 4 miles I needed the loo but there was no toilet until the 10k mark. I kept going as I knew I had to. The atmosphere was amazing, even though I had music in my ears and sunglasses over my eyes I was smiling knowing that there were many many thousands supporting the 16,000+ participants, some making music or holding signs supporting friends family and lovers, others just enjoying the multi-coloured parade of people whooshing past their feet. Anyway, after 10k there was a toilet and afterwards I was much better for a couple of miles before having to stop again at the next stop. After this I knew that I could get to the finish line and collect my medal. I passed close to my house, going past the Nag&apos;s Head where they had a table with beer and pork scratchings (a huge cheer went up when someone grabbed a beer, or pork scratchings!). The most difficult part was the long long straight road A33 towards the Stadium (where we were to finish) because you could see the stadium but it took a very long time to appear. Anyway, eventually, it did appear and I made it to the finish line. One Hour fifty-One. The slowest ever that I have run 13.1 miles but not the worst. Considering my poor preparation, and lack of fitness going into the race that&apos;s all that I could have possibly hoped for! It was &lt;a href=&quot;http://www.marionmouttou.co.uk&quot;&gt;Marion&apos;s&lt;/a&gt; first ever half-marathon and she completed it and looked rather sexy doing so. Congratulations Marion!&lt;/p&gt;
</content:encoded></item><item><title>Spring Un-Sprung</title><link>https://andrewhudson.dev/blog/spring-un-sprung/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/spring-un-sprung/</guid><pubDate>Wed, 25 Mar 2009 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Good Evening Folks, Sitting here in two jumpers a pair of gloves, scarf, hat and cup of hot tea it&apos;s not that spring-like anymore. Anyway I&apos;ve been ill for the last few days and it&apos;s great to be able to get out of the house, go to work, that kind of thing. Even if it is dull repetitive boring pay-the-bills work. Anyway, I am listening to &lt;a href=&quot;http://www.bbc.co.uk/iplayer/episode/b00j8gjy/International_Radio_1_Istanbul_Turkey/&quot;&gt;Gilles Peterson&apos;s Guide to Istanbul&lt;/a&gt; on my laptop waiting for the food shopping to be delivered. I&apos;d like to recommend a website, if you like global music, called &lt;a href=&quot;http://www.flyglobalmusic.com/fly/index.html&quot;&gt;Fly Global Music&lt;/a&gt;. It&apos;s less than one week until the Reading Half-Marathon and my legs are exceptionally painful when I walk. I went to Lyon on the weekend and a day spent running round the city and then running up the massive hill that overlooks the city all have stretched my legs and caused me much pain for the last couple of days when I manage to walk around. Hopefully they&apos;re better for the race this weekend.&lt;/p&gt;
</content:encoded></item><item><title>Running Along the River</title><link>https://andrewhudson.dev/blog/running-along-the-river/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/running-along-the-river/</guid><pubDate>Wed, 18 Mar 2009 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Good Evening, just back from the second run of the week. This evening I ran along the River Thames to the boat house and back in 33mins. Monday I ran along the river and then through town in 26mins. Today I&apos;m feeling more alive than after Monday&apos;s run. Last night I went to the Berkshire BCS CV Clinic at Reading Town Hall. It was quite useful to speak to the chaps there, and I have taken many points from the evening.&lt;/p&gt;
</content:encoded></item><item><title>Lent Begins!</title><link>https://andrewhudson.dev/blog/lent-begins/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/lent-begins/</guid><pubDate>Wed, 25 Feb 2009 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;strong&gt;Now something totally different&lt;/strong&gt;: Lent. Not a believer in any god or religion but full of belief that too much of one thing doesn&apos;t do you any good, I am giving up chocolate and crisps for lent. For the last I don&apos;t know how long Marion and I have been eating too much sweet food. We watch a film and have some chocolate, we feel like baking and make some chocolate chip chocolate muffins or brownies or something sweet, we go to visit a town and what&apos;s the number one priority: find some cafe with a good selection of cakes hot chocolate and sweets. Not good if you do it all the time! So we&apos;re giving up chocolate from today until Easter Sunday (40 days away). Marion is giving up chocolate, having alcohol except on special occasions. I am giving up chocolate and crisps, and having sweet deserts except on special occasions. Check back for more updates! &lt;strong&gt;Kidderminster&lt;/strong&gt;. Tonight I take the train to Kidderminster for the next part of my Masters CIW training course. I am now on CIW Foundations (part 3 out of 5) which deals with the basics of web-design, re-covers networking, and introduces project management. Hopefully I will arrive in time to see some football in a pub. A couple of days away from work, it seems as though all my holiday has been taken away by going on these IT courses in Kidderminster, will be good and nice to relax on the train and get some reading done. &lt;strong&gt;Football&lt;/strong&gt;. It&apos;s Champions League week this week (quarter finals first leg) and last night ManU drew with Inter in Milan. It was a great game but ManU should have taken a few goals back to Manchester for the return leg in two weeks. The first half was a lot better in terms of possession and chances for ManU (how did they not score?) but then in the second-half Inter got back into the game and had a few chances themselves. ManU, however, should have scorred with the final kick of the game from a free-kick from Ronaldo which (luckily for the keeper who hadn&apos;t seen the flight of the ball) was at the keeper. I watched it round my friend Cesar&apos;s house, cheers Cesar for the beer and pizza! Tonight it&apos;s: Chelsea v Juventus Villarreal v Panathinaikos Sporting Lisbon v Bayern Munich Real Madrid v Liverpool &lt;strong&gt;Running&lt;/strong&gt;. I&apos;ve not been running in a couple of weeks. Lazy me. But I will go running soon I promise. It&apos;s a viscious cycle when you stop running. You want to go and you feel that you need to go but you feel that the days since you went running last are counting against you in some mad crazy way. Plus it&apos;s sometimes easier just to stay inside and not go running. Now it&apos;s getting lighter and lighter in the evenings the excuse or reason that I was too tired at work to go running is becoming non-valid so I can go running along the river in my evenings after work. I much prefer going running in clean air along a river, than along a canal and along roads (as I do at work). We&apos;ll see how I get on in the next few weeks!&lt;/p&gt;
</content:encoded></item><item><title>almost the weekend</title><link>https://andrewhudson.dev/blog/almost-the-weekend/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/almost-the-weekend/</guid><pubDate>Thu, 12 Feb 2009 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Sitting here reminiscing on the week gone past it&apos;s safe to say that I&apos;m knackered. Marion&apos;s parents came to visit us (their first time to the new house) Friday to Tuesday. We visited London and Windsor and Reading. My Parents got to meet Marion&apos;s parents, they got to meet my brother. Full action packed weekend! &lt;strong&gt;Sat:&lt;/strong&gt; Wow what a hang-over. Last night spent wishing Keryn a farewell, we went to Oakford Social Club then Purple Turtle. Too much drink in too short a time, Sat morning was difficult! Trains to Oxford replaced by bus so had to re-think and decided on Windsor instead. Brilliant bright blue sunny day, bloody cold though. Took the train and arrived at lunchtime and walked around, then out into Windsor Great Park along the Great Walk. Back towards town and a late lunch in any pub we could find. More shops to see and then back to see my Parents in Sandhurst. This the first time all 4 of them were together (last summer Marion&apos;s Mum met my parents) and it was a delicious evening, with lots of food and great company. To finish off we played Arsehole (or trou-du-cul), then skated on ice home. &lt;strong&gt;Sun:&lt;/strong&gt; We walked around the sights of Reading (along the river and through town, stopping off at the excellent &lt;a href=&quot;http://www.yelp.co.uk/biz/picnic-foods-reading&quot;&gt;Picnic&lt;/a&gt; for some warm soup (it was bloody raining and freezing outside). My &lt;a href=&quot;http://www.rob-hudson.com/&quot;&gt;brother&lt;/a&gt;also came to have a cuppa and meet the parents on Sunday too. In the eve we had take-away curry and watched &quot;Breakfast at Tiffanys&quot;. &lt;strong&gt;Mon:&lt;/strong&gt; A day to see London. A very wet day not to venture out of the house unless totally necessary. No choice but to brave the conditions and go into London. First stop was the &lt;a href=&quot;http://www.tate.org.uk/modern/&quot;&gt;Tate Modern&lt;/a&gt; although I&apos;d seen the normal exhibitions before it was good to go again, to see the strange weird and demenous paintings. I love the Tate Modern! Lunch in a pub by the river then walked towards Covent Garden along Fleet Street and into the Twinnings shop. We also took in Ben&apos;s Cookies, China Town, Leicester Square and then finally, made it back to the train towards home. Knackered and cold. More curry and &quot;A Life of Brian&quot; for more britanica for our foreign guests. What a fantastic weekend!&lt;/p&gt;
</content:encoded></item><item><title>Running</title><link>https://andrewhudson.dev/blog/running-2/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/running-2/</guid><pubDate>Thu, 05 Feb 2009 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Yesterday [04.02.09] Second bridge along the canal. Some snow (in the shade) and some slush, but was great to get out there running. Seriously need some new headphones as the left headphone is just distortion whenever there&apos;s any bass. Fortunately I have ordered a pair of Grado iGrado phones which should arrive this week!&lt;/p&gt;
</content:encoded></item><item><title>snowing melting</title><link>https://andrewhudson.dev/blog/snowing-melting/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/snowing-melting/</guid><pubDate>Thu, 05 Feb 2009 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;wow, another white morning. &lt;a href=&quot;http://www.marionmouttou.co.uk&quot;&gt;Marion&lt;/a&gt; gets the day off of work because people cannot get to work but I have to now go outside in the wet slushy snow and cycle to work. I cannot wait!&lt;/p&gt;
</content:encoded></item><item><title>Sunday Night Live</title><link>https://andrewhudson.dev/blog/sunday-night-live/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/sunday-night-live/</guid><pubDate>Sun, 01 Feb 2009 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Jazzanova. Gilles Peterson. Snow. Cool. Yeh it&apos;s Sunday night and the weekend is over. So what. Spent most of the weekend studying. Almost finished the second book of the CIW Foundations course, final chapter on e-commerce to read then it&apos;s on to the Networking book. Friday night Marion and I went to Hobgobblin for a pint then to the cinema to see &lt;a href=&quot;http://www.imdb.com/title/tt1010048/&quot;&gt;Slumdog Millionaire&lt;/a&gt; which we both really enjoyed. Managed to stay inside all Saturday but did the cleaning and re-arranged the lounge so DVD now on hifi (so good for playing films through speakers, and also for playing CDs on hifi. We don&apos;t have a CD player you see, just internet radio, and an MD player, so playing the many CDs that I have lying round the place was impossible (unless burned onto computer and streamed through the internet radio). It&apos;s much nicer to play and hear CDs from the CD-player rather than the computer. Don&apos;t you think? Listening now to &lt;a href=&quot;http://www.bbc.co.uk/radio1/gillespeterson/&quot;&gt;Gilles Peterson&lt;/a&gt;&apos;s show (from last Thurs). Yes. Now. This evening, I am making chocolate chocolate chip nut muffins. They&apos;re out of the oven and cooling down. I smell their smell on my fingers. Ate too much of the dough so not really hungry at the moment to be honest. That&apos;s the cooks&apos; right, to eat the cooking before it&apos;s made. Which is why I love making deserts because one can eat the food before it&apos;s made. It snowed. For a few minutes. Now going to eat some noodles then to try the muffins. Adios!&lt;/p&gt;
</content:encoded></item><item><title>Clouds and Aeroplanes</title><link>https://andrewhudson.dev/blog/clouds-and-aeroplanes/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/clouds-and-aeroplanes/</guid><pubDate>Thu, 22 Jan 2009 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;for &lt;a href=&quot;http://www.rob-hudson.com/&quot;&gt;my bro&lt;/a&gt; and all those interested in streaming radio over the internet, this is an article about &lt;a href=&quot;http://www.guardian.co.uk/technology/2009/jan/22/digitalmusic-drm&quot;&gt;cloud music&lt;/a&gt; (e.g. live.fm, pandora, deezer). i.e. music which is streamed from the internet. Is this the solution to online music piracy?&lt;/p&gt;
</content:encoded></item><item><title>Obama the 44th President</title><link>https://andrewhudson.dev/blog/obama-the-44th-president/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/obama-the-44th-president/</guid><pubDate>Tue, 20 Jan 2009 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Out goes Bush the second, in comes Obama. Here&apos;s the &lt;a href=&quot;http://news.bbc.co.uk/1/hi/world/americas/obama_inauguration/7840646.stm&quot;&gt;inauguration speech&lt;/a&gt;.&lt;/p&gt;
</content:encoded></item><item><title>Sackboy</title><link>https://andrewhudson.dev/blog/sackboy/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/sackboy/</guid><pubDate>Tue, 20 Jan 2009 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;is what everyone really needs on a cold Tuesday morning. &lt;a href=&quot;http://www.flickr.com/photos/ldodds/&quot;&gt;thanks idodds&lt;/a&gt;. ggggGoing to work now.&lt;/p&gt;
</content:encoded></item><item><title>from scribefire with love</title><link>https://andrewhudson.dev/blog/from-scribefire-with-love-2/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/from-scribefire-with-love-2/</guid><pubDate>Sun, 18 Jan 2009 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;hands even colder than earlier. now trying out &lt;a href=&quot;http://www.scribefire.com&quot;&gt;scribefire&lt;/a&gt; utlity for blogging to my wordpress blog from firefox (rather than logging in everytime onto my blog). Other ways of posting include using a 3rd party tool such as w.bloggar (for windows) or drivel (for linux), and also posting by email. I will try all of these options and get back to you.
have you heard of &lt;a href=&quot;http://player.tsfjazz.com/?p=mp3&quot;&gt;TSF Jazz&lt;/a&gt;? Bloody awesome!&lt;/p&gt;
</content:encoded></item><item><title>Sunday morning Winds</title><link>https://andrewhudson.dev/blog/sunday-morning-winds/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/sunday-morning-winds/</guid><pubDate>Sun, 18 Jan 2009 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Good afternoon. Cold air returns to Reading. Just back from Sainsburys to stock up on milk and something for dinner tonight, and this week&apos;s &lt;a href=&quot;http://observer.guardian.co.uk/&quot;&gt;Observer&lt;/a&gt;. This morning, as well as finishing the first book of CIW Foundations, I cleaned downstairs and talked to my bro, who&apos;s now at work. Going to have lunch now.&lt;/p&gt;
</content:encoded></item><item><title>kid cudi</title><link>https://andrewhudson.dev/blog/kid-cudi/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/kid-cudi/</guid><pubDate>Sat, 17 Jan 2009 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;a href=&quot;http://www.myspace.com/kidcudi&quot;&gt;kid cudi&lt;/a&gt; &lt;a href=&quot;http://www.myspace.com/essiejain&quot;&gt;Essie Jain&lt;/a&gt;&lt;/p&gt;
</content:encoded></item><item><title>ManU Top!</title><link>https://andrewhudson.dev/blog/manu-top/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/manu-top/</guid><pubDate>Sat, 17 Jan 2009 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Last week has been non-stop and knackering. I went running twice and recieved a Squeezebox Duet (for internet radio - it&apos;s fantastic!) and my pc died. Otherwise life is good! Good news: ManU are top of the Premiership for the first time this season having just beaten Bolton 1-0 in the final minute of the game. Liverpool play Everton on Mon and can go back top if they win. Tis an easy Saturday. Marion is in Macclesfield with her friends from France. I am home studying. Catching up with my course after the holidays. Almost finished the first book now. Just topics on Project Management and Security to go. Hopefully the second and third books will be more interesting. Last night I finished a book which is about the river Yangtze in China &quot;&lt;a href=&quot;http://www.amazon.co.uk/River-Centre-World-Journey-Yangtze/dp/0140249125&quot;&gt;The River at the Center of the World&lt;/a&gt;&quot; by Simon Winchester. In my opinion was great at the end and slow plodding at the beginning. Like the river perhaps! Well worth a read if you are either interested in China or Rivers, or both! Tonight I will carry on with my studies.&lt;/p&gt;
</content:encoded></item><item><title>password protection, testing #1</title><link>https://andrewhudson.dev/blog/password-protection-testing-1/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/password-protection-testing-1/</guid><pubDate>Sat, 17 Jan 2009 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;grrrrreat... a way to stop your boss and prospective other nosy-dozy folks from reading your intimate secrets (if you ever post them on the internet). Password protection.&lt;/p&gt;
</content:encoded></item><item><title>having a great and relaxing weekend!</title><link>https://andrewhudson.dev/blog/having-a-great-and-relaxing-weekend/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/having-a-great-and-relaxing-weekend/</guid><pubDate>Sun, 11 Jan 2009 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;sitting here with Marion and setting up her first wordpress blog.&lt;/p&gt;
</content:encoded></item><item><title>Drowned in Sound&apos;s Top 50 Albums of 2008</title><link>https://andrewhudson.dev/blog/dis2008top50/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/dis2008top50/</guid><pubDate>Sat, 03 Jan 2009 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;happy new year to you all!&lt;/p&gt;
&lt;h1&gt;DiS&apos; Top 50 of 2008 in full:&lt;/h1&gt;
&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;M83&lt;/strong&gt; &lt;em&gt;Saturdays=Youth&lt;/em&gt; (&lt;a href=&quot;http://drownedinsound.com/releases/13092/reviews/3201145&quot;&gt;Review&lt;/a&gt; / &lt;a href=&quot;http://drownedinsound.com/in_depth/3171771&quot;&gt;Interview&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Frightened Rabbit&lt;/strong&gt; &lt;em&gt;The Midnight Organ Fight&lt;/em&gt; (&lt;a href=&quot;http://www.drownedinsound.com/releases/13186/reviews/3158449&quot;&gt;Review&lt;/a&gt; / &lt;a href=&quot;http://www.drownedinsound.com/in_depth/2698041&quot;&gt;Interview&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Cut Copy&lt;/strong&gt; &lt;em&gt;In Ghost Colours&lt;/em&gt; (&lt;a href=&quot;http://www.drownedinsound.com/releases/13031/reviews/3241579&quot;&gt;Review&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Nick Cave And The Bad Seeds&lt;/strong&gt; &lt;em&gt;DIG, LAZARUS, DIG!!!&lt;/em&gt; (&lt;a href=&quot;http://www.drownedinsound.com/releases/13037/reviews/3040664&quot;&gt;Review&lt;/a&gt; / &lt;a href=&quot;http://www.drownedinsound.com/in_depth/3011806&quot;&gt;Interview&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Deerhunter&lt;/strong&gt; &lt;em&gt;Microcastle&lt;/em&gt; (&lt;a href=&quot;http://www.drownedinsound.com/releases/13649/reviews/3880869&quot;&gt;Review&lt;/a&gt; / &lt;a href=&quot;http://www.drownedinsound.com/in_depth/3766427?relevant&quot;&gt;Interview&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Portishead&lt;/strong&gt; &lt;em&gt;Third&lt;/em&gt; (&lt;a href=&quot;http://www.drownedinsound.com/releases/13067/reviews/3158523&quot;&gt;Review&lt;/a&gt; / &lt;a href=&quot;http://www.drownedinsound.com/in_depth/3115790&quot;&gt;Interview 1&lt;/a&gt; | &lt;a href=&quot;http://www.drownedinsound.com/in_depth/3119693&quot;&gt;2&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Why?&lt;/strong&gt; &lt;em&gt;Alopecia&lt;/em&gt; (&lt;a href=&quot;http://drownedinsound.com/releases/12968/reviews/3017704&quot;&gt;Review&lt;/a&gt; / &lt;a href=&quot;http://drownedinsound.com/in_depth/2913866&quot;&gt;Interview&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Friendly Fires&lt;/strong&gt; &lt;em&gt;Friendly Fires&lt;/em&gt; (&lt;a href=&quot;http://drownedinsound.com/releases/13647/reviews/3867751&quot;&gt;Review&lt;/a&gt; / &lt;a href=&quot;http://drownedinsound.com/in_depth/3991661&quot;&gt;Track-by-Track&lt;/a&gt; / &lt;a href=&quot;http://drownedinsound.com/in_depth/2687453&quot;&gt;Interview&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;The Kills&lt;/strong&gt; &lt;em&gt;Midnight Boom&lt;/em&gt; (&lt;a href=&quot;http://www.drownedinsound.com/releases/12971/reviews/3023264&quot;&gt;Review&lt;/a&gt; / &lt;a href=&quot;http://drownedinsound.com/in_depth/3044344&quot;&gt;Interview&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Bon Iver&lt;/strong&gt; &lt;em&gt;For Emma, Forever Ago&lt;/em&gt; (&lt;a href=&quot;http://www.drownedinsound.com/releases/12963/reviews/3167685&quot;&gt;Review&lt;/a&gt; / &lt;a href=&quot;http://www.drownedinsound.com/in_depth/3254968&quot;&gt;Interview&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Fuck Buttons&lt;/strong&gt; &lt;em&gt;Street Horrrsing&lt;/em&gt; (&lt;a href=&quot;http://www.drownedinsound.com/releases/12725/reviews/3029557&quot;&gt;Review&lt;/a&gt; / &lt;a href=&quot;http://www.drownedinsound.com/in_depth/2025281&quot;&gt;Interview&lt;/a&gt; / &lt;a href=&quot;http://www.drownedinsound.com/in_depth/3010921&quot;&gt;Tour Diary&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Foals&lt;/strong&gt; &lt;em&gt;Antidotes&lt;/em&gt; (&lt;a href=&quot;http://www.drownedinsound.com/releases/12499/reviews/2935750&quot;&gt;Review&lt;/a&gt; / &lt;a href=&quot;http://www.drownedinsound.com/in_depth/3903204&quot;&gt;Interview&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Gang Gang Dance&lt;/strong&gt; &lt;em&gt;Saint Dymphna&lt;/em&gt; (&lt;a href=&quot;http://www.drownedinsound.com/releases/13802/reviews/4135932&quot;&gt;Review&lt;/a&gt; / &lt;a href=&quot;http://www.drownedinsound.com/in_depth/4135482&quot;&gt;Interview&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Elbow&lt;/strong&gt; &lt;em&gt;The Seldom Seen Kid&lt;/em&gt; (&lt;a href=&quot;http://www.drownedinsound.com/releases/12949/reviews/3020189&quot;&gt;Review&lt;/a&gt; / &lt;a href=&quot;http://www.drownedinsound.com/in_depth/3418851&quot;&gt;Interview&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Crystal Castles&lt;/strong&gt; &lt;em&gt;Crystal Castles&lt;/em&gt; (&lt;a href=&quot;http://www.drownedinsound.com/releases/12987/reviews/3219702&quot;&gt;Review&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Shearwater&lt;/strong&gt; &lt;em&gt;Rook&lt;/em&gt; (&lt;a href=&quot;http://www.drownedinsound.com/releases/13248/reviews/3443607&quot;&gt;Review&lt;/a&gt;/ &lt;a href=&quot;http://www.drownedinsound.com/in_depth/4135796&quot;&gt;Track-by-Track&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Sigur RÃ³s&lt;/strong&gt; &lt;em&gt;MeÃ° suÃ° Ã­ eyrum viÃ° spilum endalaust&lt;/em&gt; (&lt;a href=&quot;http://www.drownedinsound.com/releases/13448/reviews/3470340&quot;&gt;Review&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Of Montreal&lt;/strong&gt; &lt;em&gt;Skeletal Lamping&lt;/em&gt; (&lt;a href=&quot;http://www.drownedinsound.com/releases/13695/reviews/4069659&quot;&gt;Review&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Los Campesinos!&lt;/strong&gt; &lt;em&gt;Hold On Now, Youngster&lt;/em&gt; (&lt;a href=&quot;http://www.drownedinsound.com/releases/12600/reviews/2945463&quot;&gt;Review&lt;/a&gt;) / &lt;em&gt;We Are Beautiful, We Are Doomed&lt;/em&gt; (&lt;a href=&quot;http://www.drownedinsound.com/releases/13642/reviews/4135432&quot;&gt;Review&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;These New Puritans&lt;/strong&gt; &lt;em&gt;Beat Pyramid&lt;/em&gt; (&lt;a href=&quot;http://www.drownedinsound.com/releases/12383/reviews/2834483&quot;&gt;Review&lt;/a&gt; / &lt;a href=&quot;http://www.drownedinsound.com/in_depth/2796680&quot;&gt;Interview&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;No Age&lt;/strong&gt; &lt;em&gt;Nouns&lt;/em&gt; (&lt;a href=&quot;http://www.drownedinsound.com/releases/13262/reviews/3217155&quot;&gt;Review&lt;/a&gt; / &lt;a href=&quot;http://www.drownedinsound.com/in_depth/3223222&quot;&gt;Track-by-Track&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Santogold&lt;/strong&gt; &lt;em&gt;Santogold&lt;/em&gt; (&lt;a href=&quot;http://www.drownedinsound.com/releases/13223/reviews/3276552&quot;&gt;Review&lt;/a&gt; / &lt;a href=&quot;http://www.drownedinsound.com/in_depth/2591761&quot;&gt;Interview&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Nine Inch Nails&lt;/strong&gt; &lt;em&gt;The Slip&lt;/em&gt; (&lt;a href=&quot;http://www.drownedinsound.com/releases/13427/reviews/3372026&quot;&gt;Review&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Okkervil River&lt;/strong&gt; &lt;em&gt;The Stand Ins&lt;/em&gt; (&lt;a href=&quot;http://www.drownedinsound.com/releases/13716/reviews/4135148&quot;&gt;Review&lt;/a&gt; / &lt;a href=&quot;http://www.drownedinsound.com/in_depth/4135766&quot;&gt;Interview 1&lt;/a&gt; / &lt;a href=&quot;http://www.drownedinsound.com/in_depth/4135767&quot;&gt;2&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Late Of The Pier&lt;/strong&gt; &lt;em&gt;Fantasy Black Channel&lt;/em&gt; (&lt;a href=&quot;http://www.drownedinsound.com/releases/13581/reviews/3727733&quot;&gt;Review&lt;/a&gt; / &lt;a href=&quot;http://www.drownedinsound.com/in_depth/3976584&quot;&gt;Track-by-Track&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Hauschka&lt;/strong&gt; &lt;em&gt;Ferndorf&lt;/em&gt; (&lt;a href=&quot;http://www.drownedinsound.com/releases/13690/reviews/4063550&quot;&gt;Review&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;TV On The Radio&lt;/strong&gt; &lt;em&gt;Dear Science&lt;/em&gt; (&lt;a href=&quot;http://www.drownedinsound.com/releases/13689/reviews/4058958&quot;&gt;Review&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;MGMT&lt;/strong&gt; &lt;em&gt;Oracular Spectacular&lt;/em&gt; (&lt;a href=&quot;http://www.drownedinsound.com/releases/12592/reviews/3030200&quot;&gt;Review&lt;/a&gt; / &lt;a href=&quot;http://www.drownedinsound.com/in_depth/3016339&quot;&gt;Interview&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Wild Beasts&lt;/strong&gt; &lt;em&gt;Limbo, Panto&lt;/em&gt; (&lt;a href=&quot;http://www.drownedinsound.com/releases/13405/reviews/3393572&quot;&gt;Review&lt;/a&gt; / &lt;a href=&quot;http://www.drownedinsound.com/in_depth/3344750&quot;&gt;Interview 1&lt;/a&gt; / &lt;a href=&quot;http://www.drownedinsound.com/in_depth/1710512&quot;&gt;2&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Atlas Sound&lt;/strong&gt; &lt;em&gt;Let The Blind Lead Those Who Can See But Cannot Feel&lt;/em&gt; (&lt;a href=&quot;http://www.drownedinsound.com/releases/12874/reviews/2942762&quot;&gt;Review&lt;/a&gt; / &lt;a href=&quot;http://www.drownedinsound.com/in_depth/2898133&quot;&gt;Interview&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;White Williams&lt;/strong&gt; &lt;em&gt;Smoke&lt;/em&gt; (&lt;a href=&quot;http://www.drownedinsound.com/releases/13123/reviews/3255465&quot;&gt;Review&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;The Stills&lt;/strong&gt; &lt;em&gt;Oceans Will Rise&lt;/em&gt; (&lt;a href=&quot;http://www.drownedinsound.com/news/3406580&quot;&gt;Review&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Mogwai&lt;/strong&gt; &lt;em&gt;The Hawk Is Howling&lt;/em&gt; (&lt;a href=&quot;http://www.drownedinsound.com/releases/13679/reviews/4059921&quot;&gt;Review&lt;/a&gt; / &lt;a href=&quot;http://www.drownedinsound.com/in_depth/2302848&quot;&gt;Interview&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Vampire Weekend&lt;/strong&gt; &lt;em&gt;Vampire Weekend&lt;/em&gt; (&lt;a href=&quot;http://www.drownedinsound.com/releases/12603/reviews/2858648&quot;&gt;Review&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;The Futureheads&lt;/strong&gt; &lt;em&gt;This Is Not The World&lt;/em&gt; ( &lt;a href=&quot;http://www.drownedinsound.com/releases/13366/reviews/3313063&quot;&gt;Review&lt;/a&gt; / &lt;a href=&quot;http://www.drownedinsound.com/in_depth/3354495&quot;&gt;Track-by-Track&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Bloc Party&lt;/strong&gt; &lt;em&gt;Intimacy&lt;/em&gt; (&lt;a href=&quot;http://www.drownedinsound.com/releases/13650/reviews/3899494&quot;&gt;Review&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;The Raveonettes&lt;/strong&gt; &lt;em&gt;Lust, Lust, Lust&lt;/em&gt; (&lt;a href=&quot;http://www.drownedinsound.com/releases/11823/reviews/2643368&quot;&gt;Review&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Johnny Foreigner&lt;/strong&gt; &lt;em&gt;Waited Up &apos;Til It Was Light&lt;/em&gt; (&lt;a href=&quot;http://www.drownedinsound.com/releases/13365/reviews/3379394&quot;&gt;Review&lt;/a&gt; / &lt;a href=&quot;http://www.drownedinsound.com/in_depth/3284105&quot;&gt;Track-by-Track&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;El Guincho&lt;/strong&gt; &lt;em&gt;Alegranza&lt;/em&gt; (&lt;a href=&quot;http://www.drownedinsound.com/releases/12721/reviews/2876293&quot;&gt;Review&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Metronomy&lt;/strong&gt; &lt;em&gt;Nights Out&lt;/em&gt; (&lt;a href=&quot;http://www.drownedinsound.com/releases/13662/reviews/4018215&quot;&gt;Review&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Lykke Li&lt;/strong&gt; &lt;em&gt;Youth Novels&lt;/em&gt; (&lt;a href=&quot;http://www.drownedinsound.com/releases/13298/reviews/3421034&quot;&gt;Review&lt;/a&gt; / &lt;a href=&quot;http://www.drownedinsound.com/in_depth/3197736&quot;&gt;Interview&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Islands&lt;/strong&gt; &lt;em&gt;Arms Way&lt;/em&gt; (&lt;a&gt;Review&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;British Sea Power&lt;/strong&gt; &lt;em&gt;Do You Like Rock Music?&lt;/em&gt; (&lt;a href=&quot;http://www.drownedinsound.com/releases/11798/reviews/2779447&quot;&gt;Review&lt;/a&gt;/ &lt;a href=&quot;http://www.drownedinsound.com/in_depth/2785923&quot;&gt;Interview&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Fucked Up&lt;/strong&gt; &lt;em&gt;The Chemistry of Common Life&lt;/em&gt; (&lt;a href=&quot;http://www.drownedinsound.com/releases/13768/reviews/4135678&quot;&gt;Review&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Fleet Foxes&lt;/strong&gt; &lt;em&gt;Fleet Foxes&lt;/em&gt; (&lt;a href=&quot;http://www.drownedinsound.com/releases/13436/reviews/3487791&quot;&gt;Review&lt;/a&gt; / &lt;a href=&quot;http://www.drownedinsound.com/in_depth/3442778&quot;&gt;Interview&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Blood Red Shoes&lt;/strong&gt; &lt;em&gt;Box Of Secrets&lt;/em&gt; (&lt;a href=&quot;http://www.drownedinsound.com/releases/13045/reviews/3180535&quot;&gt;Review&lt;/a&gt; / &lt;a href=&quot;http://www.drownedinsound.com/in_depth/3146040&quot;&gt;Track-by-Track&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Rolo Tomassi&lt;/strong&gt; &lt;em&gt;Hysterics&lt;/em&gt; (&lt;a href=&quot;http://www.drownedinsound.com/releases/13508/reviews/4129099&quot;&gt;Review&lt;/a&gt;/ &lt;a href=&quot;http://www.drownedinsound.com/in_depth/3874559&quot;&gt;Interview&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Times New Viking&lt;/strong&gt; &lt;em&gt;Rip It Off&lt;/em&gt; (&lt;a href=&quot;http://www.drownedinsound.com/releases/12814&quot;&gt;Review&lt;/a&gt; / &lt;a href=&quot;http://www.drownedinsound.com/in_depth/3410028&quot;&gt;Interview&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Diamanda Galas&lt;/strong&gt; &lt;em&gt;Guilty Guilty Guilty&lt;/em&gt; (&lt;a href=&quot;http://www.drownedinsound.com/releases/13112/reviews/3252064&quot;&gt;Review&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;I Was A Cub Scout&lt;/strong&gt; &lt;em&gt;I Want You To Know That There Is Always Hope&lt;/em&gt; (&lt;a href=&quot;http://www.drownedinsound.com/releases/12627/reviews/2898847&quot;&gt;Review&lt;/a&gt; / &lt;a href=&quot;http://www.drownedinsound.com/in_depth/2888231&quot;&gt;Interview&lt;/a&gt;)&lt;/li&gt;
&lt;/ol&gt;
</content:encoded></item><item><title>back from Frankfurt!</title><link>https://andrewhudson.dev/blog/back-from-frankfurt/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/back-from-frankfurt/</guid><pubDate>Mon, 15 Dec 2008 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Hello. been to Frankfurt for 3 days to visit my friend Christine and her fiancee Marcus. Had a great time there. Will write more soon!&lt;/p&gt;
</content:encoded></item><item><title>an IT tech!</title><link>https://andrewhudson.dev/blog/an-it-tech/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/an-it-tech/</guid><pubDate>Fri, 21 Nov 2008 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Good morning. the wind is blowing across this friday blue-sky morning. re-partitioning old crappy computer with gparted live. Passed my CompTIA A+ IT Technician Exam with 93%!!! Now can move on to do CIW Foundations section of my course. It&apos;s Friday and I am knackered as it&apos;s been a very long month, a very long week too, with moving house revising and studying for the last exam, French homework and both Marion and I had birthdays too. After the new year life will slow down a bit. Grooving to School of seven bells. Almost time to goto Work. See you later.&lt;/p&gt;
</content:encoded></item><item><title>passed exam!!!</title><link>https://andrewhudson.dev/blog/passed-exam/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/passed-exam/</guid><pubDate>Wed, 19 Nov 2008 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;hi, took CompTIA A+ IT Technician Exam and got 93%!!! So now qualified and can progress onto CIW Associate Training. Glad that it&apos;s out of the way and that I can say Im a tech. Looking forward to the CIW part of the course.&lt;/p&gt;
</content:encoded></item><item><title>K2</title><link>https://andrewhudson.dev/blog/k2/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/k2/</guid><pubDate>Mon, 17 Nov 2008 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Sitting here in the break room for the second of my IT courses. This is CompTIA A+ IT Technician. The B&amp;amp;B I stayed at is cheap and basic, the owners watched TV at high volume till 1130 last night so I am still really tired. Otherwise there are 3 others on my course and it&apos;s quite interesting so far. Wish I were on real holiday as I am pretty knackered recently. Need to go running, and evacuate the stress. Have started doing pressups. Need a haircut. Know of anywhere in Kidderminster?&lt;/p&gt;
</content:encoded></item><item><title>friday morning</title><link>https://andrewhudson.dev/blog/friday-morning/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/friday-morning/</guid><pubDate>Fri, 17 Oct 2008 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Holy shit I forgot to blog about it: I passed my A+ Essentials with 84%!!! Yes I am now learning the A+ IT Technician course work and have my next classroom session (and hopefully exam at the same time) in the middle of November! Working on many computers at the same time at the moment. I have been given another computer from a work colleague, so far it&apos;s fast but keeps on crashing. Will persevere a few more times then re-build with Ubuntu or something like that. Currently it has XP. Will be useful for me having a couple of computers so I can practice my networking skills when I get to that part of my course. I am also learning about drupal to make my brother&apos;s website. So far I&apos;ve installed it and have been watching a few video tutorials on youtube about various modules. This week has been busy. Last night we went to see &quot;The Edge of Love&quot; at the cinema. Monday night we found a new place to live (the landlord wants his house back at this place), I&apos;ve been learning my new course, about Drupal and also about PHP when I have the time. Had my French lesson on Wednesday which went well. And and and yes we&apos;re going to move in/out in 2 weeks!&lt;/p&gt;
</content:encoded></item><item><title>huzzah c&apos;est presque le weekend</title><link>https://andrewhudson.dev/blog/huzzah-cest-presque-le-weekend/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/huzzah-cest-presque-le-weekend/</guid><pubDate>Fri, 26 Sep 2008 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;good morning folks, it&apos;s almost the weekend almost the end of september and the sun&apos;s a shining and the blue skies are a blazing. Have started my first ever French course after leaving school, 10 years since dossing through GCSE French (now wished I&apos;d paid more attention to Monsieur Leam and Madame Emmery back in those dark distant school days). So far two lessons done and learning regular and now irregular verbs. It&apos;s coming back and although I know quite a lot of words there&apos;s huge vast space in my vocabulary that remains vacant. So here&apos;s to all those learning French! Come on Bro, you know you want to keep up with me, come on everyone else. Only been running once in September. Studying at lunchtime (french) and studying when I get home (IT) which leaves a small amount of time to talk to Marion, relax and have something to eat. What about at the weekends? We&apos;ll see. I am really missing running. Been listening to a lot of new music lately. Currently &quot;Underground Railroad&quot;. But &quot;Mercury Rev&quot;, &quot;Kings of Leon&quot;, &quot;Metallica&quot; &quot;Gaslight Experience&quot;, some french music: &quot;Tyro&quot;, &quot;les cowboys fringantes&quot;, and recently &quot;doba caracol&quot; which are very good imho.&lt;/p&gt;
</content:encoded></item><item><title>o&apos; course</title><link>https://andrewhudson.dev/blog/o-course/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/o-course/</guid><pubDate>Wed, 03 Sep 2008 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;sitting here in kidderminster on CompTIA A+ Essentials workshop just had first mock exam waiting for the others to finish so can have results. think I need a lot of revision and further work before can take the exam but will see. looking forward to drive home... looking forward to getting home. Update: I passed the mock with 77/100 (needed 70% to pass, will need 75% in real exam) and journey back went well.&lt;/p&gt;
</content:encoded></item><item><title>Re-Turn-Running</title><link>https://andrewhudson.dev/blog/re-turn-running/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/re-turn-running/</guid><pubDate>Tue, 19 Aug 2008 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Back to running for 3 weeks now after a prolonged and intermittant winter and spring while I was commuting to and from Walton-on-Thames every working day. Now I cycle to work and can run in the lunchtime because there is a shower and some decent running routes. I have managed 2/3-times a week and every time so far I have tried a different route (6 different routes). I try to alternate between running along the canal (flat, less pollution) and road (more hilly, more cars). The longest route I did was 7.3 miles in 61mins along the canal. Life at work is ok, a bit repetitive for my liking but things can change. Also, people are a bit quiet but again this can change as we are a new team (3 new members in the last 3 weeks!). What we need is some socialising to break down the barriers! Have been watching Olympics and we (UK) are doing really well in the cycling! More potential golds today are in the Men&apos;s Madison (Wiggins and Cavendish) and Men&apos;s (Hoy and Kenny) and Woman&apos;s (Pendleton) Sprint. Have also watched a number of great films: The Bank Job, Hancock and Wanted, Roman Holiday, and The Dark Knight.&lt;/p&gt;
</content:encoded></item><item><title>back </title><link>https://andrewhudson.dev/blog/back/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/back/</guid><pubDate>Mon, 28 Jul 2008 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;back from the first day at the new job. took 20 mins cycle there in the morning and &apos;bout 25 back. The job: well too early to say as only first week but there&apos;s lots of new people, the work is different. No cranky car either! It&apos;s gonna thunder-storm tonight, so very humid&lt;/p&gt;
</content:encoded></item><item><title>100 - one hundred</title><link>https://andrewhudson.dev/blog/100-one-hundred/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/100-one-hundred/</guid><pubDate>Fri, 25 Jul 2008 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;yes so another beautiful day in paradise. this day spent reading in the garden, finishing &quot;Shalimar the Clown&quot; by Salmand Rushdie, last Sunday&apos;s newspaper about films music and books. Yes just did 100 situps as my posture has got to a stage where I need to make it better. Been juggling in the garden, left shoulder really hurts still. Yesterday: cycled on hottest day of year to my parents, 11 miles in 45mins. Along roads and quite often subject to side and face-on winds. Great. Have now found my cycling shorts so ready for next week&apos;s twice daily commute to-from work:) Hot hot hot. Yes so the reason for yesterday&apos;s visit was to see my grandma, and my parents too. M met me there and we helped cook dindins: lasagne and then rhubarb crumble (i made the crumble: 9oz (1/4 white flour, 1/4 wholemeal flour, 1/2 oats), 4.5oz butter, 4.5oz sugar) for topping). Makes huge difference not taking the car every/anywhere and I am liking it very much.&lt;/p&gt;
</content:encoded></item><item><title>TFFT</title><link>https://andrewhudson.dev/blog/tfft/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/tfft/</guid><pubDate>Thu, 24 Jul 2008 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;welcome back to this blog after a day off-line. Tried to upgrade Wordpress (the strings that hold this blog together) from version 2.5.1 to 2.6 but must have got something wrong. So still with 2.5.1 for now.&amp;lt;update&amp;gt; now have upgraded to 2.6 not that difficult really.&amp;lt;/update&amp;gt; Back home after a week in Paris for friends wedding. We took Eurostar last Weds then met up with Didier and Lucie at their home in the suburbs. Thu M and I went into Paris and did some touristy leg-walking, mission number one the Eiffel Tower then mission number 2: find some churros. Both accomplished but the second only just as we almost ran out of energy after walking at least 10km in our search. Fri spent preparing for the marriage and then Sat morning too, before the wedding and eating drinking and partying into early hours. Sun cleaning up then on Monday went to Paris again to walk to Monmartre and then to Line, Jabert and Lisa&apos;s to collect our bags before catching the Eurostar back to UK.&lt;/p&gt;
</content:encoded></item><item><title>Good Morning World</title><link>https://andrewhudson.dev/blog/good-morning-world/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/good-morning-world/</guid><pubDate>Tue, 15 Jul 2008 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;I am now on two week holiday after 8 gruelling months of getting up at 6am, leaving at 6.30 for 1 hour commute, working till 16.30 and then second 1 hour commute before getting home at 17.30. Knackered, Stressed, Violated, Poluted, Hungry. I now have a new job (just three miles each way) in Reading, starting on the 28th of July, and will get there by bike or by running. Yesterday I read a lot, used linux (after installing Ubuntu on the computer my brother&apos;s old computer - cheers &lt;a href=&quot;http://www.rob-hudson.com&quot;&gt;bro&lt;/a&gt;), got infuriated with the noise coming from the knackered fan in said computer (and with Drupal) and set off on my bike to ride to Maplin in search for a replacement fan. The route is the same as I will use for getting to my new job and was really hilly and v.hard work. After finding no suitable fans in the shop I tried a different route home but took a wrong turning and instead of getting the map out I did a bit of high speed exploring, then when knackered got the map out and rode home. In the evening after M had arrived home and we had eaten dinner we watched &lt;a href=&quot;http://www.imdb.com/title/tt0482088/&quot;&gt;&quot;Priceless (hors de prix)&quot;&lt;/a&gt;. Really funny film, Audrey Tautou sexy pouting seductive actress in same vain that Audrey Hepburn was in &quot;Breakfast at Tiffany&apos;s&quot;... which reminds me that I have a whole box-set of Audrey Hepburn films to watch.&lt;/p&gt;
</content:encoded></item><item><title>Cavendish Wins ... rain-rain-rain-rain-rain</title><link>https://andrewhudson.dev/blog/cavendish-wins-rain-rain-rain-rain-rain/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/cavendish-wins-rain-rain-rain-rain-rain/</guid><pubDate>Wed, 09 Jul 2008 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;when is the summer gonna start? today rained from 6am till now (9pm) non-stop. Managed to get out at lunch for a walk with enormous umbrella. Had to re-attach wiper blade on motorway in rain as almost fell off. Cavendish won &lt;a href=&quot;http://www.cyclingnews.com/road/2008/tour08/?id=results/tour085&quot;&gt;stage 5 of the Tour de France&lt;/a&gt;!!! Awesome dude! He has already won 2 stages in the Giro d&apos;Italia earlier this year. Come on GB!!!&lt;/p&gt;
</content:encoded></item><item><title>Killer Run</title><link>https://andrewhudson.dev/blog/killer-run/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/killer-run/</guid><pubDate>Tue, 08 Jul 2008 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Running: Just back from my first run in 2.5 weeks and was great fantastic awesome to kill myself for the name of getting fit, losing weight and generally feeling much bloody better than those sedentary folks. Was just going to do the regular 2 laps of Palmer Park, which to be honest is really dull and boring, but instead I felt like going further and doing something a bit more challanging. So I did &quot;&lt;a href=&quot;http://www.gmap-pedometer.com/?r=2059717&quot;&gt;[Tesco Route - 4.32miles]&lt;/a&gt;&quot; in 32mins with some traffic lights and a stop to do up my laces. Weather was good although quite windy, lots of sun. Shoulders really painful for some reason. Miles Remaining: 540.&lt;/p&gt;
</content:encoded></item><item><title>le week-end</title><link>https://andrewhudson.dev/blog/176/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/176/</guid><pubDate>Fri, 04 Jul 2008 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Friday lunchtime and the weekend beccons, the sunshine dazzles and the blue sky dotted with white fluffy clouds. Been a long week but a short week and another week less before I start my new job, one week less at my current place and only 22 journeys (that&apos;s approx 750 miles) before I can rest the car and get out my bike. Have not run all week although went walking a lot last weekend, several times this week and also to-from town on bike twice too. Went to see Indy 4.0 last night although entertaining it played too much and tried to be humerous. Watch out for the ants. Semi-finals and finals of men and woman&apos;s tennis this weekend. Serena and Roger all the way. Have a good one!&lt;/p&gt;
</content:encoded></item><item><title>music - second try</title><link>https://andrewhudson.dev/blog/music-second-try/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/music-second-try/</guid><pubDate>Thu, 03 Jul 2008 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;a href=&quot;http://www.big-andy.co.uk/music/Pharoahe_Monch-Desire-(Advance)-2007-RAGEMP3/03-pharoahe_monch-desire_(ft._showtime).mp3&quot;&gt;PM&lt;/a&gt;[Pharoahe Monche - Desire : 3m32] &lt;a href=&quot;06-handlebars.mp3&quot;&gt;flobots&lt;/a&gt;[flobots - handlebars]&lt;/p&gt;
</content:encoded></item><item><title>chili</title><link>https://andrewhudson.dev/blog/chili/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/chili/</guid><pubDate>Wed, 02 Jul 2008 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;a href=&quot;http://www.chilefarm.co.uk/growing.html&quot;&gt;How to grow chili from seed&lt;/a&gt;. Yes we&apos;ve got a small chili plant bought from a garden centre and it&apos;s growing quite slowly so this article could provide the solutions.&lt;/p&gt;
</content:encoded></item><item><title>CSS3 and other new stuff</title><link>https://andrewhudson.dev/blog/css3/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/css3/</guid><pubDate>Wed, 02 Jul 2008 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;a href=&quot;http://dbaron.org/log/20080603-new-selectors&quot;&gt;New css3 selectors in Fx 3.1&lt;/a&gt; &lt;a href=&quot;http://acid3.acidtests.org/&quot;&gt;Acid Test&lt;/a&gt; &lt;a href=&quot;http://www.bbc.co.uk/radio/help/faq/development_news.shtml?focuswin&quot;&gt;New Look BBC Radio Online&lt;/a&gt;&lt;/p&gt;
</content:encoded></item><item><title>To Do List</title><link>https://andrewhudson.dev/blog/to-do-list/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/to-do-list/</guid><pubDate>Tue, 01 Jul 2008 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Rob&apos;s Birthday Present + Card - yes I know bro that you&apos;ve still not received it but at least I am thinking of it! &lt;a href=&quot;http://www.opendns.com/&quot;&gt;Open DNS&lt;/a&gt; - see what websites are being accessed from your network. French - learn new words, verbs, basic sentences, practice with M; Running - One foot in front of the other, run! Website - Update and add new content;&lt;/p&gt;
</content:encoded></item><item><title>update</title><link>https://andrewhudson.dev/blog/update/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/update/</guid><pubDate>Mon, 30 Jun 2008 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Monday afternoon and the sun is shining. Weekend just gone was spent with M&apos;s Mum M (also) who visited us from France. We picked up M at Stansted Airport Friday evening through 2 hours of M4 and M25 motorway traffic then easily found M at airport collected car and drove 1.5hours back to home where we got changed then headed out into air and found delicious curry for dinner. Saturday got up sleepy eyed at 10 with fresh brioche smells had brekki in garden then drove beyond Marlow to a place called COokham and a walk along the Thames and round loop in hills above river. Had picnic atop hill views of Red Kites and rabbits and over Thames, v nice! Yes then walk back to car and drove to Henley and walk along and back on river past lock and weir. Ice-cream next to the river in the sun and drive via Tesco to home for BBQ in garden. Extremely tired all go to bed. Sunday again cannot get up at 10.30 but forced as have guest so we have brekki in sunshine in garden! Pack smart clothes, for later, into car and then drive to Virginia Water and walk around the lake admiring the scenes and plants trees and ducks. Almost die of starvation but finally find place on grass in Sun then after play frisbee with M and M before driving to Bishop&apos;s Gate and walking to the Copper Horse in Windsor Great Park with fantastic views of Windsor Castle and deer and planes taking off from Heathrow Airport. In Eve drive to my rents place, after changing in car, and first time M&apos;s mum meets my M&amp;amp;D. Delicious food, good evening! Spain beat Germany in the Euro 2008 final although we don&apos;t see any of it as eating and socialising. Great weeekend! Yes I have just updated wordpress to 2.5.1 which took a while as up-load speed was v. slow. Alas, it;&apos;s done now! Adios for now.&lt;/p&gt;
</content:encoded></item><item><title>Re-track</title><link>https://andrewhudson.dev/blog/re-track/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/re-track/</guid><pubDate>Wed, 25 Jun 2008 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Good afternoon! A week off in sunny Turkey with M and a week back in UK now almost settling back into life again. Great holiday in Marmaris: week of sitting on the beach soaking up the sun just what I needed, still have some of the suntan left as well! Went swimming and walking every day, though the copious amounts of ice-cream and tasty turkish sweets and patisseries balanced that out! Yes went running on Monday evening with M after 2 weeks of non-running. Feels good though looking forward to going at my speed! Have been cycling to and from town regularly in evening, to Persepolis last night and to-from town plenty of times on the weekend. &lt;a href=&quot;http://freemind.sourceforge.net/wiki/index.php/Main_Page&quot;&gt;FreeMind&lt;/a&gt; is the perfect (free) software for organising your to-do list, &lt;a href=&quot;http://www.rob-hudson.com&quot;&gt;Thanks to my brother Rob&lt;/a&gt; (see photo) for showing me wonderful tool!!! M and I, with help from my bro (thanks bro!), are organising the next Pidgeon Walking Weekend and this is the perfect tool for visualising what needs to be done and what to think about. &lt;a href=&quot;http://www.big-andy.co.uk/Photos/Turkey08/&quot;&gt;Here are our Turkey Photos&lt;/a&gt; and hoping to put some more online soon of life and chocolate and sunshine.&lt;/p&gt;
</content:encoded></item><item><title>VVC </title><link>https://andrewhudson.dev/blog/vvc/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/vvc/</guid><pubDate>Fri, 06 Jun 2008 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;In this insipid war-ravaged world writing has become something of a relic of the past when we have excellent music and, with the excellent viral video chart, excellent viral videos, huzzah! Yes so what am I getting at? To be honest I&apos;ve no idea. Have you? &lt;a href=&quot;http://www.viralvideochart.com/&quot;&gt;Viral Video Chart&lt;/a&gt; currently has pork and beans at #1. and this one too Yikes have you seen it? Walking with one humpy mud-yellow sock hanging out of his jeans rear pocket and the other smouldering in the sweat of his right wellington boot (itself caked in last years horrific glastonbury festival boogie mud), stepping one foot before the other and working through the stages to getting up. Up up UP he gets and grabs reluctantly unsuccessfully at the biscuit jar crammed with rockie bars, he wants them so much to dunk into the grisly scank-tea discovered earlier in the microwave (it must have been left over from last night&apos;s poker smoking session he recalls).&lt;/p&gt;
</content:encoded></item><item><title>Soon!</title><link>https://andrewhudson.dev/blog/154/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/154/</guid><pubDate>Thu, 05 Jun 2008 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Yes new camera at last arrived at work in time for the blue skies and sunshine! It&apos;s a &lt;a href=&quot;http://www.dpreview.com/news/0803/08031802panasonicfx500.asp&quot;&gt;Panasonic Lumix DMC-FX500&lt;/a&gt;. 10Mpix; 5x optical zoom; touch-screen control. Looking and feeling very tasty! Yes it&apos;s almost the weeeeekend and next week we are off to Turkey!!! Have you heard the new song by Weezer &lt;a href=&quot;http://www.youtube.com/watch?v=muP9eH2p2PI&quot;&gt;&quot;Pork and Beans&quot;&lt;/a&gt;? Doing the serious viral rounds, great music nice vid too.&lt;/p&gt;
</content:encoded></item><item><title>Rock en Seine</title><link>https://andrewhudson.dev/blog/rock-en-seine/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/rock-en-seine/</guid><pubDate>Thu, 05 Jun 2008 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;a href=&quot;http://www.rockenseine.com/#/home/&quot;&gt;Rock en Seine 2008&lt;/a&gt; August 28/29; Paris, France. Having been previously to Rock en Seine 2006 I can say it&apos;s an amazing festival to goto! Wow yes and what a line-up! Amy Winehouse, Tricky, Racounteurs, Serj (from SOAD), The Roots, JSBE... yes seriously considering this one! Get your tickets from &lt;a href=&quot;http://www.fnacspectacles.com/recherche/rechercheRapide.do?fc=cf&amp;amp;searchCategory=show&amp;amp;search=rock+en+seine&quot;&gt;FNAC.com&lt;/a&gt;.&lt;/p&gt;
</content:encoded></item><item><title>Running in the Turkey Rain</title><link>https://andrewhudson.dev/blog/running-in-the-turkey-rain/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/running-in-the-turkey-rain/</guid><pubDate>Tue, 03 Jun 2008 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;It&apos;s Tue afternoon and the rain continues to fall from the blackish grey sky falling for a few more hours on what should be a sunny and warm June day. This week I am going with M on holiday to Turkey: for 1 week in the sun on the sand in the sea on the beach, soaking up rays of suntan inducing sun enjoying being a tourist in a foreign land! I cannot wait, the last 6 months since Christmas/NY have been long and tiring and I need a proper break. Shocked by the price of diesel last Thu when I filled my car up: Â£73.59 for a tank of 125.9/litre of diesel, up 20p/litre since when I bought the car back in November last year. Shocked. Where is the alternative to using my car? I use my car to get to and from work every day 65 miles a day, 325 miles a week, plus some weekend trips. That&apos;s a lot of money to pay. Option 1. travel to work by train. Yes more cheap (i think it costs Â£60 a week) but takes 3 hours there and back rather than 1.5 when driving and large number of connections mean that if any train is delayed I am very late home or at work. Option 2. Move closer to work. Not realistic at the moment. Option 3. Move job closer to home. Not realistic at the moment. Running: Last night I went out with M after work. Felt initially very low energy from day at work but glad went out. We did the same course apart from the final section. A new &lt;a href=&quot;http://www.gmap-pedometer.com/?r=1954973&quot;&gt;[Uni PP - 3.9miles]&lt;/a&gt; route. M did 3.1 miles and I did 3.9 in 25 and 30mins, respectively. Last week went out with M once (Woodley) and myself (2laps of PP). Have stopped taking the vitamin tablets since beginning (7th) of May and seeing what this makes to us. So far have less energy and more tired, but this could be to do with the amount of things that we are doing. So. Will give it another month or so and see how feeling then!&lt;/p&gt;
</content:encoded></item><item><title>Wednesday or Monday?</title><link>https://andrewhudson.dev/blog/wednesday-or-monday/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/wednesday-or-monday/</guid><pubDate>Wed, 07 May 2008 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Back from 6 days of rest. Been for 6days in Lyon and Nuits St Georges in France for wedding of M&apos;s friends Armelle and Guillaume, to see M&apos;s uni town and meet friends new and old. Had great time, lots of sunshine and good food and wine, now recovering at work breaktime almost hometime and wishing I were back in France. Not going running tonight as it&apos;s my Mum&apos;s b&apos;day and we&apos;re going round for a cuppa tea.&lt;/p&gt;
</content:encoded></item><item><title>Bracknell Half-Marathon</title><link>https://andrewhudson.dev/blog/bracknell-half-marathon/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/bracknell-half-marathon/</guid><pubDate>Tue, 29 Apr 2008 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Yah, wow, mesmerising, aching, happy. On Sunday I raced in the Bracknell Half-Marathon and beat my personal best by 7:08 in a fantastic time of 1:34:54. The first 10miles I took at a steady pace monitoring my time every 3 miles using my bike computer&apos;s clock(note to self :buy decent running watch!). Marion was supporting me on her bike so it was a great surprise everytime I saw her beautiful face, and more motivation for me to get to the finish asap! The course was through the pavements and tracks of bracknell and had a few hills, the course was well marshalled and very well supported throughout. After starting out in murky humid sunshine the run was pleasant and warm until the rain began falling at mile 11 and t-storm and heavy rain accompanied me through miles 12 to the finish... Huzzah! Now I feel great.&lt;/p&gt;
</content:encoded></item><item><title>10k in the Sunshine</title><link>https://andrewhudson.dev/blog/10k-in-the-sunshine/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/10k-in-the-sunshine/</guid><pubDate>Thu, 24 Apr 2008 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Last night: Having skipped the exercise Tue I had to get out, and the sun was shining and the blue skies were beating down on my lab all afternoon so I knew it was going to be an evening of running. 10k. I&apos;d measured a route on Monday online using &lt;a href=&quot;http://www.gmap-pedometer.com/&quot;&gt;Gmap Pedometer&lt;/a&gt; along the road to Sonning and back along the River Thames, via Palmer Park and to home. This &lt;a href=&quot;http://www.gmap-pedometer.com/?r=1832037&quot;&gt;Sonning River&lt;/a&gt; route mixes road running for the first half of the route then running along the river, through grassy meadows for 2.5k then through paths and around Palmer Park up the hill to home. It took 47mins and I stopped 4 times: twice to do shoe-laces up, one to cross traffic lights, one to go for a slash (you get it all here!) on top of a long day at work this is not that bad a time. After having dinner with marion I cycled to Cesar&apos;s to watch the Barca vs. ManU footie game. 0-0 result really exciting and tense Barca dominated the possession but barring ManU&apos;s missed Pen and the odd Barca chance there was little on-goal shooting. ManU&apos;s defense was impecable, and Barca couldn&apos;t penetrate.&lt;/p&gt;
</content:encoded></item><item><title>Back-Front</title><link>https://andrewhudson.dev/blog/back-front/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/back-front/</guid><pubDate>Wed, 23 Apr 2008 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Monday: went running with Marion: two laps of Palmer Park. Pushed her perhaps more than she wanted to be pushed but that&apos;s what running&apos;s all about;) Got this Half-Marathon on Sunday so I want to do more running this week. Last night: felt like sleeping not doing much so didn&apos;t go swimming. Did however goto the pub by bike in evening; really fantastic day so was still warm in evening! Life is expensive at the moment. Going to Twickenham to see the Guinness Premiership Final on 31st May! Tonight ManU play Barca in the semis of the Champions League. Now now now I am at work, and break is over and I gotta go back to work.&lt;/p&gt;
</content:encoded></item><item><title>TFFiF</title><link>https://andrewhudson.dev/blog/120/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/120/</guid><pubDate>Fri, 18 Apr 2008 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;strong&gt;Friday!&lt;/strong&gt; thank fuck for that, Friday has finally arrived. I woke up this morning slightly hungover from last night, bah.Â  Yesterday I went running after work, a new route through Woodley inclusive of a nice hill to start with! Sunshine blazing and wind ripping into me I did the &lt;a href=&quot;http://www.gmap-pedometer.com/?r=1808859&quot;&gt;Woodley 2.8miles&lt;/a&gt; route in ~20mins (much quicker than I imagined) and then jumped into the shower and started cooking for the party. I made banana and apple crumble, then chocolate cookies, and M made quiche and dips and aperatifs. People arrived and we ate talked listened to music and catched up, ate some more and drunk more, then played Jungle Speed (crazy French game). Lots of newbies so not as fast but really funny. Going home now it&apos;s Friday!!!&lt;/p&gt;
</content:encoded></item><item><title>Paint Headache</title><link>https://andrewhudson.dev/blog/118/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/118/</guid><pubDate>Thu, 17 Apr 2008 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Last night I had zero energy thus no running. Bah what a poor excuse, eh, I will try to go out tonight. Have party round our house tonight, and I am cooking cookies and crumble. Yesterday the lab was full of fumes from the painting that was being done to the chemical stores next door to the lab, thus the headache the lack of energy. I enrolled onto the Masters CIW course, had dinner and then watched the first half of &quot;Before the Devil Knows you&apos;re Dead&quot; before catching the zzz&apos;s. Wow yes it&apos;s wonderful sunny outside, just been outside to walk to the newsagents. Had to get out into the fresh air after being trapped in here all day. Party at our house tonight, cooking cookies and crumble will try go running and get legs moving towards the 1/2-marathon on the 27th. Adios Amigos.&lt;/p&gt;
</content:encoded></item><item><link>https://andrewhudson.dev/blog/115/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/115/</guid><pubDate>Mon, 14 Apr 2008 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Following a nasty afternoon at work I jumped into the car and drove home. Into the rain I went and out the other side just before getting back home in the middle of the exit to the roundabout was a police car blocking all onward traffic. This was a place where there were few (if any) routes around so I went back, cut across country and then got stuck in more rush-hour traffic going back into Reading. Arrived home after 90 mins in the car I needed to go out running. After yesterday&apos;s 10k race my legs were a bit stiff so I blasted around PP on the first lap and then coasted for the second. Time: approx 20mins. Distance: 2.6miles.Â  After having a shower I now am feeling much better!&lt;/p&gt;
</content:encoded></item><item><title>Spring!</title><link>https://andrewhudson.dev/blog/spring/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/spring/</guid><pubDate>Mon, 14 Apr 2008 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Spring Is Here! April Showers, Sun, Snow, Furballs, EVERYTHING!!! Yes it&apos;s Monday and I finally get round to up-dating the blog! So what have I been upto since I last wrote? Yesterday I ran a 10k race (Marion ran a 5k race at the same venue). Last weekI signed up to do a Masters CIW course (which begins later this month). I did a First-Aid Course. Been to France for a long-weekend to visit Marion&apos;s brother and parents. Seen lots of films and DVDs (Grindhouse and Son of Rambow last week; 27 Dresses and 13 Going on 30 the week before) and listened to lots of good music (including Radiohead, Adele, Sebastian Tellier; online including Indy103.1 and radioactive.co.nz).&lt;/p&gt;
</content:encoded></item><item><title>Wales Biking</title><link>https://andrewhudson.dev/blog/109/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/109/</guid><pubDate>Fri, 28 Mar 2008 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Friday::: Yes, end of another fast-paced week shortened by Easter and ended by rain and wind. On Monday I went biking with Alejandro and his friend Ramiro to the Look Out. Weather was cool-cold and intermittant snow showers with sunshine bursts what a crazy day! Marion was in Macclesfield at her friend&apos;s Hen Weekend. With A and R we rode for 2 hours on single-track and off-track I getting used to my new Specialized RockHopper and Alejandro still recovering from breaking his arm last year. Ramiro ex-trials was on top form although many of his front spokes came loose. Muuuuuuddddd!!! So much mud! Wheels clogged brakes jammed rims rubbing on the brake blocks. So much water mud splattered everywhere in eyes foot mouth!!! Wow great fun! Will buy proper pedals and shoes for biking as only have flat pedals and old trainers atm. Last night I practiced balancing without moving and wheelies yes. Need lots of practice though could see improvement already! Need to work on this! Is not really nice weather out there now have an hour till I leave for home then either I go running or biking or to sleep. Am really knackered not really getting enough sleep last weekend didn;t help. Right. Rain rain rain falls from the skies. What a crappy day to be a bumble bee. This week: went to cinema tuesday saw The Counterfeiters, last night knackered but I went riding.&lt;/p&gt;
</content:encoded></item><item><title>Exploding Dried Tulips</title><link>https://andrewhudson.dev/blog/exploding-dried-tulips/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/exploding-dried-tulips/</guid><pubDate>Fri, 14 Mar 2008 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Hi Hello Good Afternoon! It&apos;s Friday sunshine dazzles the outerworld while in the innerworld I get ready to go running for the first time along the Thames from Walton Bridge (near work). Since March began I have run Reading Half-Marathon, been to Nottingham and the Peak District, went running with Marion, been to see &quot;The Diving Bell and the Butterfly&quot; at cinema, &quot;Shoot &apos;Em Up&quot; and &quot;The Bourne Ultimatum&quot; on DVD. Huzzah just now they have announced the draw for the 1/4 finals of the Champions League: Arsenal/Liverpool; Roma/ManU; Schalke/Barcelona; Fenerbahce/Chelsea. Wow I cannot wait to see it! Have entered a 10k race in April and going to enter a half-marathon in April. Going to get changed now. See you. [... at home. 1500] Heavy legs, didn&apos;t find the route that I wanted to do... But I feel Great! Great that I went running, that I went running before driving home to a hot shower, great that I tried a new route. I have just entered the Bracknell Half-Marathon on 27th of April to add to the 10k race I am doing on the 13th. Now It&apos;s really the weekend and Marion and I are going to a party tonght then tomorrow into London to have a test of some new bikes, watch the rugger and get some art for the housewalls. Ment to piss down all weekend so w/e will prob involve cinema or DVD too. Yessah! in the morning there were twelve spotted doves walking in a long evenly spaced line down the middle of the street, if one of these white purity peace-keepers were to fall all the morning would be less and I&apos;d have had to go back to bed.&lt;/p&gt;
</content:encoded></item><item><title>Last Week:::</title><link>https://andrewhudson.dev/blog/last-week/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/last-week/</guid><pubDate>Fri, 14 Mar 2008 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Running:: Running with Marion we did &quot;Tesco River&quot; 4.68miles in 50mins. Today I ran from Walton Bridge near work really heavy legs did 33mins. What route? Hahaha, haven&apos;t a clue:) Have entered for 2 races next month: 10k round Dorney Lake on 13th, and Bracknell Half-Marathon on 27th.&lt;/p&gt;
</content:encoded></item><item><title>Running in the Wind</title><link>https://andrewhudson.dev/blog/running-in-the-wind/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/running-in-the-wind/</guid><pubDate>Fri, 25 Jan 2008 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Running:: Just back from the first run of the week. Monday I was ill and Tue Marion and I went to see &quot;4Months, 3Weeks and 2Days&quot; in Oxford. Wednesday I had zero energy or motivation and Thursday Marion and I played 1.5 hours of badminton! With still aching legs courtesy of the badminton last night I ran through Palmer Park to London Road then Kings Road past the Prison and right at The Rising Sun roundabout under the railway; over the next roundabout and before crossing the bridge turn right along the River Thames until it meets the Canal when go over bridge follow canal and then turn left up Cholmeley Road before taking Liverpool Road back to Palmer Park and home. I&apos;ll Call this &quot;River Cholmeley&quot; and it took 36 minutes. I have lost my running watch so I have to use the clock on my mobile for timekeeping. I check it before and when I get back. Not the best accuracy in the world. Was very windy out there. The Thames is very high although there was no water on the footpath this week.&lt;/p&gt;
</content:encoded></item><item><title>Oscars</title><link>https://andrewhudson.dev/blog/oscars/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/oscars/</guid><pubDate>Tue, 22 Jan 2008 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;The nominations for the 80th edition of the Oscars &lt;a href=&quot;http://www.imdb.com/features/rto/2008/oscars&quot;&gt;have been announced&lt;/a&gt;&lt;/p&gt;
</content:encoded></item><item><title>Running Again!</title><link>https://andrewhudson.dev/blog/running-again/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/running-again/</guid><pubDate>Wed, 21 Nov 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Yes so I am back running, three times this week so far and it feels great! With my new Polar Heart Rate Monitor watch I can see how much I am killing myself and exactly how long my runs are (rather than using the clock in the kitchen when I get back through the door as I have been using). Sunday in bloody freezing weather I did WC in 24m20s (Max HR: 200; Av HR: 183). Tuesday I made up a new route comprising lots of hills: Mickle Hill, the road route to Crowthorne and back, through Sandhurst to Rackstraws XR and then double back to home via Wellington Road. I call this &quot;Sandhurst Night Hills&quot; and it took 32m26s (Max HR:203; Av HR:184). Tonight in the horrible drizzle and rain I did another new night run comprising of my running clubs&apos; Handicap route and the to and from home. This I name &quot;Crowthorne Handicap Night&quot; and it took 44m18s (Max HR:185; Av HR:171).&lt;/p&gt;
</content:encoded></item><item><title>A Break</title><link>https://andrewhudson.dev/blog/a-break/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/a-break/</guid><pubDate>Thu, 15 Nov 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Marion (coucou mon amour) is in France, I am doing a clinical trial, I have started a new job, Marion and I have found a new place to live, I am looking to buy a car. Life is extremely hectic at the moment. The travelling is killing me. I travel in the morning to the clinical trial lab to deposit blood and urine, get weighed; then I travel to work via train (35mins) and walking (8 minutes) then I work a full day until 5.30 and walk to the station and catch a couple of trains finally arriving at home at 7pm. Have dinner according to the food diet that I have to follow and then speak to Marion on the fone. Knackered knackered knackered. I need a break. I need to go running. I did go running on Tuesday, 1hr at 11.7kmph on the treadmill for the study. Not proper running outside but hard work running on the treadmill. Never done that before, preferring more to go running in the outside world and feeling the freshness of life on my skin (rain, wind, snow, sunshine, etc!). I have to follow this controlled diet so I am not allowed certain foods, and NO ALCOHOL, I cannot wait until Saturday when I can drink and eat as much of whatever I want to, and go running too!!! Yes!!! Tomorrow night I will go to Reading and meet up with the boys to watch the England footie game vs Austria. No booze for me but it will be good to get out on the town and see friends. Marion and I went to Paris at the start of the month, taking the Eurostar on a Thu evening and arriving at her friends&apos; house via another set of friends. We had a great time, I met with lots of her friends and saw much of the sights of Paris by foot. &lt;a href=&quot;http://www.big-andy.co.uk/Photos/Photos_Paris_Nov2007/&quot;&gt;Here are the fotographs:::&lt;/a&gt; . Great food too, I love French food!!! Especially love patisseries, chocolateries, supermarches, creperies (crepes and nutella are simply devine!!!), and so on :) We stayed at Helene&apos;s place first (she was on holiday) and then were shown the sights of Paris by Line, Jalabert and their 9mth-old baby Lisa. The Eiffel Tower by night is simply stunning (see the fotos!)
&lt;img src=&quot;https://www.big-andy.co.uk/Photos/Photos_Paris_Nov2007/Andrew&apos;s/thumbs/IMG_3068.JPG&quot; alt=&quot;&quot; /&gt; and lisa is soo entertaining! Marion and I went to a restaurant and had simple delicious food. Next day Marion and I went to Monmartre and had crepes for brunch, found Line, Jalabert and Lisa and did more touring. In the evening Marion and I took the sardine train to see another set of her friends Didier and Lucie and we had the most amazing chocolate fondue ever, preceeded by salad and duck. It was great, with fresh fruit just dipping the stuff into the molten chocolate and eating it.!. Choco-holics heaven :) Following morning Marion and I stocked up on French goodies, then to Paris central again via a chinese supermarket for essential foods! We did a walk along the Seine and then had chocolate crepes for lunch. Marion and I then went to see Line Jalabert and Lisa one more time and taste their amazing food. Jalabert owns and runs his restaurant and the food was as you&apos;d expect, sumptious!!! Lisa was very entertaining too!!! Had to get up really early on Mon am to catch the Eurostar back to UK, with just made croissants and pain au chocolat for our brekkies. The best I&apos;ve ever tasted :) Im knackered and will continue the tale next time! Best Wishes, Andrew.&lt;/p&gt;
</content:encoded></item><item><title>To Paris</title><link>https://andrewhudson.dev/blog/to-paris/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/to-paris/</guid><pubDate>Thu, 01 Nov 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Marion and I are going tonight to Paris for a long weekend staying at her friends house looking to see what one of the world&apos;s most amazing cities has to offer and to consume delicious food and drink and soak up the Parisian atmosphere. Wow we need a break from the UK it&apos;s been such a long time since the summer and since we went to France. Times are a changing as I have a new job starting after we get back next week, we are looking for a place together and I am also looking for a car. Wow at the moment I am pretty stressed out but I am sure things will settle down once I have the car sorted. What have we been upto, what have I been upto since the last post? I have had a number of job interviews, I have had a birthday (Happy Birthday Me!!!) and have accepted one of the job offers. I have been running, indeed Marion is also a runner now and goes running 2 times a week lunchtimes at work (just like I did) and we both go swimming together once a week too. Running: yesterday: &quot;Ambarrow Muddy Lane&quot; in 32mins, Tuesday: WC in 24mins. 23-Oct: CBH in 40mins; 25-Oct: Rev-WC in 24mins; 26-Oct: CDN: 43mins.&lt;/p&gt;
</content:encoded></item><item><title>Red Junky Crackhead from Venus</title><link>https://andrewhudson.dev/blog/red-junky-crackhead-from-venus/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/red-junky-crackhead-from-venus/</guid><pubDate>Tue, 16 Oct 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&quot;Kings of Leon - The Runner&quot; on current listen, torrential rain on the glisten outside wow what a nice sound they make! Had a couple of job interviews today, now really tired, have another tomorrow. Started doing situps and pressups but skin a little sore on back as have been doing a lot of them and skin not used to it, hah! Situps good for posture, core stability and also for running form, while pressups are good for the musle, yes! I went running with the running club last night, was slower than last week but we did manage a few fast reps and up some hills too, reason why other people were not up for fast running was that they were racing over the weekend and were tired. Have been invited to the Weds sessions so may check them out in the future! The Weds sessions are longer, 8-10 miles and a continueous pace rather than the looping that happens on the Monday nights. Am very tempted, although will have to do more running and get even faster first! Something to aim for!!! Last week I did the VO2max test (as part of this running trial I am doing) and got a figure of 63.75. Bloody hard work. Went walking with Marion on Sunday, looking for a long route that&apos;s exactly what we did. From here to beyond the Look Out in the woods, then back again, we did 25km (saying the distance in km is much better cos the figure is larger!) and Marion almost killed me when we worked this out! &quot;Were you trying to kill me&quot; she said,,, it&apos;s excellent preparation for the GR20 I think! England are through to the Rugby World Cup Final after narrowly beating France on Saturday. Wow, amazed to think that this is the same squad of players that we watched just last month playing so poorly. Come on England!!!&lt;/p&gt;
</content:encoded></item><item><title>Seeing You</title><link>https://andrewhudson.dev/blog/seeing-you/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/seeing-you/</guid><pubDate>Thu, 04 Oct 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Running: Thurs: &quot;Lakes Dell Lane&quot; in 53mins. Damn nice weather out: blue skies and sunshine, not too hot bit of wind perfect. Legs felt heavy from 2 previous days of running but kept going pace slowing a little (IMHO) in the final quarter. Weds: &quot;Devil&apos;s Highway Nature&quot; (Crowthorne end first) in 43mins. Steady pace, with Underworld on mp3. Fantastic sunset, blue skies, quite cool [departure time:1644]. Tue: &quot;WC&quot; in 24mins. Steady pace, damp and cool. [1200] Overall I am feeling in better shape than last week. Tomorrow (Fri) I will take a medical for a clinical study for which I will write about more in the next weeks. But it does mean that there&apos;ll be No brekki for me :(&lt;/p&gt;
</content:encoded></item><item><title>Ripe Red Tomatoes and the Whistle Stop Cafe</title><link>https://andrewhudson.dev/blog/ripe-red-tomatoes-and-the-whistle-stop-cafe/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/ripe-red-tomatoes-and-the-whistle-stop-cafe/</guid><pubDate>Wed, 26 Sep 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Yeas so I have been running again this afternoon. I died plenty of times, where has the energy the motivation to go running gone? Or am I going at it in the wrong way? Without a clear objective I go out running for the sake of running, say three or four times a week. And solo too. In the summer it was easy, relatively speaking, because the blood was flowing quickly and it was great to go outside for a deathly run through the sunshine. Now winter is on its way and the temperature is a mere 10 degrees, the sunshine ain&apos;t there and there is rain hard blissful plentiful rain to put the lazy section of the brain off. Yet I am still going out running, and this is the positive that I must take from this change of seaesons, change of spirit, because summer is not coming any quicker if I stew and think up excuses for not going out in the cold glorious rainy grey gloom of September in Sandhurst. Running: Tuesday: &quot;Hills + WC&quot; in 29mins. Rained and was cold. Wednesday (Today): &quot;Nature + Crowthorne&quot; in 32mins (half of Broadmoor Nature, half dying on way back to home). Windy, cold and wet. Solutions: (1) Running Club; (2) Enter some races; (3) New Routes; (4) Evaluate Training Plan;&lt;/p&gt;
</content:encoded></item><item><title>Brrrrrr Winter&apos;s on It&apos;s Way</title><link>https://andrewhudson.dev/blog/brrrrrr-winters-on-its-way/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/brrrrrr-winters-on-its-way/</guid><pubDate>Thu, 20 Sep 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Running: Monday: &quot;Ambarrow Ridges&quot; in 33mins. Was really cold out there, fingers frozen pain in arse getting key into door to let myself in. Tuesday: &quot;WC&quot; in 23mins. Felt much better afterwards. Swimming: 40 lengths of which 35 Breast-stroke and 5 Front Crawl.&lt;/p&gt;
</content:encoded></item><item><title>It&apos;s Cold in the Eve Run</title><link>https://andrewhudson.dev/blog/its-cold-in-the-eve-run/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/its-cold-in-the-eve-run/</guid><pubDate>Tue, 11 Sep 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Running: Tonight: &quot;Devil&apos;s Highway Nature&quot; in 42mins (crowthorne end first). Began running at 1850 so was quite cold in places in the woods, and quite dark too. Bumped into the beginners group of Sandhurst Joggers, recognised the girl who was leading the run. My run however was a slow one intentionally so as not to knacker myself too much. Bit stressed lately because of the job search, so was nice to get fresh air and blast away the cobwebs in the autumnal air.&lt;/p&gt;
</content:encoded></item><item><title>Monday Quickie</title><link>https://andrewhudson.dev/blog/monday-quickie/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/monday-quickie/</guid><pubDate>Tue, 11 Sep 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Running: Yesterday: after an interview and before meeting Marion I had a small window to go running so I grabbed it; I went for a usual Monday run: &quot;reverse WC&quot; in 23mins. Still have lung butter but at last no cough! Nice conditions for running, although a tad windy.&lt;/p&gt;
</content:encoded></item><item><title>Down Up</title><link>https://andrewhudson.dev/blog/down-up/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/down-up/</guid><pubDate>Fri, 07 Sep 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Running: yesterday: &quot;Broadmoor Devil&apos;s Highway&quot; in 44mins. Really struggling with breathing because of lung butter, and coughing too. Great afternoon run nontheless in fantastic weather. I would like to enter some races in the next month(s) to test myself.&lt;/p&gt;
</content:encoded></item><item><title>Ridges Ambarrow</title><link>https://andrewhudson.dev/blog/ridges-ambarrow/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/ridges-ambarrow/</guid><pubDate>Fri, 07 Sep 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Running: Today: &quot;Reverse Ridges Ambarrow&quot; in 33mins. Really hot, quite knackered in second half of run. It&apos;s the weekend its the weekend! Yah yay sweeeeeet. Have a great weekend!!!&lt;/p&gt;
</content:encoded></item><item><title>Klaxons Scoop The Mercury Prize</title><link>https://andrewhudson.dev/blog/klaxons-scoop-the-mercury-prize/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/klaxons-scoop-the-mercury-prize/</guid><pubDate>Tue, 04 Sep 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Hi news just in &lt;a href=&quot;http://news.bbc.co.uk/1/hi/entertainment/6977433.stm&quot;&gt;Klaxons Scoop 2007 Mercury Music Prize&lt;/a&gt; and wow what a great band they are not. Sure I like their music, went to see them live in Reading. But surely they are not the best band on the list. Running: Today: Dell Lane Lakes in 53mins; Yesterday: WC+ (in the dark so had to walk sometime) in 25mins. Running session today: I took my Learn French mp3 and listened to the first lesson. Great stuff, learnt some new words and phrases, great! But not the best accompanyment to go running with, not fast enough. Nose full of lung butter, top of chest hurt a little. Have had a nasty cold the last week and now getting almost over it.&lt;/p&gt;
</content:encoded></item><item><title>Welcome back WC</title><link>https://andrewhudson.dev/blog/welcome-back-wc/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/welcome-back-wc/</guid><pubDate>Tue, 28 Aug 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Running: Monday 27.08: &quot;Wellington College+&quot; 23 mins. Had to alter route cause the gates at the far end of the kilometer driver in WC were closed (as it was a bank holiday). Set off on a flier and would have knocked off more time from record if had been the usual route. Suffering from a sore throat I didn&apos;t go running today, opting instead to sleep sleep and read Harry Potter.&lt;/p&gt;
</content:encoded></item><item><title>hey ho lets go</title><link>https://andrewhudson.dev/blog/hey-ho-let/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/hey-ho-let/</guid><pubDate>Fri, 24 Aug 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Now I am hungover, and punishing myself by being awake. Last night I met with Martin my best friend at school from age 5 till uni. Lots of drinking, catching up had a great time played darts somehow drunk lots did I say that? Now now NOW I still am punished for it, uck. I have been a good soldier lately however, going running and swimming a lot, walking everywhere and eating good food. Running: 7.08 &quot;Hilly Route&quot; (time taken: unknown); 11.08 &quot;Reverse Wellington College&quot; 26mins; 14.08 &quot;Wellington College&quot; 24mins; 15.08 &quot;Muddy Lane Lakes&quot; 55mins (7.23miles); 17.08 &quot;Broadmoor Devil&apos;s Highway&quot; 42mins (5.83 miles); 20.08 &quot;Reverse Wellington College&quot; 23mins; 21.08 &quot;Ridges+Ambarrow&quot; 41mins; 23.08 &quot;Reverse Muddy Lane Lakes&quot; 51mins. Swimming: have started swimming every week with Marion. Main stroke is breaststroke at the moment although I want to improve front-crawl, back-crawl so I don&apos;t die if I do more than 5 lengths at once with these strokes.&lt;/p&gt;
</content:encoded></item><item><title>Gin and Juice</title><link>https://andrewhudson.dev/blog/gin-and-juice/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/gin-and-juice/</guid><pubDate>Thu, 02 Aug 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;a href=&quot;http://sixeyesmedia.com/musicfiles/&quot;&gt;Gin and Juice (mp3)&lt;/a&gt;&lt;/p&gt;
</content:encoded></item><item><title>Update Update Update</title><link>https://andrewhudson.dev/blog/update-update-update/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/update-update-update/</guid><pubDate>Thu, 02 Aug 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Yeas so it&apos;s been another month of hectic activity. I have great news: I have a girlfriend she&apos;s called Marion (hi Marion mon amour!) she&apos;s funny sexy clever crazy intelligent excellent cook delightful taste in music always on the move doing something allthetime and she&apos;s French...! We went to France on holiday stayed at her parent&apos;s place and had an amazing time! Went to the beach almost every day she&apos;s from the Med coast so the weather was absolutely mesmeric everyday blue sky sunshine and hot hot temps, met her Bro Aurele who&apos;s currently on hols from his uni, met her parents, met Marion&apos;s friends went to a wedding and buffet, a party in a huge mansion with family friends, fireworks on the beach, the Tall Ships Race (from the sea no less!!!) and feasted on amazing French cuisine, fresh fruit every day so got a bit of a paunch. Went running twice along a cycle path that runs for 40+km from her city, in the evenings around 8 when it was cool enough with shade and some wind. First day ran with Marion on in-line skates for 30 mins: 15 there and 15 back. The second time I went solo and slower and further, for 40 mins with music (Pheroahe Monche) on the mp3. Went to Castallet, drove up Mount Feron spectacular sunset views of Toulon. Many many fotographs to follow!!! After getting back from France finding England under ten thousand meters of water, finding that my bro spent 28 hours stranded by the water on the way from his home to London (he didn&apos;t make it) in a pub, after the shocks of the drug use in this year&apos;s Tour de France (Vino used to be my hero, what a fucking idiot he is) I went to my auntie&apos;s wedding in Norfolk. I&apos;d agreed to take some fotographs at the wedding so was a bit strange not being able to get totally drunk straight off;) But there was plenty of free champagne floating around so we got there in the end! The event was relatively lo-key with all the family (ten thousand of us) and some of their friends. The location was great, in an old stately home that is currently being renovated into a hotel, after the dancing (my auntie K and her husband K met at dancing classes!) my cousins, uncle and I found that there was a tango evening on still (this being really late in the night) and my two cousins Roberta and Fiona were asked to join in. Neither had done any tango before but they were really good, especially Fi who&apos;d done dance before. The next day was horrific, hungover and feeling dead i had to get out in the air kick a footie around for a while before getting in the car with my uncle Alastair for the longest drive in the world all the way back home, through vicous rain and eventually to sunshine. Running: Mon 16.07 30 mins *route unknown*. 2 times in France. Since being back in England: Tue 31.07 I did a hilly 27 minute run around the local streets of Sandhurst and Crowthorne. Wed 01.08 I did the Broadmoor and Devil&apos;s highway route in 43 mins in hot hot 11am heat.&lt;/p&gt;
</content:encoded></item><item><title>June to July</title><link>https://andrewhudson.dev/blog/june-to-july/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/june-to-july/</guid><pubDate>Fri, 06 Jul 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Running: (a brief resume):: 30.May:ELT (extended Long Toll); 1st.June:??; 4.June:Â WW (Walter&apos;s Wood); 6th.June:River; 8.June:PO(Post Office - new route); 11.June:Stables; 13.June:River (36mins); 15 June:WW;Â Short Stables; 20.June: Extended River; 25th.June:Stables; 27.June:WW; 2nd.July:ELT (38 mins); 4.July:River (35 mins). Played badminton for the first time in 7 months last night. I Fucking sucked. Personally I blameÂ my new shoes, the new scorring system, that we were playing with feather shuttles rather than plastic ones... oh yeah and my knackered body after playing football at lunchtime. But all are excuses. Will see what happens next week.&lt;/p&gt;
</content:encoded></item><item><title>I&apos;m Back</title><link>https://andrewhudson.dev/blog/im-back/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/im-back/</guid><pubDate>Mon, 25 Jun 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;I have not written on this blog for the whole month of June so far so now&apos;s the time for some catch-up. Life is great. Still running a lot, playing footie, going to gigs, and so on. I will write more later but first I will tell you about today. Running: absolutely throwing it down, as had done for the last 3-4 days, so ground was supersaturated and rivers of water were along the roads, paths and elsewhere. Steve, Paul and I did &quot;Stables&quot;, I left Steve on the decent, and Paul at base camp (the start) so had to keep going going going or Steve would (might) catch me up. Got supersoaked, only had shorts and a couple of t-shirts (red England shirt over HH base top) and sunglasses, latter really useful keeping water from eyes until woods where too dark. Final running through field soaked to bone and weighed my frame with soo much water it was challanging to run;)&lt;/p&gt;
</content:encoded></item><item><title>Black Swan</title><link>https://andrewhudson.dev/blog/black-swan/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/black-swan/</guid><pubDate>Wed, 30 May 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Running: after a wet sodden weekend of &lt;a href=&quot;http://big-andy.co.uk/Photos/cotswolds07/index.html&quot;&gt;walking in the Cotswolds with the family&lt;/a&gt; today was the first day back at work, first day back running since last Weds as I had to go out today. None of this football malarkey today for me. &quot;Reverse River&quot; in 37 minutes. Nirvana helped lower the time especially in the final run into work. Got a nasty sore throat but am drinking lots of fluid so hopefully will kick it&apos;s arse and be fine soon. What the fuck is happening with cycling recently? First the 1996 Tour de France winner Riis says he won the tour on EPO then multiple Green Jersey winner Eric Zabel admitted that he tried EPO in the 1996 Tour. On the +ve side of cycling: Mark Cavendish won his second stage at the Volta a Catalunya (a pro tour race) in another sprint gallop finish.&lt;/p&gt;
</content:encoded></item><item><title>Sleepy Sunshine</title><link>https://andrewhudson.dev/blog/sleepy-sunshine/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/sleepy-sunshine/</guid><pubDate>Fri, 25 May 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;up at 7 on my day off. what the fuck? sunshine sprinkles through the open window to my left, and cat snoozes on the bed to my right, me: my eyes are just about unsprinkled of sleepy dust (after a toasty bath!) as I get prepped for a day in London. Yesterday after work went back to Marion&apos;s where she cooked something French (mouyonne quiche!), plus M&amp;amp;S cheescakes mmm, then we met Rebecca and went to see &quot;Science of Sleep&quot; at the uni cinema. Great film, saw it in London in Feb after missing out on it when it was at the Cambridge Film Festival (do I need to tell you all these minor details?), and haven&apos;t laughed soo much for ages. gosh, well not during a film, so. Intermixed with seriously fucked up french mind-thoughts there&apos;s a love story going on. Between Gael and Charlotte. Caught final train back after a jar and some cheesecake (chocolate!) with Rebecca at the pub. [update: caught train to London, went to Covent Garden found Aussie Shop and bought stuff, found a couple of Tea shops including the Tea Place in Neale Street, and bought lotsa tea, to Stanfords to buy the GR20 guidebook. Met with cousin Fiona for lunch off Carnabie Street (fantastic Thai meal!), then walked to Marble Arch and slept on grass knackered. Caught train to Cheltenham to stay night with bro. Watched Sympathy for Mr Vengeance in evo altho I slept through most of it... hahaha!]&lt;/p&gt;
</content:encoded></item><item><title>Shit am Knackered</title><link>https://andrewhudson.dev/blog/shit-am-knackered/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/shit-am-knackered/</guid><pubDate>Thu, 24 May 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Running: after playing football after work on Tuesday I went running on Wednesday: &quot;Stables&quot; in 32 minutes, solo, weather really good, bit too hot and sweaty, fast plodding really;) After having a pint with Marion (we sat next to the canal in the gorgeous sunshine!) I cycled Marion&apos;s bike (much too small for me - good speed however!)Â Â to Tom&apos;s house last night after work to watch champions league final. Tom cooked a fantastic dinner (sausage/pasta from Jamie Oliver - tres delicious!) with Cesar, Tom&apos;s buddy (what is his name?) and Liverpool were not lucky this time around. Really shattered right now, almost slept through my stop on the last train last night, ugh. Holiday for 4 days from tomorrow!!! Going to the Big Smoke tomorrow, then Cotswolds for weekend.&lt;/p&gt;
</content:encoded></item><item><title>Happy B&apos;day Christine!!!</title><link>https://andrewhudson.dev/blog/happy-bday-christine/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/happy-bday-christine/</guid><pubDate>Tue, 22 May 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;First of all: Happy Birthday to my friend Christine! have a great day! Running:Â  Played footie for 2 hrs hungover yesterday so not in the mood for much today so I did &quot;Walter&apos;s Wood&quot; fairly slowly today. Friday I did &quot;Stables&quot; again on a post-football downer. What is up with running lately? Not enough sleep, bad diet, lack of variety, bad weather, lack of goals, too much football? Could be any of these excuses. There has not been anyone of my pace out running recently so it&apos;s down to me to pace myself and choose how fast I want to go so; if I feel lazy I go easy or less fast than I could so I need buddies to go fast, or a new regime, to reinvigorate the running life. Will let you know how things change in the next weeks. The weekend.Â  Juggling Thursday evening (for my cousin Tom) in the garden realise that I can just about juggle 5 still (managed about 30 catches max) then had curry with Chantal, Derek, M&amp;amp;D.Â  Went to see &quot;Zodiac&quot; at the cinema on Friday with Cesar. Saturday had haircut (at last!), bought shoes and clothes, then went to Cesar&apos;s house to watch the FA Cup final. ManU lost to Chelsea in the worst fucking game of football ever, then the evening arrived. In the evening went to pub with Tom (Cesar&apos;s housemate), Cesar, Rebecca (going to miss you not being at work brightening up the day), Bibi, and Tom&apos;s friends Sam and Si, and girlfriend (Kelly). Long Island Iced Tea party so had to drink this. Yum yum nice drink! Had grreat evening got drunk went to Club, yeas. Sunday played 4-a-side footie with lads and almost died. Thought I was fit cos all the running I do but this was something different. High volume Repetitive sprinting, added to hungover dehydrated body and 1 banana brekki... scorred hat-trick enjoyed game yes!!! In afternoon chilled watching tv and so on. Footie kickups in garden in evo then bed.&lt;/p&gt;
</content:encoded></item><item><title>With Cesar</title><link>https://andrewhudson.dev/blog/with-cesar/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/with-cesar/</guid><pubDate>Wed, 16 May 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;First of all I&apos;d like to make an announcement: I&apos;VE FINISHED WAR AND PEACE!!! In under 2 yrs I have battled through the many hundreds of thousands of pages, through France&apos;s unsuccessful battle with Russia. Fave character: Rostov. Really great book! Now have moved on to another Russian author:Â &quot;Crime and Punishment&quot; by Dostoevsky (he&apos;s just killed the old hag!) Running: &quot;Walter&apos;s River&quot; with Cesar. took us 45 mins, at his pace, was pleasant enough. Â Â&lt;/p&gt;
</content:encoded></item><item><title>while it rains I run</title><link>https://andrewhudson.dev/blog/while-it-rains-i-run/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/while-it-rains-i-run/</guid><pubDate>Mon, 14 May 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Last week. After work on Thursday went back to Marion&apos;s house and we cooked something fantastic with veg, prawns and Quinoa before going to see &quot;Letters from Iwo Jima&quot; at the cinema. Wow i really liked this film, much better from the Japanese perspective and really fealt empathy for the characters. They knew they were going to die, but how they dealt with this knowledge was quite heroic. Very moving, especially the radio message from Nagasaki, and full of wonderful moments. Marion&apos;s housemates are great fun, little wacky and love to have fun. Watched some music videos including... Gym Class Heroes &quot;Cupid&apos;s Chokehold&quot; which for 5 days has been bloody amazing... I&apos;ve always got it on, making my ears bleed now but.!. Friday: went running at lunchtime. &quot;River&quot; in 30-35 mins. Shite hot. Thought this route is 6 miles. Should we always believe the factss we are told? If so, bloody shit hot!!! Went out in Reading in the evening: Alejandro, Cesar, Marielle, Joanne, Dominika, Laura, and I. Started in Rising Sun, moved to other pub and got very merry, before going to Iguana Bar and rocking the dance floor! Shiet. Hungover bad on Sat am. Had agreed to goto Unk Stu&apos;s for lunch with Mum. So had to gouge my brain into shape and go out then. Nice lunch. Took it easy on Sat eve: watched &quot;Russian Dolls&quot; which is the sequal to &quot;Pot Luck&quot; and although great second half no way near the original. Sun: horrible weather so had long lie-in. Went to cinema to see &quot;The Lives of Others&quot;, then went running in the evening: &lt;a href=&quot;http://www.gmap-pedometer.com/?r=953798&quot;&gt;&quot;Muddy Lane Lakes&quot;&lt;/a&gt; 7.23 miles in 52 mins and got thoroughly soaked to the skin. After dinner I watched half of &quot;Casino Royale&quot; the 2006 James Bond film, then retired knackered to bed. Running: Monday (today): another rain-fest, I did &quot;Walters Wood&quot; solo, there was only Paul and I out running today, everyone else too skimpy to go running in the rain. Paul did another route.&lt;/p&gt;
</content:encoded></item><item><title>New Camera Boz</title><link>https://andrewhudson.dev/blog/new-camera-boz/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/new-camera-boz/</guid><pubDate>Wed, 09 May 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Running: Tuesday: &quot;Stables&quot; solo in the hard blast wind. Wednesday: &quot;Extended Long Toll&quot; effectively solo (only 3 of us: B + E took it slower than me), in the rain (drizzle). Legs felt heavy, especially thighs. Went to cinema with Marion and Marielle last night, we watched &quot;Flags of our Fathers&quot;. Quite liked, the second of the diptych &quot;Letters from Iwo Jima&quot; is on Thurs so will be good to compare the representations of the US and Japanese armies, the way their homelands viewed the battle. After dunking my old digital camera in a pint of cider at The Maccabees gig in Feb I finally got my arse into gear and ordered a replacement. Today it arrived at work and I very am happy! It&apos;s a Canon Ixus 70 (replacement of the Ixus 55 which I drowned, but 7 mp instead of 5). Can use the old batteries, charger, memory cards and so on... It&apos;s great. Now I need subjects to point my foto skills at. Roll up, roll up!!!&lt;/p&gt;
</content:encoded></item><item><title>Bank Monday Robbery</title><link>https://andrewhudson.dev/blog/bank-monday-robbery/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/bank-monday-robbery/</guid><pubDate>Mon, 07 May 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Busy Busy Week just gone. Starting last Monday I went running at lunch, just 4 miles stretching my left hamstring before, during and after the run cos it was really quite stiff and achey. In the evo after going for a few drinks with Cesar and Marion I went to see Reading vs Newcastle at the Majeski with Cesar. Reading won 1-0. Exciting game but Newcastle shudda equalised. Tuesday: Running: 5 miles solo &quot;Walters Wood&quot;. Watched Champions League round Tom&apos;s house with other blokes from work. Dire game but happy that Chelski lost on pens and Liverpool went through to the final on 23-May. Weds: Running: 6 miles solo &quot;Reverse River&quot; pain in the arse to get up the flint path but felt better in general than on Mon/Tue. Watched second Champions League semi-final round Cesar&apos;s house. Bad bad awful game. ManU piss-poor and AC Milan go through to meet Liverpool in the final. Thursday: Football. Played lots of loose passes but did some attacking. So-so game. Went to beer festival in evening! Friday. Hungover and knackered went to pub at lunchtime, then after work for 1. Watched rest of Old Boy. Went early to bed. Saturday. I drove to Cheltenham to visit my brother. Watched Manchester derby. ManU beat City in abrasive non-exciting game. Go 8pts ahead of Chelski. Go to see Cinematic Orchestra w/The Nextmen at the Jazz festival. Incredible time, only wished that I had drank more so that I could dance to The Nextmen because they were awesome!!! Sunday. Saw Spiderman 3. Really enjoyed it. Lots of choices for the young 4-legged octoped, tale of revenge and recrimination and darkness, of forgiveness and betrayal. Watched Chelski lose title by drawing with Arsenal 1-1 (both sides could have won it in the final 5 minutes) then drove back home. Read some of War and Peace then went to bed early-ish. Today: was going to go cycling with some friends but weather = shite and we agreed to do it another day. Cooked chocco cake from Mum (her birthday today: Happy Birthday Mum!) did food shopping and now trying to finish off War and Peace.&lt;/p&gt;
</content:encoded></item><item><title>Tweaky Ham Cycling</title><link>https://andrewhudson.dev/blog/tweaky-ham-cycling/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/tweaky-ham-cycling/</guid><pubDate>Sun, 29 Apr 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Running: Not today :( Got up at 7am but still felt twinge in left hamstring so didn&apos;t want to risk agrivating it. Is this okay? Cycling: after running to the train station (if you can call it running, and it bloody hurt) I find out the train (to Brighton) is late. Wait on the platform reading my book - &quot;Big Sur&quot; by Jack Kerouac - and keep on waiting. Realise it ain&apos;t gonna come so I walk back up the hill to home. Find out that Ellie is home and go cycling with her, Alex, Henry and M&amp;amp;D. Great to see her, and was good to go out cycling too. Did a few sprints and fast sections but I&apos;m really too fast to be doing that with this company;) Good to talk, gorgeous day out.&lt;/p&gt;
</content:encoded></item><item><title>The Other Side</title><link>https://andrewhudson.dev/blog/the-other-side/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/the-other-side/</guid><pubDate>Fri, 27 Apr 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Running: tried another new route today:&lt;a href=&quot;http://www.gmap-pedometer.com/?r=902231&quot;&gt;&quot;The Other Side&quot;&lt;/a&gt;. Never run on the South side of the river so this is what I did: down the hill, along the river bank until Mapledurham lock, turn right and keep going until hit A329, turn right and follow A329 on pavement until Pangbourne, turn right and continue over bridge, then up up up the hill. I managed to keep going until I got back to Pangbourne (about 5 miles in) then had to stop running because I had bad stomach cramps and I would have exploded unless I stopped running. Walked the remaining distance arriving back at work just in time for a meeting.!. Distance: 7.25 miles. Time: 1hr 10mins. After work I walked along the river with Alejandro to Tilehurst and then went drinking with him and his flatmate Jo and got slaughtered. Yipeeee!!!&lt;/p&gt;
</content:encoded></item><item><title>Not eht best</title><link>https://andrewhudson.dev/blog/not-eht-best/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/not-eht-best/</guid><pubDate>Wed, 25 Apr 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Running: &quot;Reverse River&quot; solo. Went out too fast, suffered on the uphill flint-path and managed to get back okay but not speedy after this. Time?? Dehydrated since drinking last night with chums from work while watching the ManU vs. AC Milan Champions league semi-final 3-2!!! And not drunk much this am. Need to eat more fruit/veg in am, drink the water before going running next time:)&lt;/p&gt;
</content:encoded></item><item><title>not slow and EZ</title><link>https://andrewhudson.dev/blog/not-slow-and-ez/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/not-slow-and-ez/</guid><pubDate>Mon, 23 Apr 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Running: Long Toll (btw: what is the difference between this and &quot;extended long toll&quot;?) faster than I&apos;d planned. Steve&apos;s fault. He was doing a fartlek session which I didn&apos;t know at the time so I dug really deep and caught him up. Shudda gone slower but a challenge is a challenge right;) 5 (?) miles in 37 mins.&lt;/p&gt;
</content:encoded></item><item><title>While everyone was doing the Marathon...</title><link>https://andrewhudson.dev/blog/while-everyone-was-doing-the-marathon/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/while-everyone-was-doing-the-marathon/</guid><pubDate>Sun, 22 Apr 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;... I too got up bloody early and went running! This morning I drove to the Look Out where usually my running club (sandhurst joggers) do their Sunday morning long run. Ahah. I knew it was the marathon this morning so I wasn&apos;t sure that anyone else would be there from the club - NO - but I had a plan of a route that I could do myself. Until I met another runner by the name of Paul. He usually runs here on a Sunday (either with SJ or &lt;a href=&quot;http://www.bracknell-forest-runners.org.uk/index.php&quot;&gt;Bracknell Forest Runners&lt;/a&gt;) and I joined him for 7 miles of single track. I will never know the route but I did occasionally recognise places that I have been through before. Got back after about 50 mins, where BFR were warming up for their run (they meet at 10, SJ at 9am). After driving home and getting showered I turned on the TV coverage of the London Marathon to see Zhou win the women&apos;s race, and a little later Lel win the men&apos;s race. It&apos;s still going on, the fun runners (haha!) are still struggling through the record heat (max of ~25C) as I write this. Will find out tomorrow how well Paul and Liz from work did. 7 miles of off-road singletrack running in ~50 mins.&lt;/p&gt;
</content:encoded></item><item><title>Longer Maple</title><link>https://andrewhudson.dev/blog/longer-maple/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/longer-maple/</guid><pubDate>Fri, 20 Apr 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Running : &quot;Mapledurham&quot; is a new route that Mike and I ran this lunchtime for the first time. The &lt;a href=&quot;http://www.gmap-pedometer.com/?r=877586&quot;&gt;Route&lt;/a&gt; is 6.71 miles and it took us 51 mins. The temperature was hot and it was a good even pace (although if I were doing it solo I think I would have gone faster.) Average Pace = 7.36 min/mile.&lt;/p&gt;
</content:encoded></item><item><title>Mid-Week Kaner</title><link>https://andrewhudson.dev/blog/mid-week-kaner/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/mid-week-kaner/</guid><pubDate>Wed, 18 Apr 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Running: &quot;Reverse Stables&quot; quite quickly! Cooler than on Monday, with a bit of biting wind. I hate oilseed rape but there are many many fields around here where I have to run though/past. Sure it looks great: all bright yellow and energising. But the pollen/smell gets into my sinuses and gives me a fucking headache. Ran down the hill and along the road - realised was going really quick and had dropped Mike and others long ago. Took it easy on the hill and stepped it up a little on the route back to base. 5 miles in 30-35 mins.&lt;/p&gt;
</content:encoded></item><item><title>Look out 10</title><link>https://andrewhudson.dev/blog/look-out-10/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/look-out-10/</guid><pubDate>Mon, 16 Apr 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Running: Sunday is (now) the day when I do my &quot;long run&quot;. I ran the route that I used to cycle back in the days when I cycled with my parents and family friends every Sunday. A lot of running along along pavements before hitting the woods where there is a mixture of trail and dirt-path. &lt;a href=&quot;http://www.gmap-pedometer.com/?r=861534&quot;&gt;Route: &quot;Lookout 10&quot;&lt;/a&gt;. This is the furthest I&apos;ve run since the 1/2 marathon last summer (Norwich 1/2 marathon) and the second furthest I&apos;ve run EVER. Woot!!! Distance: 10.03 miles in 78 mins. Pace:7m48s / mile. I ran this as an easy/moderate pace where I went quicker on the hills, especially the final climb back to my house:&amp;gt; This evening I am quite knackered. The weather the last couple of weeks has been exceptionally warm/sunny and today was no different. I thus left home at 1845. Cool/cold and a fantastic sunset.&lt;/p&gt;
</content:encoded></item><item><title>Massachre of the Smiling Toadstalls</title><link>https://andrewhudson.dev/blog/massachre-of-the-smiling-toadstalls/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/massachre-of-the-smiling-toadstalls/</guid><pubDate>Mon, 16 Apr 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Running: easy recovery after yesterday&apos;s long run, 5 miles in ~40 mins. Actual distance and time may vary! &quot;Walters Wood&quot; was the route and i felt good this afternoon having done the run in comparison to the morning when I was sloggy. Film: I went to see &quot;The Blades of Glory&quot; after work this evo. Wanting a no-brainer entertaining comedy that&apos;s what I got. Averagely funny, quite entertaining. Okay film.&lt;/p&gt;
</content:encoded></item><item><title>Four times off</title><link>https://andrewhudson.dev/blog/four-times-off/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/four-times-off/</guid><pubDate>Fri, 13 Apr 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Running: Hard, fast, scorching. Decided to this week&apos;s Hard Run today, when I did the &quot;River Route&quot;. Same principle as the EZ run but if I have to ask &quot;am I going fast enough?&quot; then I probably am not and force myself to go faster. Hahaha! Great fun. There is a good side to this torture, however, and that is I have to look at the same things for a shorter period of time. That long dragging stretch of road-running now whizzes past, and so on! Since getting back: the thighs hurt, and walking down hill from work I noticed that my ankle/shins were hurtin. Like shin spints but just when I was going down hill.&lt;/p&gt;
</content:encoded></item><item><title>stinging eyes, banshee feet</title><link>https://andrewhudson.dev/blog/stinging-eyes-banshee-feet/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/stinging-eyes-banshee-feet/</guid><pubDate>Wed, 11 Apr 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Running: second day in a row, today&apos;s run was a medium paced new route which is a mish-mash of two other routes so I&apos;ll callÂ &quot;Banshee wind&quot;. Has it all: roads, tracks, woods, fields, views of river and hills both up and down (of course!), I reckon we covered at least 6 miles in ~50 mins. For the first hour after getting back I was not feeling good, the stomach ached and the mind throbbed. Now, a couple of hours later, I still am a bit warped but I gradually am getting to feel better. Rahaha. There is a rest from running tomorrow. I will play footie instead :) A different type of exercise. More sprinting and sudden changes of direction needed. The other two quarter-finals of the champions League are tonight butÂ I won&apos;t be watching... unless I am stranded in Reading and the only option is to go to the pub and watch footie, haha! In a few I will walk down the massive hill and catch the train to town and watch &quot;Sunshine&quot; at the pictures. Adios Amigos!&lt;/p&gt;
</content:encoded></item><item><title>Ment to be takin it EZ</title><link>https://andrewhudson.dev/blog/ment-to-be-takin-it-ez/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/ment-to-be-takin-it-ez/</guid><pubDate>Tue, 10 Apr 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Running: One thing that I have noticed after looking back at my running journey (i started running Aug 05) is the lack of variety, if I go out running then I go as fast as I can. Today I tried something different. I purposely tried to run slowly, taking it easy, if I had to ask myself &quot;am i going too quickly?&quot; then I was indeed and I slowed down a bit. What is the purpose of this you may ask. I have been reading &quot;The Competetive Runner&apos;s Handbook&quot; by B. Glover and S-L. F. Glover and even though I admit at this stage I am far from the fastest runner in the town it does have excellent advice to all runners, including me. I&apos;ve read a few chapters so far and I get the message that if you mix your training up, thus keeping it interesting, then your running benefits, as do your race times. It also recommends more days per week, and an increased per-week mileage. So this is what I will be doing. From 3 times a week to 4, then see how I feel before increasing further. Obviously now that I have done an &quot;easy&quot; run I will have to do a &quot;hard&quot; run. Whoa hahahaha! What fun this will be!!! ManU thrashed, demolished, annihilated, took apart, erased... Roma 7-1 tonight in the quarter-final of the champions league.! What an exquisite game, one of the best I&apos;ve ever seen. Goals from attack, defence, mid-field, all-over. And such class too, not just &quot;goals&quot; (as scorred by mere mortals) but divine wonder goals (the kind gods dream about scoring). Chelski also manage to sneek through. Two out of 4 Semi-Final berths are taken by English teams, can Liverpool fill a third tomorrow when they play the home-leg versus PSV (having won the first leg 3-0 in Holland)? I am going to Sziget Music festival in August.!. 8 days of mutherfucking excellent music, great beer and cheep sunshine, did I say 8 days? In Budapest Hungary in the sun, with 100s of bands, woot I cannot wait! &lt;a href=&quot;http://www.sziget.hu/festival_english&quot;&gt;Sziget 15&lt;/a&gt;&lt;/p&gt;
</content:encoded></item><item><title>Quit yo jibba-jabba it&apos;s april you fool</title><link>https://andrewhudson.dev/blog/quit-yo-jibba-jabba-its-april-you-fool/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/quit-yo-jibba-jabba-its-april-you-fool/</guid><pubDate>Mon, 02 Apr 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Monday: running; first half of &quot;Walters Wood&quot; really good, then I couldn&apos;t be arsed and so let Steeve catch up overtake and put 10m into me. Caught him and won token sprint at end. He&apos;s not a sprinter, he did well to catch me, but today my bones were slower than the silver wind. At work a new person started in our lab, a girl no less, so mebe life will be a little more interesting in the 9-5. TBH it&apos;s been a long slog since Jan: too much work, too much stress, not enough fun. Have you heard of &quot;The Knife&quot;? Electronic awsomness. they&apos;re here: &lt;a href=&quot;http://www.theknife.net/o0o.html&quot;&gt;the knife&lt;/a&gt;&lt;/p&gt;
</content:encoded></item><item><title>Newness</title><link>https://andrewhudson.dev/blog/newness/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/newness/</guid><pubDate>Sun, 01 Apr 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;have new strides! I finally succumbed to the fact that the first ever pair of running strides were worn, wonked and bruised and needed to be replaced. It was a sad day. Boo hoo. Haha. Right, on Tuesday after work I went to the local running shop and bought a new pair of running shoes and some new socks, and Wednesday was my first ever run with them in the big bad smelly world. Weds: for the first time in 18 months I stode out in a new pair of running shoes, there was a huge difference between these Nike Air Pegassus and the ones that have travelled through Europe (i took them on holiday with me last summer!) and run many hundreds if not thousand+ miles. There was more cushioning, more bounce and I felt higher above the earth that I strode on. For the first 3/4 of &quot;River&quot; route I kept pace with Luc but then I slowed slowed and crawled along, energy and capacity for further fastness had evaporated, replaced with chaffing and slowness. Bright day, quite warm, breezy. Good run all in all. Have spent the last 2 days installing and streamlining M$ Vista (the latest version of Windows). I love it so far. It looks a hell of a lot better, it feels cool. There have been teething problems, for sure, but these have been surpassed and now I am very happy. Huzzah!!!&lt;/p&gt;
</content:encoded></item><item><title>Spring Back, Forward?</title><link>https://andrewhudson.dev/blog/spring-back-forward/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/spring-back-forward/</guid><pubDate>Tue, 27 Mar 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Monday: Shoes are really dying, causing feet to hurt. Time for a replacement. We did &quot;Stables&quot; and it was a bloody nice day, nice change from the wintry return of last week. Shame it was this route but good to be outside running :&amp;gt;&lt;/p&gt;
</content:encoded></item><item><title>cold running</title><link>https://andrewhudson.dev/blog/cold-running/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/cold-running/</guid><pubDate>Sat, 24 Mar 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Friday: legs like lead weights all morning before the run, like heavy weights during the run and in the afternoon after work I could hardly walk up the hill to home. I ran &quot;Stables&quot; on my own (the others are running in tomorrow&apos;s (Sunday) Reading half-marathon so had the day off) but I did see Roger who ran the same route but in the other direction. I felt that I had more energy for the final hill compared with recent efforts and felt good when I got back. It was quite cold in the wind and overcast and cool throughout.&lt;/p&gt;
</content:encoded></item><item><title>football running</title><link>https://andrewhudson.dev/blog/football-running/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/football-running/</guid><pubDate>Thu, 22 Mar 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;cycled up the hill on Monday and I could not fit the running kit into my bag so I didn&apos;t go out in the freezing cold bitter wintry lunchtime. Tuesday I walked up (and down the hill) and yesterday (Weds) I went running! We did &quot;Extended Long Toll&quot; and I did an extended version of this ;) as I got ahead of myself and took a different (longer) route! In the wind it was bloody chilly but in the shelter the air was warm. Today (Thurs) I played footie with the blokes at work. We lost, damn!&lt;/p&gt;
</content:encoded></item><item><title>Snow, its a coming</title><link>https://andrewhudson.dev/blog/snow-its-a-coming/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/snow-its-a-coming/</guid><pubDate>Fri, 16 Mar 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Looking out of the window (I am doing a lot of this recently!) all I can see is good weather (sunshine, blue skies, green grass, chirping birds and so on!) but I hear that there is going to be some snow. Looking at the five-day forecast Mon and Tue promise snow and cold temperatures. We have been living in a heatwave since last Friday. Not running today, too painful after playing football (for the first time in &amp;gt;2 years) with the blokes from work at lunchtime yesterday. I will try to go out on Sunday. Weds: new route:: half &quot;River Route&quot; and half &quot;Walters Wood&quot; (i think I added the Walters wood extra bit myself - I was running solo and there was no one to tell me where to go!) I cycled up the hill from Pangbourne Station to work on Weds morning. ~1.5 miles 10% up up up. Really not the thing I want to ever do again (subject to change of heart!) but worth it for the ride home!!! Almost crashed into a car because I was going so fast: flying round a bend and a group of cars were stopped, waiting, to pass a parked car... need better brakes, better gears and a better bike. Huh.&lt;/p&gt;
</content:encoded></item><item><title>SPRING is Now</title><link>https://andrewhudson.dev/blog/spring-is-now/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/spring-is-now/</guid><pubDate>Mon, 12 Mar 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;For the now and here spring is with us, the blossom on the trees, the birds and the flowers are all fighting for audio and visual supremacy, warm bloody warm gorgeous days sunny and blue skied and perfect. I love spring! Running - Last Friday we did &quot;Walter&apos;s Wood&quot;. Today (monday) we did &quot;Stables&quot; and I really pushed it. Without the two undone shoe lace stops I would have gone faster but. Ground really drying out, mud gone and can grip the earth again. In t-shirt and shorts, really gorgeous day out there and soo warm out of the brisk wind along the base of the hill.&lt;/p&gt;
</content:encoded></item><item><title>Football</title><link>https://andrewhudson.dev/blog/football/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/football/</guid><pubDate>Sun, 11 Mar 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;shite I am here inside and writing, whereas I should be outside - not writing - and enjoying the fine fine day. Adios Amigos. O.&lt;/p&gt;
</content:encoded></item><item><title>Herman Dune</title><link>https://andrewhudson.dev/blog/herman-dune/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/herman-dune/</guid><pubDate>Wed, 07 Mar 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Running this lunchtime almost killed my soul. For the last couple of running sessions my will to go fast has been somewhat lacking, legs aching heart tired brain cannot be arsed. I&apos;m a much better runner imho when I am running solo. I think that this is the reason for the above problem. How do you people work around this problem? Today we did the &quot;Reverse River&quot; route, the weather was bloody spankingly marvellous: warm in the sunshine and breezy in the shade, the mud still sticky along the river path. First half of the route easy fine then the uphill, down and parallel to the river towards the bottom of Death Hill was not good. Im okay if there are not people with me, ahead of me... I can go my own pace and not think about what other people are doing, that gets on my tits. 5 Miles in ~40 mins. Last Week::: Fri (reverse river) Weds (super bloody wet running through rivers of fire would have been easier but less fun, it was great fun!!! Walters Wood route). Spring is here, the flowers are out and the cheeping birds are producing food (babies, chicks) for the awaiting death eaters from above the handsome Red Kites (there are loads of em!) but there there is a shitload of water in the ground still, the river is almost flooded. I need some new running shoes, I&apos;ve had the current (my first pair of running shoes goddamnit) Nike Air Pegassus for 1.5 years. Shall get some new shoes once I have moved house - need lots of wonger for first month, deposit and such... this will leave me skint for a while. Have you heard of a band called Herman DÃ¼ne? Neither had I until I read the fantastic &lt;a href=&quot;http://www.planbmag.com&quot;&gt;Plan B Magazine&lt;/a&gt;. They are (after many listens I like the second half of their latest album &lt;em&gt;Giant&lt;/em&gt;) According to their &lt;a href=&quot;http://www.myspace.com/therealhermandune&quot;&gt;myspace site&lt;/a&gt; they are &quot;Surf/Folk/Grunge&quot;. whatever. It&apos;s great! Larsson!!! Is God. Just scorred his last goal for Manchester United. ManU 1-0 Lille (agg. 2-0). Could this lead to 4 English teams in the last 8? Noooooo... Arsenal are 1-1 with PSV thus losing 2-1 on agg and, with the away goal, effectively 3-1. That&apos;s it ManU through, Arsenal out. Fantastic.&lt;/p&gt;
</content:encoded></item><item><title>bloody marvelous</title><link>https://andrewhudson.dev/blog/bloody-marvelous-2/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/bloody-marvelous-2/</guid><pubDate>Sun, 04 Mar 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;okay, shit this is the second time I have sat down to write this post. the first was wiped out accidentally (my fault) when I re-booted following a software install (finally succumbed to the charms of wmp11; when i get vista - a big WHEN due to Dell&apos;s lack of speed on the upgrade issue - i will have to have wmp11 so i&apos;m getting used to it sooner rather than later. ho-hum). Shit bricks. Last night there was a lunar eclipse (i.e. Sun :: Earth:: Moon) the only light that gets to the moon is filtered through the Earth&apos;s atmosphere so it is often a different colour than usual, last night the moon was &quot;blood red&quot;. In times gone, way back when people didn&apos;t have tvs and internet,,, before football was invented, before electricity, etc... talking hundreds of years (possibly!) here, people believed that the &quot;blood moon&quot; was a signifier of forthcoming death, destruction and chaos. What did they know? Choon in for more (possibly apocalyptic) updates. Football: yesterday I went to the pub (the White Swan in Sandhurst) to watch the Liverpool vs. Manchester United lunchtime premiership game. ManU looked like they were going to get spanked but, thanks to a few kind refereeing decisions and a fortunate late late goal by John O&apos;Shea, we walked away (except for Rooney who kinda hobbled away thanks to a Carragher studding) with all three points and a short-lived 12pt lead at the top of the premiership table over the southern london russian scum Chelsea. In the evening kick-off Portsmouth were beaten 2-0 by above mentioned scum taking the lead down to 9pts with Chelski now having played 1 game less than United. Reading (my &quot;local&quot; team) were beaten by the Scum of Arsenal 2-1. I&apos;m going to see Reading again* in 2 weeks when they play Pompey (Portsmouth) at the Majeski (home). *I say &quot;see reading &quot;again&quot;&quot; because I saw them last week in the 5th-round FA Cup replay against Manchester United. Reading went 3-0 down inside 7 minutes. They could have wilted and got beaten by a much larger score but no, they stuck in and got reorganised and set about slowly beginning the massive task of trying to score at least three goals. They almost did it, thanks to their perseverence and ManU&apos;s lack of concentration, losing 3-2. The atmosphere at the Majeski was tremendous and it was an excellent game, very exciting, but it was a shame that Reading were asleep for the first 7 minutes. ManU now go through to the quarter-finals and face M&apos;bro away on the 10th of March.&lt;/p&gt;
</content:encoded></item><item><title>Running</title><link>https://andrewhudson.dev/blog/running/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/running/</guid><pubDate>Wed, 21 Feb 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Today - ~5 miles in ~45 mins (reverse long-toll, got very lost but made out of woods alive; next time I take a map;)). Last Week: Fri - River Route; Weds - Stables; Monday - &quot;flat woods&quot;.&lt;/p&gt;
</content:encoded></item><item><title>Running Muddy Snob</title><link>https://andrewhudson.dev/blog/running-muddy-snob/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/running-muddy-snob/</guid><pubDate>Mon, 12 Feb 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;in the middle of the night I write this. For the first time in 3 weeks I went running (at lunchtime) and now I am feeling fucking knuncked. In the ferocious wind, in the howling gale, the rain was blown forcefully into our souls (and faces). Yet this didn&apos;t dampen our minds, nor darken our spirits, because we were out running and little else mattered. Of course it was bloody difficult to stay upright, with the slippy sloppy mud (result of supersaturated earth from last week&apos;s snow and rain) and buffeting wind. Feeling as though I needed to blow away 3 weeks of cobwebs I strode ahead of the others on the &quot;Flat Woods&quot; route and promptly got lost, eventually doubling back after losing Steve at the 3/4 point and then going through some of the earlier section of the route and making it back just after Steve and Dan (but before the others). I reckon it took me 45 mins to do the 5-6 miles (highly approximate!). Fantastic to get out again :)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://ririanproject.com/2007/02/01/wake-up-feeling-great-with-these-22-tips-for-high-self-esteem/&quot;&gt;Self Esteem (lifehack)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.lifehack.org/articles/productivity/productivity-boost-how-to-start-your-day-at-500-am.html&quot;&gt;Get up, Jump up (lifehack)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.flickr.com/photos/dans180/&quot;&gt;Amazing Dans.Photo - Taiwanese Photographer (flickr)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.flickr.com/photos/dans180/53775203/&quot;&gt;Taipei (flickr)&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</content:encoded></item><item><title>tony parsons</title><link>https://andrewhudson.dev/blog/tony-parsons/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/tony-parsons/</guid><pubDate>Mon, 12 Feb 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;(&quot;yeah its a mirror. see what I did there!&quot;) &lt;a href=&quot;http://www.mirror.co.uk/news/columnists/parsons/&quot;&gt;tony parsons&apos; mirror column&lt;/a&gt;&lt;/p&gt;
</content:encoded></item><item><title>England on FIRE!!!</title><link>https://andrewhudson.dev/blog/england-on-fire/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/england-on-fire/</guid><pubDate>Sun, 11 Feb 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;England have just beaten &lt;a href=&quot;http://www.bbc.co.uk/go/homepage/int/sp/shdr/hs1/t/-/news/sport1/hi/cricket/england/6349169.stm&quot;&gt;a soggy Australian cricket team&lt;/a&gt; in the second match of the One Day Triangular Tournament Final in Australia, and thus WIN the Final 2-0!!! We have gone from being on the losing end of a 5-0 thrashing in, and thus losing, the Ashes less than 2 months ago, to handing out a 2-0 thrashing to the Auzzies, huzzah. We RULE!!! Yesterday I went to London to see &quot;The History Boys&quot; at the Wyndham Theatre (near China Town). It was the best play I have seen this year, it was so funny, clever, unpredictable, exciting! I chose to sit in the cheepo seats, soo high up at the very back of the theatre that got initial vertico cos the stage soo far down. The play, written by Alan Bennett, was about a group of 8 superbright 18yr-old boys preparing to take the Oxbridge entrance exam (after completing their a-levels, potential oxbridge students (up until the 1970s) went back to school for a term to prepare to try to get into Oxbridge) and the play dealt with this, the possible homosexuality of their teachers and &quot;the boys&quot;, with clever interaction between the cast ensamble. The head teacher was more of a business man, concerned with buzzwords, management, he didn&apos;t give a fuck about the actual learning, just the results and the figures. There was a battle between the new teaching methodology (employed by the new &quot;Oxbridge Graduate&quot; teacher) and the old (as taught by their ancient General Studies teacher). Plus there was a not-so-bright kid, who wrote everything down, for contrast. &lt;a href=&quot;http://www.cyclingnews.com/news.php?id=news/2007/feb07/feb10news&quot;&gt;Disco to drop Ivan and Co at end of 2007&lt;/a&gt;&lt;/p&gt;
</content:encoded></item><item><title>me widgets ain&apos;t grooving to the Flux</title><link>https://andrewhudson.dev/blog/me-widgets-aint-grooving-to-the-flux/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/me-widgets-aint-grooving-to-the-flux/</guid><pubDate>Sun, 11 Feb 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Here is a quote:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;The stupid neither forgive nor forget; the naive forgive and forget; the wise forgive but do not forget. - Thomas Szasz&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;What is up? Up before 8am on a Sunday morning but when the eyes open yer just have to get up, have a shower, then turn the computer on and type a Sunday morning blog post. Yeeeeeehahahahaha. ^-_-^ Widgets. This is concerned with this blog&apos;s development so let your eyes glaze over if yer aren&apos;t a development nooger. The widgets are not working, i want to install a flickr gallery link and the widgets are the easiest (only?) way of doing this. Seems that the JS is not working, should be installed in the latest Wordpress update/upgrade but its not grooving yet. &lt;a href=&quot;http://wordpress.org/support/topic/105284?replies=2&quot;&gt;&lt;/a&gt;&lt;strong&gt;Update:&lt;/strong&gt;&lt;a href=&quot;http://wordpress.org/support/topic/105284?replies=2&quot;&gt;How to Fix the Problem (update the widget plugin)&lt;/a&gt;&lt;/p&gt;
</content:encoded></item><item><title>Fuji Snow Suck</title><link>https://andrewhudson.dev/blog/fuji-snow-suck/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/fuji-snow-suck/</guid><pubDate>Thu, 08 Feb 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;a href=&quot;http://www.smash-uk.com/frf07/&quot;&gt;Fuji Rock 2007&lt;/a&gt; (pre-reg from Friday, costs Â¥32,800, till Feb 18th). An enormous dump of snow is now slowly melting. Woke up this am to find 10cm of it. Made me happy, cos I love snow wonderful snow. England are the worst team in the world. We suck. Cannot play for shit. But we knew that. Where is the passion, where is the class, where is the will to fight to win, the fight to score goals???&lt;/p&gt;
</content:encoded></item><item><title>sugar, lick my salty chocolate balls</title><link>https://andrewhudson.dev/blog/sugar-lick-my-salty-chocolate-balls/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/sugar-lick-my-salty-chocolate-balls/</guid><pubDate>Wed, 07 Feb 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;weds lunchtime and am really feeling like getting out and breathing. The sky is perfectly crystal blue and the air suffocatingly cold, sunshine glistens off the leafless trees while the birds and flowers shiver and wait for spring to arrive. I&apos;ve not been running in well over two weeks; first of all because I was chronically unwell, then i had a nasty cold and (thus) couldn&apos;t breath for shit, finally the excuse was the &quot;couldnotbe arsed&quot; wildcard, but the power of that is finally waning and I will have to get my skank in gear or I will turn into a slow fat genie but without the bottle. So what is the solution? (1) Badminton this evening; (2) New Running Shoes; (3) Running on Friday... AND Remind me that I&apos;ve got to get the LCD Soundsystem mp3::: &quot;North American Scum&quot;::: Pounding Bassline. ingreatness welive.&lt;/p&gt;
</content:encoded></item><item><title>klaxons #1!!!</title><link>https://andrewhudson.dev/blog/klaxons-1/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/klaxons-1/</guid><pubDate>Sun, 04 Feb 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;It has happened, I don&apos;t know how but it has happened. Indy, alt, decent... whatever you want to call it,,, it has returned to the cool. Klaxons are number 1 in the album charts, replacing The View. How the fuck, and when the fuck, did this all happen? Should we take interest in the charts NOW??? Does it matter? Mika is still number 1 in the singles (that should be re-named &quot;the mp3&quot; charts?). Thanks to Grace for giving me a copy of Just Jack&apos;s &quot;Starz in their Eyes&quot; and some juicy chinese music. You are a star!!! Appears that there is one more gorgeous person in the Family that I have yet to meet. Have you seen Jennifer Hudson? Wow she is hot hot heat! Like Kate Hudson and Rock Hudson she shure is the fucking bacon, yum yumm yummm!!! &lt;a href=&quot;http://www.jenniferhudsononline.com/&quot;&gt;Jennifer Hudson&apos;s Homepage&lt;/a&gt;, &lt;a href=&quot;http://en.wikipedia.org/wiki/Jennifer_Hudson&quot;&gt;wiki page&lt;/a&gt;, &amp;lt;-=-&amp;gt;&lt;/p&gt;
</content:encoded></item><item><title>deerhoof</title><link>https://andrewhudson.dev/blog/deerhoof/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/deerhoof/</guid><pubDate>Sat, 03 Feb 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;listening to deerhoof and liking it much! I&apos;ve gone through a faze of downloading every band that I hear is good (in nme, in the newspapers, on the radio online and so on!!!) and then have not really had the time to listen to much of it (other than the stuff that I put on my mp3 player). There is much much much more than I can ever listen to but I am doing my very best this evening to listen to a good % of it :) So far I&apos;ve listened to the Noisettes&apos; &quot;What&apos;s the Time Mr Wolf&quot; (yup, great stuff!) and now I&apos;m onto Deerhoof&apos;s myspace collection. &lt;a href=&quot;http://myspace.com/deerhoof&quot;&gt;deerhoof (myspace)&lt;/a&gt;. After the Klaxons gig I had half an hour to kill before the train arrived so I got NME. Used to read it every week, my god how has it changed. Where it used to be full of long insightful articles about the latest new music, now it is full of cranky short (50 word max) pieces about the cool bands. What a waste of paper. But what else is there for decent coverage, something decent to read? There is &lt;a href=&quot;http://www.planbmag.com&quot;&gt;Plan B&lt;/a&gt; (arty, wordy and a free cd with every issue!) and &lt;a href=&quot;http://drownedinsound.com/&quot;&gt;drowned in sound&lt;/a&gt; (yes this site looks real good actually!) and &lt;a href=&quot;http://www.thewire.co.uk/&quot;&gt;wire&lt;/a&gt; (if you like bands that&apos;ll never get heard by anyone else). Went to Reading to see &quot;Notes on a Scandal&quot; this morning. Really excellent film. Dench and Blanchett deliver mesmerising acting masterclasses and its an intriguing story. Picked up a new pair of black converse boots and then hotfooted back home to catch the first rugger game. Sooo dull and boring that went to sleep and missed France annihilate Italy 39-3. But I did see England return to their World Cup winning form with a resurgant Jonny Wilkinson scorring 27 perfect points, Jason Robinson scorring a try and Scotland being destroyed 42-20. Days like these can never come often enough.&lt;/p&gt;
</content:encoded></item><item><title>guardian muso blog</title><link>https://andrewhudson.dev/blog/guardian-muso-blog/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/guardian-muso-blog/</guid><pubDate>Sat, 03 Feb 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;a href=&quot;http://blogs.guardian.co.uk/music/&quot;&gt;Guardian Music Blog&lt;/a&gt;&lt;/p&gt;
</content:encoded></item><item><title>we&apos;re thru to the Vth round of the FA CUP</title><link>https://andrewhudson.dev/blog/were-thru-to-the-vth-round-of-the-fa-cup/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/were-thru-to-the-vth-round-of-the-fa-cup/</guid><pubDate>Sat, 27 Jan 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;manu beat pompey 2-1 in the 4th round of the fa cup thanks to the magestical subliminity of Rooney. Tesco open in Beijing &lt;a href=&quot;http://news.bbc.co.uk/1/hi/business/6301385.stm&quot;&gt;Tesco in China&apos;s Capital&lt;/a&gt; &quot;How do women work?&quot; we men do often wonder... &lt;a href=&quot;http://people.howstuffworks.com/women.htm&quot;&gt;How Women Work&lt;/a&gt; good luck in the ultraworld!!! A&lt;/p&gt;
</content:encoded></item><item><title>celeb apprentice</title><link>https://andrewhudson.dev/blog/celeb-apprentice/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/celeb-apprentice/</guid><pubDate>Fri, 26 Jan 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/Celebrity_Apprentice&quot;&gt;who is in this year&apos;s celebrity apprentice&lt;/a&gt;&lt;/p&gt;
</content:encoded></item><item><title>ill Ill ILL</title><link>https://andrewhudson.dev/blog/ill-ill-ill/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/ill-ill-ill/</guid><pubDate>Fri, 26 Jan 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Hillow, its Friday evening and I am at home ill as painfully and pitifully as can be. Two days of non-stop sleep and I&apos;m getting bloody tired of it. Notice the new theme, much improvement upon the last ones but not 100% liking everything it offers. Expect changes;) Last weekend I was in Cambridge and had a wonderful time! I love the town and have excellent memories of it, I met the most wonderful and enchanting clever and amazing people, but I had to move away for good doesn&apos;t last forever and one has to experience different places, meet different people and so on... Gyu-Hyun and Lena are still living in my old house, I stayed there 2 nights going into town on Sunday to buy tea from Seoul Plaza (Korean supermarket) brunch at Cafe Carrington and a reflective stroll back along the river Cam before going back into town with Gyu-Hyun to meet up with Christoph and watch the Arsenal vs. Manchester United game at The Avery. The Gunners beat us 2-1. Saturday we went to The Avery to watch Liverpool beat Chelsea 2-0, then to the cinema and watch &lt;em&gt;Rocky Balboa&lt;/em&gt; which we thought was bloody entertaining but (surprise surprise) a &lt;strong&gt;little far fetched&lt;/strong&gt;. The rest of the week. I went running on Monday, we ran the &quot;River&quot; route and apart from having to walk up one hill (if we ran we would have slipped over because the mud was soo slippery) and I won a sprint finish for second place - Luc having finished a couple of hours before us;) I&apos;ve watched a couple of DVDs: &quot;Wasabi&quot; and the fantastic &quot;Run Lola Run&quot;, and the disgustingly nasty (but excellent nonetheless) &quot;The Proposition&quot; and the sad &quot;Grave of the Fireflies&quot;. Gotta go and see &lt;em&gt;Babel, Blood Diamond,&lt;/em&gt; and &lt;em&gt;Notes on a Scandal&lt;/em&gt;. Not to mention the Oscar nominated films that I missed when they were first out in the cinema. This weekend I am lucky to be visited by family (3 cousins and uncle and auntie) from Germany/Belgium (they&apos;ve just moved from Germany to Belgium). I&apos;ll recover from this illness, have my hair cut, go to the shops and also to the cinema. All the Best!&lt;/p&gt;
</content:encoded></item><item><title>update and change, rewire and rebirth</title><link>https://andrewhudson.dev/blog/update-and-change-rewire-and-rebirth/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/update-and-change-rewire-and-rebirth/</guid><pubDate>Thu, 18 Jan 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Calm down, hold your horses, mind the gap and batton down the hatches ... outside today was an exceptionally windy day. We were sent home from work at 1530 because it was so windy (to give us more time to get home, and it wasn&apos;t really safe at work either). This blog is currently undergoing a refit as I try and work out what the hell I want to use it for, get the hang of wordpress themes, learn PHP (if I really want to make it shit-hot) and play around with the CSS. So if it keeps on changing don&apos;t worry, you have still got the right place for my blog. This weekend I am going to Cambridge for the first time since I moved out last summer. My former housemate Gyu-Hyun is moving back to Korea next month and I am going to visit him. Today after work I bought a superslim sleeping bag (it&apos;s designed for use army use in tropical jungles so it is very light (700g!) and small but will not be of any use in the outside British winter but will do for visiting people allowing me to travel light). I&apos;ll have my haircut after work tomorrow, and by god it needs cutting! Two months since I last had a chop and its getting really long.&lt;/p&gt;
</content:encoded></item><item><title>bright in the middle wick sunshine</title><link>https://andrewhudson.dev/blog/bright-in-the-middle-wick-sunshine/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/bright-in-the-middle-wick-sunshine/</guid><pubDate>Wed, 17 Jan 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;yes. I went running this lunchtime. and for the first time this year I didn&apos;t kill myself doing it. There were only four of us due to the torrential rain in the morning, and a clash with the re-scheduled swimming club, but it was good fun. Never run this route this direction before, always finished with the killer hill up from the Thames... we started with that, then a steady flow along the flat parallel with the hill before diving into the woods for a non-stop killer hill run before a flat muddy field mud-skate hobble back to base. The air was warm and the sky blue. In the ultraworld the beatles are still scribbling in their mindless sleep. I finished &quot;Sputnik Sweatheart&quot; by Haruki Murakami last night, started &quot;A Tramp Abroad&quot; by Mark Twain, right excellent book that was... and it featured cats! Love, longing, loss, friendship and rejection... kept guessing how it would end and blown away by the ending, not what you&apos;d have thought, or me.&lt;/p&gt;
</content:encoded></item><item><title>HappyNewYear!!!</title><link>https://andrewhudson.dev/blog/happynewyear/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/happynewyear/</guid><pubDate>Sat, 13 Jan 2007 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;right, first of all i know it is already the 13th of jan and i have not written here this year but i have been bloody busy... so. Happy New Year! Right now I am in Cheltenham, visiting my brother and working up the energy needed to go into town and see the place (Rob needs his sleep and is sleeping). I got here remarkably quickly last night, after realising that no-one was leaving in the right direction from work to give me a lift to the station I stomped down down down the muddy sharp steep tabogan run hill that takes one from work to the river, to the station in a mile of very un-flat walking... after I crossed the river I realised that if I continued walking I would miss the train so I sucked in a deep lungful of river air and bombed it (ran) to the station... bursting lungs and cascading anti-overheating juices aside I made the train with a few milliseconds to spare. Yes! The journey, viaÂ  Didcot and Swindon, arrived only 2 hours later and I missed most of it because I was playing with my new laptop. I watched the first half of &quot;Thankyou for not Smoking&quot; and did a few other things. Last night. Rob cooked a fantastic curry and we watched &quot;Ong-Bak&quot;. WOW what an awesome film; I watched it Thu too, but I had to watch it again with the bro as the fight scenes are the best that I have ever seen, sometimes grusome but mostly jaw-droppingly dazzling. I got this laptop, a dell inspiron 1501 (my first laptop, and first new computer in 8 yrs!) on Thursday. Yup!&lt;/p&gt;
</content:encoded></item><item><title>Hello world!</title><link>https://andrewhudson.dev/blog/hello-world/</link><guid isPermaLink="true">https://andrewhudson.dev/blog/hello-world/</guid><pubDate>Fri, 29 Dec 2006 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Welcome you wonderful people, I am very happy that you stopped off to look at this first posting of my newly born blog, what will go here, I have a few ideas but now is not the time nor the place to share them. Hah. My eyes are sore from too many hours in front of this computer diddling and daddling with bits and bobs of website and blog development. I&apos;m listening to &lt;a href=&quot;https://www.radioactive.fm/&quot;&gt;RadioActive&lt;/a&gt;, a New Zealand radio station that I have grown attached to for the last couple of years since stumbling upon it somehow... It is fantastically excellent... Right now I must bid you an excellently good night and hit the sack for much needed rest. Until next time. Andrew&lt;/p&gt;
</content:encoded></item></channel></rss>