<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:media="http://search.yahoo.com/mrss/"><channel><title><![CDATA[Sean Hood]]></title><description><![CDATA[Geek ~ Photographer ~ Wanderer]]></description><link>https://snhd.co/</link><image><url>https://snhd.co/favicon.png</url><title>Sean Hood</title><link>https://snhd.co/</link></image><generator>Ghost 1.26</generator><lastBuildDate>Wed, 09 Dec 2020 11:15:42 GMT</lastBuildDate><atom:link href="https://snhd.co/rss/" rel="self" type="application/rss+xml"/><ttl>60</ttl><item><title><![CDATA[Honeycomb.io's honeytail ♡ systemd's instantiated services]]></title><description><![CDATA[<div class="kg-card-markdown"><p>Update: For those using Puppet, I've now relased a module to the forge which implements what's set out in this blog post: <a href="https://forge.puppet.com/seanhood/honeytail">https://forge.puppet.com/seanhood/honeytail</a></p>
<p>Second post in a row about Honeycomb.io. Anyway, a question popped up in the Honeycomb Slack channel asking:</p>
<blockquote>
<p>A question on</p></blockquote></div>]]></description><link>https://snhd.co/honeytail-and-systemd-instantiated-services/</link><guid isPermaLink="false">5e2088892305e30648a253a3</guid><category><![CDATA[Tech]]></category><category><![CDATA[Honeycomb.io]]></category><dc:creator><![CDATA[Sean Hood]]></dc:creator><pubDate>Fri, 17 Jan 2020 10:22:38 GMT</pubDate><content:encoded><![CDATA[<div class="kg-card-markdown"><p>Update: For those using Puppet, I've now relased a module to the forge which implements what's set out in this blog post: <a href="https://forge.puppet.com/seanhood/honeytail">https://forge.puppet.com/seanhood/honeytail</a></p>
<p>Second post in a row about Honeycomb.io. Anyway, a question popped up in the Honeycomb Slack channel asking:</p>
<blockquote>
<p>A question on honey tail, can you have multiple parsers and log files, in one config file and run a single honeycomb instance, or should you have seperate instances for each type of parser?</p>
</blockquote>
<p>I wondered this a few months back and came up with a solution using a feature of systemd known as <a href="http://0pointer.de/blog/projects/instances.html">Instantiated Services</a> I had learned about a few years ago. Which allows you to template a variable in a systemd unit file.</p>
<p>On to how we can allow us to run multiple instances of Honeytail on a server. In this ficticious world we have a server running Nginx and MySQL and we want to parse their logs and send them off to Honeycomb.io.</p>
<p>This guide assumes you're have already installed <code>honeytail</code>, if not here's that guide: <a href="https://docs.honeycomb.io/getting-data-in/integrations/honeytail/">https://docs.honeycomb.io/getting-data-in/integrations/honeytail/</a></p>
<h2 id="step1">Step 1</h2>
<p>Create a directory for us to store our <code>honeytail</code> files in. <code>conf.d</code> made sense to me, like how many other bits of software keep their config files separate.</p>
<pre><code class="language-shell">mkdir /etc/honeytail/conf.d
</code></pre>
<h2 id="step2">Step 2</h2>
<p>Create the config file for parsing the MySQL slow logs:</p>
<pre><code class="language-ini">[Required Options]
 ParserName = mysql
 WriteKey = REDACTED
 LogFiles = /var/lib/mysql/slow-query.log
 Dataset = mysql
