<?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>Cam McVey: Web, Electronics, Music, Stuff</title>
	<atom:link href="http://mcvey.org/cam/feed/" rel="self" type="application/rss+xml" />
	<link>http://mcvey.org/cam</link>
	<description>My plot of online goodness.</description>
	<lastBuildDate>Wed, 17 Apr 2013 19:41:39 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Finding the WordPress root folder from outside WP</title>
		<link>http://mcvey.org/cam/web-developement/finding-the-wordpress-root-folder-from-outside-wp/</link>
		<comments>http://mcvey.org/cam/web-developement/finding-the-wordpress-root-folder-from-outside-wp/#comments</comments>
		<pubDate>Wed, 17 Apr 2013 19:11:36 +0000</pubDate>
		<dc:creator>Cam</dc:creator>
				<category><![CDATA[Web Developement]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://mcvey.org/cam/?p=257</guid>
		<description><![CDATA[Have you ever needed to locate the root folder for a WordPress installation? If you&#8217;re checking from a page that is loaded up as part of WP, it&#8217;s easy; just<br/><a href="http://mcvey.org/cam/web-developement/finding-the-wordpress-root-folder-from-outside-wp/" class="more">Read More &#187;</a>]]></description>
				<content:encoded><![CDATA[<p>Have you ever needed to locate the root folder for a WordPress installation? If you&#8217;re checking from a page that is loaded up as part of WP, it&#8217;s easy; just use the <strong><code>ABSPATH</code></strong> constant, which is set up at the top of your wp-load.php file.</p>
<p><img class="alignright size-medium wp-image-267" alt="wpcode" src="http://mcvey.org/cam/wp-content/uploads/2013/04/wpcode-300x171.jpg" width="300" height="171" />However, if you need the root folder from within a page that is outside of WP, it&#8217;s a little more tricky. You don&#8217;t have access to the ABSPATH constant, and you don&#8217;t have built in access to the database to check for &#8216;wp_dir&#8217; in the options table. [Of course, you could query the db if you have access details: something like "<code>select option_value from wp_options where option_name ='wp_dir';</code>" would do it.]</p>
<p>If the page is in a folder that is below the WP root folder though, there&#8217;s a nicer way. I wrote a little recursive function that checks a folder for the existence of a named file and, if it&#8217;s not there, moves to the parent folder and checks again. If it&#8217;s found, it returns the path to the file. So, if the file is below the root folder, this function will eventually find the root WP folder if you search for something like &#8216;wp-load.php&#8217; or something else that generally lives in that folder.</p>
<p>Here&#8217;s the function with some code to demo how it&#8217;s used:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> find_file<span style="color: #009900;">&#40;</span><span style="color: #000088;">$filename</span><span style="color: #339933;">,</span> <span style="color: #000088;">$path</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
	<span style="color: #000088;">$filepath</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$path</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'/'</span><span style="color: #339933;">.</span><span style="color: #000088;">$filename</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #990000;">file_exists</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$filepath</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
		<span style="color: #000088;">$filepath</span> <span style="color: #339933;">=</span> find_file<span style="color: #009900;">&#40;</span><span style="color: #000088;">$filename</span><span style="color: #339933;">,</span> <span style="color: #990000;">dirname</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$path</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
	<span style="color: #b1b100;">return</span> <span style="color: #000088;">$filepath</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #000088;">$path_to_wpload</span> <span style="color: #339933;">=</span> find_file<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'wp-load.php'</span><span style="color: #339933;">,</span> __DIR__<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>Hopefully that&#8217;s useful to someone. If you have an improvement to the function, or another (better) way to do the same thing, please add a comment.</p>
]]></content:encoded>
			<wfw:commentRss>http://mcvey.org/cam/web-developement/finding-the-wordpress-root-folder-from-outside-wp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On Mac keyboards and frustration</title>
		<link>http://mcvey.org/cam/daily-life/on-mac-keyboards-and-frustration/</link>
		<comments>http://mcvey.org/cam/daily-life/on-mac-keyboards-and-frustration/#comments</comments>
		<pubDate>Fri, 01 Mar 2013 10:24:17 +0000</pubDate>
		<dc:creator>Cam</dc:creator>
				<category><![CDATA[Daily Life]]></category>
		<category><![CDATA[gotcha]]></category>
		<category><![CDATA[Techie]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://mcvey.org/cam/?p=242</guid>
		<description><![CDATA[My annoyance at the weirdness of UK mapped MacBook Pro keyboards and what I've done about it.]]></description>
				<content:encoded><![CDATA[<p>[<em>Caveat: the following is an opinionated piece that you may or may not agree with. Also, my context is as a web developer: some of the following offenders are, of course, useful in other professions.</em>]</p>
<div id="attachment_250" class="wp-caption alignright" style="width: 310px"><img class="size-medium wp-image-250 " alt="Credit: berrytokyo" src="http://mcvey.org/cam/wp-content/uploads/2013/03/4650583918_be364027e4_b-300x225.jpg" width="300" height="225" /><p class="wp-caption-text">Credit: <a href="http://www.flickr.com/photos/amtokyo/" target="_blank">berrytokyo</a></p></div>
<p>I got a MacBook Pro recently, primarily because all the cool kids are creating the latest, greatest web tools on Mac systems and, frankly, the Windows guys are lagging behind. I found myself increasingly finding awesome tips/tricks/tools that came with the mac-only caveat which finishes with &#8220;I don&#8217;t know how you do this on a Windows machine, sorry.&#8221; I also got it because they&#8217;re so brilliantly designed to be both beautiful and powerful, and I dig that.</p>
<p>However, nobody mentioned the gaping hole of productivity that the non-standard (?) weird (UK) keyboard mapping! Argh!</p>
<ul>
<li>The @ and &#8221; symbols are swapped. Ever write an email? Yeah, me too. So I&#8217;ve had to re-learn where the @ symbols is. Annoying!</li>
<li>Page Up and Page Down are missing. This is really important to me as I use those keys A LOT to move around documents I&#8217;m editing.</li>
<li>The # symbol is completely missing! Any time you want to add colo(u)r to a webpage, you need that bad boy. Now it&#8217;s gone. This the worst change because, as an added annoyance, it&#8217;s been replaced with the never-ever-used-in-my-entire-life § (Section) symbol. What? Not to mention the equally useless ± as its shift+ partner.</li>
</ul>
<p>Suffice to say, my first few weeks of Mac-ownership were filled with never-ending Google searches starting, &#8220;mac os x keyboard shortcut for …&#8221;. Now, I do know that all of these things can be overcome with judicious use of modifiers (e.g., Page Up is ?+? [cmd + up-arrow]), but even so, it&#8217;s a pain.</p>
<p>Then I stumbled on a superb bit of software called <a href="http://pqrs.org/macosx/keyremap4macbook/index.html.en" target="_blank">KeyRemap4MacBook</a>. It is free and it is brilliant. I have now re-mapped several keys on this laptop to be more useful to me and I am very grateful to the genius <a href="http://pqrs.org/profile.html.en" target="_blank">Takayama Fumihiko</a> for it. Though I haven&#8217;t gone as far a re-mapping the @ and &#8221; symbols, I&#8217;ve made the this machine work better for me, and that&#8217;s pretty cool.</p>
<p>Right now, here&#8217;s how I have it set up:</p>
<ul>
<li>When I hit the &#8216;§&#8217;, I get a lovely &#8216;#&#8217;.</li>
<li>Along with <a href="http://pqrs.org/macosx/keyremap4macbook/pckeyboardhack.html.en" target="_blank">PCKeyboardHack</a>, I&#8217;ve remapped the Caps Lock key to be &#8220;forward delete&#8221;</li>
<li>The Eject key now shows the desktop</li>
<li>The right-hand ? key is now Home (&#8220;Go to start of line&#8221;)</li>
<li>The right-hand ? key is now End (&#8220;Go to end of line&#8221;)</li>
<li>Also really handy: &#8220;Press ?+Q twice to Quit Application&#8221;</li>
</ul>
<p>So, I&#8217;ve tamed the beast, somewhat. And I&#8217;ve forced myself to use the @ key in the wrong place. And I&#8217;m now pretty much up-to-speed with my Mac, and am enjoying playing with all the clever toys the cool kids are creating.</p>
]]></content:encoded>
			<wfw:commentRss>http://mcvey.org/cam/daily-life/on-mac-keyboards-and-frustration/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>jQuery and JSONP Shenanigans</title>
		<link>http://mcvey.org/cam/web-developement/jquery-and-jsonp-shenanigans/</link>
		<comments>http://mcvey.org/cam/web-developement/jquery-and-jsonp-shenanigans/#comments</comments>
		<pubDate>Tue, 27 Nov 2012 22:31:12 +0000</pubDate>
		<dc:creator>Cam</dc:creator>
				<category><![CDATA[Web Developement]]></category>
		<category><![CDATA[gotcha]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[jsonp]]></category>
		<category><![CDATA[xhr]]></category>

		<guid isPermaLink="false">http://mcvey.org/cam/?p=191</guid>
		<description><![CDATA[If you ever catch yourself messing around with jQuery and are trying to make JSONP calls using .getJSON(), just remember that since you&#8217;re (probably) making a cross-domain request, the .error()<br/><a href="http://mcvey.org/cam/web-developement/jquery-and-jsonp-shenanigans/" class="more">Read More &#187;</a>]]></description>
				<content:encoded><![CDATA[<p>If you ever catch yourself messing around with jQuery and are trying to make JSONP calls using <code>.getJSON()</code>, just remember that since you&#8217;re (probably) making a cross-domain request, the <code>.error()</code> handler is not thrown. Which means, if you have any control over the uri that is being called, DON&#8217;T name the response &#8220;Error&#8221; when there&#8217;s a problem as you&#8217;ll never see it.</p>
<p>I was making this call:<code><br />
$.getJSON('//remotedomain.com/api/?x=' + someInput + '&amp;callback=?', function(data){…}</code></p>
<p>and the execution was skipping right over the code in that block, given a response from the server of:<code><br />
'[{"Error": "Some problem happened"}]'</code></p>
<p>In the end, the solution was to change the error message from the server from saying &#8220;Error&#8221; to something else, e.g.:<code><br />
'[{"Problem": "Some problem happened"}]'</code></p>
<p>Hope that helps someone out and saves them the 2 hours I just lost. Though I guess I did learn something new!</p>
<p>[Note: this refers to jQuery 1.7.2]</p>
]]></content:encoded>
			<wfw:commentRss>http://mcvey.org/cam/web-developement/jquery-and-jsonp-shenanigans/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Loopy Deux</title>
		<link>http://mcvey.org/cam/projects/pedals/loopy-deux/</link>
		<comments>http://mcvey.org/cam/projects/pedals/loopy-deux/#comments</comments>
		<pubDate>Fri, 10 Jun 2011 23:04:02 +0000</pubDate>
		<dc:creator>Cam</dc:creator>
				<category><![CDATA[Pedals]]></category>
		<category><![CDATA[loopy deux]]></category>
		<category><![CDATA[pedals]]></category>
		<category><![CDATA[soldertime]]></category>

		<guid isPermaLink="false">http://mcvey.org/cam/?p=138</guid>
		<description><![CDATA[A good friend of mine was talking about his guitar pedal board and some issues he was having with a couple of pedals on there. I offered to have a<br/><a href="http://mcvey.org/cam/projects/pedals/loopy-deux/" class="more">Read More &#187;</a>]]></description>
				<content:encoded><![CDATA[<p>A good friend of mine was talking about his guitar pedal board and some issues he was having with a couple of pedals on there. I offered to have a look. Instead of raking around in the guts of his decades-old pedal to make it true bypass, I figured it would be easier to construct something that would allow him to leave his pedal on all the time, but to completely remove it from the audio signal when not needed. I sat down and sketched out an idea that I thought would work and then proceeded to get the parts and assemble it.</p>
<p>THEN I had the bright idea of checking online to see if anyone else had done such a thing and what, if anything, I had missed in my design. Of course, plenty of folks make these type of devices all the time, so no invention here. Ah well!</p>
<p>Well all the stuff arrived and I pulled it together over a week or so &#8212; an hour here, an afternoon there &#8212; and the Loopy Deux was born. I named &#8220;Loopy Deux&#8221; because it loops and there&#8217;s two of them. I had &#8220;Loopy Doo&#8221; in my head and realised that &#8220;doo&#8221; (deux) in French means &#8220;two&#8221;, so the name stuck! I learned some things through it and had to assemble a number of tools to produce it which will come in handy for the next two projects being born out of this one.</p>
<p>The nice thing about this pedal is that it solves more than one problem. It&#8217;s great for removing a particularly noisy or tone-sucking pedal out of the audio signal, but the other nice thing is that it can help you set up several pedals into a particular sound by allowing you to switch them all off or on with a single switch instead of dancing around, trying to get them all switched as fast as possible.</p>
<p>I have some ideas on additional features that would make the pedal even more useful (buffers, blend pots, etc.), but that will have to wait until version deux!</p>
<p>Here&#8217;s some photos of the various stages.</p>

<a href='http://mcvey.org/cam/projects/pedals/loopy-deux/attachment/1/' title='Bags Of Bits'><img width="150" height="150" src="http://mcvey.org/cam/wp-content/uploads/2011/06/1-150x150.jpg" class="attachment-thumbnail" alt="Bags Of Bits" /></a>
<a href='http://mcvey.org/cam/projects/pedals/loopy-deux/attachment/2/' title='Prototype Started'><img width="150" height="150" src="http://mcvey.org/cam/wp-content/uploads/2011/06/2-150x150.jpg" class="attachment-thumbnail" alt="Prototype Started" /></a>
<a href='http://mcvey.org/cam/projects/pedals/loopy-deux/attachment/3/' title='Prototype Drilled'><img width="150" height="150" src="http://mcvey.org/cam/wp-content/uploads/2011/06/3-150x150.jpg" class="attachment-thumbnail" alt="Prototype Drilled" /></a>
<a href='http://mcvey.org/cam/projects/pedals/loopy-deux/attachment/4/' title='Prototype Assembled'><img width="150" height="150" src="http://mcvey.org/cam/wp-content/uploads/2011/06/4-150x150.jpg" class="attachment-thumbnail" alt="Prototype Assembled" /></a>
<a href='http://mcvey.org/cam/projects/pedals/loopy-deux/attachment/5/' title='Prototype Gut Shot'><img width="150" height="150" src="http://mcvey.org/cam/wp-content/uploads/2011/06/5-150x150.jpg" class="attachment-thumbnail" alt="Prototype Gut Shot" /></a>
<a href='http://mcvey.org/cam/projects/pedals/loopy-deux/attachment/6/' title='The Prototype powered up and working'><img width="150" height="150" src="http://mcvey.org/cam/wp-content/uploads/2011/06/6-150x150.jpg" class="attachment-thumbnail" alt="The Prototype powered up and working" /></a>
<a href='http://mcvey.org/cam/projects/pedals/loopy-deux/attachment/7/' title='The production model completed'><img width="150" height="150" src="http://mcvey.org/cam/wp-content/uploads/2011/06/7-150x150.jpg" class="attachment-thumbnail" alt="The production model completed" /></a>
<a href='http://mcvey.org/cam/projects/pedals/loopy-deux/attachment/8/' title='Production unit, alternate angle'><img width="150" height="150" src="http://mcvey.org/cam/wp-content/uploads/2011/06/8-150x150.jpg" class="attachment-thumbnail" alt="Production unit, alternate angle" /></a>

<p>By the way, if you are interested in getting something similar made, let me know &#8212; I&#8217;m always up for a challenge!</p>
]]></content:encoded>
			<wfw:commentRss>http://mcvey.org/cam/projects/pedals/loopy-deux/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Change Changes Things</title>
		<link>http://mcvey.org/cam/daily-life/change-changes-things/</link>
		<comments>http://mcvey.org/cam/daily-life/change-changes-things/#comments</comments>
		<pubDate>Fri, 29 Oct 2010 08:53:02 +0000</pubDate>
		<dc:creator>Cam</dc:creator>
				<category><![CDATA[Daily Life]]></category>
		<category><![CDATA[Thoughts]]></category>

		<guid isPermaLink="false">http://mcvey.org/cam/?p=92</guid>
		<description><![CDATA[So it turns out that when you go through changes, all sorts of things change.]]></description>
				<content:encoded><![CDATA[<p>Buses, they say, take an age to arrive and then all appear in a bunch together. And so it seems with Change in my life. Of course, we all deal with change as a matter of day-to-day living. There&#8217;s nothing unusual about that. The Change that I&#8217;m referring to here is the big changes in life and, more specifically, when those changes come along together. About four years ago, I had to deal with the arrival of my first-born child, the purchase of my first house, the death of my father, being made redundant, and starting my first business &mdash; all in the space of a few months. It was tough, but in a way that you only fully realise after the fact. I got through it, mostly with the aid of faith, friends, prayer and time.</p>
<p>In one way, common sense says spread out the unheaval. Don&#8217;t rock the family boat too much at one time. Take the hits one at a time to disperse the pain. I&#8217;m not so sure though &mdash; I feel all at once is perhaps the best way. Just throw it all at me in a one&#8217;r and, &#8220;setting my face like flint&#8221;, I&#8217;ll get through it. Being in a constant state of big change would be a hard way to live. Seasons of constance and short storms of massive change perhaps suit me better.</p>
<p>That&#8217;s just theory, of course. I have no way of really knowing as I&#8217;ve never really had big changes spread out and, to bring us up to date, it looks like another storm is brewing. Changes in housing, church, job, income and spiritual climate has me wide-eyed. I&#8217;m faced with the prospect of all this change like one sitting at the front of a rollercoaster at the initial ratching up. Infact, I&#8217;m at the top, faced with the reality of what this all means, and the immediacy of it makes for a big inhale and the gulp and tightened grip before the big fall at the start of the ride.</p>
<p>But I&#8217;m learning to lean; I&#8217;m learning to trust. I&#8217;m getting better at seeing this stuff for what it is. I&#8217;m learning to marry up my understanding with my own circumstances. I feel more confident that everything will be alright. In fact, if I navigate in step with Him and remain in Him, I can come out of this much the richer. The opportunity for learning and growth is compelling.</p>
<p>So I say bring it on! All the trouble I see brewing, when viewed from this perspective, just become bigger examples of the &#8220;change is good&#8221; way-of-life I so espouse. It&#8217;s just that there&#8217;s more on the line now. But, surely, that means the reward is that much greater.</p>
]]></content:encoded>
			<wfw:commentRss>http://mcvey.org/cam/daily-life/change-changes-things/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Help us keep on truckin&#8217;!</title>
		<link>http://mcvey.org/cam/daily-life/help-us-keep-on-truckin/</link>
		<comments>http://mcvey.org/cam/daily-life/help-us-keep-on-truckin/#comments</comments>
		<pubDate>Wed, 13 Oct 2010 22:05:08 +0000</pubDate>
		<dc:creator>Cam</dc:creator>
				<category><![CDATA[Daily Life]]></category>

		<guid isPermaLink="false">http://mcvey.org/cam/?p=77</guid>
		<description><![CDATA[The McVey family needs your help!]]></description>
				<content:encoded><![CDATA[<p>Since the beginning of August this year, my family and I have been &mdash; to use a well-worn phrase &mdash; &#8220;living by faith&#8221; which means, basically, trusting God to meet our every need. Of course, barring creative miracles involving crisp new bank notes, this means He uses the members of His kingdom, asking them to be willing to be &#8220;releasers of finance&#8221;! Which brings us directly to the purpose of this post which is to draw your attention to the fact that we can now be directly supported (by you, even!) via the good folks over at Stewardship, using the forms available on our &#8220;<a href="http://mcvey.org/support/">Support Us</a>&#8221; page.</p>
<p>Please do consider it. We feel we&#8217;re doing what we&#8217;re called to do, and that it is very relevant and important work. If you fell led, please pray and see what your Dad has on His heart for you to do.</p>
<p>Thank you!</p>
]]></content:encoded>
			<wfw:commentRss>http://mcvey.org/cam/daily-life/help-us-keep-on-truckin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Independence Of Scotland</title>
		<link>http://mcvey.org/cam/thoughts/the-independence-of-scotland/</link>
		<comments>http://mcvey.org/cam/thoughts/the-independence-of-scotland/#comments</comments>
		<pubDate>Wed, 09 Jun 2010 14:33:55 +0000</pubDate>
		<dc:creator>Cam</dc:creator>
				<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[Change]]></category>
		<category><![CDATA[Changing A Nation]]></category>
		<category><![CDATA[Mindsets]]></category>
		<category><![CDATA[Scotland]]></category>

		<guid isPermaLink="false">http://mcvey.org/cam/?p=70</guid>
		<description><![CDATA[I believe that, as a people, we are sufficiently different from the rest of the UK that, over time and in conjunction with the work of the Holy Spirit, our differences will start to pull us in a direction that is away from the rest of the UK.]]></description>
				<content:encoded><![CDATA[<p>Scotland has a reputation, within Scotland at least, of being an independent nation. And yet, because we&#8217;re not, there&#8217;s a sense of oppression hanging over us and the nation. And whether that oppression is perceived in the political, cultural, or spiritual realms, there is a common understanding that true freedom does not exist. Perhaps most alarmingly, that sense of oppression is being reinforced as successive generations remain under it. Worst of all, as sons and daughters are raised in that atmosphere, it becomes our identity. It&#8217;s what we understand. It&#8217;s who we are.</p>
<p>However, I feel that change is coming. Importantly, though, I don&#8217;t  think it will necessarily come through a coming out from The Union. I  believe that, as a people, we are sufficiently different from the rest  of the UK that, over time and in conjunction with the work of the Holy  Spirit, our differences will start to pull us in a direction that is  away from the rest of the UK. There may be many reasons why we should or  should not be &#8216;in union&#8217;, but if God is calling this nation to have a  more Godly character and value system — and I believe He is — and we  move with it, we will automatically have an independence far more  important than the political status of this country.</p>
<p>The release of the Lockerbie bomber was so significant. It was a wee nation showing mercy despite great pressure from the UK and US governments. And, while I have sympathy for the families of those affected by the bombing, and the correctness of the decision from a legal position can be forever debated, the importance to building the identity of Scotland is huge. It showed the way we can become independent. I don&#8217;t just mean going against the flow for the sake of political gain, but coming into alignment with biblical principals, particularly when that is not the norm.</p>
<p>So, here&#8217;s the point: if Scotland is to become independent, I believe  it&#8217;ll be, at first, through a spiritual shift and then, if ever, a  political one. So, Body of Christ in Scotland, now is the time! Start  being an influencer. Start praying for your local area and the people in  it. Pray for God&#8217;s will to be done. Ask Him how you, personally, can  bring that change in your area of influence. Stop believing the lie that  you have no influence &#8211; you have as much as you want. And stop believing  the lie that you don&#8217;t want influence! You are called to be a light and  to do that you need to stand out and not hide. Come on, Church. It&#8217;s not  ever going to happen by leaving it to the Spiritual Superstars! Imagine  how the nation would look, even overnight, if the whole church in  Scotland woke up and realised who they are and what power and authority  they carry and what they are called to do with it. A nation so  transformed, it would be independent!</p>
]]></content:encoded>
			<wfw:commentRss>http://mcvey.org/cam/thoughts/the-independence-of-scotland/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Creating Begets Creativity</title>
		<link>http://mcvey.org/cam/daily-life/creating-begets-creativity/</link>
		<comments>http://mcvey.org/cam/daily-life/creating-begets-creativity/#comments</comments>
		<pubDate>Fri, 09 Apr 2010 17:31:54 +0000</pubDate>
		<dc:creator>Cam</dc:creator>
				<category><![CDATA[Daily Life]]></category>
		<category><![CDATA[Creativity]]></category>
		<category><![CDATA[Message]]></category>

		<guid isPermaLink="false">http://mcvey.org/cam/?p=59</guid>
		<description><![CDATA[A wee thought I had about how being creative can unlock new levels of creativity in you.]]></description>
				<content:encoded><![CDATA[<p>So, I had great fun being on the radio last night. The lovely Lorna Farrell invited <a title="James Renwick" href="http://desperateforthemore.com/" target="_blank">James Renwick</a>, the <a title="Healing Rooms Scotland" href="http://www.healingrooms-scotland.com/" target="_blank">Healing Rooms</a> intern, and myself onto her evening show on <a title="Revival FM" href="http://revival.fm/" target="_blank">Revival FM</a> to talk about Healing Rooms and healing in general. A touch nervous as I set off for the station, but armed with a raft of website print outs, I met with James at Starbucks to plan out who was going to cover what.</p>
<p>Of course, as soon as we got settled in the studio, Lorna immediately put us both at ease and the conversation flowed from there. Plenty of laughs, a lot of good talk about healing and what God is doing in Scotland in this day, and some prayer for listeners who got in contact made for a quick two hours which went pretty well!</p>
<p>It got me thinking though &#8212; how great it is that three people talking about something they&#8217;re into can be entertaining for others. That coming together and talking is a very simple form of creation. Lorna created entertainment just by asking us interesting questions and others benefited from that act of creation. It also, for me, highlights one of the most important aspects of creativity: that it causes new things to exist simple through a natural, built-in, aspect of our humanity. That&#8217;s just crazy to me. But it makes perfect sense. If we are children of the God that defines creativity &#8212; all creation is His work &#8212; and we are made in His image and likeness, that means we too are creative in the same manner. My pastor, Jake Chadney, writes more eloquently and convincingly about this in an article called <a title="Creative Growth by Jake Chadney" href="http://www.momentumart.net/grow/articles/3-creative-growth" target="_blank">&#8220;Creative Growth&#8221;</a>.</p>
<p>We as a church have had a couple of weekends together exploring creativity for creativity&#8217;s sake. We called them Creative Discovery Weekends and there was a good selection of different things to try. The point was to engage in the creative process, not to do &#8216;good art&#8217;. I feel the distinction between arty and creative can be summed up like this: that art is there to be judged and therefore, to some extent, can be good or bad. The creative process, however, is just that &#8212; a process. It is neither good nor bad, attractive or ugly. It is the exercise of taking a base substance &#8212; clay, paint, ideas, blank film, a musical instrument &#8212; and producing something. And that act of birthing something new is exciting!</p>
<p>There is <a title="Modern Maturity: Create More, Consume Less" href="http://artofmanliness.com/2010/04/06/modern-maturity-create-more-consume-less/" target="_blank">an intriguing article</a> that I read the other day that states this:</p>
<blockquote><p>The labor one performs transforms something in the environment, which in  turn transforms you.  The act of creation shapes you as a man, refines  your sensibilities, improves your strengths, hones your concentration,  and builds your character. Passive consumption leaves you untouched and  unchanged. Consumptions breeds indifference; creation begets  empowerment.</p></blockquote>
<p>Wow! The act of creativity can expand your whole character? Now you have my attention!</p>
<p>And that, I suppose, is a great manifesto for the existence of this blog. I hope that the act of occasionally sitting down and forming a thought or making an observation or a connection between things will, in turn, open up more creativity in me. I want to grow in this area. I want to be creative in my thinking because I believe we&#8217;re coming into an age where the old arguments and wisdom will no longer cut it. That we will need to have a creative capacity to make the connections between what God is doing and what man is struggling with.</p>
<p>So, although this entry has meandered a bit, it has awakened in me just a touch more creativity, and that&#8217;s good enough for me!</p>
]]></content:encoded>
			<wfw:commentRss>http://mcvey.org/cam/daily-life/creating-begets-creativity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Good Friends</title>
		<link>http://mcvey.org/cam/daily-life/good-friends/</link>
		<comments>http://mcvey.org/cam/daily-life/good-friends/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 17:19:57 +0000</pubDate>
		<dc:creator>Cam</dc:creator>
				<category><![CDATA[Daily Life]]></category>
		<category><![CDATA[Change]]></category>
		<category><![CDATA[Friendship]]></category>

		<guid isPermaLink="false">http://mcvey.org/cam/?p=47</guid>
		<description><![CDATA[I&#8217;ve been blessed with good friends my whole life. I&#8217;m the kind of person that doesn&#8217;t tend to have loads of friends at one time, but one or two very<br/><a href="http://mcvey.org/cam/daily-life/good-friends/" class="more">Read More &#187;</a>]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve been blessed with good friends my whole life. I&#8217;m the kind of person that doesn&#8217;t tend to have loads of friends at one time, but one or two very good friends, comrades, compadres to share the journey with.</p>
<p>So for me to have three good buddies at one time is unusual, and that we all shared a common interest just made our time together cool. <a title="Ben Monteith" href="http://www.facebook.com/group.php?gid=323370158309" target="_blank">Ben</a>, <a title="Dan Chadney" href="http://danchadney.com/" target="_blank">Dan</a> and <a title="Allan McKinlay" href="http://www.allanmckinlay.com/" target="_blank">Allan</a> and I have been in a band together for the last 9 months or so, but it&#8217;s all come to an amicable end.</p>
<p>We were never entirely sure how long term the band was going to be or what it would look like. I was personally just enjoying regularly hooking up with these fine men, hanging out and joking around, and sometimes playing music together. It took us a few months to see it for what it was: loads of fun together.</p>
<p>With Dan&#8217;s decision to move back to the USA, and with the knowledge that there is a full-time worship leading call on Ben &amp; Allan&#8217;s lives, and me knowing that music is not my focus for now, we are all done as a band. We played our last gig at Dan&#8217;s <a title="Glory To Glory, Dan's new CD" href="http://danchadney.com/?page_id=3" target="_blank">recent CD</a> launch night which was fitting as the CD was the only tangible output of the band, it being the main focus for the whole time we&#8217;ve been together.</p>
<p>So, this post is a wee tribute to three awesome men of God &#8212; legends, even &#8212; who have been great fun to walk with.</p>
<p>Dan: thank you for all your encouragement in the area of music, my ability, and the opportunity to take part in the creation of the CD was awesome. I pray your journey is just beginning, that everthing so far is the warmup lap, and now you are heading off for the real thing. Wherever you end up will be a blessed place indeed. You are a very very good man; be everything you can be. Do it!</p>
<p>Ben: you are such a brilliant, brilliant musician. I think you greatly underestimate your skills, but you are so inventive, so precise, so passionate! Thank you for always being the first to pray, the first to encourage and the one who always knows the funny thing to say, even if it is just over the line! Pursue your dreams, mate!</p>
<p>Allan: you are SO gifted, and you are so humble with it. I&#8217;m so glad you have known from an early stage what your gifting is and how you&#8217;ve been faithful to pursue it. You have me in stitches, especially when you and Ben are messing around, and you are so encouraging. You too need to go for it in a big way and watch how God blesses it.</p>
<p>All three of you are very talented, gifted and annointed musicians, humble and funny, loyal and encouraging. I am blessed, and my life is enriched, by knowing you.</p>
<p>The band is dead, but our friendships live on. Amen!</p>
]]></content:encoded>
			<wfw:commentRss>http://mcvey.org/cam/daily-life/good-friends/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Relationship For The Lost</title>
		<link>http://mcvey.org/cam/teachings/relationship-for-the-lost/</link>
		<comments>http://mcvey.org/cam/teachings/relationship-for-the-lost/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 12:00:32 +0000</pubDate>
		<dc:creator>Cam</dc:creator>
				<category><![CDATA[Teachings]]></category>
		<category><![CDATA[Effective Lifestyle]]></category>
		<category><![CDATA[Relationship]]></category>
		<category><![CDATA[Teaching]]></category>
		<category><![CDATA[The Lost]]></category>
		<category><![CDATA[Word]]></category>

		<guid isPermaLink="false">http://mcvey.org/cam/?p=14</guid>
		<description><![CDATA[This is a wee teaching I put together recently on how being in close relationship with God leads to a more effective life and why.]]></description>
				<content:encoded><![CDATA[<p>God wants relationship with us. This is not new information – we&#8217;ve been hearing of the call to intimacy build and build recently. However, for me the focus of that message has always been about falling in Love with our Father and our Saviour. This is so important and is fundamental to our growth, our anointing and our giftings, but God had been speaking to me recently about a practical side-effect of this intimacy.</p>
<p>How can we be most effective? How can God make best use of our willingness to serve?</p>
<p style="padding-left: 30px;"><em>Proverbs 16:9 says, &#8220;A man’s heart plans his way, but the Lord determines his steps.&#8221;</em></p>
<p>We have set our sights on doing God&#8217;s will, but it is Father God that guides where our feet must go and what our actions must be. For those of us who have decided to make the growth of His Kingdom our primary concern, this fact is absolutely key to our success. We know we want to serve Him and to do His will, and we position ourselves for this, but we must learn to rely on His continual guidance through each day of our lives if we are to have the greatest impact possible.</p>
<p>In the Old Testament, for a prophet to hear God’s voice was a big event and sometimes we are waiting for the big unmistakable voice of God to reverberate through our heads, dictating our next big move. However, we are under the new covenant therefore we have an on-going relationship with the Holy Spirit where we can hear His voice through the day, every day and, like Brother Lawrence, I think we need to pursue “The Practice of the Presence of God” to hear that still small voice, to know and understand His ways.</p>
<p>God doesn&#8217;t play by the rules. So much of Jesus&#8217; ministry was shocking both theologically and culturally. The Father sent Him into the company of people representing the untouchables of Jewish society. I think Jesus must have been in very close communication with Father to be so determined, to have the guts to revolutionise society&#8217;s concept of who was acceptable. He must have been aware of Father God directing his steps so precisely, allowing His day to be directed so completely. So for us to go beyond our own barriers of what we perceive to be ‘right’, we will need that precise guidance too.</p>
<p>I saw this as I was reading the story of Zacchaeus [Luke 19: 1-10]:</p>
<p style="padding-left: 30px;"><em>1 Jesus was passing through Jericho. 2 A man named Zacchaeus was there. He was the director of tax collectors, and he was rich. 3 He tried to see who Jesus was. But Zacchaeus was a small man, and he couldn’t see Jesus because of the crowd. 4 So Zacchaeus ran ahead and climbed a fig tree to see Jesus, who was coming that way.</em></p>
<p style="padding-left: 30px;"><em>5 When Jesus came to the tree, he looked up and said, “Zacchaeus, come down! I must stay at your house today.”</em></p>
<p style="padding-left: 30px;"><em>6 Zacchaeus came down and was glad to welcome Jesus into his home. 7 But the people who saw this began to express disapproval. They said, “He went to be the guest of a sinner.”</em></p>
<p style="padding-left: 30px;"><em>8 Later, at dinner, Zacchaeus stood up and said to the Lord, “Lord, I’ll give half of my property to the poor. I’ll pay four times as much as I owe to those I have cheated in any way.”</em></p>
<p style="padding-left: 30px;"><em>9 Then Jesus said to Zacchaeus, “You and your family have been saved today. You’ve shown that you, too, are one of Abraham’s descendants.</em></p>
<p style="padding-left: 30px;"><em>10 Indeed, the Son of Man has come to seek and to save people who are lost.”</em></p>
<p>Look at verse 5. Jesus is in Jericho, not His hometown, so it&#8217;s a good bet that he doesn&#8217;t actually know of Zacchaeus either by name or by sight. But He speaks directly to Him, calling him by name, as if they are good friends. He is being directed by Father God to a man that is ready to hear. Zacchaeus&#8217; response is telling: he was glad to welcome him and, further down, his life is so transformed that he gives up half of all his wealth and wants to repay fourfold to anyone he has cheated.</p>
<p>The crowd did not approve of who Jesus wanted to hang out with, but the fruit of the encounter was a whole family turned around: saved, healed &#038; delivered. And the funny thing is that this scornful crowd will be treated more fairly by the transformation of this reformed Tax Collector!</p>
<p>I believe Zacchaeus was ripe for the picking. I believe Father God directed Jesus to encounter him at just the right time and place and in just the right way to unlock that wee man&#8217;s heart.</p>
<p>Think about the heavily afflicted man living in tombs on the shore of Galilee. It says in Mark 5 that Jesus got into the boat to cross the lake. When they got there, the man that lived there came out to meet Him and, once Jesus had sent all the demons into the herd of pigs, He said His farewells and got back into the boat and crossed the lake again. The only reason for the trip was to set this man free. He knew why and where He was going. Father God was directing His steps and that is why no storm on a lake stopped Him.</p>
<p>Think about the woman at the well in John 4. We know the story well: a woman living a sinful life meets Jesus who speaks to her of her sin. She changes the subject, not wanting to speak about her past, and Jesus chooses this supposedly unclean woman to reveal His true identity. As we know, the well was in a town called Sychar, in Samaria. The normal route for Jews between Judea and Galilee was the long way around, avoiding Samaria as there was a lot of hatred between the Jews and the Samaritans. It seems the only reason He went this way was to have a meeting with a thirsty woman who needed someone to cross the racial divide to bring her a never-ending drink of life.</p>
<p>And that is how He wants to move through us. He wants us to be in close, intimate relationship with Him so He can direct us in the moment-by-moment of our days. He wants us to so know His voice that we have a surety to our actions that will allow us to press through the storms the enemy would bring. He’s looking for a people that know His heart and that are willing to be changed by taking on His compassion for the untouchables of society. He wants to take that willing heart we have and guide our steps to reach a desperate and needy world, unlocking hearts one-by-one, each in the right time and place, in just the right way.</p>
]]></content:encoded>
			<wfw:commentRss>http://mcvey.org/cam/teachings/relationship-for-the-lost/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
