<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Phil Pendlebury</title>
	<atom:link href="http://www.pendlebury.biz/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pendlebury.biz</link>
	<description>Music, Aviation, Entertainment &#38; IT</description>
	<lastBuildDate>Thu, 19 Aug 2010 14:19:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Protecting Web Folders .htaccess</title>
		<link>http://www.pendlebury.biz/protect-htaccess/</link>
		<comments>http://www.pendlebury.biz/protect-htaccess/#comments</comments>
		<pubDate>Thu, 19 Aug 2010 13:57:38 +0000</pubDate>
		<dc:creator>Phil Pendlebury</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[WWW]]></category>

		<guid isPermaLink="false">http://www.pendlebury.biz/?p=1572</guid>
		<description><![CDATA[Have you ever wanted to password protect a website or a sub folder of a website? Many CMS systems allow this to be done but there is a pretty simple way to protect access to the site before any login procedure using an .htaccess file which some people may find useful. I had to do]]></description>
			<content:encoded><![CDATA[<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.pendlebury.biz%2Fprotect-htaccess%2F&amp;layout=standard&amp;&amp;width=350&amp;action=like&amp;font=segoe ui&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:350px;height:30px;margin-top:5px;"></iframe><p>Have you ever wanted to password protect a website or a sub folder of a website? Many CMS systems allow this to be done but there is a pretty simple way to protect access to the site <em>before any login procedure</em> using an .htaccess file which some people may find useful.</p>
<p>I had to do this recently and thought it would be useful to some to share the details, as some of it can be quite tricky and various instructions you will find are ambiguous.</p>
<p>The end result we want is that whenever a user goes to a particular address he will be greeted with something like this from the browser:</p>
<div id="attachment_1573" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/08/unpw.png" target="_blank"><img class="size-medium wp-image-1573 " title="Browser Login Dialog" src="http://www.pendlebury.biz/wp-content/uploads/2010/08/unpw-300x213.png" alt="Browser Login Dialog" width="300" height="213" /></a><p class="wp-caption-text">Browser Login Dialog</p></div>
<p><strong>Note that this is completely independent from any forum or CMS logins that may be required.</strong></p>
<p>So here&#8217;s how it is done.</p>
<p>You will need access to your web space via FTP or similar.</p>
<p>Navigate to the folder you want to protect (if this is your entire site then it will be the main root folder that your website is stored in).</p>
<p>You may already have an <strong>.htaccess</strong> file in the root directory. Have a look and see. If not you can create one and edit it. The basic structure will be:</p>
<pre>AuthUserFile [PATH TO PASSWORD FILE SEE BELOW]
AuthType Basic
AuthName "EnterPassword"
require valid-user</pre>
<p><strong><br />
AuthUserFile</strong> will contain the path to a file containing your user name(s) and password(s)<br />
<strong>require</strong> can be set to valid-user or to one of the names in the password file.</p>
<p>There are two ways of creating the password file itself:</p>
<p>(Not recommended) You can use a simple text file anywhere on your web site.</p>
<p>Preferably you can use a file called <strong>.htpasswd</strong> which can be stored <em>outside </em>the root directory of your site. You must know the path to the password file as it needs to be entered in the .htaccess file like this example:</p>
<p><strong>Filename: .htaccess</strong></p>
<pre class="brush: plain;">AuthUserFile /home/blahuser9/afolder/.htpasswd
AuthType Basic
AuthName &quot;EnterPassword&quot;
require valid-user</pre>
<p>The password file should contain a username and password (or a list of user names and passwords).</p>
<p><strong>The passwords must be encrypted!</strong></p>
<p>The easiest way to do this is to go to a site that will do it for you. <a href="http://www.kxs.net/support/htaccess_pw.html" target="_blank">Here is a great example.</a></p>
<p>So if you go to the KXS site above and enter <strong>Username: <em>myname</em></strong><em> </em><strong>Password: <em>mypassword</em></strong><em> </em>you will then end up with a string of text that looks like this: <strong>myname:0ifoldegAzttw</strong></p>
<p>This line goes in the .<strong>htpasswd </strong>file:</p>
<p><strong>Filename: .htpasswd</strong></p>
<pre class="brush: plain;">myname:0ifoldegAzttw</pre>
<p>Once all that is done &#8211; Anyone entering that folder on your site will have to enter <strong>myname </strong>/ <strong>mypassword </strong>in order to go further.</p>
<p>You can also add multiple user names and passwords in the file.</p>
<p>You can then change the line in .htaccess to:</p>
<pre>require myname</pre>
<p>If it doesn&#8217;t work it will most likely be because the path to your password file is incorrect.</p>
<p><strong>Remember the password needs to be encrypted. So do not try simply typing a password in to the file without encrypting it first.</strong></p>
<p>There are many, many more things you can with .htaccess but this is intended as a guide for anyone who wants to do this as simply and quickly as possible.</p>
<p>Good luck and any questions feel free to post a comment.<strong><br />
</strong></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.pendlebury.biz/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.pendlebury.biz/protect-htaccess/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Big Fun Run</title>
		<link>http://www.pendlebury.biz/bigfunrun/</link>
		<comments>http://www.pendlebury.biz/bigfunrun/#comments</comments>
		<pubDate>Sun, 15 Aug 2010 16:01:02 +0000</pubDate>
		<dc:creator>Phil Pendlebury</dc:creator>
				<category><![CDATA[Health]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Charity]]></category>
		<category><![CDATA[Diet]]></category>
		<category><![CDATA[Fitness]]></category>
		<category><![CDATA[Mum]]></category>
		<category><![CDATA[Running]]></category>

		<guid isPermaLink="false">http://www.pendlebury.biz/?p=1532</guid>
		<description><![CDATA[A little while ago I decided that as I have been running quite regularly these days, I would have a go at doing my first Big Fun Run and see if I could raise a bit of money for Saint Gemma&#8217;s Hospice. The run took place at Roundhay Park, Leeds. An area where I spent]]></description>
			<content:encoded><![CDATA[<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.pendlebury.biz%2Fbigfunrun%2F&amp;layout=standard&amp;&amp;width=350&amp;action=like&amp;font=segoe ui&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:350px;height:30px;margin-top:5px;"></iframe><p>A little while ago I decided that as I have been running quite regularly these days, I would have a go at doing my first <em>Big Fun Run</em> and see if I could raise a bit of money for Saint Gemma&#8217;s Hospice. The run took place at Roundhay Park, Leeds. An area where I spent many a day of my childhood &#8211; fishing, running, walking and so on.</p>
<p>It is just a over a year since my mum passed away (it was July 1st 2009). We were all so grateful to the people at Saint Gemma&#8217;s and the way they took care of her (and us) in her last few months. So I thought I would do this run as a small way of saying   thank you to the people at Saint Gemma&#8217;s and also a nice remembrance of   my mum.</p>
<p>My wife Carol came along for moral support and to take some pictures and a bit of video. I had a T Shirt made with mum&#8217;s picture on it, a little message and the Saint Gemma&#8217;s logo on the back.</p>
<div id="attachment_1538" class="wp-caption alignnone" style="width: 206px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/08/philshirt.jpg" target="_blank"><img class="size-medium wp-image-1538  " title="Mum On The Shirt" src="http://www.pendlebury.biz/wp-content/uploads/2010/08/philshirt-196x300.jpg" alt="Mum On The Shirt" width="196" height="300" /></a><p class="wp-caption-text">Mum On The Shirt</p></div>
<p>We arrived at Roundhay Park in good time and after a brief warm-up it was time to go. The actual run was only 5 Kilometres, which is roughly what I do on my daily run. So I didn&#8217;t anticipate any real problems making it around the course.</p>
<div id="attachment_1539" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/08/philstart.jpg" target="_blank"><img class="size-medium wp-image-1539 " title="Starting Out" src="http://www.pendlebury.biz/wp-content/uploads/2010/08/philstart-300x153.jpg" alt="Starting Out" width="300" height="153" /></a><p class="wp-caption-text">Starting Out</p></div>
<p>There were a few things that changed, compared to the approach of my normal run though.</p>
<ul>
<li>It was wet on the grass &#8211; Makes your feet feel very heavy if your running shoes have soaked up the water which mine had. ( I need to get some waterproof running shoes!)</li>
<li>I also started off at the back of the group, which I didn&#8217;t really think would be a problem as the idea is not to &#8220;win the race&#8221;. But of course the competitive spirit soon kicked in and I found myself wanting to pass a lot of the slower runners (and walkers). Also you do have a &#8220;pace&#8221; that you get used to and running slower than that pace is very hard. So I ended up having to detour onto the grass a lot more than planned to get around crowds of people (and pushchairs and funny folks in animal costumes hehe).</li>
<li>There were two very steep hills to climb too &#8211; Tough going. But I made it to the end and enjoyed every minute of it.</li>
</ul>
<div id="attachment_1535" class="wp-caption alignnone" style="width: 226px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/08/philfinish.jpg" target="_blank"><img class="size-medium wp-image-1535 " title="No Pain No Gain" src="http://www.pendlebury.biz/wp-content/uploads/2010/08/philfinish-216x300.jpg" alt="No Pain No Gain" width="216" height="300" /></a><p class="wp-caption-text">No Pain No Gain</p></div>
<p>I finished in about 25 minutes and came in at around no. 15 out of 400 or so which is OK. Although I started off a bit too fast for reasons explained above. The compare said I was smiling at the finish line &#8211; More like a grimace of pain to me but I&#8217;m not going to argue. :-)</p>
<p>Here&#8217;s a short 2 minute video showing some of our highlights.</p>
<div id="attachment_1543" class="wp-caption alignnone" style="width: 310px"><a href="http://www.youtube.com/watch?v=zeljSiF-vJA" target="_blank"><img class="size-medium wp-image-1543  " title="YouTube - Big Fun Run - Roundhay" src="http://www.pendlebury.biz/wp-content/uploads/2010/08/thumb-300x225.jpg" alt="YouTube - Big Fun Run - Roundhay" width="300" height="225" /></a><p class="wp-caption-text">YouTube - Big Fun Run - Roundhay</p></div>
<p>I used the Virgin Money Giving site to help raise some sponsorship money. Take a look here:</p>
<p><a href="http://uk.virginmoneygiving.com/philpendlebury" target="_blank">http://uk.virginmoneygiving.com/philpendlebury</a></p>
<p>It&#8217;s a very neat system enabling people to donate on-line and the money goes straight to your chosen charity (in my case Saint Gemma&#8217;s Hospice). I was extremely touched by the amount of donations given. It really made it all worth while. The grand total was £273.59 (including gift aid).</p>
<p><strong>Thank you  sooooooooo much </strong>to everyone who donated. It actually brought a real tear to our eyes when we saw the final figure. Fantastic!</p>
<div id="attachment_1537" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/08/philrelax.jpg" target="_blank"><img class="size-medium wp-image-1537 " title="Chilling On The Walk Home" src="http://www.pendlebury.biz/wp-content/uploads/2010/08/philrelax-300x209.jpg" alt="Chilling On The Walk Home" width="300" height="209" /></a><p class="wp-caption-text">Chilling On The Walk Home</p></div>
<p>After the run was over &#8211; We set off walking to the bus stop and then ended up walking all five miles home. We had some nice weather and it was great to spend some time with Carol, discussing what we had done.</p>
<blockquote><p>There was a great sense of achievement but also a slight sadness wishing mum could have seen it all.</p></blockquote>
<p>She would have loved it. But who knows, maybe she was there somewhere&#8230; I&#8217;m sure she was.</p>
<div id="attachment_1536" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/08/philhome.jpg" target="_blank"><img class="size-medium wp-image-1536 " title="Happy At Home" src="http://www.pendlebury.biz/wp-content/uploads/2010/08/philhome-300x205.jpg" alt="Happy At Home" width="300" height="205" /></a><p class="wp-caption-text">Happy At Home</p></div>
<p>I must admit though &#8211; the legs are aching a little as I write this, mainly from the long walk home. Thankfully we both have the rest of the weekend off work.</p>
<div id="attachment_1534" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/08/philcarolhome.jpg" target="_blank"><img class="size-medium wp-image-1534 " title="Wishing We'd Taken The Car!" src="http://www.pendlebury.biz/wp-content/uploads/2010/08/philcarolhome-300x203.jpg" alt="Wishing We'd Taken The Car!" width="300" height="203" /></a><p class="wp-caption-text">Wishing We&#39;d Taken The Car!</p></div>
<p>All in all a great day in every way and something I will definitely do again given the chance.</p>
<p>Thanks for reading.</p>
<p>Here&#8217;s a GPS track of the route for anyone who is interested. I use RunMeter for the iPhone &#8211; A great little gadget for runners and walkers:</p>
<div  style="text-align: left;"  class="xmlgmdiv" id="xmlgmdiv_9"><iframe class="xmlgm" id="xmlgm_9" src="http://www.pendlebury.biz/wp-content/plugins/xml-google-maps/xmlgooglemaps_show.php?gpxid=9" style="border: 0px; width: 640px; height: 440px;" name="Google_Gpx_Maps" frameborder="0"></iframe></div>
<p>Route: Big Fun Run Roundhay<br />
Started: 14 Aug 2010 10:58:41<br />
Run Time: 26:24<br />
Distance: 4.77 km<br />
Average: 10.84 km/h<br />
<strong>Fastest Speed: 15.99 km/h</strong><br />
Climb: 37 meters<br />
Calories: 419<br />
Official Route: Yes</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.pendlebury.biz/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.pendlebury.biz/bigfunrun/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>QR Codes &#8211; Decoding The Box</title>
		<link>http://www.pendlebury.biz/qrcodes/</link>
		<comments>http://www.pendlebury.biz/qrcodes/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 21:08:54 +0000</pubDate>
		<dc:creator>Phil Pendlebury</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[QR Code]]></category>

		<guid isPermaLink="false">http://www.pendlebury.biz/?p=1458</guid>
		<description><![CDATA[I made a minor discovery this morning before starting work in the studio. Something quite interesting, geeky and possibly useful too. It reminded me of some random time in my childhood, spent making codes with my school-friends that only we could read&#8230; Then trying to crack the ones that another group of friends had made.]]></description>
			<content:encoded><![CDATA[<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.pendlebury.biz%2Fqrcodes%2F&amp;layout=standard&amp;&amp;width=350&amp;action=like&amp;font=segoe ui&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:350px;height:30px;margin-top:5px;"></iframe><p>I made a minor discovery this morning before starting work in the studio. Something quite interesting, geeky and possibly useful too. It reminded me of some random time in my childhood, spent making codes with my school-friends that only we could read&#8230; Then trying to crack the ones that another group of friends had made.</p>
<p>QR Codes. A <strong>QR Code</strong> is a two-dimensional bar code displayed in a square box. It was created by a Japanese corporation in 1994. QR stands for <em>Quick Response</em>. The creator wanted the code to allow its message to be decoded at high speed. It certainly works, at least it does now.</p>
<blockquote><p>So what&#8217;s the point of it and what does it do?</p></blockquote>
<p>Well to put it simply &#8211; you can encode a message of varying kind into a <em>QR Block</em> (Is that a word? It is now!) The block can then be scanned and the message decoded. The thing that really tweaked my interest is of course that up until recently you would have required some kind of scanning gadget to read the code. Today we can use pretty much any smart-phone that has a camera and an available QR Code reader.</p>
<p><a href="http://www.pendlebury.biz/wp-content/uploads/2010/07/qrcodelink.png"><img class="alignnone size-medium wp-image-1463" title="qrcodelink" src="http://www.pendlebury.biz/wp-content/uploads/2010/07/qrcodelink-300x300.png" alt="" width="300" height="300" /></a></p>
<p>The above QR Code is a URL. Actually it&#8217;s the URL to this very page.</p>
<p>Here&#8217;s an iTunes link to what is probably the best QR Code reader / creator for the iPhone &#8211; It&#8217;s called Optiscan.</p>
<p><a href="http://itunes.apple.com/gb/app/optiscan-qr-code-scanner-generator/id304099767?mt=8" target="_blank">http://itunes.apple.com/gb/app/optiscan-qr-code-scanner-generator/id304099767?mt=8</a></p>
<p>Optiscan has a few extra features too. You can also produce as well as   read various different types of QR Codes and then mail them and share   them.</p>
<p>There are a few different standard QR Code types. They can be URL specific for example, a URL will automatically be recognised as a URL and can then be opened automatically. Phone numbers will be auto-dialled. Contacts &#8211; added. SMS Sent. etc.</p>
<p>I also found that they can be shrunk down quite nicely as long as they are not anti-aliased. I have now added a small section to my email signature.</p>
<p>Look out for them &#8211; You&#8217;ll notice that various companies and TV channels, games etc. are starting to use these clever little beasties. Especially now that they realise that the general public (that&#8217;s you and me) can actually decode them easily.</p>
<p>If you do manage to get hold of a QR Code scanner &#8211; Check this out.</p>
<p><a href="http://www.pendlebury.biz/wp-content/uploads/2010/07/qrmessage.png"><img class="alignnone size-medium wp-image-1462" title="qrmessage" src="http://www.pendlebury.biz/wp-content/uploads/2010/07/qrmessage-300x300.png" alt="" width="300" height="300" /></a></p>
<p>Thanks for reading.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.pendlebury.biz/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.pendlebury.biz/qrcodes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Solo Navigation</title>
		<link>http://www.pendlebury.biz/solo-navigation/</link>
		<comments>http://www.pendlebury.biz/solo-navigation/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 20:44:31 +0000</pubDate>
		<dc:creator>Phil Pendlebury</dc:creator>
				<category><![CDATA[Aviation]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[Flying Training]]></category>
		<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[GPS]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[PA28]]></category>
		<category><![CDATA[PPL]]></category>
		<category><![CDATA[Sherburn]]></category>
		<category><![CDATA[Weather]]></category>

		<guid isPermaLink="false">http://www.pendlebury.biz/?p=1424</guid>
		<description><![CDATA[Today I completed my first ever solo journey out of the local airfield vicinity. I have done a fair amount of solo flying but up until now, only in the circuit at Sherburn. This means plenty of take-offs and landings but not much radio and navigation work. Today was the day when instructor Jonathan felt]]></description>
			<content:encoded><![CDATA[<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.pendlebury.biz%2Fsolo-navigation%2F&amp;layout=standard&amp;&amp;width=350&amp;action=like&amp;font=segoe ui&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:350px;height:30px;margin-top:5px;"></iframe><p>Today I completed my first ever solo journey out of the local airfield vicinity. I have done a fair amount of solo flying but up until now, only in the circuit at Sherburn. This means plenty of take-offs and landings but not much radio and navigation work. Today was the day when instructor Jonathan felt confident enough to let me out of the circuit on my own.</p>
<p>Incidentally it was my main instructor Jonathan Anderson&#8217;s last day at work today as he has procured a job with Ryan Air. I was slightly sad that we wouldn&#8217;t be flying together for this last time, as he has been teaching me for nearly three years. But what better way to say so-long than to send me off on my own. Haha! Good lad. I wish him all the best, he has been a super, level headed and concise teacher and I have learned a heck of a lot from him. Once again &#8211; <strong>Thanks Jonathan and good luck to you.</strong></p>
<div id="attachment_1429" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/07/JnP1.jpg" target="_blank"><img class="size-medium wp-image-1429 " title="Instructor Jonathan Anderson &amp; Mr Phil" src="http://www.pendlebury.biz/wp-content/uploads/2010/07/JnP1-300x205.jpg" alt="Instructor Jonathan Anderson &amp; Mr Phil" width="300" height="205" /></a><p class="wp-caption-text">Instructor Jonathan Anderson &amp; Mr Phil</p></div>
<p>Another chap that was really helpful today was our Fireman, Dave. Always up for discussion of iPads and iPhones which suits me. And offered to clean the bugs off the windscreen before I departed today. Mega helpful and great moral support. This is the same guy who gave me 7 out of 10 on my flapless approach video. Hopefully I would have got at least a 9 out of 10 today. Hehe.</p>
<div id="attachment_1428" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/07/DavenPhil1.jpg" target="_blank"><img class="size-medium wp-image-1428 " title="Dave &amp; Phil Discuss Jonathan's Camera Technique" src="http://www.pendlebury.biz/wp-content/uploads/2010/07/DavenPhil1-300x179.jpg" alt="Dave &amp; Phil Discuss Jonathan's Camera Technique" width="300" height="179" /></a><p class="wp-caption-text">Dave &amp; Phil Discuss Jonathan&#39;s Camera Technique</p></div>
<p>Back to the flight. I spent all day Thursday preparing. Not just the regular stuff but I got it into my head that the Pilot&#8217;s Log could be done really nicely on an Excel Spreadsheet. Especially with applications like Google Docs and DocsToGo for the iPad and iPhone, enabling the spreadsheet to be edited and viewed at any time. Of course in the actual flight, a paper PLOG is all that is really needed. But I found it great therapy working through the equations and also a good way to double check my calculations.</p>
<div id="attachment_1430" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/07/plog.png" target="_blank"><img class="size-medium wp-image-1430 " title="Phil's Excel PLOG" src="http://www.pendlebury.biz/wp-content/uploads/2010/07/plog-300x202.png" alt="Phil's Excel PLOG" width="300" height="202" /></a><p class="wp-caption-text">Phil&#39;s Excel PLOG</p></div>
<p>If anyone would like to try it out here are some download links. The RED areas are equations and should not be edited. The ORANGE areas are for entering data. The YELLOW areas are for hand written text if required. The wind calculations are taken from the 2000&#8242; wind velocity and angle (entered at the top left). there is a space for 5000&#8242; Wind V/A but this is not used in the calculations.</p>
<p><a href="../wp-content/uploads/2010/07/PLOG-Blank.xlsx">Blank  PLOG XLSX</a></p>
<p><a href="http://www.pendlebury.biz/wp-content/uploads/2010/07/PLOG-Blank.xls">Blank PLOG XLS (For older Excel versions)<br />
</a></p>
<p>Of course if anyone finds these useful or indeed can offer any ideas for improvement please feel free to drop me a line.</p>
<blockquote><p>So that&#8217;s the therapy out of the way &#8211; Now let&#8217;s go flying!</p></blockquote>
<p>It was windy today. Not enough to stop me going but I knew that the flight would not be straight forward and that the navigation training would have to be used. It would be no use just pointing the nose at the destination and flying. Another concern was the runway in use 24 Grass &#8211; Not as direct out to the east as 29 and a slightly lesser known circuit (for me). So it appeared that much of the training would need to be used today and indeed it was. Here&#8217;s a Memory Map screen-shot of the planned course. (If only we could fly like that).</p>
<div id="attachment_1437" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/07/mmroute.png" target="_blank"><img class="size-medium wp-image-1437 " title="Selby - Driffield - Brough - Selby" src="http://www.pendlebury.biz/wp-content/uploads/2010/07/mmroute-300x243.png" alt="Selby - Driffield - Brough - Selby" width="300" height="243" /></a><p class="wp-caption-text">Selby - Driffield - Brough - Selby</p></div>
<p>Pretty straight forward really but with the wind today being up to 25Knotts it was constantly taking me off course. Luckily the training had worked and I managed to correct for wind and get back on to where I was supposed to be quite easily. The radio work went fine. The Flight controllers at Church Fenton are very helpful especially when you mention you are a student.</p>
<p>After I had been under way for a few minutes, relaxed and aware, trusting the aircraft and trusting myself &#8211; It felt great to be in the skies alone.</p>
<blockquote><p>It&#8217;s one of those once in a lifetime things that I am luckily enough to be experiencing more than once.</p></blockquote>
<p>Everything went perfectly. The landing back at Sherburn was one of the smoothest I have ever done and I admit to punching the air and shouting a huge YES! After vacating the runway of course.</p>
<p>So here&#8217;s the usual GPS record of the actual track I flew. As mentioned, it is part of the training NOT to fly direct (Homing). I had the iPad with me, using Air Nav Pro and it would have been all too easy to ignore the training and simply follow the GPS but that is not the object of this exercise. Incidentally though, when I did glance at the iPad, it seemed to be tracking me perfectly, including the slightly early turn over Brough. Haha.</p>
<div  style="text-align: left;"  class="xmlgmdiv" id="xmlgmdiv_7"><iframe class="xmlgm" id="xmlgm_7" src="http://www.pendlebury.biz/wp-content/plugins/xml-google-maps/xmlgooglemaps_show.php?gpxid=7" style="border: 0px; width: 640px; height: 440px;" name="Google_Gpx_Maps" frameborder="0"></iframe></div>
<p><img class="xmlgmele" id="xmlgmele_7"  style="text-align: left; margin: 0px; padding: 0px; max-width: 100%;"  alt="Altitude AMSL" src="http://chart.apis.google.com/chart?cht=lc&#038;chls=2,0,0&#038;chf=c,ls,90,CCCCCC,0.142857142857,FFFFFF,0.142857142857&#038;chxt=x,y&#038;chxl=0:|0 nm|20.5 nm|41 nm|61.5 nm|82 nm|1:|0 ft|500 ft|1000 ft|1500 ft|2000 ft|2500 ft|3000 ft|3500 ft&#038;chd=s:ENWYYYdox0112000zzyxwxzy00ywwwwwxzyxvxy1sffhjbYWLD&#038;chs=640x130&#038;chco=0000FF&#038;chtt=Altitude+AMSL&#038;chts=555555,12" /><br /><img class="xmlgmspeed" id="xmlgmspeed_7"  style="text-align: left; margin: 0px; padding: 0px; max-width: 100%;"  alt="Ground Speed" src="http://chart.apis.google.com/chart?cht=lc&#038;chls=2,0,0&#038;chf=c,ls,90,CCCCCC,0.2,FFFFFF,0.2&#038;chxt=x,y&#038;chxl=0:|0 nm|20.5 nm|41 nm|61.5 nm|82 nm|1:|0 kn|25 kn|50 kn|75 kn|100 kn|125 kn&#038;chd=s:Vo0zxxxz0134434434432onmnonlmooqqqpoqprponpoon0udH&#038;chs=640x130&#038;chco=0000FF&#038;chtt=Ground+Speed&#038;chts=555555,12" /></p>
<p>After the lovely landing and then checking the above track I was super pleased and Jonathan was happy too. So next week I&#8217;m heading out solo again: Selby &#8211; Hornsea &#8211; Bridlington &#8211; Selby. It&#8217;s a longer flight and I&#8217;ll be hoping for clear skies and low winds. Another one or two of these and then it will be time to start &#8220;landing away&#8221; &#8211; i.e. landing at Humberside / East Midlands.</p>
<p>It will be super cool when I can start <em>officially </em>using this  technology and integrate it into the manual navigation techniques I am  learning now. I do feel it is a shame that learning GPS Navigation is not at least <em>part </em>of the official PPL Syllabus. Especially as many pilots will use a GPS the minute they gain their license. There is no doubt though that using a map and a watch is essential technique to know and to be honest it is great fun when you realise that your paper calculations are actually working in the real world.</p>
<p>My wife Carol had been following my route with GPS updates which  was super cool. She knew when I had landed and even when I got back into the clubhouse to pay the bill&#8230; Nice. If there was any downside to today it was only that I wish my dear old mum could have seen my face when I got home.</p>
<p>Until next time &#8211; Thanks for reading.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.pendlebury.biz/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.pendlebury.biz/solo-navigation/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>iNavigation</title>
		<link>http://www.pendlebury.biz/inavigation/</link>
		<comments>http://www.pendlebury.biz/inavigation/#comments</comments>
		<pubDate>Sun, 27 Jun 2010 14:00:40 +0000</pubDate>
		<dc:creator>Phil Pendlebury</dc:creator>
				<category><![CDATA[Aviation]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[Flying Training]]></category>
		<category><![CDATA[GPS]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[PA28]]></category>
		<category><![CDATA[PPL]]></category>
		<category><![CDATA[Sherburn]]></category>
		<category><![CDATA[Weather]]></category>

		<guid isPermaLink="false">http://www.pendlebury.biz/?p=1396</guid>
		<description><![CDATA[Friday, July 26 &#8211; Time for another section of navigation exercises from Sherburn. This time I had some technical testing and questions in mind as well as the actual navigation exercise. My questions &#8211; Does the GPS system that is built into the iPad work well enough to be used for navigation? And if it]]></description>
			<content:encoded><![CDATA[<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.pendlebury.biz%2Finavigation%2F&amp;layout=standard&amp;&amp;width=350&amp;action=like&amp;font=segoe ui&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:350px;height:30px;margin-top:5px;"></iframe><p>Friday, July 26 &#8211; Time for another section of navigation exercises from Sherburn. This time I had some technical testing and questions in mind as well as the actual navigation exercise. My questions &#8211; Does the GPS system that is built into the iPad work well enough to be used for navigation? And if it does &#8211; Do the navigation apps stand up to the task?</p>
<p>First, a little about the iPad. Basically a big iPhone. Lovely clear display and fast enough to do most normal tasks &#8211; email, web browsing, etc. There is also an abundance of apps available to assist with many aspects of aviation; weather, notams, and pretty much any calculation you can think of, including some pretty neat weight and balance tables. What actually <em>sold</em> the idea of an iPad for me was the potential for use as a navigation device. After all, most pilots these days have some kind of GPS device and if the iPad works well enough in that department then there would be no need for a separate GPS unit.</p>
<div id="attachment_1406" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/06/ipad.png" target="_blank"><img class="size-medium wp-image-1406 " title="iPad" src="http://www.pendlebury.biz/wp-content/uploads/2010/06/ipad-300x159.png" alt="iPad" width="300" height="159" /></a><p class="wp-caption-text">iPad</p></div>
<p>The iPad did create quite a stir at the Aero Club. I met a number of pilots who were eager to find out if the GPS system actually worked. Especially after seeing how absolutely gorgeous the maps and charts look on the iPad display. Using Memory Map as an example &#8211; You can also do planning on the PC software and import it to the iPad / iPhone. You can see here the planned track is visible in blue on a quarter mil&#8217; CAA chart. These are actual screen captures from my iPad but not captured in flight.</p>
<div id="attachment_1404" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/06/mmqmil.png" target="_blank"><img class="size-medium wp-image-1404 " title="Memory Map Quarter Mil" src="http://www.pendlebury.biz/wp-content/uploads/2010/06/mmqmil-300x225.png" alt="Memory Map" width="300" height="225" /></a><p class="wp-caption-text">Memory Map Quarter Mil</p></div>
<p>I arrived at Sherburn almost two hours early and had some time to discuss plans for the flight with instructor Jonathan. As I am still a student, I realise that it would be completely wrong for me to even attempt to use GPS during training. So I requested that Jonathan have the iPad on his lap and occasionally check it out whilst I referred to the real chart and pilot&#8217;s log used for the actual navigation. Jonathan was fine with this. So we were pretty much good to go.</p>
<div id="attachment_1407" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/06/Sherburn-Winterton-Malton.jpg" target="_blank"><img class="size-medium wp-image-1407 " title="Parked before checks" src="http://www.pendlebury.biz/wp-content/uploads/2010/06/Sherburn-Winterton-Malton-300x225.jpg" alt="Parked before checks" width="300" height="225" /></a><p class="wp-caption-text">Parked before checks</p></div>
<p>This week&#8217;s flight was from Sherburn to Selby then Winterton on to Malton and back to Selby. The actual flight went really well. Church Fenton was closed, which eliminated the need for some of the radio work. I called Humberside and later, Linton and all went smoothly. A small amount of wind picked up as we flew, which I had not accounted for in my original plan. This is ideal really as it gives me a chance to test out my reckoning when I realise were are off track by 5 degrees: Adjust track by 10 degrees and fly for the same time to get back on track. Then adjust the original written track by 5 degrees. This should bring us back on course.</p>
<blockquote><p>It&#8217;s funny, although I passed the exam quite easily, it took hard thought to remember the theory behind that. I swear your IQ drops by about 20 points when you are flying and navigating.</p></blockquote>
<p>Throughout the flight, Jonathan was viewing the iPad app &#8211; <a title="ANP" href="http://itunes.apple.com/gb/app/air-navigation-pro/id301046057?mt=8" target="_blank">Air Navigation Pro</a>. I also occasionally glanced over and could see that our track was being recorded and displayed with what looked like a great deal of accuracy. I could clearly see how much I had flown off course &#8211; partly due to wind and partly due to my lack of experience. Bear in mind that even though I knew I was slightly off course, we still fly our planned heading, as the object of the exercise is not just to get from A to B but to put the navigation plan to the test.</p>
<p>Air Navigation Pro has a full moving map and options to display various instruments and also details of your actual flight. The flight details are constantly updated and when referring to our actual flight they were very accurate. This application shows air space boundaries as well, although the map is a normal map and not a CAA chart. The author has said that CAA charts will be available eventually. Once again, these are actual screen captures but not taken in flight.</p>
<div id="attachment_1403" class="wp-caption alignnone" style="width: 235px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/06/anpro.png" target="_blank"><img class="size-medium wp-image-1403 " title="Air Navigation Pro" src="http://www.pendlebury.biz/wp-content/uploads/2010/06/anpro-225x300.png" alt="Air Navigation Pro" width="225" height="300" /></a><p class="wp-caption-text">Air Navigation Pro</p></div>
<p>When we arrived back at Selby, Jonathan then switched over to <a title="MM" href="http://itunes.apple.com/gb/app/memory-map/id354675923?mt=8" target="_blank">Memory Map</a>. This does have UK CAA charts on a moving map but no other real features as such. The charts look beautiful though and it had picked us up easily from Selby and was displaying a line of track as we head back to Sherburn.</p>
<p>I had been recording the track with <a title="Motion X" href="http://itunes.apple.com/gb/app/motionx-gps/id299949744?mt=8" target="_blank">Motion X</a> on the iPhone as usual and have overlaid the recorded track on the screen capture of Memory Map. You can see the planned route (in blue) and you can also see the actual route (in pink) which clearly shows the flight deviation and corrections I mentioned. Jonathan was impressed with the iPad, as was I. Every time I glanced over, I could see the display clearly and the navigation picture on the screen matched what I was seeing out of the actual aircraft perfectly.</p>
<div id="attachment_1405" class="wp-caption alignnone" style="width: 235px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/06/mmtrack.png" target="_blank"><img class="size-medium wp-image-1405 " title="Memory Map Track and Actual Flight Path" src="http://www.pendlebury.biz/wp-content/uploads/2010/06/mmtrack-225x300.png" alt="Memory Map Track and Actual Flight Path" width="225" height="300" /></a><p class="wp-caption-text">Memory Map Track and Actual Flight Path</p></div>
<p>Here is a Google map of the actual track we flew. You can see over Malton that I was quite far off track so we did a right turn in order to turn left over Malton. Maybe they should start calling me <em>Derek Zoolander </em>instead of <em>Captain Pendle</em>. :-)</p>
<div  style="text-align: left;"  class="xmlgmdiv" id="xmlgmdiv_6"><iframe class="xmlgm" id="xmlgm_6" src="http://www.pendlebury.biz/wp-content/plugins/xml-google-maps/xmlgooglemaps_show.php?gpxid=6" style="border: 0px; width: 640px; height: 440px;" name="Google_Gpx_Maps" frameborder="0"></iframe></div>
<p><img class="xmlgmele" id="xmlgmele_6"  style="text-align: left; margin: 0px; padding: 0px; max-width: 100%;"  alt="Altitude AMSL" src="http://chart.apis.google.com/chart?cht=lc&#038;chls=2,0,0&#038;chf=c,ls,90,CCCCCC,0.142857142857,FFFFFF,0.142857142857&#038;chxt=x,y&#038;chxl=0:|0 nm|23 nm|46 nm|69 nm|92 nm|1:|0 ft|500 ft|1000 ft|1500 ft|2000 ft|2500 ft|3000 ft|3500 ft&#038;chd=s:DLVWYalx3214987643356545654457653433379740sgddZTOD&#038;chs=640x130&#038;chco=0000FF&#038;chtt=Altitude+AMSL&#038;chts=555555,12" /><br /><img class="xmlgmspeed" id="xmlgmspeed_6"  style="text-align: left; margin: 0px; padding: 0px; max-width: 100%;"  alt="Ground Speed" src="http://chart.apis.google.com/chart?cht=lc&#038;chls=2,0,0&#038;chf=c,ls,90,CCCCCC,0.166666666667,FFFFFF,0.166666666667&#038;chxt=x,y&#038;chxl=0:|0 nm|23 nm|46 nm|69 nm|92 nm|1:|0 kn|20 kn|40 kn|60 kn|80 kn|100 kn|120 kn&#038;chd=s:apwzyvsuzyxxzz1zywwwyyvxyyxz0zzzwyvvvxzwyxxwwuwylG&#038;chs=640x130&#038;chco=0000FF&#038;chtt=Ground+Speed&#038;chts=555555,12" /></p>
<p>It is worth mentioning that to use the iPad for navigation &#8211; <strong>You need the 3G version which has the GPS chip but you don&#8217;t need to have 3G active for the GPS to work.</strong> All the apps I used allow caching of the maps so there is no need for internet access. Google Maps cannot be cached by law but none of these applications use Google maps (unless required).</p>
<p>Yes there is a bit of set up involved and by looking around I see that some people have had trouble sending their maps from the PC to Memory Map. It worked perfectly for me though and as you can see, the end results are positively stunning.  The main thing is that the applications work and they work well.</p>
<blockquote><p>So the results are in and the verdict &#8211; Go out and buy it now!  :-)</p></blockquote>
<p>There are obviously some dedicated Aero-GPS units that can do very much more than this &#8211; airspace infringement warnings and built in weather radar etc. They may well come to one of the iPad navigation apps soon though. In fact some of the US based apps do have some very sophisticated features but not as much coverage for the UK as yet&#8230; Plus, with the iPad method you get so many other tools, all built into the same device for a relatively small fee. Now if someone can figure out a simple way to mount the unit in the cockpit, that would be an added bonus. Of course your passenger or copilot can always just hold the iPad.</p>
<p>As for me, I now have yet another reason to be excited about gaining my PPL. Aviation meets technology once again. Fantastic!</p>
<p>If anyone has any questions or comments, feel free to leave them below or contact me using the <a href="http://www.pendlebury.biz/contact/" target="_blank">contact form</a>.</p>
<p>Thanks for reading.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.pendlebury.biz/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.pendlebury.biz/inavigation/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>MEAP 7.0 Released</title>
		<link>http://www.pendlebury.biz/meap-7-released/</link>
		<comments>http://www.pendlebury.biz/meap-7-released/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 16:21:38 +0000</pubDate>
		<dc:creator>Phil Pendlebury</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[Cubase]]></category>
		<category><![CDATA[MEAP]]></category>
		<category><![CDATA[Nuendo]]></category>
		<category><![CDATA[Steinberg]]></category>

		<guid isPermaLink="false">http://www.pendlebury.biz/?p=1383</guid>
		<description><![CDATA[MEAP &#8211; Multi Export Audio Pro &#8211; has been released to the public today. It has had a huge redesign and lots of extra features added, including a new streamlined dialog and many internal code tweaks and enhancements. What is MEAP? MEAP is a tool for automating the process of exporting (to audio) all individual]]></description>
			<content:encoded><![CDATA[<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.pendlebury.biz%2Fmeap-7-released%2F&amp;layout=standard&amp;&amp;width=350&amp;action=like&amp;font=segoe ui&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:350px;height:30px;margin-top:5px;"></iframe><p>MEAP &#8211; Multi Export Audio Pro &#8211; has been released to the public today. It has had a huge redesign and lots of extra features added, including a new streamlined dialog and many internal code tweaks and enhancements.</p>
<blockquote><p>What is MEAP?</p></blockquote>
<p>MEAP is a tool for automating the process of  exporting (to audio) all  individual MIDI instrument and Audio tracks  from your musical project.  If you wanted to deliver all your parts  (stems) to another studio for  example:</p>
<p>Without MEAP you would  have to sit and manually export each of your  tracks, one at a time.  This can take hours, even days! MEAP will enable the process to be done  unattended. It does not speed up  the process of exporting tracks but  simply eliminates the need for  human interaction.</p>
<p>MEAP also adds  some options that would be impossible to do without it.  Track listing  to a text file. Screen Shots. Automatic naming of output  files. Various  useful locator setting options. To name but a few.</p>
<p>MEAP is a  Windows application.</p>
<p>MEAP works with all Steinberg V3,  V4 &amp; V5 audio  applications.</p>
<div id="attachment_1384" class="wp-caption alignnone" style="width: 260px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/06/prodialog.jpg" target="_blank"><img class="size-medium wp-image-1384 " title="MEAP Version 7" src="http://www.pendlebury.biz/wp-content/uploads/2010/06/prodialog-250x300.jpg" alt="MEAP Version 7" width="250" height="300" /></a><p class="wp-caption-text">MEAP Version 7</p></div>
<p>Some of the features new to MEAP version 7 are:</p>
<ul>
<li>Added compatibility for Cubase 5.5</li>
<li>Added compatibility for Nuendo 5</li>
<li>Added extra options to toggle EQ/Inserts/Sends</li>
<li>Added new Main Menu system</li>
<li>Internally Streamlined export process</li>
<li>Updated MEAP Shots application</li>
<li>Recompiled with latest compiler (12.0.2)</li>
<li>Recompiled installer with latest version (7.6.1)</li>
<li>Added Frame Rate Calculator</li>
<li>Recompiled all free tools</li>
</ul>
<p><strong>MEAP Version 7.0 is a free update for all existing MEAP customers.</strong></p>
<p>There will be a small price increase for new customers at the beginning of July 2010.</p>
<p>So anyone purchasing MEAP before July 2010 will get the present price and all future updates free. Purchases made after July 2010 will be at the new price but will still receive all future updates free.</p>
<p>For more information and to purchase MEAP see the official MEAP Website:</p>
<p><a title="MEAP Website" href="http://www.meap.biz/" target="_blank">http://www.meap.biz/</a></p>
<p>There are some testimonials from MEAP users here:</p>
<p><a title="MEAP Testimonials" href="http://www.meap.biz/forum/viewforum.php?f=8" target="_blank">MEAP Testimonials</a></p>
<p>Cheers!</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.pendlebury.biz/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.pendlebury.biz/meap-7-released/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Flying Navigation With Guest</title>
		<link>http://www.pendlebury.biz/flying-with-guest/</link>
		<comments>http://www.pendlebury.biz/flying-with-guest/#comments</comments>
		<pubDate>Fri, 28 May 2010 12:04:57 +0000</pubDate>
		<dc:creator>Phil Pendlebury</dc:creator>
				<category><![CDATA[Aviation]]></category>
		<category><![CDATA[Flying Training]]></category>
		<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[GPS]]></category>
		<category><![CDATA[PA28]]></category>
		<category><![CDATA[PPL]]></category>
		<category><![CDATA[Sherburn]]></category>

		<guid isPermaLink="false">http://www.pendlebury.biz/?p=1357</guid>
		<description><![CDATA[My navigation instruction continued on Friday with a trip to Hornsea (on the East coast of England). Instructor Jonathan gave me the OK to bring a passenger which was really neat. So I met my old friend Pete Neville in the morning and we finished off the flight plan and route calculations at home before]]></description>
			<content:encoded><![CDATA[<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.pendlebury.biz%2Fflying-with-guest%2F&amp;layout=standard&amp;&amp;width=350&amp;action=like&amp;font=segoe ui&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:350px;height:30px;margin-top:5px;"></iframe><p>My navigation instruction continued on Friday with a trip to Hornsea (on the East coast of England). Instructor Jonathan gave me the OK to bring a passenger which was really neat. So I met my old friend Pete Neville in the morning and we finished off the flight plan and route calculations at home before heading to Sherburn. Pete took a few pictures with his phone which turned out quite nicely.</p>
<div id="attachment_1379" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/05/philapa28door.jpg" target="_blank"><img class="size-medium wp-image-1379 " title="Entering The PA28" src="http://www.pendlebury.biz/wp-content/uploads/2010/05/philapa28door-300x225.jpg" alt="Entering The PA28" width="300" height="225" /></a><p class="wp-caption-text">Entering The PA28</p></div>
<p>Today&#8217;s route involved getting from Sherburn to Selby to start the navigation exercise. Then heading to Hornsea on the coast, turn left up to Driffield inland and then back to Selby. From Selby back to Sherburn for landing.</p>
<div id="attachment_1381" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/05/philpa28pilotseat.jpg" target="_blank"><img class="size-medium wp-image-1381 " title="Pre Flight Checks" src="http://www.pendlebury.biz/wp-content/uploads/2010/05/philpa28pilotseat-300x225.jpg" alt="Pre Flight Checks" width="300" height="225" /></a><p class="wp-caption-text">Pre Flight Checks</p></div>
<p>It was little windy which is good as it helps to put the theory of the whole navigation thing to the test. Compensating for wind etc. Everything worked out really well although I have to admit I am finding it tough doing radio calls correctly, listening out, reading the map, looking for landmarks, writing estimated arrival times and of course flying the aircraft. And there in that very sentence is one of the key lessons that I learned on this trip &#8211; Flying the aircraft comes first. Everything seems to happen at once. But this is normal. I felt the same way when I first started doing circuits and now I&#8217;m very comfortable with that. It&#8217;s just a matter of time&#8230; Hopefully.</p>
<blockquote><p>It was great to see my old mate Pete and I&#8217;m pretty sure he enjoyed the whole day as much as I did.<br />
Well, the sick bag didn&#8217;t get used so I can only take that as good sign.</p></blockquote>
<p>Pete also volunteered to try and grab some video footage &#8211; A tricky task when in the back seat of a small aircraft bumping up and down with the gusting winds. Some of it has come out OK, although it will probably only be of real interest to any other light aircraft pilots or at very least, of interest to Pete and myself.</p>
<div id="attachment_1380" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/05/philinsidepa28.jpg" target="_blank"><img class="size-medium wp-image-1380 " title="Getting Set To Depart" src="http://www.pendlebury.biz/wp-content/uploads/2010/05/philinsidepa28-300x225.jpg" alt="Getting Set To Depart" width="300" height="225" /></a><p class="wp-caption-text">Getting Set To Depart</p></div>
<p>Here&#8217;s an edited version of the video. It is quite extremely edited in places. The whole flight took about an hour and fifteen minutes. Partly due to having to &#8220;go-around&#8221; on final approach due to runway activity. There was, as mentioned, quite a strong wind which made the landing a little challenging. All good because I&#8217;ve had a long period of  no wind landings. All went as it should and Pete even managed to  capture the sound of the tyres screeching as we touched down pretty  smoothly (the tyres screeching is generally a good thing).</p>
<p>The video is cut down to about 10 minutes, including an edited walk-round  before departure.</p>
<div class="wp-caption alignnone" style="width: 310px"><a href="http://www.youtube.com/watch?v=9PUErWErTVs" target="_blank"><img class="       " title="YouTube - Flying to Hornsea - PA 28" src="http://img.youtube.com/vi/9PUErWErTVs/0.jpg" alt="" width="300" height="220" /></a><p class="wp-caption-text">YouTube - Flying to Hornsea - PA 28</p></div>
<p>Back to my earlier statement about flying the aircraft. Something we learn very early on as students:</p>
<blockquote><p>ANC &#8211; Aviate, Navigate, Communicate.</p></blockquote>
<p>There are times when as a student you really feel you want to tell the guy behind you on downwind that you are slowing down to make space between yourself and the guy in front (we don&#8217;t have brake lights) &#8211; or you want to tell the glider pilot who&#8217;s aircraft is half a mile away, turning towards your position that you have spotted him and ask him if he has spotted you &#8211; and so on. But of course, as instructor Jonathan makes very clear &#8211; Not your problem &#8211; Fly your aircraft first, every thing else is secondary to that.</p>
<p>Once again, I recorded the track with Motion X on my iPhone. Here&#8217;s the actual track we flew. It&#8217;s surprisingly close to the planned route. Of course there are a few GPS track error spikes as usual but generally the plot is pretty accurate.</p>
<p>Thanks for reading.</p>
<div  style="text-align: left;"  class="xmlgmdiv" id="xmlgmdiv_5"><iframe class="xmlgm" id="xmlgm_5" src="http://www.pendlebury.biz/wp-content/plugins/xml-google-maps/xmlgooglemaps_show.php?gpxid=5" style="border: 0px; width: 640px; height: 440px;" name="Google_Gpx_Maps" frameborder="0"></iframe></div>
<p><img class="xmlgmele" id="xmlgmele_5"  style="text-align: left; margin: 0px; padding: 0px; max-width: 100%;"  alt="Altitude AMSL" src="http://chart.apis.google.com/chart?cht=lc&#038;chls=2,0,0&#038;chf=c,ls,90,CCCCCC,0.142857142857,FFFFFF,0.142857142857&#038;chxt=x,y&#038;chxl=0:|0 nm|24.8 nm|49.5 nm|74.3 nm|99 nm|1:|0 ft|500 ft|1000 ft|1500 ft|2000 ft|2500 ft|3000 ft|3500 ft&#038;chd=s:EJRTWXaiqu03454344343234554554333322243ugfecYUNTQF&#038;chs=640x130&#038;chco=0000FF&#038;chtt=Altitude+AMSL&#038;chts=555555,12" /><br /><img class="xmlgmspeed" id="xmlgmspeed_5"  style="text-align: left; margin: 0px; padding: 0px; max-width: 100%;"  alt="Ground Speed" src="http://chart.apis.google.com/chart?cht=lc&#038;chls=2,0,0&#038;chf=c,ls,90,CCCCCC,0.25,FFFFFF,0.25&#038;chxt=x,y&#038;chxl=0:|0 nm|24.8 nm|49.5 nm|74.3 nm|99 nm|1:|0 kn|40 kn|80 kn|120 kn|160 kn&#038;chd=s:Nc9stutrqsrsstststruwtojjijjiijjkljkkkkjkjij2gd4bG&#038;chs=640x130&#038;chco=0000FF&#038;chtt=Ground+Speed&#038;chts=555555,12" /></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.pendlebury.biz/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.pendlebury.biz/flying-with-guest/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>First PPL Navigation Exercise</title>
		<link>http://www.pendlebury.biz/first-navigation/</link>
		<comments>http://www.pendlebury.biz/first-navigation/#comments</comments>
		<pubDate>Fri, 21 May 2010 16:29:40 +0000</pubDate>
		<dc:creator>Phil Pendlebury</dc:creator>
				<category><![CDATA[Aviation]]></category>
		<category><![CDATA[Exams]]></category>
		<category><![CDATA[Flying Training]]></category>
		<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[GPS]]></category>
		<category><![CDATA[PA28]]></category>
		<category><![CDATA[PPL]]></category>
		<category><![CDATA[Sherburn]]></category>

		<guid isPermaLink="false">http://www.pendlebury.biz/?p=1337</guid>
		<description><![CDATA[Today marked my first PPL Navigation exercise from Sherburn. I have been learning to fly now for over two years and today was the first time I have actually flown to a destination outside of the normal Sherburn circuit. There is some out of circuit work involved before the navigation exercises begin but it&#8217;s mostly]]></description>
			<content:encoded><![CDATA[<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.pendlebury.biz%2Ffirst-navigation%2F&amp;layout=standard&amp;&amp;width=350&amp;action=like&amp;font=segoe ui&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:350px;height:30px;margin-top:5px;"></iframe><p>Today marked my first PPL Navigation exercise from Sherburn. I have been learning to fly now for over two years and today was the first time I have actually flown to a destination outside of the normal Sherburn circuit. There is some out of circuit work involved before the navigation exercises begin but it&#8217;s mostly just at the training area, learning to cope with stalls and steep turns etc.</p>
<p>After that, much of the time is spent in the circuit doing 7 or 8 take-offs and landings per lesson, many of them solo. I do love the take-offs and landings but it is nice to be finally going somewhere other than round and round.</p>
<blockquote><p>Some people start and finish the whole PPL course in a matter of weeks (some even less). But for me it has all been down to money (or lack of it) and of course the good old UK weather.</p></blockquote>
<p>Last week instructor Jonathan and I had planned our route from Sherburn to Selby then to Bridlington, Brough back to Selby and then Sherburn to land. This morning I had to check the wind situation and update the flight plan and pilot&#8217;s log &#8211; PLOG &#8211; accordingly. It was very satisfying to finally be putting all the things learned in the exams into actual practise.</p>
<p>It was a beautiful day today. A bit hazy but lovely and warm and very little wind. We set off from runway 06 grass, which is another first for me and a very short runway compared to the big tarmacked 29 that we normally use. After departure we head to the village of Selby and begin the navigation from there. It involves flying certain headings, compensating for wind (if there is any), timing each leg and &#8211; RADIO! Well I passed the comms exam a few months ago but have never had to actually do the whole thing like this, all at once.</p>
<div id="attachment_1338" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/05/IMG_0239.jpg"><img class="size-medium wp-image-1338" title="Sherburn After Landing" src="http://www.pendlebury.biz/wp-content/uploads/2010/05/IMG_0239-300x90.jpg" alt="Sherburn After Landing" width="300" height="90" /></a><p class="wp-caption-text">Sherburn After Landing</p></div>
<p>There is a lot to do that&#8217;s for sure. Whilst trying to maintain course and altitude, looking for landmarks etc. there are quite a number of calls and radio station changes which all seem to come at the same time. Listening and repeating back QNH and SQUAWK settings etc. Everything went as expected and to be honest everything went very smoothly but it was not easy that&#8217;s for sure.</p>
<p>I hope that this will turn out a lot like when I first started flying circuits. After the first one or two I used to think that there is no way I&#8217;ll be able to do this and relax, but shortly after, it becomes almost second nature. I&#8217;m looking forward to getting to that point with the navigation.</p>
<p>Anyway, we got to Bridlington, turned back to Brough, back to Selby and joined Sherburn&#8217;s very short right hand circuit to land on runway 06. It was great seeing Bridlington. Looking down and seeing people on the beach where I spent many a fond weekend when I was kid. Being up above it all and picking out landmarks really gives you a different perspective to the one you are used to (obviously I guess). Especially when you&#8217;re viewing places that you have visited many times on the ground. (although not recently).</p>
<p>Once again, I managed to get a GPS track using <a href="http://gps.motionx.com/iphone/overview/" target="_blank">Motion X for iPhone</a> and here it is below. You can see we head East to Brid&#8217; and then turned back to Brough. You can even see the very tight overhead joining turn and the turns before final landing. It does look like I was on one side of the runway though which I definitely was not. Also it seems the speed increases to &gt;350Kt near the end. So I guess there is a little inaccuracy there.</p>
<div  style="text-align: left;"  class="xmlgmdiv" id="xmlgmdiv_4"><iframe class="xmlgm" id="xmlgm_4" src="http://www.pendlebury.biz/wp-content/plugins/xml-google-maps/xmlgooglemaps_show.php?gpxid=4" style="border: 0px; width: 640px; height: 440px;" name="Google_Gpx_Maps" frameborder="0"></iframe></div>
<p><img class="xmlgmele" id="xmlgmele_4"  style="text-align: left; margin: 0px; padding: 0px; max-width: 100%;"  alt="Altitude AMSL" src="http://chart.apis.google.com/chart?cht=lc&#038;chls=2,0,0&#038;chf=c,ls,90,CCCCCC,0.142857142857,FFFFFF,0.142857142857&#038;chxt=x,y&#038;chxl=0:|0 nm|25 nm|50 nm|75 nm|100 nm|1:|0 ft|400 ft|800 ft|1200 ft|1600 ft|2000 ft|2400 ft|2800 ft&#038;chd=s:EJXcftxzz000zzzyyzzz00101322310zyyxxyywvxywqqmkdbL&#038;chs=640x130&#038;chco=0000FF&#038;chtt=Altitude+AMSL&#038;chts=555555,12" /><br /><img class="xmlgmspeed" id="xmlgmspeed_4"  style="text-align: left; margin: 0px; padding: 0px; max-width: 100%;"  alt="Ground Speed" src="http://chart.apis.google.com/chart?cht=lc&#038;chls=2,0,0&#038;chf=c,ls,90,CCCCCC,0.142857142857,FFFFFF,0.142857142857&#038;chxt=x,y&#038;chxl=0:|0 nm|25 nm|50 nm|75 nm|100 nm|1:|0 kn|50 kn|100 kn|150 kn|200 kn|250 kn|300 kn|350 kn&#038;chd=s:EOQRQQQQRRQRQRQQQQQQQQSSSSSSTSSSSRRUSSSSSSSSSSS8NH&#038;chs=640x130&#038;chco=0000FF&#038;chtt=Ground+Speed&#038;chts=555555,12" /></p>
<p>I passed the Flight Planning and Performance exam on Tuesday (thanks again to ground school from Barry and moral support from Julia at SAC &#8211; You guys rock!) I now have just one more written exam to pass &#8211; Aircraft General (hopefully next week) and then more navigation and the all important Solo Cross Country (major milestone). Followed by some flying revision and then the big one &#8211; The Skills Test.</p>
<p>Next week we&#8217;re flying to Hornsea and Driffield. Can&#8217;t wait! If you live on the route from Selby to Hornsea &#8211; look up at about 13:00 &#8211; if you see a small, white PA28 &#8211; give us a wave!</p>
<p>Thanks for reading.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.pendlebury.biz/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.pendlebury.biz/first-navigation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Runway 24 Grass</title>
		<link>http://www.pendlebury.biz/runway-24-grass/</link>
		<comments>http://www.pendlebury.biz/runway-24-grass/#comments</comments>
		<pubDate>Fri, 14 May 2010 13:55:00 +0000</pubDate>
		<dc:creator>Phil Pendlebury</dc:creator>
				<category><![CDATA[Aviation]]></category>
		<category><![CDATA[Flying Training]]></category>
		<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[GPS]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[PA28]]></category>
		<category><![CDATA[PPL]]></category>
		<category><![CDATA[Sherburn]]></category>

		<guid isPermaLink="false">http://www.pendlebury.biz/?p=1323</guid>
		<description><![CDATA[Just a quickie&#8230; I went over to Sherburn today to do the final preparation for next week&#8217;s navigation exercise. We&#8217;ll be flying to Bridlington and Brough. So I need to get the procedure straight. There&#8217;ll be a small chance to revise it before we go. This will be my first proper navigation using a map]]></description>
			<content:encoded><![CDATA[<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.pendlebury.biz%2Frunway-24-grass%2F&amp;layout=standard&amp;&amp;width=350&amp;action=like&amp;font=segoe ui&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:350px;height:30px;margin-top:5px;"></iframe><p>Just a quickie&#8230; I went over to Sherburn today to do the final preparation for next week&#8217;s navigation exercise. We&#8217;ll be flying to Bridlington and Brough. So I need to get the procedure straight. There&#8217;ll be a small chance to revise it before we go. This will be my first proper navigation using a map and nothing else but eyes and watches. More on that later.</p>
<p>Jonathan talked me through the procedure and it went very smoothly. So we had 30 minutes remaining and decided to do some flying. It was extra nice today because there was bit of a wind (a little extra challenge) and the runway in use was 24 grass which I haven&#8217;t used for quite a while.</p>
<blockquote><p>We only managed three circuits, which was fine. All went very nicely and instructor Jonathan seemed happy too, which always a good sign.</p></blockquote>
<p>I managed to get the Motion X track again by switching on Motion X and putting the phone back in my bag. Clever stuff.</p>
<div id="attachment_1326" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/05/Sherburn-runway-24-grass.jpg"><img class="size-medium wp-image-1326" title="Parked at Sherburn" src="http://www.pendlebury.biz/wp-content/uploads/2010/05/Sherburn-runway-24-grass-300x225.jpg" alt="Parked at Sherburn" width="300" height="225" /></a><p class="wp-caption-text">Parked at Sherburn</p></div>
<p>In the track below you can see the circuits and you can see that we have to avoid the villages on the circuit South Milford to the West of Sherburn, Monk Fryston to the South and Hambleton to the East. You can see clearly that I managed to avoid them all and that the circuits look pretty neat, considering the wind. Super cool. I&#8217;ll have to try capturing the track when we (hopefully) fly to Brid next week.</p>
<blockquote><p>A &#8220;circuit&#8221; in this respect means flying around the designated path for the runway in use and landing the aircraft without stopping (otherwise known as a &#8220;touch and go&#8221;). The final landing is a &#8220;full stop&#8221; landing of course.</p></blockquote>
<p>Thanks for reading.</p>
<div  style="text-align: left;"  class="xmlgmdiv" id="xmlgmdiv_3"><iframe class="xmlgm" id="xmlgm_3" src="http://www.pendlebury.biz/wp-content/plugins/xml-google-maps/xmlgooglemaps_show.php?gpxid=3" style="border: 0px; width: 640px; height: 440px;" name="Google_Gpx_Maps" frameborder="0"></iframe></div>
<p><img class="xmlgmele" id="xmlgmele_3"  style="text-align: left; margin: 0px; padding: 0px; max-width: 100%;"  alt="Altitude AMSL" src="http://chart.apis.google.com/chart?cht=lc&#038;chls=2,0,0&#038;chf=c,ls,90,CCCCCC,0.166666666667,FFFFFF,0.166666666667&#038;chxt=x,y&#038;chxl=0:|0 nm|5 nm|10 nm|15 nm|20 nm|1:|0 ft|200 ft|400 ft|600 ft|800 ft|1000 ft|1200 ft&#038;chd=s:KKRcls356554pmjdYRThv365675432rhSRXjvxwwwvvwuobUMK&#038;chs=640x130&#038;chco=0000FF&#038;chtt=Altitude+AMSL&#038;chts=555555,12" /><br /><img class="xmlgmspeed" id="xmlgmspeed_3"  style="text-align: left; margin: 0px; padding: 0px; max-width: 100%;"  alt="Ground Speed" src="http://chart.apis.google.com/chart?cht=lc&#038;chls=2,0,0&#038;chf=c,ls,90,CCCCCC,0.166666666667,FFFFFF,0.166666666667&#038;chxt=x,y&#038;chxl=0:|0 nm|5 nm|10 nm|15 nm|20 nm|1:|0 kn|25 kn|50 kn|75 kn|100 kn|125 kn|150 kn&#038;chd=s:DXcegkosoqplkTdbYadijnoqqqslggbbYdfkmlrqtm8jebZKFE&#038;chs=640x130&#038;chco=0000FF&#038;chtt=Ground+Speed&#038;chts=555555,12" /></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.pendlebury.biz/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.pendlebury.biz/runway-24-grass/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>MEAP 7.0 Coming Soon</title>
		<link>http://www.pendlebury.biz/meap7soon/</link>
		<comments>http://www.pendlebury.biz/meap7soon/#comments</comments>
		<pubDate>Tue, 04 May 2010 23:18:25 +0000</pubDate>
		<dc:creator>Phil Pendlebury</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[Cubase]]></category>
		<category><![CDATA[MEAP]]></category>
		<category><![CDATA[Nuendo]]></category>
		<category><![CDATA[Steinberg]]></category>

		<guid isPermaLink="false">http://www.pendlebury.biz/?p=1293</guid>
		<description><![CDATA[I&#8217;m in the process of putting the finishing touches to the new release of my MEAP application. Multi Export Audio Pro will reach Version 7.0 within the next few weeks. There are quite a number of changes both visible and &#8220;under the hood&#8221;. All internal code has been re-written, pretty much from the ground up.]]></description>
			<content:encoded><![CDATA[<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.pendlebury.biz%2Fmeap7soon%2F&amp;layout=standard&amp;&amp;width=350&amp;action=like&amp;font=segoe ui&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:350px;height:30px;margin-top:5px;"></iframe><p>I&#8217;m in the process of putting the finishing touches to the new release of my MEAP application. <a href="http://www.meap.biz/">Multi Export Audio Pro</a> will reach Version 7.0 within the next few weeks. There are quite a number of changes both visible and &#8220;under the hood&#8221;.</p>
<p>All internal code has been re-written, pretty much from the <em>ground up</em>. It&#8217;s been a challenge but work is almost complete.</p>
<blockquote><p>From the <em>ground up &#8211; </em>A cliché term often used in application building that really has nothing to do with the actual ground or anything above it whatsoever.</p></blockquote>
<p>First and foremost, MEAP 7.0 will add support for the forthcoming Steinberg release of Nuendo 5 &#8211; Advanced Post, Live and Audio Production System. You can read more about Nuendo 5.0 at Steinberg&#8217;s official announcement here: <a title="Steinberg N5" href="http://www.steinberg.net/en/products/audiopostproduction_product/nuendo5.html" target="_blank">http://www.steinberg.net/en/products/audiopostproduction_product/nuendo5.html</a> It looks amazing. There is also some news here at Steinberg&#8217;s site about the forthcoming Cubase 5.5 update: <a title="C55" href="http://www.steinberg.net/en/company/steinberg_news/detailansicht/archive/2010/03/26/article/mipa-for-cubase-5-1059.html" target="_blank">http://www.steinberg.net/en/company/steinberg_news/detailansicht/archive/2010/03/26/article/mipa-for-cubase-5-1059.html</a></p>
<div id="attachment_1299" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/05/Nuendo5_webcollage_548x380_01.jpg"><img class="size-medium wp-image-1299" title="Nuendo 5 Collage" src="http://www.pendlebury.biz/wp-content/uploads/2010/05/Nuendo5_webcollage_548x380_01-300x208.jpg" alt="Nuendo 5 Collage" width="300" height="208" /></a><p class="wp-caption-text">Nuendo 5 Collage</p></div>
<p>This is all very exciting stuff for those of us in the music and production industry.</p>
<p>One of the biggest challenges has been getting MEAP to press buttons that are not actually labelled as buttons within the Windows API. I have managed to get around this by taking more screen shots of the buttons in questions (in all languages) and having MEAP search for the right button to press.</p>
<p>When Nuendo 5.0 and Cubase 5.5 are officially released I will be able to check  everything for a few days and then release the MEAP 7.0 update  accordingly. All the routines are in place within MEAP but cannot be  finalised until the applications are released &#8211; So that I can actually see  what it looks like running.</p>
<p>MEAP 7.0 will be a free update to all existing MEAP customers. The price of MEAP has not changed for over 2 years, therefore for new customers there will be a small price increase after the release of V7.0. So if you don&#8217;t already own MEAP &#8211; Now would be a good time&#8230;</p>
<div id="attachment_1294" class="wp-caption alignnone" style="width: 260px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/05/prodialog.jpg"><img class="size-medium wp-image-1294" title="MEAP Dialog - Main Options" src="http://www.pendlebury.biz/wp-content/uploads/2010/05/prodialog-250x300.jpg" alt="MEAP Dialog - Main Options" width="250" height="300" /></a><p class="wp-caption-text">MEAP Dialog - Main Options</p></div>
<p><strong>Here are some of the new features of MEAP 7.0</strong></p>
<ul>
<li> Added compatibility for Nuendo 5</li>
<li> Added compatibility for Cubase 5.5</li>
<li> Added extra options to toggle OFF EQ/Inserts/Sends before export</li>
<li> Added main menu system</li>
<li> Updated MEAP Shots application</li>
<li> Streamlined export process</li>
<li> Recompiled with latest compiler (12.0.00)</li>
<li> Recompiled installer with latest version (7.5.00)</li>
<li> Recompiled all free tools</li>
</ul>
<div id="attachment_1296" class="wp-caption alignnone" style="width: 135px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/05/prodialogproject.jpg"><img class="size-thumbnail wp-image-1296" title="MEAP Dialog - Project Options" src="http://www.pendlebury.biz/wp-content/uploads/2010/05/prodialogproject-125x150.jpg" alt="MEAP Dialog - Project Options" width="125" height="150" /></a><p class="wp-caption-text">Project Options</p></div>
<p>MEAP 7.0 is due for release in June 2010 and is available only form the MEAP Website: <a title="MEAP" href="http://www.meap.biz/" target="_blank">http://www.meap.biz/</a></p>
<p class="divider">
<p><strong>If you don&#8217;t already know about MEAP &#8211; Here&#8217;s some information from the MEAP Website.</strong></p>
<p>A tool for automating the process of exporting (to audio) all  individual MIDI instrument and Audio tracks from your musical project.</p>
<p>If you wanted to deliver all your parts (stems) to another studio for  example:</p>
<p>Without MEAP you would have to sit and manually export each of your  tracks, one at a time. This can take hours, even days!</p>
<p>MEAP will enable the process to be done unattended. It does not speed up  the process of exporting tracks but simply eliminates the need for  human interaction.</p>
<p>MEAP also adds some options that would be impossible to do without it.  Track listing to a text file. Screen Shots. Automatic naming of output  files. Various useful locator setting options. To name but a few.</p>
<p>MEAP is a Windows application.</p>
<p>MEAP works with all Steinberg V3,  V4 &amp; V5 audio applications.</p>
<p><strong>MEAP Feature List</strong></p>
<p>MEAP is not just a  standard batch export but way more.</p>
<p>Here are just some of the features:</p>
<p><strong>Export Locator Options:</strong></p>
<ul>
<li>All Project Range</li>
<li>Only the parts on each individual track</li>
<li>From the start of the project to the end of the parts on each  track</li>
<li>From the first part on each track to the end of the project</li>
<li>Export each part separately on each track. Every part is  exported and named separately</li>
<li>Export your project in sections as set by your Marker Track</li>
<li>Add a nose and tail to your locator settings for catching  reverbs and intro sections</li>
</ul>
<p><strong>File Naming Options:</strong></p>
<ul>
<li>Use the project track name</li>
<li>Use your own default file name</li>
<li>Insert the location of each part into the file name using  whatever format you have displayed on the transport</li>
<li>Use custom file naming where variables can be inserted</li>
<li>Use the audio application default naming (for markers)</li>
</ul>
<p><strong>Other Options:</strong></p>
<ul>
<li>Log all actions and exported files to a text file</li>
<li>Take a screen shot of the finished export</li>
<li>Automatically save new project before export</li>
<li>Shut Down your OS after export is done</li>
</ul>
<p>These are just a few of MEAP&#8217;s ever growing feature list.</p>
<p class="divider">
<div id="attachment_1295" class="wp-caption alignnone" style="width: 135px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/05/prodialogadvanced.jpg"><img class="size-thumbnail wp-image-1295" title="MEAP Dialog - Advanced Options" src="http://www.pendlebury.biz/wp-content/uploads/2010/05/prodialogadvanced-125x150.jpg" alt="MEAP Dialog - Advanced Options" width="125" height="150" /></a><p class="wp-caption-text">Advanced Options</p></div>
<p>Thanks for reading.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.pendlebury.biz/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.pendlebury.biz/meap7soon/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Up Down &#8211; Flying Around!</title>
		<link>http://www.pendlebury.biz/updownaround/</link>
		<comments>http://www.pendlebury.biz/updownaround/#comments</comments>
		<pubDate>Fri, 30 Apr 2010 16:03:59 +0000</pubDate>
		<dc:creator>Phil Pendlebury</dc:creator>
				<category><![CDATA[Aviation]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[Flying Training]]></category>
		<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[GPS]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[PA28]]></category>
		<category><![CDATA[PPL]]></category>
		<category><![CDATA[Sherburn]]></category>

		<guid isPermaLink="false">http://www.pendlebury.biz/?p=1232</guid>
		<description><![CDATA[We were pleasantly surprised by some more good weather today. So I managed to get over to Sherburn for an hour of flying instruction. It was time for some more practise of precautionary procedures today. It&#8217;s a lot to take in all in one go but very enjoyable stuff and as mentioned before, essential to]]></description>
			<content:encoded><![CDATA[<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.pendlebury.biz%2Fupdownaround%2F&amp;layout=standard&amp;&amp;width=350&amp;action=like&amp;font=segoe ui&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:350px;height:30px;margin-top:5px;"></iframe><p>We were pleasantly surprised by some more good weather today. So I managed to get over to Sherburn for an hour of flying instruction. It was time for some more practise of precautionary procedures today. It&#8217;s a lot to take in all in one go but very enjoyable stuff and as mentioned before, essential to a pilot&#8217;s arsenal of skills.</p>
<p>A precautionary landing is a simulation of being low on fuel or some other similar emergency, and it is flown with power, unlike a forced landing which is a simulation of engine failure (or other catastrophic failure) and therefore flown without power.</p>
<p>I took a quick picture as we were about to depart for the runway. This is from the Captain&#8217;s seat in the cockpit, looking down the wing towards some other aircraft parked.</p>
<div id="attachment_1238" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/04/Ex-16_17-Sherburn.jpg"><img class="size-medium wp-image-1238" title="Parked and Ready" src="http://www.pendlebury.biz/wp-content/uploads/2010/04/Ex-16_17-Sherburn-300x225.jpg" alt="Parked and Ready" width="300" height="225" /></a><p class="wp-caption-text">Parked and Ready</p></div>
<p>The precautionary landings were first. It involves doing a circuit of the runway, imagining that it is a field or small landing strip. Because we have power (for now), the procedure for getting down to earth is a little different. We do some circuits of the chosen landing area. Starting at 1000 Feet, then one at 500 Feet, then one at 100 Feet. (These figures are heights above the airfield ground level not above sea level). At all times trying to keep the landing point in view and checking for obstructions &#8211; sheep, cows, dogs, bears, streakers and any other things that could impede a smooth landing.</p>
<blockquote><p>Flying around the runway at 100 Feet was quite a daunting task. The ground moves fast! And any deviation in height seems much more extreme. You can clearly see birds on the ground from 100 feet, which is very cool.</p></blockquote>
<p>We then went out of the circuit and did two more Practised Forced Landings. Followed by a glide approach on the final actual landing. This is where Jonathan the instructor pulls back power and says &#8220;get it onto the runway.&#8221; So with no power at all you have to control speed and descent and get to the runway and land in once piece. I managed to get the aircraft down. It wasn&#8217;t the smoothest landing ever but safe enough and we walked away shortly afterwards which is always a good sign.</p>
<p>I knew it was going to be quite intense today. There&#8217;s a lot of quick thinking involved, especially if you want to be realistic and imagine that you really can&#8217;t touch the power on a forced landing. Plus it was quite windy so there was a greater need to concentrate on trying not to get blown off track. Which meant that it was unlikely I would be able to get any other pictures or video.</p>
<p>However, I had my trusty iPhone with me and decided give <a href="http://news.motionx.com/category/motionx-gps/" target="_blank"><em>Motion X GPS</em></a> a go. It&#8217;s a GPS tracking application. I just started it before we set off, put it in my bag and left it there. I didn&#8217;t realise at the time that, not only will it track all areas of the flight &#8211; course, speed, altitude etc. &#8211; quite accurately but you can also save the track and view it in Google Earth. Then to add more indulgent fun, I found a great little WP Plugin that will display the track in a post.</p>
<p>So here it is &#8211; I hope you find it as interesting as I did.</p>
<blockquote><p>Note  to pilots: Obviously the speed below is <strong>Ground  Speed </strong>in Knots  not Air Speed. I don&#8217;t think a PA28 would be very  happy doing 200 Knots  IAS!</p></blockquote>
<div  style="text-align: left;"  class="xmlgmdiv" id="xmlgmdiv_2"><iframe class="xmlgm" id="xmlgm_2" src="http://www.pendlebury.biz/wp-content/plugins/xml-google-maps/xmlgooglemaps_show.php?gpxid=2" style="border: 0px; width: 640px; height: 440px;" name="Google_Gpx_Maps" frameborder="0"></iframe></div>
<p><img class="xmlgmele" id="xmlgmele_2"  style="text-align: left; margin: 0px; padding: 0px; max-width: 100%;"  alt="Altitude AMSL" src="http://chart.apis.google.com/chart?cht=lc&#038;chls=2,0,0&#038;chf=c,ls,90,CCCCCC,0.166666666667,FFFFFF,0.166666666667&#038;chxt=x,y&#038;chxl=0:|0 nm|13.3 nm|26.5 nm|39.8 nm|53 nm|1:|0 ft|500 ft|1000 ft|1500 ft|2000 ft|2500 ft|3000 ft&#038;chd=s:EFOWUUXVOKNNMSVSOMHKLJIRXcffizpcZiv52obhhhhhhhhaJE&#038;chs=640x130&#038;chco=0000FF&#038;chtt=Altitude+AMSL&#038;chts=555555,12" /><br /><img class="xmlgmspeed" id="xmlgmspeed_2"  style="text-align: left; margin: 0px; padding: 0px; max-width: 100%;"  alt="Ground Speed" src="http://chart.apis.google.com/chart?cht=lc&#038;chls=2,0,0&#038;chf=c,ls,90,CCCCCC,0.2,FFFFFF,0.2&#038;chxt=x,y&#038;chxl=0:|0 nm|13.3 nm|26.5 nm|39.8 nm|53 nm|1:|0 kn|40 kn|80 kn|120 kn|160 kn|200 kn&#038;chd=s:FWeih7hZaddTZfUZefXeaWabbbdcZXkcXYWXWZcdUUTNUUWcNE&#038;chs=640x130&#038;chco=0000FF&#038;chtt=Ground+Speed&#038;chts=555555,12" /></p>
<p>Wicked! You can clearly see the circuits followed by the trip out to  do two PFLs and then the return track is very straight because we were  heading straight back to Sherburn.</p>
<p>I know this is probably not of great interest to everyone but I hope some will agree &#8211; It&#8217;s  amazing&#8230; Another little piece of mind blowing technology in the palm of  your hand. I can already see how useful this will be for future  training and will probably be doing this much more often.</p>
<p>Thanks ever so much for reading.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.pendlebury.biz/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.pendlebury.biz/updownaround/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Pick a Field &#8211; Any Field &#8211; Now Land On It</title>
		<link>http://www.pendlebury.biz/pfl/</link>
		<comments>http://www.pendlebury.biz/pfl/#comments</comments>
		<pubDate>Fri, 23 Apr 2010 15:27:17 +0000</pubDate>
		<dc:creator>Phil Pendlebury</dc:creator>
				<category><![CDATA[Aviation]]></category>
		<category><![CDATA[Flying Training]]></category>
		<category><![CDATA[PA28]]></category>
		<category><![CDATA[PPL]]></category>
		<category><![CDATA[Sherburn]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://www.pendlebury.biz/?p=1209</guid>
		<description><![CDATA[PFL &#8211; Practised Forced Landing So what happens if you are up in the sky in your aircraft and you get an engine failure? That&#8217;s what today&#8217;s flying lesson was all about. We take off from Sherburn and head to the southern training area (Over and around Doncaster). This was fun in itself, as it]]></description>
			<content:encoded><![CDATA[<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.pendlebury.biz%2Fpfl%2F&amp;layout=standard&amp;&amp;width=350&amp;action=like&amp;font=segoe ui&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:350px;height:30px;margin-top:5px;"></iframe><p>PFL &#8211; Practised Forced Landing</p>
<p>So what happens if you are up in the sky in your aircraft and you get an engine failure? That&#8217;s what today&#8217;s flying lesson was all about.</p>
<p>We take off from Sherburn and head to the southern training area (Over and around Doncaster). This was fun in itself, as it is the first time I have been out of the circuit for quite a while and using the radio talking to Church Fenton and Doncaster was another new challenge. I did pass the radio telephony / communications exam a while back but putting it into practise is somewhat different. It went fine though and we soon found ourselves at 3000 feet in the training area.</p>
<div id="attachment_1221" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/04/fields.jpg"><img class="size-medium wp-image-1221" title="Some Fields" src="http://www.pendlebury.biz/wp-content/uploads/2010/04/fields-300x199.jpg" alt="Some Fields" width="300" height="199" /></a><p class="wp-caption-text">Some Fields</p></div>
<p>Pick a field. <span style="text-decoration: underline;">Not any field</span>. We look for a field that has few good characteristics.</p>
<blockquote><p>We do this after Jonathan has pulled off the power and informed me that we have approximately six minutes until we hit the ground.</p></blockquote>
<p>First we trim the aircraft so it is flying at around 73 Knots. Trimming is done so that the aircraft will maintain a particular speed under particular conditions with no further input required form the pilot. This means the angle is set so that we will get the best endurance with no power. I am sure there are more accurate ways to explain that but I am not a flying instructor so that will have to do.</p>
<p>We look for a long field. A field that is has an approach facing into the wind without any obvious obstructions. Not as easy as it seems. The lower down you get the more you realise that there are things put there to stop you; tractors, hedges, power lines, trees etc.</p>
<p>I got some video again today but unfortunately none of it is in or  from the air. It&#8217;s just a brief intro from the airfield.</p>
<div class="wp-caption alignnone" style="width: 310px"><a href="http://www.youtube.com/watch?v=6GOzWuzu5_o" target="_blank"><img title="YouTube - PFL - Intro " src="http://img.youtube.com/vi/6GOzWuzu5_o/0.jpg" alt="" width="300" height="220" /></a><p class="wp-caption-text">YouTube - PFL - Intro </p></div>
<p>I&#8217;ll be honest though, it&#8217;s not as bad as it sounds. Once you have picked a good looking area to land, you can, with combination of flaps and changing angle, extending turns etc. find your way into quite a good position quite nicely. Before doing so there are number of checks involved and a May Day call too.</p>
<p>Of course we don&#8217;t actually touch down. At somewhere between three and five-hundred feet when the instructor is satisfied that we would have made ground &#8211; we apply full power and go around.</p>
<blockquote><p>Forced landing technique is essential to know and practise regularly but hopefully you&#8217;ll never be in a situation to require using it.</p></blockquote>
<p>It was great to be out of the circuit today. Also very interesting to see how different doing a single approach and landing was compared to doing many <em>touch and goes</em> in the space of an hour. We did a low level approach back to Sherburn, maintaining six-hundred feet until lining up for final.</p>
<div id="attachment_1219" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/04/approach1.jpg"><img class="size-medium wp-image-1219" title="Final Approach Sherburn" src="http://www.pendlebury.biz/wp-content/uploads/2010/04/approach1-300x202.jpg" alt="Final Approach Sherburn" width="300" height="202" /></a><p class="wp-caption-text">Final Approach Sherburn</p></div>
<p>Not far to go now. Another two exams and another few hours flying. Some more PFL practise and then the all important cross country navigation.</p>
<p>I can&#8217;t wait&#8230;</p>
<p>Thanks for reading.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.pendlebury.biz/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.pendlebury.biz/pfl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wind Calm and Human Performance</title>
		<link>http://www.pendlebury.biz/wind-calm/</link>
		<comments>http://www.pendlebury.biz/wind-calm/#comments</comments>
		<pubDate>Sat, 10 Apr 2010 00:04:22 +0000</pubDate>
		<dc:creator>Phil Pendlebury</dc:creator>
				<category><![CDATA[Aviation]]></category>
		<category><![CDATA[Health]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[Beer]]></category>
		<category><![CDATA[Exams]]></category>
		<category><![CDATA[Flying Training]]></category>
		<category><![CDATA[PA28]]></category>
		<category><![CDATA[PPL]]></category>
		<category><![CDATA[Sherburn]]></category>
		<category><![CDATA[Weather]]></category>

		<guid isPermaLink="false">http://www.pendlebury.biz/?p=1080</guid>
		<description><![CDATA[Finally, good weather and finances permitted me to get over to Sherburn today to get some flying done. It was one of those very rare days when the weather forecast says &#8220;Wind = CALM&#8221;. Which means, as it says, there was little or no significant wind &#8211; at least from the surface to where I]]></description>
			<content:encoded><![CDATA[<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.pendlebury.biz%2Fwind-calm%2F&amp;layout=standard&amp;&amp;width=350&amp;action=like&amp;font=segoe ui&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:350px;height:30px;margin-top:5px;"></iframe><div id="attachment_1081" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/04/budweiser_fifa.jpg"><img class="size-medium wp-image-1081" title="Mmmm Cold Beer" src="http://www.pendlebury.biz/wp-content/uploads/2010/04/budweiser_fifa-300x225.jpg" alt="Mmmm Cold Beer" width="300" height="225" /></a><p class="wp-caption-text">Mmmm Cold Beer</p></div>
<p>Finally, good weather and finances permitted me to get over to Sherburn today to get some flying done. It was one of those very rare days when the weather forecast says &#8220;Wind = CALM&#8221;. Which means, as it says, there was little or no significant wind &#8211; at least from the surface to where I was flying (not above 1000 feet today).</p>
<blockquote><p>Why the picture of beer? I thought this post was about calm wind, flying  and PPL exams (even though beer is <em>much </em>more interesting than  exams)? Well&#8230; I&#8217;ll get to that in less than a minute.</p></blockquote>
<p>Flying with no wind is quite an odd experience. Usually we have a headwind on take-off and landing. There are many reasons for this but the bottom line effect is that it slows down your <strong>ground speed</strong>.</p>
<p>Imagine that you throw a ball at 100mph. Imagine the wind blowing towards you at 50mph. The ball would actually move relative to the ground at approximately 50mph (<strong>ground speed</strong>). Although it would still be travelling through the air at 100mph (<strong>air speed</strong>).</p>
<p>So (<em>Don&#8217;t worry I&#8217;ll be quick &#8211; before you fall asleep</em>)&#8230; The <em>air speed </em>used for take-off and landing is always roughly the same (depending on the type of plane and some other factors) but depending on the wind velocity and angle the <em>ground speed</em> will be different.</p>
<p>Normally we approach to land at 70 Knots (air speed) but if there is a 15 Knot head wind and I look down, I will be travelling across the ground at 55 Knots (ground speed). Today &#8211; when you look down &#8211; you are travelling across the ground at 70 Knots too. So it seems to take longer to descend (when in fact it just takes more <em>distance</em>) and you use up more runway when landing and more when taking off too.</p>
<p>httpvh://www.youtube.com/watch?v=F8pBHyX_SRI</p>
<p>I took some video today but it is not very exciting. If you really are having trouble sleeping, have a look here. There is no in-flight footage I&#8217;m afraid. I can&#8217;t hold the camera and fly solo. I&#8217;ve had an idea for next time though so stay tuned.</p>
<p>Incidentally &#8211; This video is my entry for most boring, ugly video ever posted on YouTube. I think it&#8217;s a winner.</p>
<blockquote><p>So&#8230; Why the beer?</p></blockquote>
<p>Well one of the questions in the Human Performance and Limitations exam is:</p>
<p><strong>How long does it take the body to eliminate one unit of alcohol? One unit of alcohol is equivalent to a half a pint of beer, one glass of wine or one measure of regular spirit.</strong></p>
<p>The answer is <strong>one hour</strong>.</p>
<p>I passed by the way.</p>
<p>Special thanks to Julia at Sherburn and the Great Circle iPhone app for much revision help.</p>
<p>:-)</p>
<p>Cheers.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.pendlebury.biz/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.pendlebury.biz/wind-calm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Rig Up and Running</title>
		<link>http://www.pendlebury.biz/new-rig-running/</link>
		<comments>http://www.pendlebury.biz/new-rig-running/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 20:27:53 +0000</pubDate>
		<dc:creator>Phil Pendlebury</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false">http://www.pendlebury.biz/?p=1037</guid>
		<description><![CDATA[This post comes under the category of Technical / IT and is for Geeks only&#8230;. You know who you are&#8230; I&#8217;ve been off-line for a few days due to building up a new computer. Something we should never take lightly, as there always a certain amount of problems that crop up just when you think]]></description>
			<content:encoded><![CDATA[<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.pendlebury.biz%2Fnew-rig-running%2F&amp;layout=standard&amp;&amp;width=350&amp;action=like&amp;font=segoe ui&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:350px;height:30px;margin-top:5px;"></iframe><p>This post comes under the category of Technical / IT and is for Geeks only&#8230;. You know who you are&#8230;</p>
<p>I&#8217;ve been off-line for a few days due to building up a new computer. Something we should never take lightly, as there always a certain amount of problems that crop up just when you think things are going smoothly.</p>
<p>Anyway, I have now got everything back up and running, including installing all the hardware and studio software. I must say, one thing that really struck me about this build was the quality and ergonomics of the case (otherwise known as the &#8220;chassis&#8221;).</p>
<p>Here&#8217;s a picture of the finished build. There are a few points to note. Overall the first thing that would hit you is the fact that &#8211; yes &#8211; this is the finished build (minus 2 PCI cards)&#8230; Where are the cables?</p>
<p>If you look really carefully you can see the rubber grommets that are secreted around the far wall of the case. All cables go through the far wall (from the power supply at the bottom) into the cavity between the wall and the far side lid. The cables can then be brought back through to the relevant place and plugged in. The beauty of this, apart from looking very neat, is the lack of heat buildup. More space for air to circulate, less space for dust to accumulate.</p>
<div id="attachment_1040" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/03/case2010.jpg"><img class="size-medium wp-image-1040" title="Corsair Obsidian 800D" src="http://www.pendlebury.biz/wp-content/uploads/2010/03/case2010-300x264.jpg" alt="Corsair Obsidian 800D" width="300" height="264" /></a><p class="wp-caption-text">Corsair Obsidian 800D</p></div>
<p>Another really neat feature are the hot swappable hard drive bays. All power and data cables are plugged in to a panel which is hidden away by another detatchable panel. The hard drives are placed in a rack and can literally be installed and un-installed in seconds from the  panel on the front face, without ever opening the case again. Very neat.</p>
<p>So here&#8217;s the basics:</p>
<ol>
<li>Radiator for CPU water cooling. Very easy to set up. In fact easier than a normal fan setup.</li>
<li>Here you can see some empty space and some black rubber grommets.</li>
<li>More cables coming through as if by magic.</li>
<li>The hard drives are behind here, slotted in from the front.</li>
<li>Power supply.</li>
</ol>
<p>The whole build took about two to three hours and if I had to do it again, it would be much less.</p>
<p>Of course, one of the really time consuming parts is setting up the software. The Operating System must be installed from scratch as it is a completely new system. System backups just won&#8217;t work in this situation. To be fair, Windows 7 is much quicker and much more straight-forward than XP was though.</p>
<p>Some of the studio plugins and sounds are very tedious to install too. Especially the ones that require you to install not only the plugin but the full sound libraries as well. There are some that allow you to find their content (if you have it installed on a separate hard dirve &#8211; as you should) but there are some that don&#8217;t allow this. Trolling through 8 DVDs of installation can be rather soul destroying, especially when you know that you already have all the content on your media drive.</p>
<p>Anyway, all just about done now. A few bits of tweaking and fiddling and we&#8217;re good to go.</p>
<p>The finished system spec can be seen here:</p>
<p><a title="System Info" href="http://www.pendlebury.biz/sysinfo/" target="_blank">http://www.pendlebury.biz/sysinfo/</a></p>
<p>So far it is blazingly fast. I have overclocked the CPU and memory, quite conservativey but it seems effective enough so far, although hardly necessary really. The performance meter in Cubase barely moves. Even when loaded up with vast quantities of big stuff like The Grand 3. And super low (2ms) latency.</p>
<p>Right, time to get some work done!</p>
<p>Thanks for reading. Any questions &#8211; Feel free to post comments below.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.pendlebury.biz/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.pendlebury.biz/new-rig-running/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Flying The PA28</title>
		<link>http://www.pendlebury.biz/flying-the-pa28/</link>
		<comments>http://www.pendlebury.biz/flying-the-pa28/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 17:44:57 +0000</pubDate>
		<dc:creator>Phil Pendlebury</dc:creator>
				<category><![CDATA[Aviation]]></category>
		<category><![CDATA[Flying Training]]></category>
		<category><![CDATA[PA28]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[PPL]]></category>
		<category><![CDATA[Sherburn]]></category>
		<category><![CDATA[Weather]]></category>
		<category><![CDATA[Winter]]></category>

		<guid isPermaLink="false">http://www.pendlebury.biz/?p=901</guid>
		<description><![CDATA[I had to cancel flying again today, due to having no transport to take me to the aero club. I suppose it was just as well, after what I had to pay out for the car service, MOT and parts. So I thought I&#8217;d make a blog entry with some pictures of the planes I]]></description>
			<content:encoded><![CDATA[<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.pendlebury.biz%2Fflying-the-pa28%2F&amp;layout=standard&amp;&amp;width=350&amp;action=like&amp;font=segoe ui&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:350px;height:30px;margin-top:5px;"></iframe><p>I had to cancel flying again today, due to having no transport to take me to the aero club. I suppose it was just as well, after what I had to pay out for the car service, MOT and parts. So I thought I&#8217;d make a blog entry with some pictures of the planes I have been flying.</p>
<div id="attachment_900" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/03/piperb.jpg"><img class="size-medium wp-image-900 " title="Piper PA28" src="http://www.pendlebury.biz/wp-content/uploads/2010/03/piperb-300x201.jpg" alt="Piper PA28" width="300" height="201" /></a><p class="wp-caption-text">Piper PA28</p></div>
<p>Some of the pictures are a little old but the actual planes haven&#8217;t changed much in that time. What <em>has</em> changed, is my knowledge of them. Obviously there is still a lot to learn and that is big part of the enjoyment for me.</p>
<blockquote><p>Driving on the roads here in England is pretty horrible these days and  something well worth looking down on.</p></blockquote>
<p>For instance, this picture I took on one of my first lessons, is a rough view of the instruments inside the cockpit. When looking at this I remember thinking there was no way I was ever going to understand what everything does. Of course, like many aspects of learning, all it took was time and interest. I am now at the stage where I not only know what everything does but also how it works and why it was put there in the first place. There is a ton of clever technology in there, enough to appeal to the anyone&#8217;s <em>geeky</em> side.</p>
<div id="attachment_898" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/03/console.jpg"><img class="size-medium wp-image-898 " title="PA28 Cockpit Instrument View" src="http://www.pendlebury.biz/wp-content/uploads/2010/03/console-300x217.jpg" alt="PA28 Cockpit Instrument View" width="300" height="217" /></a><p class="wp-caption-text">PA28 Cockpit Instrument View</p></div>
<p>I even find that I am starting to recognise the differences in layout and some of the quirks of each individual aircraft. It&#8217;s a nice feeling.</p>
<div id="attachment_895" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/03/piper2.jpg"><img class="size-medium wp-image-895" title="PA28 Side View" src="http://www.pendlebury.biz/wp-content/uploads/2010/03/piper2-300x177.jpg" alt="PA28 Side View" width="300" height="177" /></a><p class="wp-caption-text">PA28 Side View</p></div>
<p>The first time you enter the cockpit of one of these light aircraft there are few things that will hit you. One is the general smell of aircraft fuel and engine oil. Sounds bad but to be honest it isn&#8217;t bad at all&#8230; In fact it&#8217;s great! Then you think &#8220;Hmm&#8230; This is a lot smaller than being in a 747 or an Airbus&#8221;&#8230; Well it <em>is</em>&#8230; But to me, that is one of the great things about it.</p>
<p>When you head down the runway and &#8220;rotate&#8221; upwards at around 50-60mph &#8211; You sense everything moving around you. The controls are immediately responsive and you know that you are in the air. You feel almost every little breath of wind as it gently (and sometimes rather aggressively) moves you around.</p>
<div id="attachment_897" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/03/rear.jpg"><img class="size-medium wp-image-897" title="PA28 Rear View" src="http://www.pendlebury.biz/wp-content/uploads/2010/03/rear-300x225.jpg" alt="PA28 Rear View" width="300" height="225" /></a><p class="wp-caption-text">PA28 Rear View</p></div>
<p>There really is nothing like the feeling of being PIC (Pilot In Command). When you get up there on your own and begin to feel comfortable with it, the rewards are immense. For example &#8211; from Sherburn, which is where I fly from (central England) &#8211; you can see both East and West coast lines from just a few thousand feet up, on a clear day.</p>
<p>And even when the weather isn&#8217;t so good the views are still amazing.</p>
<div id="attachment_906" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/03/takeoff.jpg"><img class="size-medium wp-image-906" title="Winter view just after take off" src="http://www.pendlebury.biz/wp-content/uploads/2010/03/takeoff-300x219.jpg" alt="Winter view just after take off" width="300" height="219" /></a><p class="wp-caption-text">Winter view just after take off</p></div>
<p>You don&#8217;t feel the cold when you are up in the skies. I suppose you would if you had the air blowing in your face. I haven&#8217;t flown an open cockpit aircraft yet but hopefully will get the chance one day.</p>
<div id="attachment_905" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/03/downwind2.jpg"><img class="size-medium wp-image-905" title="Winter views again" src="http://www.pendlebury.biz/wp-content/uploads/2010/03/downwind2-300x161.jpg" alt="Winter views again" width="300" height="161" /></a><p class="wp-caption-text">Winter views again</p></div>
<p>I have to confess. My favourite part of the flying so far has been the landings. Especially once they start becoming consistently good. The view you get when lining up on final approach is a challenging puzzle and beautiful too. the whole mind and body are concentrating on one thing &#8211; getting back to the earth smoothly and comfortably.</p>
<div id="attachment_904" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/03/approach1.jpg"><img class="size-medium wp-image-904" title="Winter approach to runway 29" src="http://www.pendlebury.biz/wp-content/uploads/2010/03/approach1-300x202.jpg" alt="Winter approach to runway 29" width="300" height="202" /></a><p class="wp-caption-text">Winter approach to runway 29</p></div>
<p>Also a good feeling is when a landing doesn&#8217;t go quite as you expected (they rarely do) but you deal with it in the right way instinctively. Like an immediate go-around after a single bounce. It really makes you feel like you have learned something (although it is to be hoped that doesn&#8217;t happen too often &#8211; for me it&#8217;s been once so far which is not bad going). And nothing beats that feeling of lining up and settling onto the runway, holding the aircraft nose up and hearing the tyres screech as they touch the runway surface.</p>
<blockquote><p>Nailed it!</p></blockquote>
<p>If you ever get the chance to fly in a light aircraft, don&#8217;t turn it down. If you haven&#8217;t had the chance yet, you may be surprised how easy it is to book a trial flight at your local aero club and get up there for half an hour and see what you have been missing. You&#8217;ll even be able to take control of the aircraft for a while when you&#8217;re up in the air.</p>
<div class="wp-caption alignnone" style="width: 310px"><a href="http://www.youtube.com/watch?v=Wfu-BcjjgaM" target="_blank"><img title="YouTube - Flying At Sherburn - May 2009" src="http://img.youtube.com/vi/Wfu-BcjjgaM/0.jpg" alt="" width="300" height="220" /></a><p class="wp-caption-text">YouTube - Flying At Sherburn - May 2009</p></div>
<p>Driving on the roads here in England is pretty horrible these days and   to me, something well worth looking down on.</p>
<p>I&#8217;m hoping to have my license by summer this year. I can&#8217;t wait. And of course anyone that knows me will know I will be very keen to share the experience.</p>
<p>Pack your bags folks!</p>
<p>Thanks for reading.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.pendlebury.biz/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.pendlebury.biz/flying-the-pa28/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding Extra Icons to the Mystique Theme</title>
		<link>http://www.pendlebury.biz/mystiqueicons/</link>
		<comments>http://www.pendlebury.biz/mystiqueicons/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 23:29:05 +0000</pubDate>
		<dc:creator>Phil Pendlebury</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[WWW]]></category>

		<guid isPermaLink="false">http://www.pendlebury.biz/?p=841</guid>
		<description><![CDATA[The new web site is pretty much done now and I have pretty much settled on using the fantastic Mystique theme for WordPress. This is one the nicest and most useful themes I have seen. Built by the amazingly talented people at Digital Nature. Many people have been having trouble adding extra icons to the]]></description>
			<content:encoded><![CDATA[<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.pendlebury.biz%2Fmystiqueicons%2F&amp;layout=standard&amp;&amp;width=350&amp;action=like&amp;font=segoe ui&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:350px;height:30px;margin-top:5px;"></iframe><p>The new web site is pretty much done now and I have pretty much settled on using the fantastic Mystique theme for WordPress. This is one the nicest and most useful themes I have seen. Built by the amazingly talented people at <a title="Digital Nature Web Site" href="http://digitalnature.ro/" target="_blank">Digital Nature</a>.</p>
<div id="attachment_852" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/03/addedicons.jpg"><img class="size-medium wp-image-852" title="Web site with added icons" src="http://www.pendlebury.biz/wp-content/uploads/2010/03/addedicons-300x94.jpg" alt="Web site with added icons" width="300" height="94" /></a><p class="wp-caption-text">Web site with added icons</p></div>
<p>Many people have been having trouble adding extra icons to the theme. There are a number of ways to do this found in various places around the web but none of them stand alone and work correctly. I though it only fair that I publish my little walk through.</p>
<p>Thanks go out to all the people involved in the other walk-throughs &#8211; <a href="http://www.marknhewitt.co.uk/" target="_blank">Mark N Hewitt</a>, Kerem Erkan and many others.</p>
<p>This works with the latest version of the theme, as of March 18 2010. It is an amalgamation of many steps and has taken me hours to check and double check.</p>
<p>The main area of confusion was that some of the icons are contained within one main icon. I didn&#8217;t want to use them. Plus it was very confusing when trying to use the other icons as well. Then it was a case of trial and error and making it neat and tidy. I think the below should be very easy to use (and add to if required).</p>
<p>Please be sure to use all the code from this page. Do not mix it with other code until you are sure that everything is working.</p>
<p>So here&#8217;s the 4 steps.</p>
<h4>1. Put the icons on your server</h4>
<p>Head over to Mark&#8217;s site and download the icon pack (it&#8217;s half way down the page in a zip file).<br />
<a href="http://www.marknhewitt.co.uk/archives/1921" target="_blank">http://www.marknhewitt.co.uk/archives/1921</a><br />
Unzip an put all the icon files in a folder on your server: ../wp-content/uploads/<strong>mystique_icons</strong>/ *icon files go here*<br />
You will have to make the folder <strong>mystique_icons</strong> first.<br />
<strong>Now go to the WP Control Panel &gt; Appearance &gt; Mystique settings</strong>&#8230;</p>
<h4>2. This code goes in User CSS area</h4>
<pre class="brush: css;">#header p.nav-extra {top:-46px;height:54px;}
#header a.nav-extra {height:60px;}

#header a.nav-extra.rss{background:url(&quot;/wp-content/uploads/mystique_icons/nav-rss.png&quot;) no-repeat scroll right top transparent;}
#header a.twitter{background:url(&quot;/wp-content/uploads/mystique_icons/nav-twitter.png&quot;) no-repeat scroll right top transparent;}
#header a.myspace{background:url(&quot;/wp-content/uploads/mystique_icons/nav-myspace.png&quot;) no-repeat scroll right top transparent;}
#header a.linkedin{background:url(&quot;/wp-content/uploads/mystique_icons/nav-linkedin.png&quot;) no-repeat scroll right top transparent;}
#header a.facebook{background:url(&quot;/wp-content/uploads/mystique_icons/nav-facebook.png&quot;) no-repeat scroll right top transparent;}
#header a.blogger{background:url(&quot;/wp-content/uploads/mystique_icons/nav-blogger.png&quot;) no-repeat scroll right top transparent;}
#header a.email{background:url(&quot;/wp-content/uploads/mystique_icons/nav-email.png&quot;) no-repeat scroll right top transparent;}
#header a.googlewave{background:url(&quot;/wp-content/uploads/mystique_icons/nav-googlewave.png&quot;) no-repeat scroll right top transparent;}</pre>
<h4>3. This code goes in Advanced &gt; User Settings (over-write the &lt;?php in case you aren&#8217;t sure)</h4>
<pre class="brush: php;">&lt;?php
function mystique_custom_nav_icons($nav_extra)
{
  $nav_extra = '&lt;a href=&quot;'.get_bloginfo('rss2_url').'&quot; class=&quot;nav-extra rss&quot; title=&quot;RSS Feeds&quot;&gt;&lt;span&gt;RSS Feeds&lt;/span&gt;&lt;/a&gt;';
  $nav_extra .= '&lt;a href=&quot;http://www.twitter.com/phil_pendlebury&quot; class=&quot;nav-extra twitter&quot; title=&quot;Twitter&quot;&gt;&lt;span&gt;Twitter&lt;/span&gt;&lt;/a&gt;';
  $nav_extra .= '&lt;a href=&quot;http://www.myspace.com/philpendlebury&quot; class=&quot;nav-extra myspace&quot; title=&quot;MySpace&quot;&gt;&lt;span&gt;MySpace&lt;/span&gt;&lt;/a&gt;';
  $nav_extra .= '&lt;a href=&quot;http://uk.linkedin.com/in/pendlebury&quot; class=&quot;nav-extra linkedin&quot; title=&quot;LinkedIn&quot;&gt;&lt;span&gt;LinkedIn&lt;/span&gt;&lt;/a&gt;';
  $nav_extra .= '&lt;a href=&quot;http://www.facebook.com/pages/RIFFS-RAYS/99388735458&quot; class=&quot;nav-extra facebook&quot; title=&quot;Riffs &amp; Rays @ Facebook&quot;&gt;&lt;span&gt;Riffs &amp; Rays @ Facebook&lt;/span&gt;&lt;/a&gt;';
  $nav_extra .= '&lt;a href=&quot;http://gwfts.blogspot.com/&quot; class=&quot;nav-extra blogger&quot; title=&quot;Google Wave Blog&quot;&gt;&lt;span&gt;Google Wave Blog&lt;/span&gt;&lt;/a&gt;';
  $nav_extra .= '&lt;a href=&quot;http://www.pendlebury.biz/contact&quot; class=&quot;nav-extra email&quot; title=&quot;Contact&quot;&gt;&lt;span&gt;Contact&lt;/span&gt;&lt;/a&gt;';
  $nav_extra .= '&lt;a href=&quot;https://wave.google.com/wave/?pli=1#restored:wave:googlewave.com!w%252Bupyy5rPyA&quot; class=&quot;nav-extra googlewave&quot; title=&quot;Google Wave&quot;&gt;&lt;span&gt;Google Wave&lt;/span&gt;&lt;/a&gt;';

  return $nav_extra;
}

add_action('mystique_navigation_extra', 'mystique_custom_nav_icons');</pre>
<h4>4. Edit the URLs in the code above</h4>
<p>You don&#8217;t need to edit anything until you have checked that the icons show up correctly. When you&#8217;re ready just change the areas that are required (between the first set of quotes) e.g for me &#8211; the Twitter URL is (feel free to follow me):</p>
<blockquote><p>http://www.twitter.com/phil_pendlebury</p></blockquote>
<p>I hope some people may find this useful.</p>
<p>Thanks for reading.</p>
<p><span style="color: #800000;">Please note: There have been some comments that this does not look quite right in Google Chrome. It works fine in Firefox, Explorer and Safari. The icons don&#8217;t move as smoothly in Explorer but it works fine.</span></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.pendlebury.biz/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.pendlebury.biz/mystiqueicons/feed/</wfw:commentRss>
		<slash:comments>33</slash:comments>
		</item>
		<item>
		<title>The Price of Fitness</title>
		<link>http://www.pendlebury.biz/the-price-of-fitness/</link>
		<comments>http://www.pendlebury.biz/the-price-of-fitness/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 17:17:55 +0000</pubDate>
		<dc:creator>Phil Pendlebury</dc:creator>
				<category><![CDATA[Health]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Diet]]></category>
		<category><![CDATA[Fitness]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.pendlebury.biz/?p=743</guid>
		<description><![CDATA[Fitness and diet &#8211; Something I haven&#8217;t really written about before (and probably won&#8217;t again) but here&#8217;s a little story for you: Around Christmas time, like many of us, the result of some rather indulgent meals and lack of exercise prompted me to weigh myself for the first time in years. The results were not]]></description>
			<content:encoded><![CDATA[<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.pendlebury.biz%2Fthe-price-of-fitness%2F&amp;layout=standard&amp;&amp;width=350&amp;action=like&amp;font=segoe ui&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:350px;height:30px;margin-top:5px;"></iframe><p>Fitness and diet &#8211; Something I haven&#8217;t really written about before (and probably won&#8217;t again) but here&#8217;s a little story for you:</p>
<p>Around Christmas time, like many of us, the result of some rather indulgent meals and lack of exercise prompted me to weigh myself for the first time in years. The results were not pleasing. I was, as far as I know, the heaviest and most out of shape I have ever been to date.</p>
<p>I must point out though that one of the highlights of the Christmas-stuffing-selves-with-fattening-food session was a huge goose, fresh from the local butchers. Nice.</p>
<div id="attachment_750" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/03/goose.jpg"><img class="size-medium wp-image-750 " title="A Goose Yesterday" src="http://www.pendlebury.biz/wp-content/uploads/2010/03/goose-300x225.jpg" alt="A goose yesterday" width="300" height="225" /></a><p class="wp-caption-text">A Goose Yesterday</p></div>
<p>Again like many of us I have had various gym memberships over the years. I always find the gym a great place to be but no matter how close the gym was, it was just too easy to avoid. Plus very, expensive of course.</p>
<p>So I decided it would be a good idea to buy a decent exercise bike for the home. I always enjoyed the bike at the gym as it seemed to be great for loosening up the lower back and burning the calories. After some shopping around and the usual &#8220;Sorry that model is out of stock now but it was in stock when you ordered it that&#8217;s why we took your money&#8221;&#8230; I was blessed with the arrival of a brand new Reebok b57e.</p>
<div id="attachment_753" class="wp-caption alignnone" style="width: 245px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/03/b57e.jpg"><img class="size-medium wp-image-753" title="Reebok b57e" src="http://www.pendlebury.biz/wp-content/uploads/2010/03/b57e-235x300.jpg" alt="Reebok b57e" width="235" height="300" /></a><p class="wp-caption-text">Reebok b57e</p></div>
<p>After an hour or so to set up, it was ready to be sat upon next morning. Great!</p>
<p>I also discovered a fantastic iPhone App called Tap &amp; Track, which keeps track of your food intake (including recipe management),  weight, calories burned, exercise done and all the other associated facts.</p>
<p>This kind of thing is perfect for me because it appeals to my geeky side and to be fair, it really does help when you can see exactly how many calories you are allowed in the day and how much that freshly baked pork pie will cost you from your daily calorific allowance.</p>
<div id="attachment_751" class="wp-caption alignnone" style="width: 210px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/03/tapandtrack.png"><img class="size-medium wp-image-751" title="Tap &amp; Track" src="http://www.pendlebury.biz/wp-content/uploads/2010/03/tapandtrack-200x300.png" alt="Tap &amp; Track" width="200" height="300" /></a><p class="wp-caption-text">Tap &amp; Track</p></div>
<p>Next was to start looking at getting some more healthy but enjoyable food. Banished from the kitchen and shopping list are the pork pies, chicken in bread-crumbs, huge loaves of fresh white bread and sadly (or not) we have avoided McD&#8217;s KFC and the rest of the fat+salt+sugar machines since December.</p>
<p>For example, we have re-discovered Sainsburys fresh fish counter, where you can get fresh salmon and trout fillet steaks put in a bag, cook in the oven &#8211; add large amounts of salad and a bit of dressing and egg etc. very tasty and great on the calorie meter.</p>
<div id="attachment_752" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/03/salmon-fillets.jpg"><img class="size-medium wp-image-752" title="Salmon Fillets" src="http://www.pendlebury.biz/wp-content/uploads/2010/03/salmon-fillets-300x199.jpg" alt="Salmon Fillets" width="300" height="199" /></a><p class="wp-caption-text">Salmon Fillets</p></div>
<p>Anyway &#8211; there are a ton of web sites available for diets and recipes and it is not my intention to write about all that here.</p>
<p>So, after 3 or 4 days of getting up and doing 30 &#8211; 40 minutes on the bike and counting the calories I was already noticing a difference. I also noticed a difference in the bike&#8230; Was that a squeak from the flywheel or am I imagining it? Over the next few days the thing began emitting some noises as if trying to complain to the god of mechanical exercise equipment that this big guy was giving it a tough time.</p>
<p>After a few more days the noise had become so loud that the whole house would be brought to a standstill by this horrendous squealing and knocking whenever I did my daily 40 minutes. But the whole routine was working for me even though it felt like I was constantly riding through a large pack of noisy rats whilst pedalling over a cobbled road. The video was taken at one of the quieter moments. It was obviously time to call the shop.</p>
<div class="wp-caption alignnone" style="width: 310px"><a href="http://www.youtube.com/watch?v=FOafe9CeBwk" target="_blank"><img title="YouTube- Reebok B5.7e Noises Part 1 " src="http://img.youtube.com/vi/FOafe9CeBwk/0.jpg" alt="" width="300" height="220" /></a><p class="wp-caption-text">YouTube- Reebok B5.7e Noises Part 1 </p></div>
<p>Can you guess what they said? I think you can&#8230;</p>
<blockquote><p>&#8220;Sorry sir but you&#8217;ll have to call the dealers.&#8221;</p></blockquote>
<p>I would for the next 3 months be wishing that at this point I had simply said &#8220;I am not satisfied and I&#8217;m sending it back.&#8221; But alas I do not have the gift of seeing into the future. So I attempted to follow the correct channels.</p>
<p>I know &#8211; I should have known better.</p>
<p>So I called the Reebok Technical help line. The following is rough condensed version of events from then on until yesterday.</p>
<p><strong>December:</strong></p>
<ul>
<li>Call Reebok Tech Support (hold for 15 minutes waiting for answer being told how important my call is)</li>
<li>Reebok have no record of my purchase</li>
<li>Call shop again and arrange for record to be sent to Reebok</li>
<li>Wait for call back from Reebok&#8230; Never happened</li>
<li>Call Reebok Tech Support (hold for 15 minutes waiting for answer&#8230;)</li>
<li>Get an appointment with an engineer</li>
</ul>
<p><strong>January</strong></p>
<ul>
<li>Engineer arrives &#8211; smashing chap &#8211; knows his stuff &#8211; nice guy &#8211; diagnosis: bike needs new parts</li>
<li>&#8220;But I&#8217;ve only had it 3 days before it started doing this&#8221;</li>
<li>Weeks pass</li>
<li>Nothing happens</li>
<li>Call Reebok Tech Support (hold for 15 minutes&#8230;)</li>
<li>I am told that parts are very difficult to get but should be with me soon.</li>
</ul>
<p><strong>February</strong></p>
<ul>
<li>Call Reebok Tech Support (hold for 15 minutes waiting for answer&#8230;)</li>
<li>Parts are on their way</li>
<li>Send email with above video for the head support guy &#8211; he never mails me back</li>
<li>Parts arrive &#8211; in fact one part arrives &#8211; a flywheel &#8211; nothing else</li>
<li>Call Reebok Tech Support (hold for 15 minutes&#8230;)</li>
<li>Arrange appointment with engineer</li>
<li>Same chap arrives &#8211; finds it odd that not all the parts he ordered have been sent and spends 2 hours opening up the bike</li>
<li>Engineer discovers that the flywheel is the wrong size &#8211; Reebok don&#8217;t use part numbers</li>
<li>Call Reebok Tech Support (hold for 15 minutes&#8230;)</li>
<li>I am told that I will be sent a new bike but that they are out of stock so I&#8217;ll have to wait and I can&#8217;t get an upgrade because my bike is the top of the range (actually I now find out that&#8217;s not but maybe it was at the time &#8211; I feel like a penny farthing was top of the range at the time, it was that long ago!)</li>
</ul>
<p><strong>March</strong></p>
<ul>
<li>Get a call from a delivery company &#8211; We are coming to pick up your bike &#8211; not deliver a new one &#8211; Sorry I say, No take without give</li>
<li>Get a call from delivery company office &#8211; The delivery vehicle has broken down, can we collect anyway &#8211; Erm Nope</li>
<li>Re-arrange delivery / collection date</li>
<li>Get a call from a delivery company &#8211; We are coming to pick up your bike&#8230;</li>
<li>Get a call from delivery company office &#8211; The delivery guys have put the wrong item on the wagon, can we collect anyway &#8211; Haha Nope</li>
<li>Re-arrange delivery / collection date</li>
<li>New bike arrives old one taken away &#8211; It took a few days short of  3 months!</li>
<li>Open and set up new bike (an hour job)</li>
<li>We discover (hardly surprisingly) that the bike is not new it is reconditioned and some of the fittings don&#8217;t snap together properly because they are broken off.</li>
<li>Eventually start pedalling.</li>
<li>Bike makes a soft grinding noise&#8230;</li>
</ul>
<p><strong>Nooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo!</strong></p>
<p>And there my friends the story ends for now. Will it get worse again? Will it go away? Will I be forced to go back to step 1 of the above list?</p>
<p>The thing that makes this extra sad is that when it works, the bike is great.</p>
<p>I have lost almost 10 kilos since December. I have not for many years, felt better.</p>
<p>How much of that loss is due to the stress of dealing with the above (believe it or not &#8211; very condensed) list?</p>
<p>But what do you do when you get caught in a loop by this kind of ridiculous customer service?</p>
<p>What would you have done? I would really love to know.</p>
<p>And if you say</p>
<blockquote><p>&#8220;I would certainly not buy a Reebok bike&#8221;</p></blockquote>
<p>I think I would understand.</p>
<p class="divider">
<h4>Update MAY 2010:</h4>
<p>I have just finished with my <strong>THIRD</strong> exchange bike. this one finally gave up on me earlier this week. It was making a very similar noise to the first two, as this video, recorded earlier in May, shows here:</p>
<div class="wp-caption alignnone" style="width: 310px"><a href="http://www.youtube.com/watch?v=LpjVNfhEvRc"><img class=" " title="YouTube - Reebok Performance Series B5.7e - May 2010 (3rd Bike) - Part 3 " src="http://img.youtube.com/vi/LpjVNfhEvRc/0.jpg" alt="YouTube - Reebok Performance Series B5.7e - May 2010 (3rd Bike) - Part 3 " width="300" height="220" /></a><p class="wp-caption-text">YouTube - Reebok Performance Series B5.7e - May 2010 (3rd Bike) - Part 3 </p></div>
<p>And then, shortly after that video was taken, something went bang and the crank now seems to just spin without any breaking action whatsoever. As you can imagine &#8211; I had finally had enough!</p>
<p>I called Reebok yet again and after <strong>being on hold for exactly 46 minutes</strong> I got through and requested my money back.</p>
<p>I then had to call Gym World which is where it was originally purchased. Spoke to a lady named Claire who was very nice, very helpful, sympathetic and on the ball&#8230; Thank goodness!</p>
<p>To cut a long story short &#8211; Gym World are sending me a new bike &#8211; NOT a Reebok one. If only I had done that after the first mishap in December / January.</p>
<blockquote><p>At least hopefully if anyone else is in the market for an exercise bike and they search the net like I did &#8211; my post may show up as a warning!</p></blockquote>
<p>Cheers and Thanks for reading.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.pendlebury.biz/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.pendlebury.biz/the-price-of-fitness/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>March &#8211; A Month Of Web Stuff</title>
		<link>http://www.pendlebury.biz/march-a-month-of-web-stuff/</link>
		<comments>http://www.pendlebury.biz/march-a-month-of-web-stuff/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 15:15:50 +0000</pubDate>
		<dc:creator>Phil Pendlebury</dc:creator>
				<category><![CDATA[Aviation]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Exams]]></category>
		<category><![CDATA[Flying Training]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[PPL]]></category>
		<category><![CDATA[WWW]]></category>

		<guid isPermaLink="false">http://www.pendlebury.biz/?p=507</guid>
		<description><![CDATA[Apart from studying for PPL exams and the usual weekend gigs, celebrating a birthday and finally seeing almost 10 Kilos lost on the scales, I have been on a bit of a mission this month to sort out some of my little corners of the world wide web. Earlier, we (Riffs &#38; Rays) launched our]]></description>
			<content:encoded><![CDATA[<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.pendlebury.biz%2Fmarch-a-month-of-web-stuff%2F&amp;layout=standard&amp;&amp;width=350&amp;action=like&amp;font=segoe ui&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:350px;height:30px;margin-top:5px;"></iframe><p>Apart from studying for PPL exams and the usual weekend gigs, celebrating a birthday and finally seeing almost 10 Kilos lost on the scales, I have been on a bit of a mission this month to sort out some of my little corners of the world wide web.</p>
<p>Earlier, we (Riffs &amp; Rays) launched our Remix Contest, which has already picked up a lot of interest. It will be very interesting to see, at the end of the month, how many remixes of our new track have come in and indeed how many of them are actually usable.</p>
<div id="attachment_508" class="wp-caption alignnone" style="width: 246px"><a href="http://www.riffsandrays.com/remixcomp/"><img class="size-medium wp-image-508" title="R&amp;R Remix Competition" src="http://www.pendlebury.biz/wp-content/uploads/2010/03/lspremixcomp-236x300.jpg" alt="" width="236" height="300" /></a><p class="wp-caption-text">R&amp;R Remix Competition</p></div>
<p>There have been some great submissions so far, which apart from the obvious dance orientated stuff there has also been a ballad and an R&amp;B version. (Well to be honest, I did both of those myself but hey&#8230;) Plus my son Andy has done his first official remix too. Nice One!</p>
<p>I have also just moved my blog over to my own domain at last. If you&#8217;re reading this &#8211; I guess you found it.</p>
<p>That&#8217;s been quite fun, if a little bit painful at times, especially looking over certain parts of last year and having to relocate pictures and so on.</p>
<p>Anyway, it&#8217;s all done now and seems to be working fine. Although it will probably change a few times over the next few weeks.</p>
<div id="attachment_509" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/03/papwebnew.jpg"><img class="size-medium wp-image-509" title="papwebnew" src="http://www.pendlebury.biz/wp-content/uploads/2010/03/papwebnew-300x280.jpg" alt="New PAP Web" width="300" height="280" /></a><p class="wp-caption-text">New PAP Web</p></div>
<p>Next on the list is to take the PPL Human Performance and Limitations Exam which should be next week some time. I&#8217;m almost ready I think. Have been getting between 90 &#8211; 100% in the mock exams so that&#8217;ll do for me. Especially when only 75% is required to pass . Many people say that any more than 75% is wasted effort. Hmmm not sure about that.</p>
<p>Let me know what you think.</p>
<p>Thanks for reading.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.pendlebury.biz/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.pendlebury.biz/march-a-month-of-web-stuff/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More PPL Exams Passed</title>
		<link>http://www.pendlebury.biz/more-ppl-exams-passed/</link>
		<comments>http://www.pendlebury.biz/more-ppl-exams-passed/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 20:42:00 +0000</pubDate>
		<dc:creator>Phil Pendlebury</dc:creator>
				<category><![CDATA[Aviation]]></category>
		<category><![CDATA[Exams]]></category>
		<category><![CDATA[Flying Training]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[PPL]]></category>
		<category><![CDATA[Sherburn]]></category>

		<guid isPermaLink="false">http://www.pendlebury.biz/pendlepress/?p=27</guid>
		<description><![CDATA[It&#8217;s been a while&#8230; Lots of music and flying related things going on. Most notable news would be that I have now passed three more of the PPL exams. After passing Air Law late in 2008, I realised (rather late) that I have only a remaining six months to pass all six other exams. Luckily]]></description>
			<content:encoded><![CDATA[<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.pendlebury.biz%2Fmore-ppl-exams-passed%2F&amp;layout=standard&amp;&amp;width=350&amp;action=like&amp;font=segoe ui&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:350px;height:30px;margin-top:5px;"></iframe><p>It&#8217;s been a while&#8230;</p>
<p>Lots of music and flying related things going on.</p>
<p>Most notable news would be that I have now passed three more of the PPL exams.</p>
<p>After passing Air Law late in 2008, I realised (rather late) that I have only a remaining six months to pass all six other exams. Luckily the exams themselves don&#8217;t cost as much as flying lessons, so I have managed to get my head down and after working out a rough schedule, things are looking good.</p>
<p>With the the help of some night classes at Sherburn and also a couple of notable iPhone applications I began work on the RT Comms exam in January this year.</p>
<blockquote><p>There is an 18 month &#8220;window&#8221; to pass all seven written UK PPL exams. The window opens on passing the first exam. If you do not pass the final exam before the 18 month period then you must re-sit the first exam. The window then moves to 18 months from the exam you originally passed second &#8211; and so on.</p></blockquote>
<div id="attachment_340" class="wp-caption alignnone" style="width: 198px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/03/radio_small1.jpg"><img class="size-medium wp-image-340" title="Radio stack" src="http://www.pendlebury.biz/wp-content/uploads/2010/03/radio_small1-188x300.jpg" alt="Radio stack" width="188" height="300" /></a><p class="wp-caption-text">Radio stack</p></div>
<p>After that came Navigation, which was great fun but dealing with air charts for the first time was a bit of a challenge.</p>
<div id="attachment_338" class="wp-caption alignnone" style="width: 227px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/03/QXCMap.jpg"><img class="size-medium wp-image-338" title="Nav chart" src="http://www.pendlebury.biz/wp-content/uploads/2010/03/QXCMap-217x300.jpg" alt="Nav chart" width="217" height="300" /></a><p class="wp-caption-text">Nav chart</p></div>
<p>End result was a first time pass though and I think this is one of my favourite areas of the syllabus so far. (Which is just as well seeing as you have to know how to do it in order to fly anywhere further than your local air field. :-)</p>
<p>I passed Meteorology last week too. Also managed to actually get up and fly for an hour&#8230;. Lovely!</p>
<div id="attachment_339" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2010/03/clouds073908-11.jpg"><img class="size-medium wp-image-339" title="Some clouds outside yesterday" src="http://www.pendlebury.biz/wp-content/uploads/2010/03/clouds073908-11-300x199.jpg" alt="Some clouds outside yesterday" width="300" height="199" /></a><p class="wp-caption-text">Some clouds outside yesterday</p></div>
<p>So that just leaves Human Performance and Limitations, Flight Performance and Planning, Aircraft General and Principles of Flight. That plus the actual qualifying cross country flight and then the all important skills test.</p>
<p>All being well I am hoping to be done and licensed by summer this year.</p>
<p>There are many stories to tell already but I&#8217;m saving them for a mega article when the license is gained.</p>
<p>Imagine reading your favourite novel or watching your favourite movie and then being told that you had to answer questions on it&#8230; That&#8217;s what this feels like. The subjects are fascinating and enthralling but passing exams kind of takes the fun out of it.</p>
<p>Still at least I have a 100% pass record so far&#8230;</p>
<p>Let&#8217;s hope it remains that way.</p>
<p>Clear skies to y&#8217;all.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.pendlebury.biz/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.pendlebury.biz/more-ppl-exams-passed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PPL Studying Ahead!</title>
		<link>http://www.pendlebury.biz/ppl-studying-ahead/</link>
		<comments>http://www.pendlebury.biz/ppl-studying-ahead/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 18:36:00 +0000</pubDate>
		<dc:creator>Phil Pendlebury</dc:creator>
				<category><![CDATA[Aviation]]></category>
		<category><![CDATA[Exams]]></category>
		<category><![CDATA[Flying Training]]></category>
		<category><![CDATA[PPL]]></category>

		<guid isPermaLink="false">http://www.pendlebury.biz/pendlepress/?p=25</guid>
		<description><![CDATA[It&#8217;s a tough few months. (I know, I know &#8211; everyone says that)&#8230; But it is honest! Anyway without dwelling on the moaning&#8230; I just found out that there is time limit applied to the PPL (Flying Training) written exams. We have a period of 18 months from the date of passing your first exam]]></description>
			<content:encoded><![CDATA[<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.pendlebury.biz%2Fppl-studying-ahead%2F&amp;layout=standard&amp;&amp;width=350&amp;action=like&amp;font=segoe ui&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:350px;height:30px;margin-top:5px;"></iframe><p>It&#8217;s a tough few months. (I know, I know &#8211; everyone says that)&#8230; But it is honest!</p>
<p>Anyway without dwelling on the moaning&#8230;</p>
<p>I just found out that there is time limit applied to the PPL (Flying Training) written exams.</p>
<p>We have a period of 18 months from the date of passing your first exam (Air Law) &#8211; to complete all 7 written exams.</p>
<div id="attachment_345" class="wp-caption alignnone" style="width: 221px"><a href="http://www.pendlebury.biz/wp-content/uploads/2009/11/picture1.jpg"><img class="size-medium wp-image-345" title="PPL books" src="http://www.pendlebury.biz/wp-content/uploads/2009/11/picture1-211x300.jpg" alt="PPL books" width="211" height="300" /></a><p class="wp-caption-text">PPL books</p></div>
<p>The 7 exams are as follows:</p>
<ul>
<li>Air Law &amp; Operational Procedures</li>
<li>Meteorology</li>
<li>Navigation</li>
<li>Aircraft General &amp; Principles of Flight</li>
<li>Communications</li>
<li>Human Performance and Limitations</li>
<li>Flight Performance &amp; Planning</li>
</ul>
<p>If you don&#8217;t finish the 7th exam within the 18 month period, the exams previous to that 18 months are not valid and must be re-sat. So it&#8217;s like an 18 month window that stretches up to the last exam you pass.</p>
<p>This validity only applies to the written exams. You can pass the exams at any time and then do the flying later but obviously that wouldn&#8217;t really make sense practically.</p>
<p>After completing the 7th exam you have 24 months to take the skills test and apply for the license.</p>
<p>So&#8230;</p>
<p>I need to start studying fast! I really don&#8217;t want to let all that hard work be wasted.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.pendlebury.biz/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.pendlebury.biz/ppl-studying-ahead/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Funghie&#8217;s Top 10 Wave-isms</title>
		<link>http://www.pendlebury.biz/funghies-top-10-wave-isms/</link>
		<comments>http://www.pendlebury.biz/funghies-top-10-wave-isms/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 13:40:00 +0000</pubDate>
		<dc:creator>Phil Pendlebury</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Google Wave]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[WWW]]></category>

		<guid isPermaLink="false">http://www.pendlebury.biz/pendlepress/?p=53</guid>
		<description><![CDATA[Top 10 list of Google Wave related things I find myself answering for people (and wishing they would listen to): Update your profile as soon as you can. Add a picture. So you don&#8217;t look like a random web item with no personality. Use the double click method to get an indented reply within a]]></description>
			<content:encoded><![CDATA[<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.pendlebury.biz%2Ffunghies-top-10-wave-isms%2F&amp;layout=standard&amp;&amp;width=350&amp;action=like&amp;font=segoe ui&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:350px;height:30px;margin-top:5px;"></iframe><p>Top 10 list of Google Wave related things I find myself answering for people (and wishing they would listen to):</p>
<div id="attachment_516" class="wp-caption alignnone" style="width: 159px"><a href="http://www.pendlebury.biz/wp-content/uploads/2009/11/wave.jpg"><img class="size-full wp-image-516" title="Wave Logo" src="http://www.pendlebury.biz/wp-content/uploads/2009/11/wave.jpg" alt="Wave Logo" width="149" height="119" /></a><p class="wp-caption-text">Wave Logo</p></div>
<ol>
<li>Update your profile as soon as you can. Add a picture. So you don&#8217;t look like a random web item with no personality.</li>
<li>Use the <span style="font-weight: bold;">double click</span> method to get an indented reply within a wave (but be careful not to reply in the wrong place). This gives a nice neat collapsible reply instead of a brand new wavelet.</li>
<li><span style="font-weight: bold;">UNDO (Ctrl+Z) doesn&#8217;t always work.</span> Watch out! (Copy &amp; Paste is also sporadic).</li>
<li>Save your searches. For example <span style="font-weight: bold;">onlyto:me is:unread</span> = very handy.</li>
<li>When in a public wave &#8211; <span style="font-weight: bold;">think</span> before you hit a button &#8211; You could potentially destroy the wave. You could also leave a lot of random junk in someone&#8217;s well maintained Wave. If you do &#8211; Clean it up before you leave.</li>
<li>Please don&#8217;t add bots or gadgets to public waves that you didn&#8217;t start yourself. Again &#8211; You could potentially destroy the wave.</li>
<li>Share you knowledge and don&#8217;t be a proud-ass if someone shares yours and forgets to credit you &#8211; it is all public knowledge after all.</li>
<li>Don&#8217;t moan and whine about broken features. Remember we are testing new technology here. It isn&#8217;t going to work properly for a while yet. But you know Google &#8211; It will work eventually and when it does &#8211; <span style="font-weight: bold;">it will rock!</span></li>
<li>If you&#8217;re unsure about something, use the help link: <a href="http://www.google.com/support/wave">http://www.google.com/support/wave</a> You may be surprised how much info you can get from there. Including confirmation that a feature you can&#8217;t get working doesn&#8217;t work for anyone yet.</li>
<li>Remember you are dealing with real people &#8211; or in my case &#8211; a real dolphin. So be cool to each other. :-)</li>
</ol>
<p>So long and thanks for all the fish.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.pendlebury.biz/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.pendlebury.biz/funghies-top-10-wave-isms/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Google Wave / Windows 7 / Back In The Air</title>
		<link>http://www.pendlebury.biz/google-wave-windows-7-back-in-the-air/</link>
		<comments>http://www.pendlebury.biz/google-wave-windows-7-back-in-the-air/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 21:14:00 +0000</pubDate>
		<dc:creator>Phil Pendlebury</dc:creator>
				<category><![CDATA[Aviation]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Flying Training]]></category>
		<category><![CDATA[Google Wave]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[PPL]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[WWW]]></category>

		<guid isPermaLink="false">http://www.pendlebury.biz/pendlepress/?p=24</guid>
		<description><![CDATA[Earlier this week I managed to procure an invite to try out the new Google Wave communication system. Something I&#8217;ve been waiting to get my hands on since first seeing the developer preview video on YouTube a few months ago. I must admit I am impressed. I took the bull by the horns and started]]></description>
			<content:encoded><![CDATA[<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.pendlebury.biz%2Fgoogle-wave-windows-7-back-in-the-air%2F&amp;layout=standard&amp;&amp;width=350&amp;action=like&amp;font=segoe ui&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:350px;height:30px;margin-top:5px;"></iframe><p>Earlier this week I managed to procure an invite to try out the new Google Wave communication system. Something I&#8217;ve been waiting to get my hands on since first seeing the developer preview video on YouTube a few months ago.</p>
<p>I must admit I am impressed. I took the bull by the horns and started a few &#8220;Waves&#8221; including one that has hints and tips for beginners (like me). It now has over a hundred subscribers. Nice.</p>
<div id="attachment_443" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2009/10/googlewave.jpg"><img class="size-medium wp-image-443" title="Google Wave" src="http://www.pendlebury.biz/wp-content/uploads/2009/10/googlewave-300x220.jpg" alt="Google Wave" width="300" height="220" /></a><p class="wp-caption-text">Google Wave</p></div>
<p>What is Google Wave? Email on steroids? Well rather than reading my explanations, take a look at the preview video here:</p>
<p>httpv://www.youtube.com/watch?v=v_UyVmITiYQ</p>
<p>Be warned though &#8211; it&#8217;s an hour and twenty minutes long. It&#8217;s only for the real geeks among you.</p>
<p>I have started a Blog about my Google Wave experiences here: <a href="http://gwfts.blogspot.com/">http://gwfts.blogspot.com/</a></p>
<p>While we&#8217;re on the subject of geeky stuff. I am now running the official release of Windows 7 (Ultimate 64 bit) on my main PC and the studio PC. Very impressive. Fast and slick.</p>
<p>I never really had a problem with Vista though but even so there is a notable difference in performance in all areas so far.</p>
<p>There&#8217;s not really much point in going into the pros and cons of Windows 7 here. There is so much information on the Internet, it would be kind of pointless to add mine. So here&#8217;s a picture of the box. :-)</p>
<div id="attachment_442" class="wp-caption alignnone" style="width: 244px"><a href="http://www.pendlebury.biz/wp-content/uploads/2009/10/win7ultimate.jpg"><img class="size-medium wp-image-442" title="Windows 7 Ultimate" src="http://www.pendlebury.biz/wp-content/uploads/2009/10/win7ultimate-234x300.jpg" alt="Windows 7 Ultimate" width="234" height="300" /></a><p class="wp-caption-text">Windows 7 Ultimate</p></div>
<p>The install itself went really well. It&#8217;s just time consuming getting the studio machine back to a working state. Lots of applications and plugins to install. Most have to be done from scratch which is not a bad thing but it is time consuming.</p>
<p>Finally &#8211; I managed to squeeze in one hour of flying training at Sherburn on Friday morning. What a great feeling to get back in the air. I did OK. It&#8217;s been around four months since I was last flying. So I had my doubts as to how well I might manage.</p>
<div id="attachment_441" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2009/10/gbnom.jpg"><img class="size-medium wp-image-441" title="PA28 GBNOM" src="http://www.pendlebury.biz/wp-content/uploads/2009/10/gbnom-300x157.jpg" alt="PA28 GBNOM" width="300" height="157" /></a><p class="wp-caption-text">PA28 GBNOM</p></div>
<p>The weather was OK, a little cloudy but as we were only doing circuits, that was not a great problem. There was also a bit of crosswind which added to the challenge.</p>
<p>As far as I could tell, my flying was good, quite accurate with just a few of the usual distractions. I must have been OK because Jonathan stepped out after we landed on the fifth circuit and sent me off on my own for one more.</p>
<p>It felt great to be back solo in the skies, as I&#8217;m sure anyone can imagine. The hour was over way to quickly and I hope I can get back and continue soon.</p>
<p>That&#8217;s all for now.</p>
<p>Thanks for reading.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.pendlebury.biz/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.pendlebury.biz/google-wave-windows-7-back-in-the-air/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thailand &#8211; Septemeber 2009</title>
		<link>http://www.pendlebury.biz/thailand-septemeber-2009/</link>
		<comments>http://www.pendlebury.biz/thailand-septemeber-2009/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 10:42:00 +0000</pubDate>
		<dc:creator>Phil Pendlebury</dc:creator>
				<category><![CDATA[Health]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Travel]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Riffs & Rays]]></category>
		<category><![CDATA[Thailand]]></category>

		<guid isPermaLink="false">http://www.pendlebury.biz/pendlepress/?p=23</guid>
		<description><![CDATA[Sawas dee khab! Riffs &#38; Rays short tour of Thailand, September 2009. Any attempt to fit the whole trip into a blog like this would be futile. Also many of the really good parts are unpublishable or forgotten and the really really good parts are probably both. I have now calculated with the aid of]]></description>
			<content:encoded><![CDATA[<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.pendlebury.biz%2Fthailand-septemeber-2009%2F&amp;layout=standard&amp;&amp;width=350&amp;action=like&amp;font=segoe ui&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:350px;height:30px;margin-top:5px;"></iframe><p>Sawas dee khab!</p>
<p>Riffs &amp; Rays short tour of Thailand, September 2009. Any attempt to fit the whole trip into a blog like this would be futile. Also many of the really good parts are unpublishable or forgotten and the really <span style="font-style: italic;">really</span> good parts are probably both.</p>
<p>I have now calculated with the aid of 2 full passports plus my 3rd existing passport that this was my 28th trip to the land of smiles. Even so there is always something new to discover and re-discover. One day I may even manage to get back to the Rose Garden and the Floating Market.</p>
<p>So here&#8217;s a brief summary (with pictures taken from iPhone when possible) of some of the highlights.</p>
<p>I have deliberately ignored any working-days. Who wants to hear about work?</p>
<p>We got bumped up to business class on the Dubai &#8211; Bangkok leg. Bonus! Except we figured the reason for this was because a bag was left in Dubai. Luckily it was only our friend Bill&#8217;s keyboard which was retrieved later the same day.</p>
<p><a href="http://www.pendlebury.biz/wp-content/uploads/2009/10/bizclass.jpg"></p>
<div id="attachment_360" class="wp-caption alignnone" style="width: 215px"><a href="http://www.pendlebury.biz/wp-content/uploads/2009/10/bizclass.jpg"><img class="size-medium wp-image-360" title="Business Class" src="http://www.pendlebury.biz/wp-content/uploads/2009/10/bizclass-205x300.jpg" alt="Business Class" width="205" height="300" /></a><p class="wp-caption-text">Business Class</p></div>
<p></a></p>
<p>Checked into hotel and immediately donned the sunglasses. 14:00. &#8211; travelling for 24 hours &#8211; The anticipation was too much. Had to go to bed&#8230;</p>
<p><a href="http://www.pendlebury.biz/wp-content/uploads/2009/10/pap.jpg"></p>
<div id="attachment_359" class="wp-caption alignnone" style="width: 210px"><a href="http://www.pendlebury.biz/wp-content/uploads/2009/10/pap.jpg"><img class="size-medium wp-image-359" title="Shades on at night" src="http://www.pendlebury.biz/wp-content/uploads/2009/10/pap-200x300.jpg" alt="Shades on at night" width="200" height="300" /></a><p class="wp-caption-text">Shades on at night</p></div>
<p></a></p>
<p>Met up with TT Scott and Gavin Hunter. What an awesome surprise. Here&#8217;s TT on the left, myself in the centre and Dave Dennison from Riffs &amp; Rays on the right.</p>
<p>Where was this picture taken and why Dave and I are making strange hand signals&#8230; Nobody knows.</p>
<p><a href="http://www.pendlebury.biz/wp-content/uploads/2009/10/ttdaveme.jpg"></p>
<div id="attachment_358" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2009/10/ttdaveme.jpg"><img class="size-medium wp-image-358" title="TT, PP &amp; DD" src="http://www.pendlebury.biz/wp-content/uploads/2009/10/ttdaveme-300x225.jpg" alt="TT, PP &amp; DD" width="300" height="225" /></a><p class="wp-caption-text">TT, PP &amp; DD</p></div>
<p></a></p>
<p>Ahhh the obligatory tuk tuk race from Nana to Cowboy. Now any seasoned veterans will yawn at the prospect of racing your friend&#8217;s tuk tuk &#8211; been there, bought the silk T-shirt etc.</p>
<p>I did manage to add a new angle to this, however for the first time ever:</p>
<p>Terry and Gavin&#8217;s tuk tuk was far superior to ours and Dave &amp; I knew we were fighting a losing battle that no amount of spoken or shouted encouragement to our driver would overcome.<br />
Dave had already given me the 100B required to pay our driver at the end of the journey and I had it held in my hand ready.<br />
Then a sudden idea&#8230; I asked our driver to pull up along side Terry &amp; Gavin&#8217;s driver and stealthily handed THEIR DRIVER the money and asked him to slow down&#8230;<br />
It worked&#8230;<br />
For a while&#8230;<br />
Until he pulled back next to us and asked for more&#8230;<br />
I gave another 100B&#8230; This time a quick-eyed TT spotted me and gave him another 500B!</p>
<p>Needless to say we were pipped at the post. Terry and Gavin&#8217;s driver was about 800B better off too.</p>
<p>Haven&#8217;t laughed so much for a long, long time.</p>
<p>(Not actual picture unfortunately)</p>
<p><a href="http://www.pendlebury.biz/wp-content/uploads/2009/10/800px-Tuk_tuk_1.jpg"></p>
<div id="attachment_357" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2009/10/800px-Tuk_tuk_1.jpg"><img class="size-medium wp-image-357" title="Tuk tuks" src="http://www.pendlebury.biz/wp-content/uploads/2009/10/800px-Tuk_tuk_1-300x213.jpg" alt="Tuk tuks" width="300" height="213" /></a><p class="wp-caption-text">Tuk tuks</p></div>
<p></a></p>
<p>Many an afternoon spent outside the Landmark on Sukhumvit in Bangkok, great food and no hassle, watching the world go by. The blue mark on my hand is not a bruise, it&#8217;s a stamp from the club we played the night before.</p>
<p><a href="http://www.pendlebury.biz/wp-content/uploads/2009/10/landmark.jpg"></p>
<div id="attachment_356" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2009/10/landmark.jpg"><img class="size-medium wp-image-356" title="Phil at the Landmark" src="http://www.pendlebury.biz/wp-content/uploads/2009/10/landmark-300x214.jpg" alt="Phil at the Landmark" width="300" height="214" /></a><p class="wp-caption-text">Phil at the Landmark</p></div>
<p></a></p>
<p>Other Bangkok highlights included:</p>
<ul>
<li>Dave taking me for a guided tour of somewhere neither he or I have ever been before.</li>
<li>Best ribs in the world at Tony Romas.</li>
<li> Meeting up with Ambassador Nick Adams (old friend from Dubai). The man who first drew me a map of where to go and not to go in 1994.</li>
<li>Surreptitiously setting up Papasan-Bill at Jungle Jim&#8217;s.</li>
</ul>
<p>After a few more nights we moved on to Pattaya.</p>
<p>Met up with Graham Heath (also old friend from Dubai) and the inimitable Marco Van de Burn, who is a partner at Insomnia; The premier night club in Pattaya.</p>
<p>Here&#8217;s Dave, Marco and Graham (with brolly) outside the brand new club.</p>
<p><a href="http://www.pendlebury.biz/wp-content/uploads/2009/10/mvghddinsom.jpg"></p>
<div id="attachment_355" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2009/10/mvghddinsom.jpg"><img class="size-medium wp-image-355" title="New Insomnia" src="http://www.pendlebury.biz/wp-content/uploads/2009/10/mvghddinsom-300x279.jpg" alt="New Insomnia" width="300" height="279" /></a><p class="wp-caption-text">New Insomnia</p></div>
<p></a></p>
<p>Here&#8217;s a shot from the VIP area. the new club is amazing!</p>
<p><a href="http://www.pendlebury.biz/wp-content/uploads/2009/10/insomvip.jpg"></p>
<div id="attachment_354" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2009/10/insomvip.jpg"><img class="size-medium wp-image-354" title="Insomnia from VIP area" src="http://www.pendlebury.biz/wp-content/uploads/2009/10/insomvip-300x168.jpg" alt="Insomnia from VIP area" width="300" height="168" /></a><p class="wp-caption-text">Insomnia from VIP area</p></div>
<p></a></p>
<p>Visited Bill and Madame Janmanee at their condo on Jomtien beach. Lovely place to stay. As you can see, our Bill is happy as can be.</p>
<p><a href="http://www.pendlebury.biz/wp-content/uploads/2009/10/bill.jpg"></p>
<div id="attachment_353" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2009/10/bill.jpg"><img class="size-medium wp-image-353" title="Papasan Bill" src="http://www.pendlebury.biz/wp-content/uploads/2009/10/bill-300x225.jpg" alt="Papasan Bill" width="300" height="225" /></a><p class="wp-caption-text">Papasan Bill</p></div>
<p></a></p>
<p>Back to Insomnia again. This time the views are from the work area (i.e. the DJ/Lighting booth) which is raised above the crowd.</p>
<p>Marco doing his stuff.</p>
<p><a href="http://www.pendlebury.biz/wp-content/uploads/2009/10/marcowork.jpg"></p>
<div id="attachment_352" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2009/10/marcowork.jpg"><img class="size-medium wp-image-352" title="Marco Van de Burn" src="http://www.pendlebury.biz/wp-content/uploads/2009/10/marcowork-300x225.jpg" alt="Marco Van de Burn" width="300" height="225" /></a><p class="wp-caption-text">Marco Van de Burn</p></div>
<p></a></p>
<p>Lights, Action, Sound!</p>
<p><a href="http://www.pendlebury.biz/wp-content/uploads/2009/10/insomdj2.jpg"></p>
<div id="attachment_351" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2009/10/insomdj2.jpg"><img class="size-medium wp-image-351" title="Insomnia from DJ booth" src="http://www.pendlebury.biz/wp-content/uploads/2009/10/insomdj2-300x207.jpg" alt="Insomnia from DJ booth" width="300" height="207" /></a><p class="wp-caption-text">Insomnia from DJ booth</p></div>
<p></a></p>
<p>A small portion of the crowd.</p>
<p><a href="http://www.pendlebury.biz/wp-content/uploads/2009/10/insomdj1.jpg"></p>
<div id="attachment_350" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2009/10/insomdj1.jpg"><img class="size-medium wp-image-350" title="Insomnia from DJ booth" src="http://www.pendlebury.biz/wp-content/uploads/2009/10/insomdj1-300x197.jpg" alt="Insomnia from DJ booth" width="300" height="197" /></a><p class="wp-caption-text">Insomnia from DJ booth</p></div>
<p></a></p>
<p>Other Pattaya highlights included:</p>
<ul>
<li>Marco&#8217;s Pad &#8211; TARDIS springs to mind.</li>
<li>The &#8220;gun&#8221; show at Soy Diamond.</li>
<li>The full English Breakfast at Secrets.</li>
<li>Calamaris at Secrets.</li>
<li>EVERYTHING at Secrets.</li>
<li>THREE Shwarmas (2 chicken &#8211; 1 lamb).</li>
<li>Subway!</li>
<li>Listening to some guys getting their Thai words all wrong and seeing the staff girls laugh &#8211;  but not correct them.</li>
<li>Being rather disappointed with Angelwitch (at last). Feels like the devil has given me my soul back. Hahaha.</li>
</ul>
<p>Here&#8217;s Marco on our last day, on a Bhat bus.</p>
<p><a href="http://www.pendlebury.biz/wp-content/uploads/2009/10/marco.jpg"></p>
<div id="attachment_349" class="wp-caption alignnone" style="width: 235px"><a href="http://www.pendlebury.biz/wp-content/uploads/2009/10/marco.jpg"><img class="size-medium wp-image-349" title="Marco Van de Burn" src="http://www.pendlebury.biz/wp-content/uploads/2009/10/marco-225x300.jpg" alt="Marco Van de Burn" width="225" height="300" /></a><p class="wp-caption-text">Marco Van de Burn</p></div>
<p></a></p>
<p>And finally me on the bus with my &#8220;manbag.&#8221; Totally useful accessory to be honest. Try carrying &#8211; Ciggies, Lighter, Wallet, Phone, Reading glasses and loose change whilst wearing a pair of swimming shorts and T-Shirt with no pockets. :-)</p>
<p><a href="http://www.pendlebury.biz/wp-content/uploads/2009/10/bhatbus.jpg"></p>
<div id="attachment_348" class="wp-caption alignnone" style="width: 235px"><a href="http://www.pendlebury.biz/wp-content/uploads/2009/10/bhatbus.jpg"><img class="size-medium wp-image-348" title="Phil on a Bhat bus" src="http://www.pendlebury.biz/wp-content/uploads/2009/10/bhatbus-225x300.jpg" alt="Phil on a Bhat bus" width="225" height="300" /></a><p class="wp-caption-text">Phil on a Bhat bus</p></div>
<p></a></p>
<p>Low points:</p>
<ul>
<li>The flights. Too long and even with business class &#8211; long haul air travel sucks these days. Especially coming home.</li>
<li>Upset stomach (obviously).</li>
<li>Construction work outside my hotel room window at 7:00 A.m. almost every morning.</li>
<li>People expecting instant replies to emails and tech support.</li>
<li>Typhoons at Carol&#8217;s family home in Philippines.</li>
<li>Mosquito bites (although managed to avoid any really bad ones this time, totalled only about 7 or 8 for the entire trip).</li>
<li>The uncooked Bratwurst!</li>
<li>The fact that mobile phones still work in all the bars. Shame.</li>
<li>Not living here.</li>
</ul>
<p>I often wish I was more vigilant with the camera. The thing is, I have accumulated thousands of pictures over the years (before the digital age) and I really do prefer to take the moments in with my eyes rather than worrying about framing up a picture.</p>
<p>Of course it then becomes a shame when blogging like this because some pictures can capture many, many words. And words that I am not eloquent enough to write in the first place.</p>
<p>I promise to be more photo-active in future.</p>
<p>Thanks for reading.</p>
<p>Chok dee khab!</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.pendlebury.biz/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.pendlebury.biz/thailand-septemeber-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Good To Be Back</title>
		<link>http://www.pendlebury.biz/good-to-be-back/</link>
		<comments>http://www.pendlebury.biz/good-to-be-back/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 09:44:00 +0000</pubDate>
		<dc:creator>Phil Pendlebury</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Travel]]></category>
		<category><![CDATA[Dubai]]></category>
		<category><![CDATA[Gigs]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Riffs & Rays]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://www.pendlebury.biz/pendlepress/?p=22</guid>
		<description><![CDATA[Just a short post here regarding the past weekend of music: We played at Manchester Pride on the main stage Saturday afternoon to approximately 10,000 people (apparently). I have to admit it was somewhat a strange and of course great feeling. Why? Well, I&#8217;ve worked on stage now since I was 13 years old. But]]></description>
			<content:encoded><![CDATA[<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.pendlebury.biz%2Fgood-to-be-back%2F&amp;layout=standard&amp;&amp;width=350&amp;action=like&amp;font=segoe ui&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:350px;height:30px;margin-top:5px;"></iframe><p>Just a short post here regarding the past weekend of music:</p>
<p>We played at Manchester Pride on the main stage Saturday afternoon to approximately 10,000 people (apparently).</p>
<p>I have to admit it was somewhat a strange and of course great feeling.</p>
<p>Why?</p>
<p>Well, I&#8217;ve worked on stage now since I was 13 years old. But not since I was about 20 years old have I been performing my own material.</p>
<p>In the middle east, I had some great bands with some real top class musicians and great friends &#8211; but we were only performing other people&#8217;s songs. Even the shows that I do here in England at the weekends are basically nothing but cover-cabaret and a means of paying the bills. (Although I do confess to still loving playing the old Status Quo live, imagining I still have my long hair etc.) Hehe.</p>
<p>Anyway, an odd concept &#8211; Live PA of our own material with a couple of covers thrown in. Basically it was like being back in the old band days but with our R&amp;R DJ behind us instead of a drummer. This was helped of course by live sax, percussion and the show that we had put together quite carefully.</p>
<div id="attachment_448" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2009/09/pappoint.jpg" target="_blank"><img class="size-medium wp-image-448  " title="You're Looking Good Out There!" src="http://www.pendlebury.biz/wp-content/uploads/2009/09/pappoint-300x191.jpg" alt="You're looking good out there!" width="300" height="191" /></a><p class="wp-caption-text">You&#39;re Looking Good Out There!</p></div>
<p>I even opened up the show asking &#8220;Are you ready to rock?!&#8221; Hehe&#8230;. And received a massive &#8220;YEEEEEEEEAAAAA&#8221; in reply&#8230; Nice.</p>
<div class="wp-caption alignnone" style="width: 310px"><a href="http://www.youtube.com/watch?v=wbrD0_SQSEs" target="_blank"><img class=" " title="YouTube - Riffs &amp; Rays - 2009 - Intro - Funky Music" src="http://img.youtube.com/vi/wbrD0_SQSEs/0.jpg" alt="YouTube - Riffs &amp; Rays - 2009 - Intro - Funky Music" width="300" height="220" /></a><p class="wp-caption-text">YouTube - Riffs &amp; Rays - 2009 - Intro - Funky Music</p></div>
<p>Not an ounce of nerves which was a bit of disappointment. It was the one thing missing for me from the old days. That feeling &#8211; before walking on stage &#8211; of being so afraid that everything is going to go wrong and then &#8211; 20 seconds into the show &#8211; it really doesn&#8217;t matter and nothing can go wrong anyway! :-)</p>
<div id="attachment_447" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2009/09/axe.jpg" target="_blank"><img class="size-medium wp-image-447  " title="Are You ready To Rock?!" src="http://www.pendlebury.biz/wp-content/uploads/2009/09/axe-300x203.jpg" alt="Are you ready to rock?" width="300" height="203" /></a><p class="wp-caption-text">Are You ready To Rock?!</p></div>
<p>Here&#8217;s a couple of pictures from the event. You can see me in the checked shirt at the front and then one of our PAs &#8211; Holly Johnson &#8211; who did a great job &#8211; looking out into a small portion of the crowd.</p>
<div id="attachment_446" class="wp-caption alignnone" style="width: 310px"><a href="http://www.pendlebury.biz/wp-content/uploads/2009/09/holly.jpg" target="_blank"><img class="size-medium wp-image-446  " title="Holly J - Miss You" src="http://www.pendlebury.biz/wp-content/uploads/2009/09/holly-300x225.jpg" alt="Holly J - singing Miss You" width="300" height="225" /></a><p class="wp-caption-text">Holly J - Miss You</p></div>
<p>I think the highlight of the event really has to be when Dave &amp; I pointed out to each other that there were hundreds of people singing the words to our songs. I know this is probably a Drop In The Ocean to already established artistes but hey &#8211; what a great feeling &#8211; people I have never met, knowing the lyrics. And some even knowing exactly where all the breaks and starts were coming&#8230; Wicked!</p>
<p>It has really given me ideas and hope for future events. We are all looking forward to doing it again and as any of you entertainers out there should know &#8211; that is such a bonus &#8211; actually looking forward to performing instead of moaning any aspects of  the gig.</p>
<p>Thanks for reading.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.pendlebury.biz/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.pendlebury.biz/good-to-be-back/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>That Was A Tough One (And Still Is&#8230;)</title>
		<link>http://www.pendlebury.biz/that-was-a-tough-one-and-still-is/</link>
		<comments>http://www.pendlebury.biz/that-was-a-tough-one-and-still-is/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 10:42:00 +0000</pubDate>
		<dc:creator>Phil Pendlebury</dc:creator>
				<category><![CDATA[Aviation]]></category>
		<category><![CDATA[Health]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Flying Training]]></category>
		<category><![CDATA[Mum]]></category>
		<category><![CDATA[PPL]]></category>
		<category><![CDATA[Sherburn]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://www.pendlebury.biz/pendlepress/?p=21</guid>
		<description><![CDATA[Long time no blog&#8230; I promised for my own safety (and the reader&#8217;s) that I would not write anything over the past few months. Mum&#8217;s illness (cancer) got much worse in May and after some time in St. Gemma&#8217;s, she finally passed away on July 1st, 2009. Here&#8217;s a picture of us from early June.]]></description>
			<content:encoded><![CDATA[<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.pendlebury.biz%2Fthat-was-a-tough-one-and-still-is%2F&amp;layout=standard&amp;&amp;width=350&amp;action=like&amp;font=segoe ui&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:350px;height:30px;margin-top:5px;"></iframe><p>Long time no blog&#8230;</p>
<p>I promised for my own safety (and the reader&#8217;s) that I would not write anything over the past few months.</p>
<p>Mum&#8217;s illness (cancer) got much worse in May and after some time in St. Gemma&#8217;s, she finally passed away on July 1st, 2009.</p>
<p>Here&#8217;s a picture of us from early June. We had many good talks and reflections and mum was actually very happy at St. Gemma&#8217;s. The people there do an amazing job.</p>
<div id="attachment_455" class="wp-caption alignnone" style="width: 226px"><a href="http://www.pendlebury.biz/wp-content/uploads/2009/08/mum.jpg" target="_blank"><img class="size-full wp-image-455 " title="Mum &amp; Son" src="http://www.pendlebury.biz/wp-content/uploads/2009/08/mum.jpg" alt="Mum &amp; Son" width="216" height="166" /></a><p class="wp-caption-text">Mum &amp; Son</p></div>
<p>Despite that, they were tough times indeed, both before and after. In fact there are many things that go through one&#8217;s mind when this kind of occasion arises:</p>
<p>What should I do to make sure everyone else is OK?<br />
Is it right that I am crying like a baby even though I am grown man?<br />
Where is [insert name here] when I need them?<br />
Do I really need them anyway? Am I better keeping this all to myself?</p>
<p>And so on.</p>
<p>Truth of the matter is that, as far as I have learned, you can&#8217;t grieve properly unless you are alone. When there are people around &#8211;  you just feel awkward and concerned that they too may feel awkward and embarrassed. At least that was my take on it.</p>
<p>The sub-strata of this section of the post could easily go on for another 5,000 words. So I&#8217;ll keep it short:</p>
<p>Losing a parent is tough. Apart form the obvious side of it, there is lots to do, tasks, organising, communicating. Be prepared to feel shards of emotion that you have <span style="font-weight: bold;">never</span> come across in your life before <span style="font-weight: bold;">ever</span>. And be prepared to face your own mortality.</p>
<p>The rest of this I will save for my book. Haha.</p>
<p>It&#8217;s not quite over yet. We will be taking mum&#8217;s ashes to Ipswich (where she spent a good part of her life) next week.</p>
<p>So, work goes on. Things progress. All good in the end. And with the help of family and friends &#8211; starting to feel a sense of peace and a need to get on with being happy.</p>
<p>Funny though, how the last people you would expect can be the most supportive and some you would expect to be full of concern &#8211; aren&#8217;t.</p>
<p>Bottom line &#8211; Everyone has there own life to live and everyone&#8217;s problems seem more important to them than yours. Live with it and get on with it! :-)</p>
<p>Flying?</p>
<p>I haven&#8217;t been flying since just after mum went to hospice but am planning to get back and complete that PPL very, very soon. I did manage to make a very rough video which was done so that mum could see what it&#8217;s like down at Sherburn. Here it is on YouTube:</p>
<div class="wp-caption alignnone" style="width: 310px"><a href="http://www.youtube.com/watch?v=Wfu-BcjjgaM" target="_blank"><img class=" " title="YouTube - Flying at Sherburn - May 2009" src="http://img.youtube.com/vi/Wfu-BcjjgaM/0.jpg" alt="YouTube - Flying at Sherburn - May 2009" width="300" height="220" /></a><p class="wp-caption-text">YouTube - Flying at Sherburn - May 2009</p></div>
<p>We have missed some great flying days over the last 2 months. But I&#8217;m sure there will be many more to come and there is certainly no rush to get that license.</p>
<p>Finally I drew the line yesterday and went for the hair cut and so on. I post these pictures in the hope of raising a few chuckles</p>
<div id="attachment_454" class="wp-caption alignnone" style="width: 154px"><a href="http://www.pendlebury.biz/wp-content/uploads/2009/08/plastic.jpg" target="_blank"><img class="size-full wp-image-454 " title="Plastic Surgery" src="http://www.pendlebury.biz/wp-content/uploads/2009/08/plastic.jpg" alt="Plastic Surgery" width="144" height="189" /></a><p class="wp-caption-text">Plastic Surgery</p></div>
<p>The dreaded bleach stays on for 50 minutes. End result&#8230; A nice even shade of silver.</p>
<div id="attachment_453" class="wp-caption alignnone" style="width: 154px"><a href="http://www.pendlebury.biz/wp-content/uploads/2009/08/hair2.jpg" target="_blank"><img class="size-full wp-image-453 " title="Going grey" src="http://www.pendlebury.biz/wp-content/uploads/2009/08/hair2.jpg" alt="Going grey" width="144" height="189" /></a><p class="wp-caption-text">Going grey</p></div>
<p>If you think this looks bad, you should have seen it before. Haha.</p>
<p>That&#8217;s all for now.</p>
<p>Thanks for reading. I promise my next post will be more fun.</p>
<p>:-)</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.pendlebury.biz/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.pendlebury.biz/that-was-a-tough-one-and-still-is/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 1.019 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2010-09-05 01:14:30 -->
<!-- Compression = gzip -->