<?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/"
	>

<channel>
	<title>The Source Code Locker</title>
	<atom:link href="http://www.davidwindell.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.davidwindell.com</link>
	<description>David Windell's Blog on Life, Business &#38; Programming</description>
	<pubDate>Mon, 20 Apr 2009 13:39:05 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>The White Horse Inn Steyning</title>
		<link>http://www.davidwindell.com/life/the-white-horse-inn-steyning</link>
		<comments>http://www.davidwindell.com/life/the-white-horse-inn-steyning#comments</comments>
		<pubDate>Mon, 20 Apr 2009 12:27:11 +0000</pubDate>
		<dc:creator>David Windell</dc:creator>
		
		<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://www.davidwindell.com/?p=117</guid>
		<description><![CDATA[The White Horse Inn is one of my favorite Pubs in our local area. It&#8217;s set in the lovely village of Steyning where my wife and I hope to live one day.
However! I&#8217;ve spent the last half hour googling around for &#8220;White Horse Inn Steyning&#8221; and guess what, nothing! After finally deciding to drop the [...]]]></description>
			<content:encoded><![CDATA[<p>The White Horse Inn is one of my favorite Pubs in our local area. It&#8217;s set in the lovely village of Steyning where my wife and I hope to live one day.</p>
<p><strong>However! </strong>I&#8217;ve spent the last half hour googling around for &#8220;White Horse Inn Steyning&#8221; and guess what, nothing! After finally deciding to drop the Inn (i.e. White Horse <span style="text-decoration: line-through;">Inn</span> Steyning) I found it.</p>
<p>It&#8217;s really annoying when all you want to do is book a meal at your local pub but their website is impossible to find. It&#8217;s clear they really need the help of the <a href="http://www.outeredgeuk.com/search-engine-optimisation/">Search Engine Optimisation</a> team at OuterEdge.</p>
<p>Anyway, I though&#8217;t I&#8217;d write this blog to help those who just can&#8217;t find their website, to find it <img src='http://www.davidwindell.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> And the winner is:</p>
<p>http://www.the-whitehorse.com/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.davidwindell.com/life/the-white-horse-inn-steyning/feed</wfw:commentRss>
		</item>
		<item>
		<title>Daylight Savings Time</title>
		<link>http://www.davidwindell.com/life/daylight-savings-time</link>
		<comments>http://www.davidwindell.com/life/daylight-savings-time#comments</comments>
		<pubDate>Tue, 24 Mar 2009 08:31:09 +0000</pubDate>
		<dc:creator>David Windell</dc:creator>
		
		<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://www.davidwindell.com/?p=109</guid>
		<description><![CDATA[The Summer is coming, and boy does Vista know it. Spotted this today when I clicked on the taskbar clock, wonder if anyone actually ever notices it:
]]></description>
			<content:encoded><![CDATA[<p>The Summer is coming, and boy does Vista know it. Spotted this today when I clicked on the taskbar clock, wonder if anyone actually ever notices it:</p>
<div id="attachment_112" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-112" title="Daylight Savings Time" src="http://www.davidwindell.com/wp-content/uploads/2009/03/dst-300x268.jpg" alt="Daylight Savings Time" width="300" height="268" /><p class="wp-caption-text">Daylight Savings Time</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.davidwindell.com/life/daylight-savings-time/feed</wfw:commentRss>
		</item>
		<item>
		<title>Using .htaccess to show a maintenence page</title>
		<link>http://www.davidwindell.com/development/htaccess-maintenence-page</link>
		<comments>http://www.davidwindell.com/development/htaccess-maintenence-page#comments</comments>
		<pubDate>Tue, 24 Mar 2009 08:25:49 +0000</pubDate>
		<dc:creator>David Windell</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.davidwindell.com/?p=87</guid>
		<description><![CDATA[Close your website temporarily
This week I are be mostly working on a live website. Ha, ok enough fast show malarky! Working on a clients site we needed to roll out quite a large patch to their existing website. As the site they use is E-Commerce based we had concerns that a user might try to [...]]]></description>
			<content:encoded><![CDATA[<h2>Close your website temporarily</h2>
<p>This week I are be mostly working on a live website. Ha, ok enough fast show malarky! Working on a clients site we needed to roll out quite a large patch to their existing website. As the site they use is E-Commerce based we had concerns that a user might try to make a purchase during the upgrade process so we decided to have the site redirect to a maintenance page using the .htaccess file.</p>
<p>That&#8217;s all very well, but what about us, we needed to see the changes we were making working live. This nifty little script below does just that, if you replace the 111.111.111.1 with the external IP of your machine it will bypass the rules below that line thus giving you access to the site whilst others are redirect to maintenance.html. Simples.</p>
<h3>The .htaccess file</h3>

<div class="wp_syntax"><div class="code"><pre class="apache" style="font-family:monospace;"><span style="color: #00007f;">RewriteBase</span> /
<span style="color: #00007f;">RewriteCond</span> %{REMOTE_ADDR} !^<span style="color: #ff0000;">111</span>\.111\.111\.111
<span style="color: #00007f;">RewriteCond</span> %{REQUEST_URI} !^/maintenance\.html$
<span style="color: #00007f;">RewriteRule</span> ^(.*)$ http://www.<span style="color: #00007f;">example</span>.co.uk/maintenance.html [R=<span style="color: #ff0000;">307</span>,L]</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.davidwindell.com/development/htaccess-maintenence-page/feed</wfw:commentRss>
		</item>
		<item>
		<title>HP Compaq dc5700 Dual Core PC For Sale</title>
		<link>http://www.davidwindell.com/life/hp-compaq-dc5700-dual-core-pc-for-sale</link>
		<comments>http://www.davidwindell.com/life/hp-compaq-dc5700-dual-core-pc-for-sale#comments</comments>
		<pubDate>Wed, 18 Mar 2009 21:53:20 +0000</pubDate>
		<dc:creator>David Windell</dc:creator>
		
		<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://www.davidwindell.com/?p=104</guid>
		<description><![CDATA[My trusted PC is now up for sale! It&#8217;s served me great for the last six months or so but now I need something else.
The specifications are:

HP Compaq dc5700
Intel Celeron Dual Core E1400 2GHz (512 KB L2 cache 800MHz FSB)
1GB DDR2 RAM
250GB SATA HDD
Optional Used HP Keyboard &#38; Microsoft Optical Mouse for Free
Onboard Graphics with [...]]]></description>
			<content:encoded><![CDATA[<p>My trusted PC is now up for sale! It&#8217;s served me great for the last six months or so but now I need something else.</p>
<p>The specifications are:</p>
<ul>
<li>HP Compaq dc5700</li>
<li>Intel Celeron Dual Core E1400 2GHz (512 KB L2 cache 800MHz FSB)</li>
<li>1GB DDR2 RAM</li>
<li>250GB SATA HDD</li>
<li>Optional Used HP Keyboard &amp; Microsoft Optical Mouse for Free</li>
<li>Onboard Graphics with DVI &amp; VGA Ports (supports dual screens)</li>
<li>Windows Vista Business Edition</li>
<li>Onboard Sound</li>
<li>Onboard Network</li>
<li>HP 6-in-1 Media Card Reader</li>
</ul>
<p>If you&#8217;re interested you can buy it:</p>
<p><a href="http://www.google.co.uk/base/a/2313570/D16882072973237884041">View my HP Compaq dc5700 for sale on Google Base</a></p>
<p><a href="http://cgi.ebay.co.uk/ws/eBayISAPI.dll?ViewItem&amp;item=290306648931">View my HP Compaq dc5700 for sale on Ebay</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.davidwindell.com/life/hp-compaq-dc5700-dual-core-pc-for-sale/feed</wfw:commentRss>
		</item>
		<item>
		<title>23 is the best age to start investing</title>
		<link>http://www.davidwindell.com/life/23-is-the-best-age-to-start-investing</link>
		<comments>http://www.davidwindell.com/life/23-is-the-best-age-to-start-investing#comments</comments>
		<pubDate>Fri, 20 Feb 2009 21:40:22 +0000</pubDate>
		<dc:creator>David Windell</dc:creator>
		
		<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://www.davidwindell.com/?p=98</guid>
		<description><![CDATA[I&#8217;ve been starting to read about and really get into investing recently and found it quite encouraging and rather ironic to find this article on the Motley Fool website, especially considering I&#8217;m 23!
http://www.fool.co.uk/press-releases/2009/02/12/23-is-the-best-age-to-start-investing.aspx
According to this similar article a 23 year old investor who puts £100 a month into shares could build a retirement pot that is [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been starting to read about and really get into investing recently and found it quite encouraging and rather ironic to find this article on the Motley Fool website, especially considering I&#8217;m 23!</p>
<p><a href="http://www.fool.co.uk/press-releases/2009/02/12/23-is-the-best-age-to-start-investing.aspx">http://www.fool.co.uk/press-releases/2009/02/12/23-is-the-best-age-to-start-investing.aspx</a></p>
<p>According to this similar article a 23 year old investor who puts £100 a month into shares could build a retirement pot that is worth over £500,00 by the age of 65 - nice.</p>
<p><a href="http://www.fool.co.uk/news/investing/investing-strategy/2009/02/17/the-best-age-to-start-investing.aspx">http://www.fool.co.uk/news/investing/investing-strategy/2009/02/17/the-best-age-to-start-investing.aspx</a></p>
<p>I&#8217;m hoping to get some time soon to write a full length blog about the techniques I&#8217;ll be using to start building my portfolio and the reasons behind it, watch this space ;)!</p>
<p><strong>11pm - Update, I&#8217;ve just ordered the following books from Amazon:</strong></p>
<ul>
<li>The Motley Fool UK Investment Guide</li>
<li>Investing for Dummies: UK Edition</li>
<li>The Naked Trader</li>
<li>A Girl&#8217;s Best Friend is Her Money: The Motley Fool Women&#8217;s Investment Guide</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.davidwindell.com/life/23-is-the-best-age-to-start-investing/feed</wfw:commentRss>
		</item>
		<item>
		<title>A simple diet that actually works</title>
		<link>http://www.davidwindell.com/health/a-simple-diet-that-actually-works</link>
		<comments>http://www.davidwindell.com/health/a-simple-diet-that-actually-works#comments</comments>
		<pubDate>Mon, 09 Feb 2009 11:44:16 +0000</pubDate>
		<dc:creator>David Windell</dc:creator>
		
		<category><![CDATA[Health]]></category>

		<guid isPermaLink="false">http://www.davidwindell.com/?p=75</guid>
		<description><![CDATA[Coming back from the land of milk and honey (well, more like Burgers and Fries), Andrea and I decided it was time to go on a diet with a difference, no more &#8220;fads&#8221;, nothing complicated, just healthy lifestyle changes.
I spent the best part of two days reading about all sorts of techniques from Calorie Shifting [...]]]></description>
			<content:encoded><![CDATA[<p>Coming back from the land of milk and honey (well, more like Burgers and Fries), Andrea and I decided it was time to go on a <strong>diet </strong>with a difference, no more &#8220;fads&#8221;, nothing complicated, just healthy lifestyle changes.</p>
<p>I spent the best part of two days reading about all sorts of techniques from Calorie Shifting to Fasting and eventually decided the simplest thing for us would be to collate the general tips from a variety of healthy living sites and write our own.</p>
<p>We&#8217;ve been on this &#8220;<strong>diet</strong>&#8221; for three weeks now and are both feeling great, losing weight and fitting it around our lives. Even more importantly we&#8217;re not feeling hungry all the time or starving ourselves.</p>
<p>So, three weeks in and I&#8217;ve already<strong> lost 8lbs</strong> and decided it was time to share it with the world. Before you read on, don&#8217;t expect anything complicated or detailed. The diet is simply a bulleted list of tips and rules to follow along with a general meal plan guide.</p>
<ul>
<li>Eat 5/6 small meals per day</li>
<li>Reduce portions and serving sizes</li>
<li>Eat the recommend calories for 2lb per week weight loss based on activity, age and gender</li>
<li>Drink 4 pint glasses of water a day with and between meals (1 squeezed lemon added).</li>
<li>Do not add salt or sugar to food/drink</li>
<li>30 minutes daily aerobic exercise (walking, running, swimming, bikeriding, stairs.)</li>
<li>Choose low-fat, low-sodium products (more potassium than sodium is good).</li>
<li>Eat 3 fish portions per week</li>
<li>Use extra virgin olive oil (two servings per day)</li>
<li>Use skimmed milk</li>
<li>Eat wholemeal bread</li>
<li>No more than two egg yolks per week</li>
<li>Use vingarette dressing on salads</li>
<li>Good proteins to eat are eggs, chicken (skinless), turkey, fish, lamb, lean beef and whey protein powder.</li>
</ul>
<h3>Meal Plan</h3>
<blockquote><p><strong>Breakfast</strong> - 1 bread or cereal, 1 fruit, 1 dairy<br />
<strong>Snack</strong> - 1-2 fruits or vegetable<br />
<strong>Lunch</strong> - 3 vegetable, 1 bread, 1 fruit, 1 protein<br />
<strong>Snack</strong> - 1 fruit (or unsalted nut’s/seeds)<br />
<strong>Dinner</strong> - 3-4 vegetable, 1 fruit, 1 protein, 1 bread, 1 dairy, 1 fat</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.davidwindell.com/health/a-simple-diet-that-actually-works/feed</wfw:commentRss>
		</item>
		<item>
		<title>Monday IS the best day of the week</title>
		<link>http://www.davidwindell.com/life/monday-is-the-best-day-of-the-week</link>
		<comments>http://www.davidwindell.com/life/monday-is-the-best-day-of-the-week#comments</comments>
		<pubDate>Fri, 06 Feb 2009 23:18:30 +0000</pubDate>
		<dc:creator>David Windell</dc:creator>
		
		<category><![CDATA[Annoyances]]></category>

		<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://www.davidwindell.com/?p=68</guid>
		<description><![CDATA[Talk about going against the flow eh? I heard someone on the radio this week say something along the lines of &#8220;Sorry that it&#8217;s monday, to cheer our listeners up we&#8217;ve got a great selection of music&#8230;&#8221;, man was I annoyed.
Can someone tell me what exactly is wrong with Mondays, when I get up after [...]]]></description>
			<content:encoded><![CDATA[<p>Talk about going against the flow eh? I heard someone on the radio this week say something along the lines of &#8220;Sorry that it&#8217;s monday, to cheer our listeners up we&#8217;ve got a great selection of music&#8230;&#8221;, man was I annoyed.</p>
<p>Can someone tell me what exactly is wrong with Mondays, when I get up after the weekend I&#8217;m itching to get with work, that&#8217;s right I do actually get excited about going to work (Ok granted, I don&#8217;t even have to leave the house to get to the office and I have my wife with me most of the time).</p>
<p>Now don&#8217;t get me wrong, I&#8217;m not a workaholic, I love the weekend and relish the opportunity to have that all important rest from work, but two days just about cuts it for me. Having said that, I also love my job, the challenges and rewards it brings along with the time spent with friends and collegues. </p>
<p>Without bragging I guess I do have the added benefit of being my own boss, I don&#8217;t have to do what I&#8217;m told (not entirely true, right <a href="http://www.searbe.co.uk">Craig</a>?). I&#8217;m hoping now writing this that the staff all feel the same way too, I try to encourage an atmosphere where new ideas, innovation and change are praised, and for good reason; it&#8217;s good for the business and they&#8217;ll feel the benefits too.</p>
<p>You&#8217;ll know you&#8217;re in the right job when you go to bed on a Sunday night thinking &#8220;I can&#8217;t wait to wake up tomorrow!&#8221;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.davidwindell.com/life/monday-is-the-best-day-of-the-week/feed</wfw:commentRss>
		</item>
		<item>
		<title>Personal Development - Things To Do</title>
		<link>http://www.davidwindell.com/life/personal-development</link>
		<comments>http://www.davidwindell.com/life/personal-development#comments</comments>
		<pubDate>Fri, 06 Feb 2009 22:32:55 +0000</pubDate>
		<dc:creator>David Windell</dc:creator>
		
		<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://www.davidwindell.com/?p=61</guid>
		<description><![CDATA[These day&#8217;s I&#8217;m so busy building the business and spending time with my lovely wife, I never seem to get time to do all of the things I really want to do. I&#8217;m sure most people that work in Development (specifically web based) there&#8217;s always that extra language you want to learn, or that side [...]]]></description>
			<content:encoded><![CDATA[<p>These day&#8217;s I&#8217;m so busy building the business and spending time with my <a href="http://www.andreawindell.com">lovely wife,</a> I never seem to get time to do all of the things I really want to do. I&#8217;m sure most people that work in Development (specifically web based) there&#8217;s always that extra language you want to learn, or that side project you want to work on to push your skills just a bit further.</p>
<p>I often wonder what I&#8217;m missing, what the latest hype I haven&#8217;t heard about is. Only in the last year i&#8217;ve discovered how much time I was wasting not writing code using the MVC model and I somehow missed all the hype surround frameworks until recently. Of course it&#8217;s essential to stay sharp and up to date with the tools used on a daily basis but at the same time its important to take time to have fun and learn something new (hard to believe learning can be fun right!).</p>
<p>When I was writing the &#8220;tag line&#8221; for this blog, I was concious of putting &#8220;Life&#8221; first before the rest (business &amp; programming), that includes spending time with God, Andrea, and socialising more with my friends. However, it&#8217;s also really important to spend time on yourself and the way I like to do that is by building my skills which is something I <strong>really</strong> enjoy<strong> </strong>doing.</p>
<p>After seeing a couple of <a href="http://www.addedbytes.com/blog/personal-development-to-do/">other people</a> do the same on their blogs, i&#8217;ve been inspired to create a list of those projects and other things that I&#8217;ll coin as &#8220;Personal Development&#8221; here. I&#8217;m sure I&#8217;ll update this list as time goes on as I have new goals, ideas and <em>hopefully</em> be able to take a few off the list when they come into fruition and maybe even make it into my <a href="/toolset">toolset</a>. So in randomish order;</p>
<ul>
<li>Start blogging more often</li>
<li>Learn symfony using the Jobeet tutorial</li>
<li>Learn python (using Django framework)</li>
<li>Spend more time with JQuery/  JS and JSON</li>
<li>Write a simple web service (with SOAP)</li>
<li>Learn to play acoustic guitar</li>
<li>Read about investment and start doing it</li>
</ul>
<p>Well, that should be enough to keep me busy for a while <img src='http://www.davidwindell.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> time to get to work!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.davidwindell.com/life/personal-development/feed</wfw:commentRss>
		</item>
		<item>
		<title>Cadbury&#8217;s Eyebrow Advert</title>
		<link>http://www.davidwindell.com/annoyances/cadburys-eyebrow-advert</link>
		<comments>http://www.davidwindell.com/annoyances/cadburys-eyebrow-advert#comments</comments>
		<pubDate>Wed, 04 Feb 2009 22:26:46 +0000</pubDate>
		<dc:creator>David Windell</dc:creator>
		
		<category><![CDATA[Annoyances]]></category>

		<guid isPermaLink="false">http://www.davidwindell.com/?p=40</guid>
		<description><![CDATA[Ok, I&#8217;m usually pretty tolerable of TV Adverts (well that might be a bit of an overstatement) but this new one by Cadbury&#8217;s is just driving me insane!
I quite liked the last one they did with the Gorilla / Phil Collins song, but this is just taking the mick:

]]></description>
			<content:encoded><![CDATA[<p>Ok, I&#8217;m usually pretty tolerable of TV Adverts (well that might be a bit of an overstatement) but this new one by Cadbury&#8217;s is just driving me insane!</p>
<p>I quite liked the last one they did with the Gorilla / Phil Collins song, but this is just taking the mick:</p>
<p><span id="more-40"></span><!-- Smart Youtube --><span class="youtube"><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/oT0W9EDYi0o&amp;rel=0&amp;color1=d6d6d6&amp;color2=f0f0f0&amp;border=0&amp;fs=1&amp;hl=en&amp;autoplay=0&amp;showinfo=0&amp;iv_load_policy=3&amp;showsearch=0"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/oT0W9EDYi0o&amp;rel=0&amp;color1=d6d6d6&amp;color2=f0f0f0&amp;border=0&amp;fs=1&amp;hl=en&amp;autoplay=0&amp;showinfo=0&amp;iv_load_policy=3&amp;showsearch=0" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="355" ></embed><param name="wmode" value="transparent" /></object></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.davidwindell.com/annoyances/cadburys-eyebrow-advert/feed</wfw:commentRss>
		</item>
		<item>
		<title>God and the iPhone</title>
		<link>http://www.davidwindell.com/life/god-and-the-iphone</link>
		<comments>http://www.davidwindell.com/life/god-and-the-iphone#comments</comments>
		<pubDate>Tue, 27 Jan 2009 20:27:02 +0000</pubDate>
		<dc:creator>David Windell</dc:creator>
		
		<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://www.davidwindell.com/?p=7</guid>
		<description><![CDATA[
Whilst I was in church this weekend, I began to get distracted by the thought of my shiny new Apple iPhone that my wife had bought me as an &#8220;early&#8221; birthday present!
I tried to ignore it and focus on God, but I just couldn&#8217;t. I&#8217;m normally able to tune out my thoughts, so I can [...]]]></description>
			<content:encoded><![CDATA[<div>
<p>Whilst I was in church this weekend, I began to get distracted by the thought of my shiny new Apple iPhone that my wife had bought me as an &#8220;early&#8221; birthday present!</p>
<p>I tried to ignore it and focus on God, but I just couldn&#8217;t. I&#8217;m normally able to tune out my thoughts, so I can honestly say I was getting a little bit annoyed with myself.</p>
<p>Then it struck me, why do people find it so easy to accept how a mobile phone works but so hard to accept that God exists? Today our phones are even able to browse the internet at super fast speeds. There&#8217;s no cables, no visible airwaves, nothing to suggest that this little shiny peice of plastic should work or moreso be able to communicate with the outside world. On the other hand with God there&#8217;s certainly no cables or airwaves to suggest that we can communicate with him.</p>
<p>How many people have actually visited a mobile phone mast before they believe it exists? Not many right! It&#8217;s probably because they can see the signs of its existence when their phone displays some simple bars to demonstrate how strong the signal is.</p>
<p>So, if people can believe that the mast exists without seeing it, why not believe that God exists? Ok, we can&#8217;t just see Jesus walking down the street like he did 2000 years ago, but there are so many sign, miracles and wonders that God does every day, if people would take notice they wouldn&#8217;t be able to suggest he doesn&#8217;t exist!</p>
<p>I&#8217;m reminded of the verse in John 20:29 that says:</p>
<blockquote><p>&#8220;Then Jesus told him, You believe because you have seen me. Blessed are those who believe without seeing me”.</p></blockquote>
<p>As christians we should remember that all it takes is those few bars on someone&#8217;s phone that tells them the mobile phone mast exists, so likewise we just need to tune into God and stay connected every day and we will be able to show the world He exists!</p>
<p>Next time you&#8217;re worshipping him and struggling to communicate, just remember that he is there, a mast, waiting to recieve your signals and communicate with you. Just send him a message and he&#8217;ll turn you from a simple shiny bit of plastic into an all singing, all dancing messenger for him.</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.davidwindell.com/life/god-and-the-iphone/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
