<?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>ChurchIT - Supporting ministry with IT &#187; Software</title>
	<atom:link href="http://www.churchit.co.uk/category/software/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.churchit.co.uk</link>
	<description>Supporting ministry with IT</description>
	<lastBuildDate>Wed, 28 Sep 2011 20:21:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>If PHP were British</title>
		<link>http://www.churchit.co.uk/2011/08/if-php-were-british/</link>
		<comments>http://www.churchit.co.uk/2011/08/if-php-were-british/#comments</comments>
		<pubDate>Wed, 24 Aug 2011 21:26:58 +0000</pubDate>
		<dc:creator>TimSmith</dc:creator>
				<category><![CDATA[humour]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.churchit.co.uk/?p=353</guid>
		<description><![CDATA[I&#8217;d have to concede that I&#8217;m not really a proper programmer, but I know enough that this reimagining of PHP made me laugh out loud no fewer than four times in a busy office. Replacing if and else with perchance and otherwise is an act of genius, and there&#8217;s more if you just click on [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;d have to concede that I&#8217;m not really a proper programmer, but I know enough that this reimagining of PHP made me laugh out loud no fewer than four times in a busy office.</p>
<p>Replacing if and else with perchance and otherwise is an act of genius, and there&#8217;s more if you just <a title="If PHP were British" href="http://www.addedbytes.com/blog/if-php-were-british/" target="_blank">click on this link</a>.</p>
<p>HT to the <a title="The Codeproject website" href="http://www.codeproject.com/" target="_blank">Codeproject</a> newsletter. I highly recommend it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.churchit.co.uk/2011/08/if-php-were-british/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A simple PHP widget for WordPress</title>
		<link>http://www.churchit.co.uk/2011/08/a-simple-php-widget-for-wordpress/</link>
		<comments>http://www.churchit.co.uk/2011/08/a-simple-php-widget-for-wordpress/#comments</comments>
		<pubDate>Thu, 11 Aug 2011 22:07:21 +0000</pubDate>
		<dc:creator>TimSmith</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[webdesign]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.churchit.co.uk/?p=341</guid>
		<description><![CDATA[So my job this evening was to recreate a little PHP script I wrote a little while ago that would automatically display the streets that a church is praying for in any given month. It&#8217;s actually very simple to do, though you will need to install a plugin in WordPress as the standard Text widget [...]]]></description>
			<content:encoded><![CDATA[<p>So my job this evening was to recreate a little PHP script I wrote a little while ago that would automatically display the streets that a church is praying for in any given month. It&#8217;s actually very simple to do, though you will need to install a plugin in WordPress as the standard Text widget doesn&#8217;t work with PHP.</p>
<h1><span id="more-341"></span><span>Installing the widget</span></h1>
<p><span>Click on Plugins and then Add new. Search for Executable PHP widget by Otto. Once installed go to the Widgets page. Drag and drop PHP code to the desired sidebar. Enter a title.</span></p>
<h1>The Code</h1>
<p><code>&lt;p&gt;This month we are praying for:&lt;br/&gt;<br />
&lt;?php<br />
$prayermonth = date("m");</code></p>
<p><code>switch ($prayermonth)<br />
{<br />
case 1:<br />
echo "January Streets";<br />
break;<br />
case 2:<br />
echo "February Streets";<br />
break;<br />
default:<br />
echo "everywhere";<br />
}<br />
?&gt;<br />
&lt;/p&gt;</code></p>
<p>You don&#8217;t really need to see all the months to get the idea of what&#8217;s going on.</p>
<h1>Editing month data</h1>
<p>Look for the numbers that correspond with the month number and edit the text within the speech marks. Don’t delete the speech marks or the widget will display an error message. In fact it is a good idea to copy all the text in this box to a separate text editor (<a title="My review of Notepad++ on Computeractive.co.uk" href="http://www.computeractive.co.uk/ca/download-review/1909010/notepad-583" target="_blank">with my standard plug for Notepad++</a>) and leave it there until you are sure everything is working.</p>
<p>When you have finished editing the streets, click on the Save button at the bottom of the widget. A small circle will appear while it is saving. This is the only sign that anything is happening. Before doing anything else, open another tab in your browser and check that it is working. If it is you can move on to something else. Otherwise copy and paste the text from the text editor back into widget box and start again (You did make that backup step didn’t you?)</p>
<h1>How it works</h1>
<p>This is about as simple as it gets with PHP and it’s a good example of how PHP and HTML work together. Remember that PHP is executed by the web server not the browser (in contrast to Javascript), so you won’t see any of the PHP code if you look at the source code of the home page. Here goes&#8230;</p>
<p><strong>&lt;p&gt;This month we are praying for:&lt;br/&gt;<br />
</strong>Well this is pretty straightforward. We start the paragraph, insert the text that never changes ending with a line break</p>
<p><strong>&lt;?php<br />
</strong>This tells WordPress (and the web server) that some PHP is coming up</p>
<p><strong>$prayermonth = date(&#8220;m&#8221;);<br />
</strong>The creates a variable called prayermonth. The $ symbol marks this as a variable. Rather than give it a single value, we use the date function to give the current month number with “m”. Note the ; at the end of the line. As an aside, I’m assuming that month is a reserved word as that didn’t work.</p>
<p><strong>switch ($prayermonth)<br />
{<br />
</strong>This is the clever bit. A switch statement is like an If &#8230; ElseIf&#8230; statement but a lot easier to work with when there are lots of variables; twelve in this case. It looks at $prayermonth and then does different things depending on what the variable contains. For example&#8230;.</p>
<p><strong>case 1:<br />
echo &#8220;January Streets&#8221;;<br />
break;<br />
</strong>This is what happens if prayermonth contains 1. It prints January Streets into the widget. That’s what you’ll see in the web browser.The break command tells the server to skip to the end of the switch statement</p>
<p><strong>default:<br />
echo &#8220;All of Copthorne&#8221;;<br />
</strong>A good idea to include, the default case is what is displayed if there is no matching case. That’s unlikely with this script but that’s no reason not to foster good habits.</p>
<p><strong>}<br />
?&gt;<br />
&lt;/p&gt;<br />
</strong>The { finishes the Switch statement. The ?&gt; ends the PHP code and the &lt;/p&gt; closes the paragraph</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.churchit.co.uk/2011/08/a-simple-php-widget-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easy database administration</title>
		<link>http://www.churchit.co.uk/2010/10/easy-database-administration/</link>
		<comments>http://www.churchit.co.uk/2010/10/easy-database-administration/#comments</comments>
		<pubDate>Mon, 18 Oct 2010 21:33:59 +0000</pubDate>
		<dc:creator>TimSmith</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.churchit.co.uk/?p=308</guid>
		<description><![CDATA[This was a quite exciting find. It&#8217;s a plugin for OpenOffice that gives it the ability to access MySQL databases online. Databases for websites such as this one are something I regard as a means to an end rather than something I&#8217;m an expert in. The usual tool, phpMyadmin, is very powerful but not always [...]]]></description>
			<content:encoded><![CDATA[<p>This was a quite exciting find. It&#8217;s a plugin for OpenOffice that gives it the ability to access MySQL databases online.</p>
<p>Databases for websites such as this one are something I regard as a means to an end rather than something I&#8217;m an expert in. The usual tool, <a href="http://www.phpmyadmin.net/home_page/index.php">phpMyadmin</a>, is very powerful but not always the  most friendly to the newcomer. An alternative that works with a familiar program got me quite excited.</p>
<p>Installation is as simple as installing any other OpenOffice extension although you will need to do this from a different program in OpenOffice than Base, unless you are willing to create a database first.</p>
<p>After that, there&#8217;s an option for MySQL in the &#8216;Connect to an existing database&#8217; menu. You can test the connection before finishing the wizard. A useful touch I&#8217;m always pleased to see as it avoids significant frustration in the event of typos.</p>
<p>You can find my day job review and the download link <a title="Computeractive download review of MySQL connector" href="http://www.computeractive.co.uk/computeractive/downloads/2268864/mysql-connector-openoffice-org" target="_self">here</a>.</p>
<p>OK, I probably shouldn&#8217;t get excited about such things, I&#8217;m only human.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.churchit.co.uk/2010/10/easy-database-administration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bible Speaks Today on CD-ROM</title>
		<link>http://www.churchit.co.uk/2010/08/bible-speaks-today-on-cd-rom/</link>
		<comments>http://www.churchit.co.uk/2010/08/bible-speaks-today-on-cd-rom/#comments</comments>
		<pubDate>Mon, 16 Aug 2010 21:17:18 +0000</pubDate>
		<dc:creator>TimSmith</dc:creator>
				<category><![CDATA[sheepdip]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.churchit.co.uk/?p=270</guid>
		<description><![CDATA[Paper has yet to be supplanted by electronic formats, and probably never will be, but electronic versions of books have several advantages that can compliment a physical book collection. The greatest of these is speed of reference and the ability to jump from one text to another without breaking a train of thought. The Bible [...]]]></description>
			<content:encoded><![CDATA[<p>Paper has yet to be supplanted by electronic formats, and probably never will be, but electronic versions of books have several advantages that can compliment a physical book collection. The greatest of these is speed of reference and the ability to jump from one text to another without breaking a train of thought. The Bible Speaks Today on CDROM is an excellent example of this and is a worthwhile investment, even if you have some or all of the physical books.</p>
<p>Installation is simple and includes checking for updates online. Activation is also required. The internet is the simplest way of doing this but it also possible over the phone or by post. We would recommend copying the resources onto the hard disk to use the software without the CD in the drive.<span id="more-270"></span></p>
<p>The library is organised by several different criteria including author, relevant Bible book or subject matter. Books can be accessed as if they were a physical book, open and start reading, or by using some of the more sophisticate tools. The Home page is a quick way of accessing these and includes the Passage Guide. This tool quickly finds all the resources that have been installed for a passage in the bible. It also provides a useful summary of common words in the passage.</p>
<p>When a Bible and commentary are opened together they are linked so that they follow the place in the text of the other. A glowing star shows the position in each window. Translation notes in Bible texts can be quickly accessed by clicking on the superscript letter indicating the note.</p>
<p>The Libonix software offers more beyond these study tools and there are various addins that can be purchased and installed. The Personal Study Tools cost $20 and can be used to create a personal Bible study plan and a daily prayer list. Others include pronunciation guides</p>
<p>It&#8217;s a shame there are not portable versions suitable for use with PDAs or phones as these are a convenient way to read books, or as a quick reference in study groups.</p>
<p>It may seem like paying twice to add this CDROM to a study collection but it really is worth it for bringing the texts of these books together if preparing study material or sermons. If you just want to read the texts, it is still probably best to buy the paper books but this is a great study tool none the less, especially as it can grow with</p>
<p>System Requirements<br />
500Mhz Pentium III (1Ghz recommended)<br />
CD/DVD drive<br />
Microsoft Windows 98/98SE/Me/NT4 (SP6a)/2000/XP/Vista<br />
Internet Explorer 6 or later<br />
192MB memory (512MB recommended)<br />
550MB hard disk space<br />
800&#215;600 display (1024&#215;768 recommended)</p>
<p>First published on <a title="The Sheepdip" href="http://www.thesheepdip.co.uk/" target="_blank">The Sheep Dip</a>,  a Christian-run website offering quality material for church newsletter and magazine editors to use for a small fee.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.churchit.co.uk/2010/08/bible-speaks-today-on-cd-rom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dreamweaver first, and only, impressions</title>
		<link>http://www.churchit.co.uk/2010/03/dreamweaver-first-and-only-impressions/</link>
		<comments>http://www.churchit.co.uk/2010/03/dreamweaver-first-and-only-impressions/#comments</comments>
		<pubDate>Sun, 28 Mar 2010 20:56:43 +0000</pubDate>
		<dc:creator>TimSmith</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.churchit.co.uk/?p=228</guid>
		<description><![CDATA[Why was I throwing myself at the mercy of Adobe&#8217;s automated &#8216;help&#8217; last week? Well I&#8217;ve been helping out moving the church website I used to administer over to a new design and platform. Joomla was just too capable for the parish and was putting people off. Myself included, trying to sort out both sections [...]]]></description>
			<content:encoded><![CDATA[<p>Why was I throwing myself at the mercy of <a href="http://www.adobe.com/uk/">Adobe&#8217;s</a> automated &#8216;help&#8217; last week?</p>
<p>Well I&#8217;ve been helping out moving the church website I used to administer over to a new design and platform. <a href="http://www.joomla.org/">Joomla</a> was just too capable for the parish and was putting people off. Myself included, trying to sort out both sections and categories for a relatively simple site became quite a headache.</p>
<p>Anyway, given the current situation a static website seemed the best plan with Dreamweaver the editor in use. I use <a href="http://www.microsoft.com/expression/products/Web_Overview.aspx">Microsoft Expression Web</a> myself so I sorted out the template first and then had a go at transferring it over.</p>
<p>To my delight it worked very well. The template file, .dwt, was opened without any comment and we got started creating pages very quickly.</p>
<p>Dreamweaver was pretty impressive just in some basic editing over a couple of hours, hence I considered the change. It&#8217;s a shame there&#8217;s no crossgrade path from Expression Web, £400 is just too much to make it a possible buy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.churchit.co.uk/2010/03/dreamweaver-first-and-only-impressions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My first YouTube video!</title>
		<link>http://www.churchit.co.uk/2008/07/my-first-youtube-video/</link>
		<comments>http://www.churchit.co.uk/2008/07/my-first-youtube-video/#comments</comments>
		<pubDate>Wed, 16 Jul 2008 22:15:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Worship]]></category>

		<guid isPermaLink="false">http://www.churchit.co.uk/2008/07/my-first-youtube-video/</guid>
		<description><![CDATA[I&#8217;ve been writing about using software to create music to go with text and images in the Sheepdip, and here&#8217;s my first video. It&#8217;s nothing spectacular but hopefully gives you an idea of what can quickly be achieved using software like Magix Music Maker 14. The music was generated from the samples included with Music [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been writing about using software to create music to go with text and images in the <a href="www.thesheepdip.co.uk/">Sheepdip</a>, and here&#8217;s my first video.</p>
<p>It&#8217;s nothing spectacular but hopefully gives you an idea of what can quickly be achieved using software like Magix Music Maker 14. The music was generated from the samples included with Music Maker, I didn&#8217;t have to play any instruments. That&#8217;s for a later project&#8230;</p>
<p><embed src="http://www.youtube.com/v/ym5hnf84CDU" width="425" height="350" type="application/x-shockwave-flash" /> </p>
<div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:182c72fb-c74f-4420-b772-32c258ff9fb2" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px">Technorati Tags: <a href="http://technorati.com/tags/video" rel="tag">video</a>,<a href="http://technorati.com/tags/magix" rel="tag">magix</a>,<a href="http://technorati.com/tags/musicmaker" rel="tag">musicmaker</a>,<a href="http://technorati.com/tags/ambient" rel="tag">ambient</a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.churchit.co.uk/2008/07/my-first-youtube-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Good samples with MusicTech magazine this month</title>
		<link>http://www.churchit.co.uk/2008/07/good-samples-with-musictech-magazine-this-month/</link>
		<comments>http://www.churchit.co.uk/2008/07/good-samples-with-musictech-magazine-this-month/#comments</comments>
		<pubDate>Wed, 09 Jul 2008 22:54:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Worship]]></category>

		<guid isPermaLink="false">http://www.churchit.co.uk/?p=42</guid>
		<description><![CDATA[I treated myself to a copy of MusicTech this month (it&#8217;s a choice between that, ComputerMusic or Sound on Sound). The decision was largely based on the samples on the cover DVDs. I have to admit that the Summer Chill samples weren&#8217;t really to my taste, though I can&#8217;t fault the sound quality. The Ultimate [...]]]></description>
			<content:encoded><![CDATA[<p>I treated myself to a copy of <a title="The MusicTech magazine homepage" href="http://www.musictechmag.co.uk/">MusicTech </a>this month (it&#8217;s a choice between that, <a title="The Computer Music Magazine homepage" href="http://www.computermusic.co.uk/">ComputerMusic </a>or <a title="The Sound on Sound magazine homepage" href="http://www.soundonsound.com/">Sound on Sound</a>). The decision was largely based on the samples on the cover DVDs.</p>
<p>I have to admit that the Summer Chill samples weren&#8217;t really to my taste, though I can&#8217;t fault the sound quality. The Ultimate Samples Collection Vol 3 was another matter however. Plenty of really good drum samples, both individual drums and patterns.</p>
<p>I&#8217;m looking forward to trying them out with some songs. If you&#8217;re interested I&#8217;m mostly using <a title="More information about Magix Music Maker 14" href="http://www.magix.com/uk/music-maker/">Magix Music Maker 14</a> these days. Very underrated software in my opinion and with some great features for playing live at church. I <a title="My review of Magix Music Maker 12 XXL on the Computeractive website" href="http://www.computeractive.co.uk/computeractive/software/2193137/review-magix-music-maker-xxl">reviewed the previous version</a> last year and thought it was pretty good. It was XXL version that comes with a MIDI/USB keyboard, which I&#8217;m still using.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.churchit.co.uk/2008/07/good-samples-with-musictech-magazine-this-month/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Sharing information with Grou.ps</title>
		<link>http://www.churchit.co.uk/2008/05/sharing-information-with-groups/</link>
		<comments>http://www.churchit.co.uk/2008/05/sharing-information-with-groups/#comments</comments>
		<pubDate>Sat, 17 May 2008 11:39:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Collaboration]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.churchit.co.uk/2008/05/sharing-information-with-groups/</guid>
		<description><![CDATA[This caught my eye in the Blogroll the other day. My first impressions are that Grou.ps is another DIY social networking services, not that that is in any way a bad thing. Setting up collaboration tools is not always easy and can quickly become a big distraction from the job in hand. Registration is free [...]]]></description>
			<content:encoded><![CDATA[<p>This caught my eye in the Blogroll the other day. My first impressions are that <a href="http://grou.ps/introduction.php">Grou.ps</a> is another DIY social networking services, not that that is in any way a bad thing. Setting up collaboration tools is not always easy and can quickly become a big distraction from the job in hand.
<p>Registration is free and only requires an email address
<p>&nbsp;</p>
<p><a href="http://www.churchit.co.uk/wp-content/uploads/2008/05/image.png"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="252" alt="image" src="http://www.churchit.co.uk/wp-content/uploads/2008/05/image-thumb.png" width="423" border="0"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.churchit.co.uk/2008/05/sharing-information-with-groups/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Playing to the same music</title>
		<link>http://www.churchit.co.uk/2008/04/playing-to-the-same-music/</link>
		<comments>http://www.churchit.co.uk/2008/04/playing-to-the-same-music/#comments</comments>
		<pubDate>Sun, 06 Apr 2008 22:21:22 +0000</pubDate>
		<dc:creator>TimSmith</dc:creator>
				<category><![CDATA[OpenSong]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[church]]></category>
		<category><![CDATA[planning]]></category>

		<guid isPermaLink="false">http://www.churchit.co.uk/2008/04/playing-to-the-same-music/</guid>
		<description><![CDATA[As it was an All Age Worship (family) service this morning, I was operating OpenSong as well as the mixer.&#160; Generally quite straightforward as there isn&#8217;t too much to have to react to, apart from some swapping around of radio mics. The only snag was at the end of the service when the words I [...]]]></description>
			<content:encoded><![CDATA[<p>As it was an All Age Worship (family) service this morning, I was operating <a href="http://www.opensong.org/">OpenSong</a> as well as the mixer.&#160; Generally quite straightforward as there isn&#8217;t too much to have to react to, apart from some swapping around of radio mics.</p>
<p>The only snag was at the end of the service when the words I had entered for &#8216;The Spirit Lives to set us free&#8217; turned out to be different from those in the hands of the singers. Luckily we have a second monitor that points towards the music group so they were able to switch to that without any problems.</p>
<p>Being a techie I find myself casting around for a solution that involves some form of electronic wizardry. Perhaps it is time to push harder for internet access in the church.&#160; Then we could have a central place to store information about the service.</p>
<p>Another solution is to run through the service in more detail (or indeed at all) before Sunday, as per the excellent advice to be found in the podcasts of <a href="http://www.creativesynergypodcast.com/">Creative Synergy</a>. As much as I agree however, it is harder for a small parish church with a limited headcount.</p>
<p>Perhaps this also inspires a feature request for OpenSong. A portable version would allow me to carry it around on a USB key so I would always know exactly what is on the notebook. Part of the problem was the service organiser had looked on the notebook for the words but I had copied them straight from Junior Praise that included an extra verse.</p>
<p>Of course, as OpenSong is opensource, there&#8217;s no reason for me not to have a go myself, perhaps it&#8217;s time to stop just lurking in the forum.</p>
<p> Then again, maybe I&#8217;m dwelling too much on the negative. It was only one song, and the rest of the service went without any problems.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.churchit.co.uk/2008/04/playing-to-the-same-music/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thoughts on drumming, programming and church</title>
		<link>http://www.churchit.co.uk/2008/03/thoughts-on-drumming-programming-and-church/</link>
		<comments>http://www.churchit.co.uk/2008/03/thoughts-on-drumming-programming-and-church/#comments</comments>
		<pubDate>Mon, 31 Mar 2008 15:25:05 +0000</pubDate>
		<dc:creator>TimSmith</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Worship]]></category>
		<category><![CDATA[ableton]]></category>
		<category><![CDATA[drumming]]></category>
		<category><![CDATA[live]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://www.churchit.co.uk/?p=23</guid>
		<description><![CDATA[I&#8217;ve been playing around with Ableton Live for a little while now and I&#8217;m very impressed. I&#8217;ll post some more specific comments soon but in the meantime there are some informative posts over at Thoughts on drumming, programming and church . . Also check out some of the videos on the page, especially those of  Abraham Laboriel Jr.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been playing around with Ableton Live for a little while now and I&#8217;m very impressed. I&#8217;ll post some more specific comments soon but in the meantime there are some informative posts over at <a href="http://drummingideas.wordpress.com/" target="_blank">Thoughts on drumming, programming and church . .</a></p>
<p>Also check out some of the videos on the page, especially those of  Abraham Laboriel Jr.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.churchit.co.uk/2008/03/thoughts-on-drumming-programming-and-church/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