</code></pre>
<p>Copy this into: <code>/etc/honeytail/conf.d/mysql.conf</code></p>
<p>N.B. There's more to parsing these logs than just this file, see docs here: <a href="https://docs.honeycomb.io/getting-data-in/integrations/databases/mysql/logs/">https://docs.honeycomb.io/getting-data-in/integrations/databases/mysql/logs/</a></p>
<p>Create the config files for parsing Nginx access logs:</p>
<pre><code class="language-ini">[Required Options]
 ParserName = nginx
 WriteKey = REDACTED
 LogFiles = /var/log/nginx/*.log
 Dataset = traces

[Nginx Parser Options]
ConfigFile = /etc/nginx/conf.d/honeytail-logformat.conf
LogFormatName = combined-honey
</code></pre>
<p>As above information about the actual configuration is here: <a href="https://docs.honeycomb.io/getting-data-in/integrations/webservers/nginx/">https://docs.honeycomb.io/getting-data-in/integrations/webservers/nginx/</a></p>
<h2 id="step3">Step 3</h2>
<p>Now we need to drop in the new systemd unit file. It’s not very different than the original except for the modification to line 6. The magic is all in the <code>%i</code>. This goes in: <code>/etc/systemd/system/honeytail@.service</code></p>
<pre><code class="language-ini">[Unit]
Description=Honeycomb log tailer honeytail - %i
After=network.target

[Service]
ExecStart=/usr/bin/honeytail -c /etc/honeytail/conf.d/%i.conf
KillMode=process
Restart=on-failure
User=honeycomb
Group=honeycomb

[Install]
WantedBy=multi-user.target
</code></pre>
<h2 id="step4">Step 4</h2>
<p>Since we have added a new unit file, we need to let systemd know about this:</p>
<pre><code class="language-shell">systemctl daemon-reload
</code></pre>
<h2 id="step5">Step 5</h2>
<p>All going well we can now start our instantiated services like so:</p>
<pre><code class="language-shell">systemctl start honeytail@nginx
systemctl start honeytail@mysql
</code></pre>
<p>Assuming we want these to start on boot, let’s also enable them:</p>
<pre><code class="language-shell">systemctl enable honeytail@nginx
systemctl enable honeytail@mysql
</code></pre>
<p>Check that all is well:</p>
<pre><code class="language-shell">root@myserver:~# systemctl status honeytail@nginx
● honeytail@nginx.service - Honeycomb log tailer honeytail - nginx
   Loaded: loaded (/etc/systemd/system/honeytail@.service; enabled; vendor preset: enabled)
   Active: active (running) since Thu 2020-01-16 16:26:39 UTC; 2s ago
 Main PID: 32052 (honeytail)
   CGroup: /system.slice/system-honeytail.slice/honeytail@nginx.service
           └─32052 /usr/bin/honeytail -c /etc/honeytail/conf.d/nginx.conf

Jan 16 16:26:39 myserver systemd[1]: Started Honeycomb log tailer honeytail - nginx.
Jan 16 16:26:40 myserver honeytail[32052]: time=&quot;2020-01-16T16:26:40Z&quot; level=info msg=&quot;Starting honeytail&quot;
</code></pre>
<p>I hope you enjoyed this useful tidbit of information about systemd. And if you haven't heard of Honeycomb, go check them out.</p>
</div>]]></content:encoded></item><item><title><![CDATA[Flask + Honeycomb.io - Adding request.route and build.version columns to events]]></title><description><![CDATA[<div class="kg-card-markdown"><p>I've been using Honeycomb.io for a few months now in my day job. I introduced it to the Javascript developers to help them have insight about what was happening inside of their applications.</p>
<p>I'm not a Javascript dev, nor a dev at all really, but I some times dabble</p></div>]]></description><link>https://snhd.co/flask-and-honeycomb-adding-useful-data-to-events/</link><guid isPermaLink="false">5dbf4795c70fea062bf28cc7</guid><category><![CDATA[Tech]]></category><category><![CDATA[Honeycomb.io]]></category><category><![CDATA[Observability]]></category><dc:creator><![CDATA[Sean Hood]]></dc:creator><pubDate>Sun, 03 Nov 2019 23:30:00 GMT</pubDate><content:encoded><![CDATA[<div class="kg-card-markdown"><p>I've been using Honeycomb.io for a few months now in my day job. I introduced it to the Javascript developers to help them have insight about what was happening inside of their applications.</p>
<p>I'm not a Javascript dev, nor a dev at all really, but I some times dabble in writing applications in Flask, a Python web framework. I wanted take the <code>beeline-python</code> for a spin with an internal tool I had build a few months back at work.</p>
<p>I will skip over the initial configuration as this is covered in quite some detail in their docs: <a href="https://docs.honeycomb.io/getting-data-in/python/beeline/">https://docs.honeycomb.io/getting-data-in/python/beeline/</a></p>
<p>What I'm going to run through is adding <code>request.route</code> and <code>build.version</code> columns to my events being instrumented automatically by the <code>beeline-python</code> library.</p>
<h2 id="addingrequestroute">Adding request.route</h2>
<p>By default the <code>beeline-python</code> library adds a column for <code>request.path</code>, this is useful but it's hard to breakdown which events came from which route within your Flask application. In the <code>beeline-nodejs</code> library, <code>request.route</code> is included by default.</p>
<p><img src="https://snhd.co/content/images/2019/11/Screenshot-2019-11-03-at-22.06.35.png" alt="Screenshot-2019-11-03-at-22.06.35"></p>
<p>This is our sample Hello World application:</p>
<pre><code class="language-python">from flask import Flask

import beeline
from beeline.middleware.flask import HoneyMiddleware

beeline.init(
    writekey='REDACTED',
    dataset='my-python-app',
    service_name='my-python-app'
)

app = Flask(__name__)
HoneyMiddleware(app, db_events=False)


@app.route(&quot;/&quot;)
def hello():
        return &quot;Hello World!&quot;


@app.route(&quot;/profile/&lt;username&gt;&quot;)
def profile(username):
        return &quot;&lt;h1&gt;Hello, {0}&lt;/h1&gt;&quot;.format(username)
</code></pre>
<p>We have our <code>beeline</code> library imported, along with the <code>HoneyMiddleware</code>, beeline is initialised and we have a couple of routes we want to instrument.</p>
<p>Adding the route to each event is as simple as importing <code>request</code> from the Flask library and adding this piece of code:</p>
<pre><code class="language-diff">- from flask import Flask
+ from flask import Flask, request
</code></pre>
<pre><code class="language-python">@app.before_request
def before_request():
        beeline.add_context_field(&quot;request.route&quot;, request.url_rule)
</code></pre>
<p>Flask's <code>app.before_request</code> runs before every request, and beeline's <code>add_context_field()</code> function adds context to the current open span.  This results in any matching route getting this additional bit of context.</p>
<h2 id="addingbuildversion">Adding build.version</h2>
<p>Now we're going to add some information about the version of the application. This is useful to break down latencies and errors by the build version. It can also help you visualise deploys of new code.</p>
<p><img src="https://snhd.co/content/images/2019/11/Screenshot-2019-11-03-at-22.30.46.png" alt="Screenshot-2019-11-03-at-22.30.46"></p>
<p>The beeline library provides a presend hook which we can use to scrub any data before it is sent on its way to them. We can use this to append any extra data we might also find useful.</p>
<p>This snippet achieves just that:</p>
<pre><code class="language-python">def beeline_presend(fields):
        fields['build.version'] = '1.0.0'
</code></pre>
<p>And then we call this function from beeline.init like so:</p>
<pre><code class="language-diff"> beeline.init(
     writekey='REDACTED',
     dataset='my-python-app',
-    service_name='my-python-app'
+    service_name='my-python-app',
+    presend_hook=beeline_presend
 )
</code></pre>
<p>Further info on the presend_hook here: <a href="https://docs.honeycomb.io/getting-data-in/python/beeline/#scrubbing-sensitive-data">https://docs.honeycomb.io/getting-data-in/python/beeline/#scrubbing-sensitive-data</a></p>
<h2 id="alltogether">All together</h2>
<pre><code class="language-python">from flask import Flask, request

import beeline
from beeline.middleware.flask import HoneyMiddleware


def honey_presend(fields):
        fields['build.version'] = '1.0.1'

beeline.init(
    writekey='REDACTED',
    dataset='my-python-app',
    service_name='my-python-app',
    presend_hook=honey_presend
)

app = Flask(__name__)
HoneyMiddleware(app, db_events=False)


@app.route(&quot;/&quot;)
def hello():
        return &quot;Hello World!&quot;


@app.route(&quot;/profile/&lt;username&gt;&quot;)
def profile(username):
        return &quot;&lt;h1&gt;Hello, {0}&lt;/h1&gt;&quot;.format(username)


@app.before_request
def before_request():
        beeline.add_context_field(&quot;request.route&quot;, request.url_rule)
</code></pre>
</div>]]></content:encoded></item><item><title><![CDATA[Live in London: BØRNS, Jessie Reyez & Marika Hackman]]></title><description><![CDATA[In November I was lucky enough to photograph three amazing artists playing live in London, for The 405.]]></description><link>https://snhd.co/live-in-london-nov/</link><guid isPermaLink="false">5a208b94019981232697f3f6</guid><dc:creator><![CDATA[Sean Hood]]></dc:creator><pubDate>Sat, 02 Dec 2017 22:15:00 GMT</pubDate><media:content url="https://snhd.co/content/images/2017/12/london-live-nov.jpg" medium="image"/><content:encoded><![CDATA[<div class="kg-card-markdown"><img src="https://snhd.co/content/images/2017/12/london-live-nov.jpg" alt="Live in London: BØRNS, Jessie Reyez & Marika Hackman"><p>In November I was lucky enough to photograph three amazing artists playing live in London, for The 405. Hoping to see this little lot grace the festival circuit in 2018.</p>
<p>First up we have <a href="https://www.bornsmusic.com/">BØRNS</a> who played at Scala on the 15th of November, an American singer songwriter from Grand Haven, Michigan.</p>
<p><img src="https://snhd.co/content/images/2017/12/DSC_4462.jpg" alt="Live in London: BØRNS, Jessie Reyez & Marika Hackman"></p>
<p><img src="https://snhd.co/content/images/2017/12/DSC_4526.jpg" alt="Live in London: BØRNS, Jessie Reyez & Marika Hackman"></p>
<p><img src="https://snhd.co/content/images/2017/12/DSC_4431.jpg" alt="Live in London: BØRNS, Jessie Reyez & Marika Hackman"></p>
<p><img src="https://snhd.co/content/images/2017/12/DSC_4618.jpg" alt="Live in London: BØRNS, Jessie Reyez & Marika Hackman"></p>
<p><img src="https://snhd.co/content/images/2017/12/DSC_4480.jpg" alt="Live in London: BØRNS, Jessie Reyez & Marika Hackman"></p>
<p>Second up we have <a href="http://jessiereyez.com/">Jessie Reyez</a>, a Colombian-Canadian singer-songwriter from Toronto, Canada, who played Omeara on the 16th of November.</p>
<p><img src="https://snhd.co/content/images/2017/12/DSC_4649.jpg" alt="Live in London: BØRNS, Jessie Reyez & Marika Hackman"></p>
<p><img src="https://snhd.co/content/images/2017/12/DSC_4821.jpg" alt="Live in London: BØRNS, Jessie Reyez & Marika Hackman"></p>
<p><img src="https://snhd.co/content/images/2017/12/DSC_4846.jpg" alt="Live in London: BØRNS, Jessie Reyez & Marika Hackman"></p>
<p><img src="https://snhd.co/content/images/2017/12/DSC_4895.jpg" alt="Live in London: BØRNS, Jessie Reyez & Marika Hackman"></p>
<p><img src="https://snhd.co/content/images/2017/12/DSC_4915.jpg" alt="Live in London: BØRNS, Jessie Reyez & Marika Hackman"></p>
<p>And finally we have <a href="http://marikahackman.com/">Marika Hackman</a>, an English vocalist, multi-instrumentalist and songwriter from London. Marika played at O2's Shepherd's Bush Empire on the 23rd of November.</p>
<p><img src="https://snhd.co/content/images/2017/12/DSC_5210.jpg" alt="Live in London: BØRNS, Jessie Reyez & Marika Hackman"></p>
<p><img src="https://snhd.co/content/images/2017/12/DSC_5169.jpg" alt="Live in London: BØRNS, Jessie Reyez & Marika Hackman"></p>
<p><img src="https://snhd.co/content/images/2017/12/DSC_5200.jpg" alt="Live in London: BØRNS, Jessie Reyez & Marika Hackman"></p>
</div>]]></content:encoded></item><item><title><![CDATA[Sean’s Summer Summary]]></title><description><![CDATA[<div class="kg-card-markdown"><p>So I’m going to stretch Summer back to about April. Quite a lot has happened this year so I figured I'd make one big post to summarise. Several festivals were attended, many miles were covered, plenty photos taken and several new friends made and with all that going on</p></div>]]></description><link>https://snhd.co/summer-2017/</link><guid isPermaLink="false">59a3dfe4bc90067bdae94d4a</guid><dc:creator><![CDATA[Sean Hood]]></dc:creator><pubDate>Wed, 30 Aug 2017 22:45:09 GMT</pubDate><media:content url="https://snhd.co/content/images/2017/08/DSC_7832.jpg" medium="image"/><content:encoded><![CDATA[<div class="kg-card-markdown"><img src="https://snhd.co/content/images/2017/08/DSC_7832.jpg" alt="Sean’s Summer Summary"><p>So I’m going to stretch Summer back to about April. Quite a lot has happened this year so I figured I'd make one big post to summarise. Several festivals were attended, many miles were covered, plenty photos taken and several new friends made and with all that going on I landed a job back in London.</p>
<p>First up the April bank holiday, with my dad, I drove up to a small town called Mallaig in the highlands of Scotland to go out sea kayaking. While up there we spent a couple of nights on the Isle of Mull, explored the town of Tobermory, had a tour of the distillery and wild camped on the south of the island. On returning I finally managed to stay a night in Brattleburn bothy.</p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_5068.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_5118.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_5265.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_5322.jpg" alt="Sean’s Summer Summary"></p>
<h3 id="festivaltime">Festival time</h3>
<p>Next up Handmade Festival in Leicester kicks off the first of many festivals for me this year. Enjoyed the likes of Slaves, Peaness, Honeyblood, and British Sea Power.</p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_5961.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_5835.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_6659.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_6778.jpg" alt="Sean’s Summer Summary"></p>
<h3 id="3500milesaroundeuropeinavan">3,500 Miles around Europe in a van</h3>
<p>Then May comes around and now I some how need to sum up spending a full 14 days traveling around Europe in my van with my brother for my cousins wedding in Italy in like 5 photos.</p>
<p>Anyway, here we both are just before setting off.</p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_7174.jpg" alt="Sean’s Summer Summary"></p>
<p>En-route to Paris, we had a break in a small French village at sunset</p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_7250.jpg" alt="Sean’s Summer Summary"></p>
<p>Spot of climbing in Fontainebleau, I must re-visit however not in 33ºc weather.</p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_7465.jpg" alt="Sean’s Summer Summary"></p>
<p>Cleaning bugs off the windscreen in The Black Forest</p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_7612.jpg" alt="Sean’s Summer Summary"></p>
<p>Sunset somewhere in the Black Forest</p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_7667.jpg" alt="Sean’s Summer Summary"></p>
<p>Freitag’s Flagship store in Zurich, Switzerland</p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_7692.jpg" alt="Sean’s Summer Summary"></p>
<p>Switzerland is well pretty ain’t it?</p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_7842.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_8090.jpg" alt="Sean’s Summer Summary"></p>
<p>Woo, wedding time!</p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_8387.jpg" alt="Sean’s Summer Summary"></p>
<p>Where we stayed for the night driving through Czech Republic</p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_8751.jpg" alt="Sean’s Summer Summary"></p>
<p>Berlin in the sun</p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_8829.jpg" alt="Sean’s Summer Summary"></p>
<p>Amsterdam in the cloud</p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_9488.jpg" alt="Sean’s Summer Summary"></p>
<p>And finally back to The NORTH</p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_9564.jpg" alt="Sean’s Summer Summary"></p>
<h3 id="glastoitdidntevenrain">Glasto: It didn’t even rain</h3>
<p>And now we’re in June, week and a half back at work then it was time for the yearly pilgrimage down to a little known festival on a farmers field near Pilton, Somerset. Caught the likes of Radiohead, Lorde, Alt-J, Nadine Shah, Glass Animals.</p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_0023.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_9692.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_9723.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_9907.jpg" alt="Sean’s Summer Summary"></p>
<h3 id="pohodathebestslovakmusicfestivalyouhaventheardof">Pohoda: The best Slovak music festival you haven’t heard of</h3>
<p>In July I was lucky enough to be flown out to shoot Pohoda Festival. It’s the biggest music festival in Slovakia and set on the site of an airport in the city of Trenčín. And now it’s one of my top 3 festival experiences, possibly even making the top spot. Not only did I get to go up in a hot air ballon but got to watch Future Islands from the stage side and discovered several new bands and artists I didn’t know of before such as 52 Hertz Whale, Alice Phoebe Lou and Baloji.</p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_0293.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_1516.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_2419.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_2702.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_3275.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_3283.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_1593.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_3516.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_3865.jpg" alt="Sean’s Summer Summary"></p>
<p>It’s so hard to summarise this festival in so few photos. I shot all of this for The 405, so you can check out more shots over there: <a href="https://www.thefourohfive.com/music/article/in-photos-pohoda-2017-150">In Photos: Pohoda 2017</a></p>
<p>If you need any more reason to visit the pints are €1.50 and there’s even dogs.</p>
<h3 id="citadelfestivalicouldntblagaphotopasssoeverythingisshotonaniphone">Citadel Festival: I couldn’t blag a photo pass so everything is shot on an iPhone</h3>
<p>While down in London in mid July for an interview I found out that there was a single day festival on across in Victoria Park. Line up was packed with so many artists I’d either been wanting to see for so long, I couldn’t pass up on going. On their website it listed that only “small personal” cameras were allowed. Failing to find somewhere to buy a disposable or nab a press pass on the day I just went around with my phone. In the end I got so see the likes of Bonobo, Sylvan Esso, Maggie Rogers, RY X, Laura Marling and Foals.</p>
<p><img src="https://snhd.co/content/images/2017/summer/APC_0046.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/APC_0019.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/APC_0024.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/APC_0088.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/APC_0094.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/APC_0118.jpg" alt="Sean’s Summer Summary"></p>
<h3 id="standoncallingdogsdogsdogs">Standon Calling: Dogs dogs dogs</h3>
<p>If you weren’t counting we’re on to festival number 4, Standon Calling, a small little boutique festival just north of the M25. What sets Standon apart from all of the other festivals is the sheer number of fluffy mostly 4 legged friends. It’s amazing, this was my second year shooting and I went back purely because I had so much fun photographing all of these dogs last year. The 405 even made it a feature in 2016: <a href="https://www.thefourohfive.com/music/article/the-dogs-of-standon-calling-147">Photo Essay: 64 photos of dogs from Standon Calling 2016</a></p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_0988.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_1942.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_1782.jpg" alt="Sean’s Summer Summary"></p>
<p>Aside from the Dog Show on the Sunday, there’s a costume parade on the Saturday</p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_1353.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_1380.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_6060.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_0712.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_1209.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_4237.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_5085.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_5353.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_6308.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_0719.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_6845.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_4949.jpg" alt="Sean’s Summer Summary"></p>
<h3 id="arctangent">ArcTanGent</h3>
<p>Still with me? Good. I’m pretty sure I’ve wanted to go to ATG since it was first on in 2013, finally I made it happen. Set on a farm just south of Bristol, with two fields and four stages; ArcTangent turns out to be one of the smallest festivals I’ve been to with around 5,000 person capacity. Managed to catch the likes of Listener, Heck, Ho99o9, TTNG and Explosions In The Sky.</p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_7979.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_9318.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_8383.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_8296.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_7873.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_0999.jpg" alt="Sean’s Summer Summary"></p>
<h3 id="andfinally">And finally</h3>
<p>This slightly longer than average “summer” has been made even better with time spent with family, old friends and new friends I’ve made on the way.</p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_9631.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_7409.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_8469.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_8421.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/Photo17_14.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_0606.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_9930.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_3062.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_3216.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_3219.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/Photo27_24-2.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/__1_00665.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/__2_00666.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_3733.jpg" alt="Sean’s Summer Summary"></p>
<p><img src="https://snhd.co/content/images/2017/summer/__6_00670.jpg" alt="Sean’s Summer Summary"></p>
<p>So yeah, that’s pretty much what I’ve pointing my camera at for about half of this year. Let’s see how the rest continues.</p>
<p><img src="https://snhd.co/content/images/2017/summer/DSC_7730.jpg" alt="Sean’s Summer Summary"></p>
<p>From me behind the camera, innabit.</p>
</div>]]></content:encoded></item><item><title><![CDATA[Citadel 2017—I couldn't blag a photo pass so all these were shot on an iPhone]]></title><description><![CDATA[<div class="kg-card-markdown"><p>So last month I found out about Citadel festival happening in London, I tried to get myself a photo pass, alas that didn't work out so I just bought a ticket anyway. I couldn't pass up on the likes of Foals, Sylvan Esso, RY X, Bonobo, Laura Marling, Nadine Shah</p></div>]]></description><link>https://snhd.co/citadel-2017/</link><guid isPermaLink="false">59a3cfcf0cfda173ef41d101</guid><dc:creator><![CDATA[Sean Hood]]></dc:creator><pubDate>Thu, 03 Aug 2017 15:00:00 GMT</pubDate><media:content url="https://snhd.co/content/images/2017/citadel/APC_0118.jpg" medium="image"/><content:encoded><![CDATA[<div class="kg-card-markdown"><img src="https://snhd.co/content/images/2017/citadel/APC_0118.jpg" alt="Citadel 2017—I couldn't blag a photo pass so all these were shot on an iPhone"><p>So last month I found out about Citadel festival happening in London, I tried to get myself a photo pass, alas that didn't work out so I just bought a ticket anyway. I couldn't pass up on the likes of Foals, Sylvan Esso, RY X, Bonobo, Laura Marling, Nadine Shah and Hudson Taylor. Maybe next year I'll get to take along my proper camera. Here's a selection of the photos I took:</p>
<p><img src="https://snhd.co/content/images/2017/citadel/APC_0012.jpg" alt="Citadel 2017—I couldn't blag a photo pass so all these were shot on an iPhone"><br>
<img src="https://snhd.co/content/images/2017/citadel/APC_0019.jpg" alt="Citadel 2017—I couldn't blag a photo pass so all these were shot on an iPhone"><br>
<img src="https://snhd.co/content/images/2017/citadel/APC_0022.jpg" alt="Citadel 2017—I couldn't blag a photo pass so all these were shot on an iPhone"><br>
<img src="https://snhd.co/content/images/2017/citadel/APC_0024.jpg" alt="Citadel 2017—I couldn't blag a photo pass so all these were shot on an iPhone"><br>
<img src="https://snhd.co/content/images/2017/citadel/APC_0025.jpg" alt="Citadel 2017—I couldn't blag a photo pass so all these were shot on an iPhone"><br>
<img src="https://snhd.co/content/images/2017/citadel/APC_0033.jpg" alt="Citadel 2017—I couldn't blag a photo pass so all these were shot on an iPhone"><br>
<img src="https://snhd.co/content/images/2017/citadel/APC_0036.jpg" alt="Citadel 2017—I couldn't blag a photo pass so all these were shot on an iPhone"><br>
<img src="https://snhd.co/content/images/2017/citadel/APC_0041.jpg" alt="Citadel 2017—I couldn't blag a photo pass so all these were shot on an iPhone"><br>
<img src="https://snhd.co/content/images/2017/citadel/APC_0051.jpg" alt="Citadel 2017—I couldn't blag a photo pass so all these were shot on an iPhone"><br>
<img src="https://snhd.co/content/images/2017/citadel/APC_0052.jpg" alt="Citadel 2017—I couldn't blag a photo pass so all these were shot on an iPhone"><br>
<img src="https://snhd.co/content/images/2017/citadel/APC_0062.jpg" alt="Citadel 2017—I couldn't blag a photo pass so all these were shot on an iPhone"><br>
<img src="https://snhd.co/content/images/2017/citadel/APC_0068.jpg" alt="Citadel 2017—I couldn't blag a photo pass so all these were shot on an iPhone"><br>
<img src="https://snhd.co/content/images/2017/citadel/APC_0078.jpg" alt="Citadel 2017—I couldn't blag a photo pass so all these were shot on an iPhone"><br>
<img src="https://snhd.co/content/images/2017/citadel/APC_0079.jpg" alt="Citadel 2017—I couldn't blag a photo pass so all these were shot on an iPhone"><br>
<img src="https://snhd.co/content/images/2017/citadel/APC_0082.jpg" alt="Citadel 2017—I couldn't blag a photo pass so all these were shot on an iPhone"><br>
<img src="https://snhd.co/content/images/2017/citadel/APC_0088.jpg" alt="Citadel 2017—I couldn't blag a photo pass so all these were shot on an iPhone"><br>
<img src="https://snhd.co/content/images/2017/citadel/APC_0094.jpg" alt="Citadel 2017—I couldn't blag a photo pass so all these were shot on an iPhone"><br>
<img src="https://snhd.co/content/images/2017/citadel/APC_0107.jpg" alt="Citadel 2017—I couldn't blag a photo pass so all these were shot on an iPhone"><br>
<img src="https://snhd.co/content/images/2017/citadel/APC_0113.jpg" alt="Citadel 2017—I couldn't blag a photo pass so all these were shot on an iPhone"><br>
<img src="https://snhd.co/content/images/2017/citadel/APC_0118.jpg" alt="Citadel 2017—I couldn't blag a photo pass so all these were shot on an iPhone"></p>
<p>I have too many photos to share from the likes of Glastonbury, Pohoda Festival, Standon Calling, my 3000 mile road trip down to Italy and in the next couple of weeks Arctangent, so expect a 'Summer Summary' in the next month or so.</p>
<p>Enjoy!</p>
</div>]]></content:encoded></item><item><title><![CDATA[The Rolling Home Journal (No. 1)]]></title><description><![CDATA[<div class="kg-card-markdown"><p><img src="https://snhd.co/content/images/2017/02/DSC_3828.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2017/02/DSC_3774.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2017/02/DSC_3796.jpg" alt=""></p>
<p>Back in <a href="https://snhd.co/i-spent-a-night-in-the-peak-district/">May</a> I stayed the night in the Peak District to shoot some photos of my new <a href="https://stitchesandsteel.com/">Stitches and Steel</a> awning. At the end of last year they appeared in the first issue of <a href="http://www.stokedeversince.com/shop/the-rolling-home-journal-issue-one">The Rolling Home Journal</a>.</p>
</div>]]></description><link>https://snhd.co/the-rolling-home-journal/</link><guid isPermaLink="false">59a3cfcf0cfda173ef41d0fe</guid><dc:creator><![CDATA[Sean Hood]]></dc:creator><pubDate>Sat, 11 Feb 2017 22:00:00 GMT</pubDate><media:content url="https://snhd.co/content/images/2017/02/DSC_3781.jpg" medium="image"/><content:encoded><![CDATA[<div class="kg-card-markdown"><img src="https://snhd.co/content/images/2017/02/DSC_3781.jpg" alt="The Rolling Home Journal (No. 1)"><p><img src="https://snhd.co/content/images/2017/02/DSC_3828.jpg" alt="The Rolling Home Journal (No. 1)"><br>
<img src="https://snhd.co/content/images/2017/02/DSC_3774.jpg" alt="The Rolling Home Journal (No. 1)"><br>
<img src="https://snhd.co/content/images/2017/02/DSC_3796.jpg" alt="The Rolling Home Journal (No. 1)"></p>
<p>Back in <a href="https://snhd.co/i-spent-a-night-in-the-peak-district/">May</a> I stayed the night in the Peak District to shoot some photos of my new <a href="https://stitchesandsteel.com/">Stitches and Steel</a> awning. At the end of last year they appeared in the first issue of <a href="http://www.stokedeversince.com/shop/the-rolling-home-journal-issue-one">The Rolling Home Journal</a>.</p>
</div>]]></content:encoded></item><item><title><![CDATA[I spent a night in the Peak District]]></title><description><![CDATA[<div class="kg-card-markdown"><p>Needed to be in Chester today so I set off a day early and spent a night in the Peak District and tested out my new <a href="https://stitchesandsteel.com/">Stitches and Steel</a> awning.</p>
<p><img src="https://snhd.co/content/images/2016/05/DSC_6008.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/05/DSC_6016.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/05/DSC_6025.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/05/DSC_6029.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/05/DSC_6037.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/05/DSC_6055.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/05/DSC_6064.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/05/DSC_6072.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/05/DSC_6075.jpg" alt=""></p>
</div>]]></description><link>https://snhd.co/i-spent-a-night-in-the-peak-district/</link><guid isPermaLink="false">59a3cfcf0cfda173ef41d0fd</guid><dc:creator><![CDATA[Sean Hood]]></dc:creator><pubDate>Mon, 30 May 2016 18:00:00 GMT</pubDate><media:content url="https://snhd.co/content/images/2016/05/DSC_6075.jpg" medium="image"/><content:encoded><![CDATA[<div class="kg-card-markdown"><img src="https://snhd.co/content/images/2016/05/DSC_6075.jpg" alt="I spent a night in the Peak District"><p>Needed to be in Chester today so I set off a day early and spent a night in the Peak District and tested out my new <a href="https://stitchesandsteel.com/">Stitches and Steel</a> awning.</p>
<p><img src="https://snhd.co/content/images/2016/05/DSC_6008.jpg" alt="I spent a night in the Peak District"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_6016.jpg" alt="I spent a night in the Peak District"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_6025.jpg" alt="I spent a night in the Peak District"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_6029.jpg" alt="I spent a night in the Peak District"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_6037.jpg" alt="I spent a night in the Peak District"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_6055.jpg" alt="I spent a night in the Peak District"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_6064.jpg" alt="I spent a night in the Peak District"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_6072.jpg" alt="I spent a night in the Peak District"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_6075.jpg" alt="I spent a night in the Peak District"></p>
</div>]]></content:encoded></item><item><title><![CDATA[Bamburgh & Edinburgh]]></title><description><![CDATA[<div class="kg-card-markdown"><p>So I drove to scotland…<br>
<img src="https://snhd.co/content/images/2016/05/DSC_5490.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5492.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5498.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5500.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5507.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5509.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5515.jpg" alt=""><br>
…and met up with Jenny &amp; friends…<br>
<img src="https://snhd.co/content/images/2016/05/DSC_5553.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5582.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5593.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5612.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5615.jpg" alt=""><br>
…then took photos of St, Margaret's Loch while overly drunk…<br>
<img src="https://snhd.co/content/images/2016/05/DSC_5632.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5634.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5635.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5638.jpg" alt=""><br>
…spent most of early afternoon clearing a hangover and eating cheese toasties…<br>
<img src="https://snhd.co/content/images/2016/05/DSC_5644.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5653.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5659.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5661.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5662.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5665.jpg" alt=""><br>
...I took a wander through The National Museum of Scotland…<br>
<img src="https://snhd.co/content/images/2016/05/DSC_5668.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5677.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5683.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5689.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5691.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5694.jpg" alt=""><br>
…met up again with Jenny for</p></div>]]></description><link>https://snhd.co/bamburgh-and-edinburgh/</link><guid isPermaLink="false">59a3cfcf0cfda173ef41d0fb</guid><dc:creator><![CDATA[Sean Hood]]></dc:creator><pubDate>Thu, 26 May 2016 17:30:00 GMT</pubDate><media:content url="https://snhd.co/content/images/2016/05/DSC_5875.jpg" medium="image"/><content:encoded><![CDATA[<div class="kg-card-markdown"><img src="https://snhd.co/content/images/2016/05/DSC_5875.jpg" alt="Bamburgh & Edinburgh"><p>So I drove to scotland…<br>
<img src="https://snhd.co/content/images/2016/05/DSC_5490.jpg" alt="Bamburgh & Edinburgh"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5492.jpg" alt="Bamburgh & Edinburgh"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5498.jpg" alt="Bamburgh & Edinburgh"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5500.jpg" alt="Bamburgh & Edinburgh"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5507.jpg" alt="Bamburgh & Edinburgh"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5509.jpg" alt="Bamburgh & Edinburgh"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5515.jpg" alt="Bamburgh & Edinburgh"><br>
…and met up with Jenny &amp; friends…<br>
<img src="https://snhd.co/content/images/2016/05/DSC_5553.jpg" alt="Bamburgh & Edinburgh"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5582.jpg" alt="Bamburgh & Edinburgh"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5593.jpg" alt="Bamburgh & Edinburgh"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5612.jpg" alt="Bamburgh & Edinburgh"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5615.jpg" alt="Bamburgh & Edinburgh"><br>
…then took photos of St, Margaret's Loch while overly drunk…<br>
<img src="https://snhd.co/content/images/2016/05/DSC_5632.jpg" alt="Bamburgh & Edinburgh"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5634.jpg" alt="Bamburgh & Edinburgh"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5635.jpg" alt="Bamburgh & Edinburgh"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5638.jpg" alt="Bamburgh & Edinburgh"><br>
…spent most of early afternoon clearing a hangover and eating cheese toasties…<br>
<img src="https://snhd.co/content/images/2016/05/DSC_5644.jpg" alt="Bamburgh & Edinburgh"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5653.jpg" alt="Bamburgh & Edinburgh"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5659.jpg" alt="Bamburgh & Edinburgh"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5661.jpg" alt="Bamburgh & Edinburgh"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5662.jpg" alt="Bamburgh & Edinburgh"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5665.jpg" alt="Bamburgh & Edinburgh"><br>
...I took a wander through The National Museum of Scotland…<br>
<img src="https://snhd.co/content/images/2016/05/DSC_5668.jpg" alt="Bamburgh & Edinburgh"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5677.jpg" alt="Bamburgh & Edinburgh"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5683.jpg" alt="Bamburgh & Edinburgh"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5689.jpg" alt="Bamburgh & Edinburgh"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5691.jpg" alt="Bamburgh & Edinburgh"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5694.jpg" alt="Bamburgh & Edinburgh"><br>
…met up again with Jenny for milkshakes and food at The City Cafe…<br>
<img src="https://snhd.co/content/images/2016/05/DSC_5698.jpg" alt="Bamburgh & Edinburgh"><br>
…afterwards I took a leisurely walk back to the van…<br>
<img src="https://snhd.co/content/images/2016/05/DSC_5703.jpg" alt="Bamburgh & Edinburgh"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5713.jpg" alt="Bamburgh & Edinburgh"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5715.jpg" alt="Bamburgh & Edinburgh"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5724.jpg" alt="Bamburgh & Edinburgh"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5726.jpg" alt="Bamburgh & Edinburgh"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5734.jpg" alt="Bamburgh & Edinburgh"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5741.jpg" alt="Bamburgh & Edinburgh"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5753.jpg" alt="Bamburgh & Edinburgh"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5758.jpg" alt="Bamburgh & Edinburgh"><br>
…and spotted a rainbow after driving around Arthur’s Seat…<br>
<img src="https://snhd.co/content/images/2016/05/DSC_5760.jpg" alt="Bamburgh & Edinburgh"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5772.jpg" alt="Bamburgh & Edinburgh"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5776.jpg" alt="Bamburgh & Edinburgh"><br>
…set off down to Bamburgh…<br>
<img src="https://snhd.co/content/images/2016/05/DSC_5786.jpg" alt="Bamburgh & Edinburgh"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5795.jpg" alt="Bamburgh & Edinburgh"><br>
…arriving just in time for sunset…<br>
<img src="https://snhd.co/content/images/2016/05/DSC_5813.jpg" alt="Bamburgh & Edinburgh"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5817.jpg" alt="Bamburgh & Edinburgh"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5823.jpg" alt="Bamburgh & Edinburgh"><br>
…and woke up to this…<br>
<img src="https://snhd.co/content/images/2016/05/DSC_5875.jpg" alt="Bamburgh & Edinburgh"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5880.jpg" alt="Bamburgh & Edinburgh"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5884.jpg" alt="Bamburgh & Edinburgh"><br>
…had a little wander along that…<br>
<img src="https://snhd.co/content/images/2016/05/DSC_5906.jpg" alt="Bamburgh & Edinburgh"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5907.jpg" alt="Bamburgh & Edinburgh"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5908.jpg" alt="Bamburgh & Edinburgh"><br>
…then on to Lindisfarne for breakfast and mead...<br>
<img src="https://snhd.co/content/images/2016/05/DSC_5918.jpg" alt="Bamburgh & Edinburgh"><br>
<img src="https://snhd.co/content/images/2016/05/DSC_5951.jpg" alt="Bamburgh & Edinburgh"></p>
</div>]]></content:encoded></item><item><title><![CDATA[Handmade Festival 2016]]></title><description><![CDATA[<div class="kg-card-markdown"><p>At the end of April I went down to Leicester with my camera for Handmade Festival</p>
<p><img src="https://snhd.co/content/images/2016/04/handmade/DSC_4121.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4123.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4129.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4130.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4148.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4184.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4202.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4208.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4304.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4339.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4377.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4459.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4471.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4508.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4530.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4565.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4568.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4604.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4614.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4646.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4655.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4682.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4684.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4707.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4709.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4785.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4805.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4833.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4851.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4862.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4889.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4910.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4914.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4947.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4955.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4973.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4991.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_5063.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_5072.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_5076.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_5103.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_5109.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_5179.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_5195.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_5216.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_5229.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_5270.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_5409.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_5414.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_5437.jpg" alt=""></p>
</div>]]></description><link>https://snhd.co/handmade-festival-2016/</link><guid isPermaLink="false">59a3cfcf0cfda173ef41d0fc</guid><dc:creator><![CDATA[Sean Hood]]></dc:creator><pubDate>Thu, 26 May 2016 09:00:00 GMT</pubDate><media:content url="https://snhd.co/content/images/2016/04/handmade/DSC_4202.jpg" medium="image"/><content:encoded><![CDATA[<div class="kg-card-markdown"><img src="https://snhd.co/content/images/2016/04/handmade/DSC_4202.jpg" alt="Handmade Festival 2016"><p>At the end of April I went down to Leicester with my camera for Handmade Festival</p>
<p><img src="https://snhd.co/content/images/2016/04/handmade/DSC_4121.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4123.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4129.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4130.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4148.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4184.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4202.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4208.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4304.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4339.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4377.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4459.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4471.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4508.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4530.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4565.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4568.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4604.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4614.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4646.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4655.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4682.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4684.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4707.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4709.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4785.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4805.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4833.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4851.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4862.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4889.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4910.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4914.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4947.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4955.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4973.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_4991.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_5063.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_5072.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_5076.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_5103.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_5109.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_5179.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_5195.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_5216.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_5229.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_5270.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_5409.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_5414.jpg" alt="Handmade Festival 2016"><br>
<img src="https://snhd.co/content/images/2016/04/handmade/DSC_5437.jpg" alt="Handmade Festival 2016"></p>
</div>]]></content:encoded></item><item><title><![CDATA[That time I lived in a van in London for 1 year 3 months 24 days]]></title><description><![CDATA[I wrote about that year I lived in a van in London. I quite fancied a van for festivals, travels and this is that journey]]></description><link>https://snhd.co/vanlife/</link><guid isPermaLink="false">59a3cfcf0cfda173ef41d0f9</guid><dc:creator><![CDATA[Sean Hood]]></dc:creator><pubDate>Wed, 30 Dec 2015 20:30:00 GMT</pubDate><media:content url="https://snhd.co/content/images/2015/12/tumblr_nq3z2lSvMU1qzj4hso1_1280-1.jpg" medium="image"/><content:encoded><![CDATA[<div class="kg-card-markdown"><h2 id="humblebeginnings">Humble Beginnings</h2>
<img src="https://snhd.co/content/images/2015/12/tumblr_nq3z2lSvMU1qzj4hso1_1280-1.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"><p>It's probably time I write about that year I lived in a van in London. It started in July 2014, I quite fancied a van for festivals and travel earlier in the year, April/May I think. My dad has owned a VW T4 since '07 or so, it has been converted into a passable campervan (more seats, make shift bed, running water and a sink) and since '09 we have taken it to Glastonbury, Solfest and other journeys. Since I was living in London and being quite fond of VW's a T4 wouldn't make sense due to the Low Emission Zone so I set my heart on looking for a VW T5.</p>
<p>Aim was to find an affordable van, 1.9L engine due to being 21/22 at the time and insurance, before the festival season began. A brief 2 and a bit months of looking and I hadn't found a van to take to Glasto with me. The festival came and went (It was great to say the least, possibly my favourite year so far) and I had a few days planned in Bristol as I usually do. <a href="https://twitter.com/milkypirate">Steve/milkypirate</a> (From London, also went to Glasto, lingered in Bristol post festival too) spotted a fairly nice Blue 2006 VW T5 twin sliding doors, 2.5L 174BHP engine and several other factory fitted optional extras. I ummed and arred due to the engine size and twin sliding doors and that is had close to 200k miles on the clock. We decided to check it out, the van was very tidy for it's age and had plenty of power. I knew I wanted it then.</p>
<h2 id="july">July</h2>
<h4 id="iboughtavan">I bought a van</h4>
<p><img src="https://snhd.co/content/images/2015/12/10520134_332578640231178_1758023163_n.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p>Turns out buying your first vehicle requires some planning and consideration, at the very least I needed the van to be checked over by a mechanic. The next day (2nd of July) comes by we get the van checked over, all seems good, get the cash, buy the van, and insurance. I had done it. I'd bought a van. Drove the length of the M4 back to London. And now the fun begins...</p>
<p>Living near Kings Cross, parking is scarce and/or expensive so morning of the 3rd I drove into Zone 3 of North London. And then the problems began, on the way back I lost my steering in the middle of Homerton, less than 24 hours after buying the van. Not ideal. Rang my Dad, rang Steve who had some tools handy and then the RAC. They couldn't fix the problem at the roadside, as I had just signed up for roadside recovery they could only take me 10 miles so home, ~300 miles away, was out of the question. Had the van towed to work, and left it there. The day after I moved out of my cosy Zone 1 flat.</p>
<p>4th July 2014: My first day as a vandweller, with a broken down van parked in work's car park. My mam was not impressed by this situation to say the least. The back of the van was ply lined, I put down a rug from the flat I had just moved out of that day, a mattress topper on top of that and then my sleeping bag.</p>
<p>I don't recall much of my first week living in my van apart from spending time after work finding out what was broken with the steering. Turns out it was the pipe connecting the power steering pump to the steering rack. Problems didn't quite end there, I began the first of many drives home but didn't make it 15 miles before I lost steering again and pushed on until Birchanger Green Services. The day after, the van was loaded onto the back of a truck and I was taken home.</p>
<p><img src="https://snhd.co/content/images/2015/12/10502595_690092387711141_31087188_n.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p><img src="https://snhd.co/content/images/2015/12/11355296_1016940281657068_2138987698_n.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p>Luckily once home I fixed the problem and it was time to start enjoying my van for what I bought it for. I picked up a Ikea Lycksele double sofa bed from Gumtree and put that in the back to replace my mattress topper. Drove to Derwent water with my brother, Alnwick and Scottish borders with Cat and then Kendal Calling with the van passing as a camper with my brother.</p>
<p>Keswick &amp; Derwent Water:<br>
<img src="https://snhd.co/content/images/2015/12/tumblr_n9aiptDLDF1qzj4hso3_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_n9aiptDLDF1qzj4hso7_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p>Alnwick &amp; Scotland:</p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_n9ahtd7jQA1qzj4hso8_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_n9ahtd7jQA1qzj4hso9_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_nbjcxmgFo51qzj4hso3_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p>Kendal Calling:</p>
<p><img src="https://snhd.co/content/images/2015/12/10554238_582895098489120_994973581_n-1.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<h2 id="august">August</h2>
<p>Back in London I began staying in a campsite just outside Bexley between August and October, traveling back home in the days off I had. The first part of October I visited Berlin alas without the van however the middle of the month I had a 4 day road trip which combined Chester, South Wales and Cambridge to visit some friends.</p>
<p>Wales with Olly, Ellie &amp; Taron the Land Rover:</p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_ne4a6lzsuV1qzj4hso1_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_ne4a6lzsuV1qzj4hso2_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<h2 id="october">October</h2>
<p>By October I had found a few streets near work that were suitable to wild camp in London as such. I would keep rotating locations as to remain fairly unobtrusive. This was considerably cheaper than the campsite. Towards the end of October I spent a week working on the van, adding insulation (silver bubble wrap and hemp fiber battens), a leisure battery, split charge relay, facelifted the van to the newer shaped and serviced it.</p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_nesl1jiRJL1qzj4hso1_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p>My Mam still not impressed I was living in a van for almost 4 months by now, I tried to find a flat to stay in for the winter months however being able to afford London rents and my van would have left me with no money at all. I bought an Eberspacher D2 Diesel night heater and fitted that in the beginning of November, to prepare for winter. Interior was further tidied up by painting the ply panels and fitting some Ikea Dioder LED lights, wired to the leisure battery and some neat CBE switches.</p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_nieb1215RI1qzj4hso1_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<h2 id="december">December</h2>
<p>Towards the latter end of 2014 I kept on moving around streets in London, turns out it's relatively easy to wild camp in a van that doesn't look anything like a camper from the outside. The bulkhead kept the van secure in the back and the light from leaking out.</p>
<p>With London vanlife in the background, and my very convenient shifts at work (I only worked 14 of every 28 days) allowed the travels to continue. December involved a trip to Edinburgh in which I parked up for the night right beside St Margaret's Loch. Free parking, all day, all night and not that far from the center of Edinburgh. On the way back I visited Lindisfarne which appeared to be a very good place for photos.</p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_nga0vlxFXR1qzj4hso1_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_nga10sWznq1qzj4hso1_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_nga0m3tU2m1qzj4hso1_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p>The week after I took a drive from London down to Brighton. There are plenty of streets on the North side of Preston Park providing free parking day and night.</p>
<p><img src="https://snhd.co/content/images/2015/12/10852868_1497180607212111_1714598589_n.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p><img src="https://snhd.co/content/images/2015/12/10817945_569257976540700_1786827391_n.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<h2 id="january">January</h2>
<p>New year, new travels. By this point London vanlife had become normal to me, I started to try and rack up as many postcodes I had stayed in, however only managed a few before things got harder. They were: E1, E2, E3, E5, E6, E14, E15, E16, N1, SE10, SE13, SE16,  &amp; WC1. You can park almost anywhere in London for free after 6:30pm, until about 8:30am. I used an app called <a href="https://www.appyparking.com/">AppyParking</a> which gives info of free parking all around London. Always plan toilet breaks, there's less trees to go behind in London when you need to go at 3am however there are a lot of 24/7 McDonalds. Friends both intrigued and perplexed by my new lifestyle allowed me to use their showers which was very helpful.</p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_ni0e92XdLL1qzj4hso1_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_niahl1Vxmq1qzj4hso1_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_nibv818u6g1qzj4hso1_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p>Towards the end of January Sam from work and I planned a roadtrip to Paris. Once on the other side of the channel in Dunkirk, we took a left turn towards Amsterdam due to the recent attacks in Paris. The first night was spent parked outside of Zeeburg campsite as we arrived too late to check in as we stopped off in Bruges to explore. Day 2 we checked into Zeeburg campsite and wandered Amsterdam. Day 3 we woke up in Amsterdam and went to sleep in Paris outside of Indigo Paris Campsite. Day 4 we explored Paris visiting Ten Belles, Das Boot and the Eiffel Tower. As we couldn't get a place in the campsite we left Paris that evening to find somewhere to stay ending up in a small village North of Paris. Day 5 began with buying a lot of bread from a French bakery and making a leisurely drive to Dunkirk for the ferry via Lille.</p>
<p><img src="https://snhd.co/content/images/2015/12/10946618_386720131501673_335907917_n.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_nklzx5Cjzm1qzj4hso1_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_nklzx5Cjzm1qzj4hso5_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_nkais1oUUn1qzj4hso5_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_nkapvxRDd11qzj4hso9_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_niyso7mjzS1qzj4hso1_500.gif" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_niuyqsrJ9b1qzj4hso1_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_nklzx5Cjzm1qzj4hso4_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_nklzx5Cjzm1qzj4hso3_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<iframe src="https://player.vimeo.com/video/118462799?byline=0&portrait=0" width="500" height="281" frameborder="0" webkitallowfullscreen="" mozallowfullscreen="" allowfullscreen></iframe>
<h2 id="february">February</h2>
<p>1,200 miles later we were back in London. The weather was getting colder however my heater that I had fitted made the 0c nights not an issue. My van experienced its first snow in my ownership in February.</p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_nj6wgoOkVJ1qzj4hso1_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p>Later in February drove across to Wales to wander mountains again with Olly &amp; Ellie. No vandwelling in Wales as Olly kindly put me up for the night.</p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_nkakq5SDTa1qzj4hso1_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_nklznxl4ik1qzj4hso6_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_nklznxl4ik1qzj4hso2_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p>At the end of Feb I went out to take photos with Hayley but it was absolutely freezing, we stayed the night in Alston but returned the next day after failing to get to the Llama Karma Kafe as the roads to Penrith were too icy.</p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_nkais1oUUn1qzj4hso3_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_nmnrugMKTF1qzj4hso1_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_nmnrwbpPTi1qzj4hso1_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<h2 id="march">March</h2>
<p>March began the festival season preparation and as such the van required &quot;fitted washing and cooking facilities&quot;. I designed a kitchen pod that incorporated a camping stove and as small sink passable basin. The pod was made from 12mm birch plywood from Fall Timber in Bedale.</p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_nm3h8qq1qu1qzj4hso2_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p><img src="https://snhd.co/content/images/2015/12/11117028_474978085986859_1134704101_n.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p>Wiring was the next job to tackle, I fitted a Blue Sea Systems 5029 fuse box to some ply behind the leisure battery in the seat. And replaced the current wiring with some 1mm2 thinwall auto cable.</p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_nm9181lemP1qzj4hso1_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_nm5bwvLCBu1qzj4hso1_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<h2 id="april">April</h2>
<p>In April Steve and I went to an Instagrammers London meetup at Blenheim Palace and we both took our vans. And took photos of stars that night.</p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_nmm38qbgbm1qzj4hso2_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_nmpqingW7Y1qzj4hso1_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<h2 id="may">May</h2>
<p>In May I had the clutch fixed, very surprised it hadn't gone well before then based on what it was like when removed. I also bought some 17&quot; VW steel wheels to replace the stock 16&quot; steels. Apart from that vanlife went on as per.</p>
<p><img src="https://snhd.co/content/images/2015/12/11282124_376782809178861_1674963450_n.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<h2 id="june">June</h2>
<p>As June came around I got H&amp;R Coilovers for a price I could never have refused. As Glastonbury was fast approaching I took most of June off work as holiday, heading home I stopped off for the night in a layby just outside of Telford before picking up my sister from uni in Chester.</p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_nphne6ks021qzj4hso1_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_npp5du4FnG1qzj4hso2_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p>When in Cheshire, you need to visit the Cheshire Ice Cream Farm</p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_npq31agRC41qzj4hso1_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p>With the van loaded full of wheels, tyres and a box of suspension bits I set off for Elgin where my uncle helped me fit the wheels to the tyres and replaced the old suspension.</p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_npu1t8JKyh1qzj4hso1_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p>Possibly one of my favourite photos of the van just after it was lowered:</p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_npw7046gaU1qzj4hso1_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p>Vanlife got way better on the return leg from Elgin as I decided to take Inverness, Glencoe, Dumfries route back home. And as such I spent my first night wild camping in a small wood just outside of Dumfries after visiting Brattleburn Bothy. Which I sadly didn't make it to when I did my <a href="https://snhd.co/1000-miles/">1000 Miles on Kindness</a> trip.</p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_nq1z88D4ZN1qzj4hso1_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_nq1ql2rqDD1qzj4hso2_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p>Made it back just in time to get to the <a href="https://www.facebook.com/groups/386842644759823/">North East VW T4/T5</a> Monthly Meetup which my other van friend Pat took a nice photo of the van.</p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_nq3z2lSvMU1qzj4hso1_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p>Glastonbury Time! My dad and I set off for a campsite just outside of Shepton Mallet which later Steve joined us too. Glastonbury was great as usual but I'll leave that for another post another time.</p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_nqcya9wPNj1qzj4hso1_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p>Post-Glasto:<br>
<img src="https://snhd.co/content/images/2015/12/11357383_1585559765044290_473240137_n.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_nqpzs2a9mx1qzj4hso1_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<h2 id="july">July</h2>
<p>July marked the 1 year mark of getting my van along with 1 year of van life.</p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_nrsyfbGObP1qzj4hso1_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_nrxybzb6q31qzj4hso1_1280-1.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p>End of July I wild camped in Leigh-On-Sea, Essex then explored Essex with Didge the day after. Waking up by the sea is great.</p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_ns23c6Ktm51qzj4hso1_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_ns23c6Ktm51qzj4hso9_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p>In August to further make the van habitable I decided to finally carpet the interior</p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_nsu8mkz1Gb1qzj4hso1_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_nsvxzuBMJQ1qzj4hso1_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p>Mid august I drove up to Edinburgh (again??) as I found some genuine Caravelle sliding side windows.</p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_ntbxquHcG71qzj4hso1_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p><img src="https://snhd.co/content/images/2015/12/11888116_10153662461917994_9205909390972656270_n.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<h2 id="september">September</h2>
<p>September, finally, almost up to date.<br>
<img src="https://snhd.co/content/images/2015/12/11374035_658241024312057_699195736_n.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_nu399cVKV71qzj4hso1_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p>It finally happened, I was asked to use my van for it's intended purpose. Konnaire asked me to help move all of his things into his new flat</p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_nuw5kz8UoL1qzj4hso1_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p>Steve asked me if I fancied giving him a lift to Sussex to collect his Alfa which has been in the garage for way too long. Obviously I took the opportunity. Spent the night parked up near Jack and Jill Windmills in Clayton.</p>
<p><img src="https://snhd.co/content/images/2015/12/11925913_1614297475486583_1942533501_n.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p><img src="https://snhd.co/content/images/2015/12/tumblr_nv6kld3Mia1qzj4hso1_1280.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p>Popped into Brighton the day after and visited Mr. Wolfe coffee shop</p>
<p><img src="https://snhd.co/content/images/2015/12/11252465_1009143329137629_1119246147_n.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<h2 id="october">October</h2>
<p>Back in July I had been told my team and I were being made redundant. To make the most of my last month in the South I took a trip down to Cornwall (More photos of this trip in my post <a href="https://snhd.co/insert-excuse-to-drive-to-cornwall/">*Insert excuse to drive to Cornwall*</a>) where I wildcamped in Dartmoor, visited Eden Project, stayed overnight by the sea in Sennen Cove, visited Falmouth, Truro ending the day back at Mendip Lodge Campsite, the same one I stayed at before and after Glastonbury, popping into Bristol on the way back to London.</p>
<p><img src="https://snhd.co/content/images/2015/10/DSC_0403.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p><img src="https://snhd.co/content/images/2015/10/DSC_0637.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p><img src="https://snhd.co/content/images/2015/10/DSC_0681.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p><img src="https://snhd.co/content/images/2015/10/DSC_0880.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p><img src="https://snhd.co/content/images/2015/10/DSC_0892.jpg" alt="That time I lived in a van in London for 1 year 3 months 24 days"></p>
<p>On the 12th of October I had rolled over 30,000 miles milestone. It has taken me as far North as Spey Bay, as far East as Amsterdam, as far South as Paris and West as Land’s End. And so many other places within.</p>
<p>I left London indefinitely on the 28th of October 2015, 1 year 3 months 24 days after I moved into my van, thinking it was going to be a short term solution until I found a flat to rent. Here's to many more travels in 2016!</p>
</div>]]></content:encoded></item><item><title><![CDATA[*Insert excuse to drive to Cornwall*]]></title><description><![CDATA[<div class="kg-card-markdown"><p>This past long weekend I took a drive down to Cornwall via Devon and returning via Somerset, Bristol and Bath. On my travels I took a few photos, this is a selection of them:</p>
<h6 id="day1dartmoor">Day 1 - Dartmoor</h6>
<p><img src="https://snhd.co/content/images/2015/10/DSC_0396-Edit.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0403.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0407.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0409.jpg" alt=""></p>
<h6 id="day2edenprojectsennencove">Day 2 - Eden Project &amp; Sennen Cove</h6>
<p><img src="https://snhd.co/content/images/2015/10/DSC_0443.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0448.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0457.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0470.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0474.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0476.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0477.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0481.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0492.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0493.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0520.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0532.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0535.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0537.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0574.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0576.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0587.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0637.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0650-Edit.jpg" alt=""></p>
<h6 id="day3sennencovelandsendfalmouthtruroandmendiplodgecampsite">Day 3 - Sennen</h6></div>]]></description><link>https://snhd.co/insert-excuse-to-drive-to-cornwall/</link><guid isPermaLink="false">59a3cfcf0cfda173ef41d0f7</guid><dc:creator><![CDATA[Sean Hood]]></dc:creator><pubDate>Tue, 06 Oct 2015 23:29:41 GMT</pubDate><media:content url="https://snhd.co/content/images/2015/10/DSC_0448-1.jpg" medium="image"/><content:encoded><![CDATA[<div class="kg-card-markdown"><img src="https://snhd.co/content/images/2015/10/DSC_0448-1.jpg" alt="*Insert excuse to drive to Cornwall*"><p>This past long weekend I took a drive down to Cornwall via Devon and returning via Somerset, Bristol and Bath. On my travels I took a few photos, this is a selection of them:</p>
<h6 id="day1dartmoor">Day 1 - Dartmoor</h6>
<p><img src="https://snhd.co/content/images/2015/10/DSC_0396-Edit.jpg" alt="*Insert excuse to drive to Cornwall*"><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0403.jpg" alt="*Insert excuse to drive to Cornwall*"><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0407.jpg" alt="*Insert excuse to drive to Cornwall*"><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0409.jpg" alt="*Insert excuse to drive to Cornwall*"></p>
<h6 id="day2edenprojectsennencove">Day 2 - Eden Project &amp; Sennen Cove</h6>
<p><img src="https://snhd.co/content/images/2015/10/DSC_0443.jpg" alt="*Insert excuse to drive to Cornwall*"><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0448.jpg" alt="*Insert excuse to drive to Cornwall*"><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0457.jpg" alt="*Insert excuse to drive to Cornwall*"><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0470.jpg" alt="*Insert excuse to drive to Cornwall*"><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0474.jpg" alt="*Insert excuse to drive to Cornwall*"><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0476.jpg" alt="*Insert excuse to drive to Cornwall*"><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0477.jpg" alt="*Insert excuse to drive to Cornwall*"><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0481.jpg" alt="*Insert excuse to drive to Cornwall*"><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0492.jpg" alt="*Insert excuse to drive to Cornwall*"><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0493.jpg" alt="*Insert excuse to drive to Cornwall*"><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0520.jpg" alt="*Insert excuse to drive to Cornwall*"><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0532.jpg" alt="*Insert excuse to drive to Cornwall*"><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0535.jpg" alt="*Insert excuse to drive to Cornwall*"><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0537.jpg" alt="*Insert excuse to drive to Cornwall*"><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0574.jpg" alt="*Insert excuse to drive to Cornwall*"><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0576.jpg" alt="*Insert excuse to drive to Cornwall*"><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0587.jpg" alt="*Insert excuse to drive to Cornwall*"><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0637.jpg" alt="*Insert excuse to drive to Cornwall*"><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0650-Edit.jpg" alt="*Insert excuse to drive to Cornwall*"></p>
<h6 id="day3sennencovelandsendfalmouthtruroandmendiplodgecampsite">Day 3 - Sennen Cove, Land's End, Falmouth, Truro and Mendip Lodge Campsite</h6>
<p><img src="https://snhd.co/content/images/2015/10/DSC_0681.jpg" alt="*Insert excuse to drive to Cornwall*"><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0691.jpg" alt="*Insert excuse to drive to Cornwall*"><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0699.jpg" alt="*Insert excuse to drive to Cornwall*"><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0721.jpg" alt="*Insert excuse to drive to Cornwall*"><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0750.jpg" alt="*Insert excuse to drive to Cornwall*"><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0765.jpg" alt="*Insert excuse to drive to Cornwall*"><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0801.jpg" alt="*Insert excuse to drive to Cornwall*"><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0814.jpg" alt="*Insert excuse to drive to Cornwall*"><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0815.jpg" alt="*Insert excuse to drive to Cornwall*"><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0816.jpg" alt="*Insert excuse to drive to Cornwall*"><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0820.jpg" alt="*Insert excuse to drive to Cornwall*"><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0822.jpg" alt="*Insert excuse to drive to Cornwall*"><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0826.jpg" alt="*Insert excuse to drive to Cornwall*"><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0856.jpg" alt="*Insert excuse to drive to Cornwall*"></p>
<h6 id="day4mendiplodgecampsitebathandbristol">Day 4 - Mendip Lodge Campsite, Bath and Bristol</h6>
<p><img src="https://snhd.co/content/images/2015/10/DSC_0880.jpg" alt="*Insert excuse to drive to Cornwall*"><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0892.jpg" alt="*Insert excuse to drive to Cornwall*"><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0895.jpg" alt="*Insert excuse to drive to Cornwall*"><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0897.jpg" alt="*Insert excuse to drive to Cornwall*"><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0907.jpg" alt="*Insert excuse to drive to Cornwall*"><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0912.jpg" alt="*Insert excuse to drive to Cornwall*"><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0917.jpg" alt="*Insert excuse to drive to Cornwall*"><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0925.jpg" alt="*Insert excuse to drive to Cornwall*"><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0929.jpg" alt="*Insert excuse to drive to Cornwall*"><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0951.jpg" alt="*Insert excuse to drive to Cornwall*"><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0963.jpg" alt="*Insert excuse to drive to Cornwall*"><br>
<img src="https://snhd.co/content/images/2015/10/DSC_0998.jpg" alt="*Insert excuse to drive to Cornwall*"><br>
<img src="https://snhd.co/content/images/2015/10/DSC_1011.jpg" alt="*Insert excuse to drive to Cornwall*"></p>
</div>]]></content:encoded></item><item><title><![CDATA[Untitled]]></title><description><![CDATA[<div class="kg-card-markdown"><p>A 12,000 mile adventure via Iceland, USA and Paris in Autumn 2013</p>
<p><img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_0967.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_1583.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_2678.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_4061.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_4410.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_4417.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_4622.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_5682.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_6127.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_6157.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_6159.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_6451.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_6483.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_6489.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_6490.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_6493.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_6497.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_6527.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_6560.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_6567.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_6568.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_6572.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_6602.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_6605.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_6622.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_6657.jpg" alt=""></p>
</div>]]></description><link>https://snhd.co/untitled/</link><guid isPermaLink="false">59a3cfcf0cfda173ef41d0f6</guid><dc:creator><![CDATA[Sean Hood]]></dc:creator><pubDate>Mon, 08 Dec 2014 01:00:04 GMT</pubDate><media:content url="https://snhd.co/content/images/2017/08/SH0_1583.jpg" medium="image"/><content:encoded><![CDATA[<div class="kg-card-markdown"><img src="https://snhd.co/content/images/2017/08/SH0_1583.jpg" alt="Untitled"><p>A 12,000 mile adventure via Iceland, USA and Paris in Autumn 2013</p>
<p><img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_0967.jpg" alt="Untitled"><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_1583.jpg" alt="Untitled"><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_2678.jpg" alt="Untitled"><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_4061.jpg" alt="Untitled"><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_4410.jpg" alt="Untitled"><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_4417.jpg" alt="Untitled"><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_4622.jpg" alt="Untitled"><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_5682.jpg" alt="Untitled"><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_6127.jpg" alt="Untitled"><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_6157.jpg" alt="Untitled"><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_6159.jpg" alt="Untitled"><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_6451.jpg" alt="Untitled"><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_6483.jpg" alt="Untitled"><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_6489.jpg" alt="Untitled"><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_6490.jpg" alt="Untitled"><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_6493.jpg" alt="Untitled"><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_6497.jpg" alt="Untitled"><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_6527.jpg" alt="Untitled"><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_6560.jpg" alt="Untitled"><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_6567.jpg" alt="Untitled"><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_6568.jpg" alt="Untitled"><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_6572.jpg" alt="Untitled"><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_6602.jpg" alt="Untitled"><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_6605.jpg" alt="Untitled"><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_6622.jpg" alt="Untitled"><br>
<img src="https://snhd.co/content/images/2014/Aug/untitled/SH0_6657.jpg" alt="Untitled"></p>
</div>]]></content:encoded></item><item><title><![CDATA[Festivals]]></title><description><![CDATA[<div class="kg-card-markdown"><p>Selection of images from festivals from Summer 2012</p>
<p><img src="https://snhd.co/content/images/2014/Aug/festivals/tumblr_makggrohfl1qzj4hso1_1280.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2014/Aug/festivals/tumblr_m81qjnlCfd1qzj4hso1_1280.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2014/Aug/festivals/tumblr_mbfj183yQp1qzj4hso1_1280.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2014/Aug/festivals/tumblr_mbfj183yQp1qzj4hso2_1280.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2014/Aug/festivals/tumblr_m81qvfzGgF1qzj4hso1_1280.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2014/Aug/festivals/tumblr_m8cdcc6Fom1qzj4hso1_1280.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2014/Aug/festivals/tumblr_mbfj4h0ssY1qzj4hso2_1280.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2014/Aug/festivals/tumblr_m8cdcc6Fom1qzj4hso2_1280.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2014/Aug/festivals/tumblr_mbfj670S2K1qzj4hso1_1280.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2014/Aug/festivals/tumblr_m55qk02eHX1qzj4hso1_1280.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2014/Aug/festivals/tumblr_m8cdcc6Fom1qzj4hso3_1280.jpg" alt=""><br>
<img src="https://snhd.co/content/images/2014/Aug/festivals/tumblr_mbfj670S2K1qzj4hso2_1280.jpg" alt=""></p>
</div>]]></description><link>https://snhd.co/festivals/</link><guid isPermaLink="false">59a3cfcf0cfda173ef41d0f5</guid><dc:creator><![CDATA[Sean Hood]]></dc:creator><pubDate>Mon, 08 Dec 2014 00:59:35 GMT</pubDate><media:content url="https://snhd.co/content/images/2017/08/tumblr_makggrohfl1qzj4hso1_1280.jpg" medium="image"/><content:encoded><![CDATA[<div class="kg-card-markdown"><img src="https://snhd.co/content/images/2017/08/tumblr_makggrohfl1qzj4hso1_1280.jpg" alt="Festivals"><p>Selection of images from festivals from Summer 2012</p>
<p><img src="https://snhd.co/content/images/2014/Aug/festivals/tumblr_makggrohfl1qzj4hso1_1280.jpg" alt="Festivals"><br>
<img src="https://snhd.co/content/images/2014/Aug/festivals/tumblr_m81qjnlCfd1qzj4hso1_1280.jpg" alt="Festivals"><br>
<img src="https://snhd.co/content/images/2014/Aug/festivals/tumblr_mbfj183yQp1qzj4hso1_1280.jpg" alt="Festivals"><br>
<img src="https://snhd.co/content/images/2014/Aug/festivals/tumblr_mbfj183yQp1qzj4hso2_1280.jpg" alt="Festivals"><br>
<img src="https://snhd.co/content/images/2014/Aug/festivals/tumblr_m81qvfzGgF1qzj4hso1_1280.jpg" alt="Festivals"><br>
<img src="https://snhd.co/content/images/2014/Aug/festivals/tumblr_m8cdcc6Fom1qzj4hso1_1280.jpg" alt="Festivals"><br>
<img src="https://snhd.co/content/images/2014/Aug/festivals/tumblr_mbfj4h0ssY1qzj4hso2_1280.jpg" alt="Festivals"><br>
<img src="https://snhd.co/content/images/2014/Aug/festivals/tumblr_m8cdcc6Fom1qzj4hso2_1280.jpg" alt="Festivals"><br>
<img src="https://snhd.co/content/images/2014/Aug/festivals/tumblr_mbfj670S2K1qzj4hso1_1280.jpg" alt="Festivals"><br>
<img src="https://snhd.co/content/images/2014/Aug/festivals/tumblr_m55qk02eHX1qzj4hso1_1280.jpg" alt="Festivals"><br>
<img src="https://snhd.co/content/images/2014/Aug/festivals/tumblr_m8cdcc6Fom1qzj4hso3_1280.jpg" alt="Festivals"><br>
<img src="https://snhd.co/content/images/2014/Aug/festivals/tumblr_mbfj670S2K1qzj4hso2_1280.jpg" alt="Festivals"></p>
</div>]]></content:encoded></item><item><title><![CDATA[1000 Miles On Kindness]]></title><description><![CDATA[<div class="kg-card-markdown"><p>I thought to myself on this little adventure if I was missing out on seeing things by traveling by the means of hitchhiking. But then again, I thought I’d have missed an awful lot more had I traveled to each of these towns, villages and cities by train, plane</p></div>]]></description><link>https://snhd.co/1000-miles/</link><guid isPermaLink="false">59a3cfcf0cfda173ef41d0f4</guid><dc:creator><![CDATA[Sean Hood]]></dc:creator><pubDate>Sun, 07 Dec 2014 23:58:45 GMT</pubDate><media:content url="https://snhd.co/content/images/2017/08/CNV00172.jpg" medium="image"/><content:encoded><![CDATA[<div class="kg-card-markdown"><img src="https://snhd.co/content/images/2017/08/CNV00172.jpg" alt="1000 Miles On Kindness"><p>I thought to myself on this little adventure if I was missing out on seeing things by traveling by the means of hitchhiking. But then again, I thought I’d have missed an awful lot more had I traveled to each of these towns, villages and cities by train, plane or coach. I was in touch with the world not locked in my own little space but out there. It was nice to have ventured out on a journey that can’t be bought nor repeated in a way.</p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00172.jpg" alt="1000 Miles On Kindness"></p>
<p>My trip, adventure, project or whatever, I've yet to figure out what it really was, didn’t begin in the best way. As after my first lift from Washington Services I waited a good four hours at Ferrybridge Services before giving up and writing a sign that just said “South”, nothing more. I got a lift shortly after to Newark-on-Trent, ending up in Nottingham later that evening at my Auntie’s house.</p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00001.jpg" alt="1000 Miles On Kindness"></p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00002.jpg" alt="1000 Miles On Kindness"></p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00003.jpg" alt="1000 Miles On Kindness"></p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00004.jpg" alt="1000 Miles On Kindness"></p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00008.jpg" alt="1000 Miles On Kindness"></p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00009.jpg" alt="1000 Miles On Kindness"></p>
<p>Wednesday was an interesting day, I hitched from Nottingham to Amesbury, the town a couple miles from Stonehenge. Pitched the tent under a large tree in a small wood as I was kindly notified that I couldn’t take tents, big bags or sleeping bags into the perimeter fence of the monument. An hour or so passed after pitching the tent and Robbie and Nick had arrived after a drive from London. Being at Stonehenge on the Solstice is a great experience.</p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00010.jpg" alt="1000 Miles On Kindness"></p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00012.jpg" alt="1000 Miles On Kindness"></p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00014.jpg" alt="1000 Miles On Kindness"></p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00015.jpg" alt="1000 Miles On Kindness"></p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00023.jpg" alt="1000 Miles On Kindness"></p>
<p>Thursday, or day three of my escapade was a surreal one, it still feels like a dream to me. Robbie and I woke at around 5:15am in a slightly damp tent under the tree which I pitched it, missing solstice by half an hour. We didn’t miss much however as it was quite cloudy. By 6:30am we had our bags packed and had walked the two miles to the Stonehenge car park to hitch a ride to Shepton Mallet. We had a lift in less time than it took to make the sign. They were Matty and Allie who shared coffee and cakes with us. W then got picked up by a couple of dog walkers local to Pilton and walked down to Worthy Farm, after a brief tour of the site and it’s eerie remnants of where nearly 200,000 people enjoy 5 full days of debauchery, we headed up to the farm office. Following chats with Emily Eavis and a few others in the press office, Me and Robbie had a tour of the site from the farm to the Stone Circle to the Pryamid stage. Lunch followed and then wonderment as to where I was to stay that night. John from the Glasto press office sorted me out with a pass to Sunrise Celebration just down the road in Bruton so long as I took some photos for them. Fields full of mud. I had arrived at a proper festival.</p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00025.jpg" alt="1000 Miles On Kindness"></p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00026.jpg" alt="1000 Miles On Kindness"></p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00035.jpg" alt="1000 Miles On Kindness"></p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00040.jpg" alt="1000 Miles On Kindness"></p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00041.jpg" alt="1000 Miles On Kindness"></p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00047.jpg" alt="1000 Miles On Kindness"></p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00049.jpg" alt="1000 Miles On Kindness"></p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00055.jpg" alt="1000 Miles On Kindness"></p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00056.jpg" alt="1000 Miles On Kindness"></p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00057.jpg" alt="1000 Miles On Kindness"></p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00058.jpg" alt="1000 Miles On Kindness"></p>
<p>Two nights in a small damp tent got too much and I wanted a shower and a proper bed. I decided to hitch to Bath, … picked me up near Sunrise and dropped me in Frome where I had breakfast, scrambled egg and beans on toast, my staple diet for this trip. I got a lift by .. just out of Frome onto the … and then picked up by Joe and his nephew Merlin within a few minutes. They kindly dropped me right at the door of Bath’s YHA.</p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00065.jpg" alt="1000 Miles On Kindness"></p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00066.jpg" alt="1000 Miles On Kindness"></p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00067.jpg" alt="1000 Miles On Kindness"></p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00070.jpg" alt="1000 Miles On Kindness"><br>
<img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00072.jpg" alt="1000 Miles On Kindness"></p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00073.jpg" alt="1000 Miles On Kindness"></p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00074.jpg" alt="1000 Miles On Kindness"></p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00076.jpg" alt="1000 Miles On Kindness"></p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00080.jpg" alt="1000 Miles On Kindness"></p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00085.jpg" alt="1000 Miles On Kindness"></p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00097.jpg" alt="1000 Miles On Kindness"></p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00100.jpg" alt="1000 Miles On Kindness"></p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00101.jpg" alt="1000 Miles On Kindness"></p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00104.jpg" alt="1000 Miles On Kindness"></p>
<p>The night I camped on a hill by the sea in Weymouth I had made a silly mistake to face the door to the sea for a nice view. This resulted in me delightfully bailing water out of my tent with a mess tin at 3am from the rain that had managed to seep through.</p>
<p>I hitched from Weymouth to Bristol with ease. The day started with more scrambled egg and beans on toast at a cafe with a view onto the cloud covered beach. Got my first lift just outside of Weymouth itself where the A354 starts, got each of the three lifts within that 10 minutes and covered the 70 miles to the centre of Bristol in 2 hours and 15 minutes. Only 10 minutes longer than what Google Maps said it should have taken. Milkshake at Roccotillos followed as too did a wander up to Twoday Coffee to find it was closed.</p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00105.jpg" alt="1000 Miles On Kindness"></p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00110.jpg" alt="1000 Miles On Kindness"><br>
<img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00123.jpg" alt="1000 Miles On Kindness"></p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00121.jpg" alt="1000 Miles On Kindness"></p>
<p>Monday was a day of twists and turns, beginning with an unexpected ride out of Bristol across the Severn Bridge into Wales, to forgetting my phone in the lorry that got me so far up the M6 and finally getting dark before I had reached Lancaster, forcing me to walk two miles to the nearest campsite.</p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00134.jpg" alt="1000 Miles On Kindness"></p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00133.jpg" alt="1000 Miles On Kindness"></p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00136.jpg" alt="1000 Miles On Kindness"></p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00137.jpg" alt="1000 Miles On Kindness"></p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00138.jpg" alt="1000 Miles On Kindness"></p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00139.jpg" alt="1000 Miles On Kindness"></p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00141.jpg" alt="1000 Miles On Kindness"></p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00145.jpg" alt="1000 Miles On Kindness"></p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00147.jpg" alt="1000 Miles On Kindness"></p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00149.jpg" alt="1000 Miles On Kindness"></p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00150.jpg" alt="1000 Miles On Kindness"></p>
<p>Lost, tired, feet damp and in pain, shoulders aching and midges eating me alive. This is how I spent 5 hours in a forest trying to find Brattleburn Bothy. Not how you wish to spend time but something was pushing to keep going long after I would have normally given up. In the end I had to, I pitched the tent in a field in between a motorway and a train track. As soon as I got into my sleeping bag I was asleep.</p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00153.jpg" alt="1000 Miles On Kindness"><br>
<img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00155.jpg" alt="1000 Miles On Kindness"></p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00154.jpg" alt="1000 Miles On Kindness"></p>
<p>I woke to still damp shoes, dried them out with yesterday's Guardian, then shortly after fell in a river, only knee deep cleaning the pans I had just used for breakfast. Wonderful. By this point I had become apathetic to bad things, just like when you first jump in the sea, you avoid the waves, I was now crashing through those waves. Enjoying it even.</p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00158.jpg" alt="1000 Miles On Kindness"><br>
<img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00161.jpg" alt="1000 Miles On Kindness"></p>
<p>A pattern had began to emerge in the first couple days of this trip, the majority of people stopping to pick me up had hitchhiked before. The interesting stories of getting lifts in cranes, to getting single lifts hundreds of miles across Europe kept me going.</p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00173.jpg" alt="1000 Miles On Kindness"></p>
<p>A side project to this adventure was to try a coffee shop or two in every town or city in which I visited. I had a list curated by the guys at Pink Lane Coffee in Newcastle, keen on keeping me caffeinated while on my travels. The first coffee shop I got to on the list was Jika Jika in Bath, a very pleasant place, blankets hung up on the walls for sitting outside with when it’s cold to a section for weekly acoustic sessions. Colonna &amp; Smalls, also in Bath sorted my caffeine fix for Saturday. Ran by Maxwell Colonna-Dashwood, the 2012 winner of the UKBC. A flat white with coffee from Finca Santa, El Salvador was enjoyed here. A small shop with plenty of natural light and drawings of coffee cherries on the wall.</p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00087.jpg" alt="1000 Miles On Kindness"></p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00091.jpg" alt="1000 Miles On Kindness"></p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00127.jpg" alt="1000 Miles On Kindness"></p>
<p>Artisan Roast, the coffee shop you can smell from down the street as you approach. With wooden floors, comfy chairs covered in hessian coffee bags and the smell of freshly roasted beans it’s not a place to be missed if you’re near. A flat white again, quite an acquired taste, it was Janszoon their own blend of beans from Sumatra, Indonesia and Brazil.</p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00164.jpg" alt="1000 Miles On Kindness"></p>
<p>Money wise I got around on £20 per day (on average). The most costly things were hostels which cost £50 in total. Coffee and the odd cider accounted for about £15 each over the 10 days. I spent £20 on gifts and odds &amp; ends set me back £70, this included maps, various phone topups, buying a new tin opener, film and plenty more. Only £3.40 was spent on travel.</p>
<p><img src="https://snhd.co/content/images/2014/Aug/1000miles/CNV00048.jpg" alt="1000 Miles On Kindness"></p>
<p>As soon as I returned home I felt lost, this trip was my existence for just short of two weeks and it had just ended. It felt like something was missing. I belong out there.</p>
<p><strong>1000 miles. 42 lifts. 10 days on the road. 1 idea.</strong></p>
</div>]]></content:encoded></item></channel></rss>