<?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>IT / Web</title>
	<atom:link href="http://insidenorthpoint.org/it/feed/" rel="self" type="application/rss+xml" />
	<link>http://insidenorthpoint.org/it</link>
	<description>A look inside Information Technology at North Point</description>
	<pubDate>Tue, 10 Apr 2012 21:03:16 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Google Fonts and Dynamic CSS Files</title>
		<link>http://insidenorthpoint.org/it/2011/08/16/google-fonts-and-dynamic-css-files/</link>
		<comments>http://insidenorthpoint.org/it/2011/08/16/google-fonts-and-dynamic-css-files/#comments</comments>
		<pubDate>Tue, 16 Aug 2011 15:06:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://insidenorthpoint.org/it/?p=616</guid>
		<description><![CDATA[<p>We recently had to figure out how to use google fonts for a specific page on one of our sites. We did not want to load in a CSS file that would only be needed on one page, so we had to find a way to dynamically load the CSS and thought we&#8217;d share the solution. The script snippet that google included didn&#8217;t work for some reason (perhaps some conflicts with existing scripts on the site), so we found a jQuery solution to load a CSS file when you don&#8217;t want to add code to the &lt;head&gt; for the entire site.</p>
<p><code><br />
&lt;script type="text/javascript"&gt;<br />
/* &lt;![CDATA[ */<br />
var link = $("&lt;link&gt;");<br />
link.attr({<br />
        type: 'text/css',<br />
        rel: 'stylesheet',<br />
        href: 'http://fonts.googleapis.com/css?family=Architects+Daughter'<br />
});<br />
$("head").append( link ); <br />
/* ]]&gt; */<br />
&lt;/script&gt;<br />
</code><br />
Go here (<a href="http://www.google.com/webfonts"><span class="s1">http://www.google.com/webfonts</span></a>) to select the font(s) you want to add, then it gives you the standard &lt;link&gt; you can add to your page if you want it in the head. But if you need to add that inside the &lt;body&gt;, use the above code and just replace the href attribute with the link google gives you.</p>
<p>Then just use CSS as normal:</p>
<p><code><br />
.classWithGoogleFont {<br />
     font-family: 'Architects Daughter', cursive;<br />
}<br />
</code><br />
Enjoy!</p>
]]></description>
			<content:encoded><![CDATA[<p>We recently had to figure out how to use google fonts for a specific page on one of our sites. We did not want to load in a CSS file that would only be needed on one page, so we had to find a way to dynamically load the CSS and thought we&#8217;d share the solution. The script snippet that google included didn&#8217;t work for some reason (perhaps some conflicts with existing scripts on the site), so we found a jQuery solution to load a CSS file when you don&#8217;t want to add code to the &lt;head&gt; for the entire site.</p>
<p><code><br />
&lt;script type="text/javascript"&gt;<br />
/* &lt;![CDATA[ */<br />
var link = $("&lt;link&gt;");<br />
link.attr({<br />
        type: 'text/css',<br />
        rel: 'stylesheet',<br />
        href: 'http://fonts.googleapis.com/css?family=Architects+Daughter'<br />
});<br />
$("head").append( link ); <br />
/* ]]&gt; */<br />
&lt;/script&gt;<br />
</code><br />
Go here (<a href="http://www.google.com/webfonts"><span class="s1">http://www.google.com/webfonts</span></a>) to select the font(s) you want to add, then it gives you the standard &lt;link&gt; you can add to your page if you want it in the head. But if you need to add that inside the &lt;body&gt;, use the above code and just replace the href attribute with the link google gives you.</p>
<p>Then just use CSS as normal:</p>
<p><code><br />
.classWithGoogleFont {<br />
     font-family: 'Architects Daughter', cursive;<br />
}<br />
</code><br />
Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://insidenorthpoint.org/it/2011/08/16/google-fonts-and-dynamic-css-files/feed/</wfw:commentRss>
		</item>
		<item>
		<title>WordPress and Version Control</title>
		<link>http://insidenorthpoint.org/it/2011/01/10/wordpress-and-version-control/</link>
		<comments>http://insidenorthpoint.org/it/2011/01/10/wordpress-and-version-control/#comments</comments>
		<pubDate>Mon, 10 Jan 2011 17:40:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[web]]></category>

		<category><![CDATA[version control]]></category>

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

		<guid isPermaLink="false">http://insidenorthpoint.org/it/?p=605</guid>
		<description><![CDATA[<p><img class="alignright size-full wp-image-609" src="http://insidenorthpoint.org/it/files/2011/01/wp-icon.jpg" alt="wp-icon" width="238" height="212" />One of the things we&#8217;ve been trying to figure out is how to use version control with CMS platforms like WordPress. We had several discussions on whether or not we should place the entire installation under version control, but ultimately decided that would be wasteful and unnecessary. We really only need to consider the themes and plugins that we deploy, but they are very intertwined within the WP folder structure with all of the WP files, image uploads, etc. So we are trying out the layout below and so far it seems to be working well.</p>
<p>We have two scenarios where we use wordpress - one is when we have a static site managed outside of WP and then /blog is our WP blog, and the other (more typical) is where WP is managing the entire site. Since the latter is more common I&#8217;ll address that here.</p>
<p>Our folder structure:</p>
<ul>
<li>{WWW_ROOT}/domain.org
<ul>
<li>plugins</li>
<li>themes</li>
<li>uploads</li>
<li>web</li>
</ul>
</li>
</ul>
<p>The document root for the site is the web folder, and then we can version control the plugins and themes folders. In order to get WordPress to work with this setup I created symbolic links from those folders to their normal location in the wp-content folder:</p>
<blockquote><p>$ cd {WWW_ROOT}/domain.org/web/wp-content</p>
<p>$ ls -l</p>
<p>index.php<br />
plugins -&gt; {WWW_ROOT}/domain.org/plugins<br />
themes -&gt; {WWW_ROOT}/domain.org/themes<br />
uploads -&gt; {WWW_ROOT}/domain.org/uploads</p></blockquote>
<p>The one caveat to this setup is that some WP plugins do not play nicely with those symbolic links, notably the WP-Contact Form plugin. A minor change to that plugins settings fixed that.</p>
<p>More later on how we&#8217;re using Coda and SVN to manage this.</p>
]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-609" src="http://insidenorthpoint.org/it/files/2011/01/wp-icon.jpg" alt="wp-icon" width="238" height="212" />One of the things we&#8217;ve been trying to figure out is how to use version control with CMS platforms like WordPress. We had several discussions on whether or not we should place the entire installation under version control, but ultimately decided that would be wasteful and unnecessary. We really only need to consider the themes and plugins that we deploy, but they are very intertwined within the WP folder structure with all of the WP files, image uploads, etc. So we are trying out the layout below and so far it seems to be working well.</p>
<p>We have two scenarios where we use wordpress - one is when we have a static site managed outside of WP and then /blog is our WP blog, and the other (more typical) is where WP is managing the entire site. Since the latter is more common I&#8217;ll address that here.</p>
<p>Our folder structure:</p>
<ul>
<li>{WWW_ROOT}/domain.org
<ul>
<li>plugins</li>
<li>themes</li>
<li>uploads</li>
<li>web</li>
</ul>
</li>
</ul>
<p>The document root for the site is the web folder, and then we can version control the plugins and themes folders. In order to get WordPress to work with this setup I created symbolic links from those folders to their normal location in the wp-content folder:</p>
<blockquote><p>$ cd {WWW_ROOT}/domain.org/web/wp-content</p>
<p>$ ls -l</p>
<p>index.php<br />
plugins -&gt; {WWW_ROOT}/domain.org/plugins<br />
themes -&gt; {WWW_ROOT}/domain.org/themes<br />
uploads -&gt; {WWW_ROOT}/domain.org/uploads</p></blockquote>
<p>The one caveat to this setup is that some WP plugins do not play nicely with those symbolic links, notably the WP-Contact Form plugin. A minor change to that plugins settings fixed that.</p>
<p>More later on how we&#8217;re using Coda and SVN to manage this.</p>
]]></content:encoded>
			<wfw:commentRss>http://insidenorthpoint.org/it/2011/01/10/wordpress-and-version-control/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Web Design Standards</title>
		<link>http://insidenorthpoint.org/it/2010/11/02/web-design-standards/</link>
		<comments>http://insidenorthpoint.org/it/2010/11/02/web-design-standards/#comments</comments>
		<pubDate>Tue, 02 Nov 2010 18:35:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[IT]]></category>

		<category><![CDATA[Web Team]]></category>

		<guid isPermaLink="false">http://insidenorthpoint.org/it/?p=568</guid>
		<description><![CDATA[<p>One of the awesome things about being on the web team is that we get the opportunity to work with practically every ministry area in our organization. It seems like nearly every ministry has something they want to do with technology or the web. From the weekly Sunday morning routine tasks to the quarterly, annual, and one-time events, we get to be involved.</p>
<h2>Working On It, Not In It</h2>
<p>This keeps us busy, to be sure, but it is the best kind of busy imaginable. A continuous flow of technological challenges that, when solved, honor the name of Christ? Sign me up!</p>
<p>Twice a month we step out of the fray as a team and exercise the principal &#8220;Work on it, not in it.&#8221; We spend a few hours on Friday locked in a room together, sharing new discoveries, hashing through concerns, and grinding on ways to bring order to our collective work so that it doesn&#8217;t spiral into chaos.</p>
<h2>A Common Set of Challenges</h2>
<p>It was during these meetings that we were able to identify a common set of challenges that seemed to present themselves in the average web site project. Certain questions came to the surface over and over again. Things like:</p>
<blockquote>
<ul>
<li>Is that font size too big or too small?</li>
<li>Should we use proprietary software or open source?</li>
<li>What size should the video be on a page?</li>
<li>How tall or wide should a page be?</li>
<li>How many pages should be designed, and to what detail?</li>
<li>What are the preferred technologies to use?</li>
</ul>
</blockquote>
<p>The next step was pretty obvious.</p>
<h2>The Solution: A Guide</h2>
<p>We needed a guide! A standards document. Something to articulate our default position on the common decision points that our web projects face.</p>
<p><img class="aligncenter size-full wp-image-591" src="http://insidenorthpoint.org/it/files/2010/11/standards.jpg" alt="standards" width="540" height="260" /></p>
<p>Ugh. A document? Really? Nobody likes large, unwieldy SOP/Process documents heaped upon them, especially not for creative projects. Would it be followed? Would it even be read? We discussed it and came up with these goals for our <em>Web Design Standards</em> document:</p>
<blockquote><p>1. Must be quick/easy to read and under 2 pages or it will be more of a burden than a help.</p>
<p>2. Must honor the autonomy that empowers our ministries. Basically, avoid dogma if possible and be clear about our motives.</p>
<p>3. Must not read like it was born in 1994. Writing a document for designers that looks like a &#8220;TPS Report&#8221; is not going to encourage buy-in.</p></blockquote>
<p>Very quickly we realized that we could not fit everything into 2 pages. So, the decision was made to split the guide into 2 documents. One to cover <em>Design</em> and one to cover <em>Implementation</em> (coding, technologies, deployment). We often sub-contract these parts out separately anyway, so the delineation was natural.</p>
<p>Today the web team would like to share with you the first document born of these efforts.</p>
<blockquote><p><strong>Download</strong>: <a href="https://docs.google.com/a/northpointministries.net/leaf?id=0B9IVJi-wV9QZNWQyZWM3MTQtNWVhZi00MWY0LWI3OTQtYzdmODc3NjJlZWVh&amp;sort=name&amp;layout=list&amp;num=50">North Point Ministries Web Design Standards</a> (PDF)</p>
<p><strong>Download</strong>: <a title="Source" href="http://insidenorthpoint.org/wp-content/uploads/NPMWebStandards.zip" target="_blank">Source ZIP</a> (Pages, DOC, PDF)</p></blockquote>
<p>Feel free to use it for your ministry, pass it around, carve it up and swap out items as you see fit. If nothing else, use it to start a conversation. And if you do use it for one of your projects, let us know! Most importantly, if you noticed anything we missed, please share in the comments.</p>
]]></description>
			<content:encoded><![CDATA[<p>One of the awesome things about being on the web team is that we get the opportunity to work with practically every ministry area in our organization. It seems like nearly every ministry has something they want to do with technology or the web. From the weekly Sunday morning routine tasks to the quarterly, annual, and one-time events, we get to be involved.</p>
<h2>Working On It, Not In It</h2>
<p>This keeps us busy, to be sure, but it is the best kind of busy imaginable. A continuous flow of technological challenges that, when solved, honor the name of Christ? Sign me up!</p>
<p>Twice a month we step out of the fray as a team and exercise the principal &#8220;Work on it, not in it.&#8221; We spend a few hours on Friday locked in a room together, sharing new discoveries, hashing through concerns, and grinding on ways to bring order to our collective work so that it doesn&#8217;t spiral into chaos.</p>
<h2>A Common Set of Challenges</h2>
<p>It was during these meetings that we were able to identify a common set of challenges that seemed to present themselves in the average web site project. Certain questions came to the surface over and over again. Things like:</p>
<blockquote>
<ul>
<li>Is that font size too big or too small?</li>
<li>Should we use proprietary software or open source?</li>
<li>What size should the video be on a page?</li>
<li>How tall or wide should a page be?</li>
<li>How many pages should be designed, and to what detail?</li>
<li>What are the preferred technologies to use?</li>
</ul>
</blockquote>
<p>The next step was pretty obvious.</p>
<h2>The Solution: A Guide</h2>
<p>We needed a guide! A standards document. Something to articulate our default position on the common decision points that our web projects face.</p>
<p><img class="aligncenter size-full wp-image-591" src="http://insidenorthpoint.org/it/files/2010/11/standards.jpg" alt="standards" width="540" height="260" /></p>
<p>Ugh. A document? Really? Nobody likes large, unwieldy SOP/Process documents heaped upon them, especially not for creative projects. Would it be followed? Would it even be read? We discussed it and came up with these goals for our <em>Web Design Standards</em> document:</p>
<blockquote><p>1. Must be quick/easy to read and under 2 pages or it will be more of a burden than a help.</p>
<p>2. Must honor the autonomy that empowers our ministries. Basically, avoid dogma if possible and be clear about our motives.</p>
<p>3. Must not read like it was born in 1994. Writing a document for designers that looks like a &#8220;TPS Report&#8221; is not going to encourage buy-in.</p></blockquote>
<p>Very quickly we realized that we could not fit everything into 2 pages. So, the decision was made to split the guide into 2 documents. One to cover <em>Design</em> and one to cover <em>Implementation</em> (coding, technologies, deployment). We often sub-contract these parts out separately anyway, so the delineation was natural.</p>
<p>Today the web team would like to share with you the first document born of these efforts.</p>
<blockquote><p><strong>Download</strong>: <a href="https://docs.google.com/a/northpointministries.net/leaf?id=0B9IVJi-wV9QZNWQyZWM3MTQtNWVhZi00MWY0LWI3OTQtYzdmODc3NjJlZWVh&amp;sort=name&amp;layout=list&amp;num=50">North Point Ministries Web Design Standards</a> (PDF)</p>
<p><strong>Download</strong>: <a title="Source" href="http://insidenorthpoint.org/wp-content/uploads/NPMWebStandards.zip" target="_blank">Source ZIP</a> (Pages, DOC, PDF)</p></blockquote>
<p>Feel free to use it for your ministry, pass it around, carve it up and swap out items as you see fit. If nothing else, use it to start a conversation. And if you do use it for one of your projects, let us know! Most importantly, if you noticed anything we missed, please share in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://insidenorthpoint.org/it/2010/11/02/web-design-standards/feed/</wfw:commentRss>
		</item>
		<item>
		<title>No Is The New Yes</title>
		<link>http://insidenorthpoint.org/it/2010/10/23/no-is-the-new-yes/</link>
		<comments>http://insidenorthpoint.org/it/2010/10/23/no-is-the-new-yes/#comments</comments>
		<pubDate>Sat, 23 Oct 2010 12:23:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

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

		<guid isPermaLink="false">http://insidenorthpoint.org/it/?p=562</guid>
		<description><![CDATA[<p>This simple statement was just a small part of one of the talks during last week&#8217;s <a href="http://refreshcache.com/" target="_blank">(refresh)cache</a> conference, an unofficial conference for the Arena developer community. Jon Edmiston, one of the original Arena developers from <a href="http://ccvonline.com/" target="_blank">CCV</a>, gave  a talk on strategy, and this short phrase has stuck with me so I thought I&#8217;d share it.</p>
<blockquote><p>&#8220;No&#8221; is the new &#8220;yes.&#8221;</p></blockquote>
<p>This is one of those principals that is not new and is fairly obvious, but somehow we don&#8217;t think about it as we make everyday decisions. The gist of the statement was that every time we say &#8220;no&#8221; to something, we&#8217;re also saying &#8220;yes&#8221; to something else. We are constantly making decisions about where we will spend our resources - time, money, &amp; energy - and we only have a finite amount to spend. None of us likes to say &#8220;no&#8221; to our ministry partners, but if we view it through the lens of &#8220;no, and here&#8217;s what we&#8217;re saying &#8216;yes&#8217; to&#8221; we can get on the same page about what we&#8217;re doing as a ministry.</p>
<p>Again, this is certainly not new information, but the corollary of this principal is what has really got me thinking. If the above is true, then when we say &#8220;yes&#8221; to something we&#8217;re also saying &#8220;no&#8221; to something else. So every time we agree to work on a project, build something, or spend our resources on a ministry initiative, we&#8217;re likely saying &#8220;no&#8221; to another idea.</p>
<p>The other part that has stuck in my head is that this is as <em>true at home as it is at work</em>.</p>
<p>I guess it all boils down to <strong>stewardship</strong> - we are stewards of our own time and energy and also of our team&#8217;s resources, and we are accountable for those resources. So we&#8217;re going to be thinking about how we can apply these principals to our decision making process so that we can utilize our resources to better help fulfill our ministry&#8217;s mission.</p>
<p><a href="http://insidenorthpoint.org/it/2010/10/23/no-is-the-new-yes/#respond">How are you managing your limited resources?</a></p>
]]></description>
			<content:encoded><![CDATA[<p>This simple statement was just a small part of one of the talks during last week&#8217;s <a href="http://refreshcache.com/" target="_blank">(refresh)cache</a> conference, an unofficial conference for the Arena developer community. Jon Edmiston, one of the original Arena developers from <a href="http://ccvonline.com/" target="_blank">CCV</a>, gave  a talk on strategy, and this short phrase has stuck with me so I thought I&#8217;d share it.</p>
<blockquote><p>&#8220;No&#8221; is the new &#8220;yes.&#8221;</p></blockquote>
<p>This is one of those principals that is not new and is fairly obvious, but somehow we don&#8217;t think about it as we make everyday decisions. The gist of the statement was that every time we say &#8220;no&#8221; to something, we&#8217;re also saying &#8220;yes&#8221; to something else. We are constantly making decisions about where we will spend our resources - time, money, &amp; energy - and we only have a finite amount to spend. None of us likes to say &#8220;no&#8221; to our ministry partners, but if we view it through the lens of &#8220;no, and here&#8217;s what we&#8217;re saying &#8216;yes&#8217; to&#8221; we can get on the same page about what we&#8217;re doing as a ministry.</p>
<p>Again, this is certainly not new information, but the corollary of this principal is what has really got me thinking. If the above is true, then when we say &#8220;yes&#8221; to something we&#8217;re also saying &#8220;no&#8221; to something else. So every time we agree to work on a project, build something, or spend our resources on a ministry initiative, we&#8217;re likely saying &#8220;no&#8221; to another idea.</p>
<p>The other part that has stuck in my head is that this is as <em>true at home as it is at work</em>.</p>
<p>I guess it all boils down to <strong>stewardship</strong> - we are stewards of our own time and energy and also of our team&#8217;s resources, and we are accountable for those resources. So we&#8217;re going to be thinking about how we can apply these principals to our decision making process so that we can utilize our resources to better help fulfill our ministry&#8217;s mission.</p>
<p><a href="http://insidenorthpoint.org/it/2010/10/23/no-is-the-new-yes/#respond">How are you managing your limited resources?</a></p>
]]></content:encoded>
			<wfw:commentRss>http://insidenorthpoint.org/it/2010/10/23/no-is-the-new-yes/feed/</wfw:commentRss>
		</item>
		<item>
		<title>One Crazy Summer</title>
		<link>http://insidenorthpoint.org/it/2010/10/11/one-crazy-summer/</link>
		<comments>http://insidenorthpoint.org/it/2010/10/11/one-crazy-summer/#comments</comments>
		<pubDate>Mon, 11 Oct 2010 14:24:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://insidenorthpoint.org/it/?p=557</guid>
		<description><![CDATA[<p>Now that summer is over and Fall has arrived, we wanted to share a little bit about what we&#8217;ve been up to. One of the things we talk about at North Point is determining our strengths and trying to maximize those strengths, both individually and in our teams; well, clearly blogging isn&#8217;t one of our team&#8217;s strengths. It&#8217;s certainly not from a lack of things to share, so we are going to try to ramp things back up and (hopefully) reopen the conversation. Thanks for reading&#8230;</p>
<p><span id="more-557"></span>To start off, we&#8217;d like to highlight some of the sites and systems we&#8217;ve been working on for the past three months:</p>
<ul>
<li><a href="http://www.arenachms.com/" target="_blank">Arena ChMS</a> - We&#8217;ve been continuing to tweak, stabilize and improve our new church management system. Any migration from a system that was used for over 10 years will come with it&#8217;s growing pains, and we&#8217;ve certainly had our challenges as we&#8217;ve incorporated Arena into our daily and weekly work processes. We&#8217;re on the cusp of getting the base system to a place where we can begin adding a lot of features and functionality to it, so we&#8217;re excited about the coming months.</li>
<li><a href="http://store.northpoint.org" target="_blank">store.northpoint.org</a> - In August we launched our new web store, based on <a href="http://www.magentocommerce.com/" target="_blank">Magento</a>. This was another large migration from an existing system and product that was used for several years, and we&#8217;ve gotten through the big challenges and are excited about the flexibility and opportunities our new platform gives us.</li>
<li><a href="http://upstreetkids.org/fbc" target="_blank">Family Birthday Celebration</a> - We partnered with <a href="http://eyespeak.com/" target="_blank">eyespeak</a> to build a site and registration system for UpStreet. This site is based on <a href="http://cakephp.org/" target="_blank">Cake PHP</a> and walks parents through the baptism process for their elementary-aged children. Check out <a href="http://insidenorthpoint.org/kids/2010/10/07/new-family-birthday-celebration-website/">this post</a> on our kids blog for more details.</li>
<li><a href="http://kidstuf.com" target="_blank">kidstuf.com</a> - We also launched a new website for KidStuf based on WordPress, again in partnership with eyespeak.</li>
<li><a href="http://driveconference.com" target="_blank">driveconference.com</a> - Last week we launched a new site for our Drive Conference. We tried out something new for this site and it worked very well: our events team worked with a designer to create the new look, and we used <a href="http://psd2html.com" target="_blank">psd2html.com</a> to convert his photoshop design files into xhtml. We also opened up a new registration system for the event, this time partnering with <a href="http://www.memberclicks.com/" target="_blank">memberclicks</a> on a hosted platform.</li>
<li>Short Term Finance Groups - We once again partnered with eyespeak to build an online registration system for a new type of small group at our three campuses. This Fall we launched a six-week finance small group, and we built a map-based group finder using Cake PHP for the registration and back-end administration.</li>
<li>Oh, and we also re-organized our IT team to better serve our customers. More on that later&#8230;</li>
</ul>
<p>How was your summer?</p>
]]></description>
			<content:encoded><![CDATA[<p>Now that summer is over and Fall has arrived, we wanted to share a little bit about what we&#8217;ve been up to. One of the things we talk about at North Point is determining our strengths and trying to maximize those strengths, both individually and in our teams; well, clearly blogging isn&#8217;t one of our team&#8217;s strengths. It&#8217;s certainly not from a lack of things to share, so we are going to try to ramp things back up and (hopefully) reopen the conversation. Thanks for reading&#8230;</p>
<p><span id="more-557"></span>To start off, we&#8217;d like to highlight some of the sites and systems we&#8217;ve been working on for the past three months:</p>
<ul>
<li><a href="http://www.arenachms.com/" target="_blank">Arena ChMS</a> - We&#8217;ve been continuing to tweak, stabilize and improve our new church management system. Any migration from a system that was used for over 10 years will come with it&#8217;s growing pains, and we&#8217;ve certainly had our challenges as we&#8217;ve incorporated Arena into our daily and weekly work processes. We&#8217;re on the cusp of getting the base system to a place where we can begin adding a lot of features and functionality to it, so we&#8217;re excited about the coming months.</li>
<li><a href="http://store.northpoint.org" target="_blank">store.northpoint.org</a> - In August we launched our new web store, based on <a href="http://www.magentocommerce.com/" target="_blank">Magento</a>. This was another large migration from an existing system and product that was used for several years, and we&#8217;ve gotten through the big challenges and are excited about the flexibility and opportunities our new platform gives us.</li>
<li><a href="http://upstreetkids.org/fbc" target="_blank">Family Birthday Celebration</a> - We partnered with <a href="http://eyespeak.com/" target="_blank">eyespeak</a> to build a site and registration system for UpStreet. This site is based on <a href="http://cakephp.org/" target="_blank">Cake PHP</a> and walks parents through the baptism process for their elementary-aged children. Check out <a href="http://insidenorthpoint.org/kids/2010/10/07/new-family-birthday-celebration-website/">this post</a> on our kids blog for more details.</li>
<li><a href="http://kidstuf.com" target="_blank">kidstuf.com</a> - We also launched a new website for KidStuf based on WordPress, again in partnership with eyespeak.</li>
<li><a href="http://driveconference.com" target="_blank">driveconference.com</a> - Last week we launched a new site for our Drive Conference. We tried out something new for this site and it worked very well: our events team worked with a designer to create the new look, and we used <a href="http://psd2html.com" target="_blank">psd2html.com</a> to convert his photoshop design files into xhtml. We also opened up a new registration system for the event, this time partnering with <a href="http://www.memberclicks.com/" target="_blank">memberclicks</a> on a hosted platform.</li>
<li>Short Term Finance Groups - We once again partnered with eyespeak to build an online registration system for a new type of small group at our three campuses. This Fall we launched a six-week finance small group, and we built a map-based group finder using Cake PHP for the registration and back-end administration.</li>
<li>Oh, and we also re-organized our IT team to better serve our customers. More on that later&#8230;</li>
</ul>
<p>How was your summer?</p>
]]></content:encoded>
			<wfw:commentRss>http://insidenorthpoint.org/it/2010/10/11/one-crazy-summer/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Triage</title>
		<link>http://insidenorthpoint.org/it/2010/06/25/triage/</link>
		<comments>http://insidenorthpoint.org/it/2010/06/25/triage/#comments</comments>
		<pubDate>Fri, 25 Jun 2010 19:15:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://insidenorthpoint.org/it/?p=552</guid>
		<description><![CDATA[<p>We are now live on our new <a href="http://arenachms.com/" target="_blank">Arena Church Management System</a>!</p>
<p>As we prepared for our rollout, we knew we needed to find a way to make certain that the ministry teams at all our campuses had the support they needed to hit the ground running on our new system. Yes, we did spend time <a href="http://insidenorthpoint.org/it/2010/05/14/training/">training</a> and preparing, but the real test is when the system is live and you have to get your job done because Sunday is coming!</p>
<p>We ended up setting up &#8220;Triage Rooms&#8221; at each campus for our first two weeks of production on Arena. Yes, we realize that for many of you this brings to mind images of M*A*S*H and a bloody operating room, but we called them that anyway! <img class="alignright size-medium wp-image-553" src="http://insidenorthpoint.org/it/files/2010/06/photos-from-mash-300x218.jpg" alt="MASH" width="300" height="218" />We found a central location that was convenient for the teams at that campus, stocked those rooms with candy and snacks, and manned each one with members of our team so that we could provide face-to-face support. We do have some unique challenges because of the size of our staff and the fact that we are separated geographically, so being onsite allowed us to provide a personal touch, which went a long way to providing a comfort level to our ministries. We didn&#8217;t know how effective this would be, but it ended up being a huge success!</p>
<p>A lot of work certainly went into getting us to this point, and we look at this as just the beginning. Now that we&#8217;ve built the foundation (yes, we still have a few &#8220;punch list&#8221; items to take care of), we are excited about adding on to that foundation to provide new tools, sites, and systems to the ministries at our campuses. This is one of the (if not <em>the</em>) biggest technology projects we&#8217;ve ever undertaken, and using these triage rooms helped us provide the support and customer service our ministry partners needed to be able to confidently do their jobs using the new system.</p>
<p><a href="/it/2010/06/25/triage/#respond">How do you support your church when you make a big change?</a></p>
]]></description>
			<content:encoded><![CDATA[<p>We are now live on our new <a href="http://arenachms.com/" target="_blank">Arena Church Management System</a>!</p>
<p>As we prepared for our rollout, we knew we needed to find a way to make certain that the ministry teams at all our campuses had the support they needed to hit the ground running on our new system. Yes, we did spend time <a href="http://insidenorthpoint.org/it/2010/05/14/training/">training</a> and preparing, but the real test is when the system is live and you have to get your job done because Sunday is coming!</p>
<p>We ended up setting up &#8220;Triage Rooms&#8221; at each campus for our first two weeks of production on Arena. Yes, we realize that for many of you this brings to mind images of M*A*S*H and a bloody operating room, but we called them that anyway! <img class="alignright size-medium wp-image-553" src="http://insidenorthpoint.org/it/files/2010/06/photos-from-mash-300x218.jpg" alt="MASH" width="300" height="218" />We found a central location that was convenient for the teams at that campus, stocked those rooms with candy and snacks, and manned each one with members of our team so that we could provide face-to-face support. We do have some unique challenges because of the size of our staff and the fact that we are separated geographically, so being onsite allowed us to provide a personal touch, which went a long way to providing a comfort level to our ministries. We didn&#8217;t know how effective this would be, but it ended up being a huge success!</p>
<p>A lot of work certainly went into getting us to this point, and we look at this as just the beginning. Now that we&#8217;ve built the foundation (yes, we still have a few &#8220;punch list&#8221; items to take care of), we are excited about adding on to that foundation to provide new tools, sites, and systems to the ministries at our campuses. This is one of the (if not <em>the</em>) biggest technology projects we&#8217;ve ever undertaken, and using these triage rooms helped us provide the support and customer service our ministry partners needed to be able to confidently do their jobs using the new system.</p>
<p><a href="/it/2010/06/25/triage/#respond">How do you support your church when you make a big change?</a></p>
]]></content:encoded>
			<wfw:commentRss>http://insidenorthpoint.org/it/2010/06/25/triage/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What Motivates You and Your Team?</title>
		<link>http://insidenorthpoint.org/it/2010/06/10/what-motivates-you-and-your-team/</link>
		<comments>http://insidenorthpoint.org/it/2010/06/10/what-motivates-you-and-your-team/#comments</comments>
		<pubDate>Thu, 10 Jun 2010 16:35:25 +0000</pubDate>
		<dc:creator>John</dc:creator>
		
		<category><![CDATA[Web Team]]></category>

		<guid isPermaLink="false">http://insidenorthpoint.org/it/?p=544</guid>
		<description><![CDATA[<p><a href="http://insidenorthpoint.org/it/files/2010/06/drive.png"><img class="alignright size-medium wp-image-547" src="http://insidenorthpoint.org/it/files/2010/06/drive-198x300.png" alt="drive" width="198" height="300" /></a>One of the books that&#8217;s moving around our offices here at North Point is the new book <a href="http://www.amazon.com/Drive-Daniel-H-Pink/dp/1594488843"><em>Drive</em> by Daniel Pink</a>.</p>
<p>It&#8217;s challenging a lot of our staff and management to really ask the tough questions about how to best motivate employees and team members.</p>
<p>Here&#8217;s <a href="http://www.youtube.com/watch?v=u6XAPnuFjJc&amp;feature=player_embedded">a video that explains some of the book</a>, etc.</p>
<p>What is motivating your ministry and tech team?</p>
<p>Is it food? Is it money? Is it something else?</p>
<p>How would you be better suited to motivate?</p>
<p>Answering these questions can seriously change your work environment, for the better! And, I&#8217;d like to think that we&#8217;ve got a <em>great</em> work environment to begin with!</p>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://insidenorthpoint.org/it/files/2010/06/drive.png"><img class="alignright size-medium wp-image-547" src="http://insidenorthpoint.org/it/files/2010/06/drive-198x300.png" alt="drive" width="198" height="300" /></a>One of the books that&#8217;s moving around our offices here at North Point is the new book <a href="http://www.amazon.com/Drive-Daniel-H-Pink/dp/1594488843"><em>Drive</em> by Daniel Pink</a>.</p>
<p>It&#8217;s challenging a lot of our staff and management to really ask the tough questions about how to best motivate employees and team members.</p>
<p>Here&#8217;s <a href="http://www.youtube.com/watch?v=u6XAPnuFjJc&amp;feature=player_embedded">a video that explains some of the book</a>, etc.</p>
<p>What is motivating your ministry and tech team?</p>
<p>Is it food? Is it money? Is it something else?</p>
<p>How would you be better suited to motivate?</p>
<p>Answering these questions can seriously change your work environment, for the better! And, I&#8217;d like to think that we&#8217;ve got a <em>great</em> work environment to begin with!</p>
]]></content:encoded>
			<wfw:commentRss>http://insidenorthpoint.org/it/2010/06/10/what-motivates-you-and-your-team/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Training</title>
		<link>http://insidenorthpoint.org/it/2010/05/14/training/</link>
		<comments>http://insidenorthpoint.org/it/2010/05/14/training/#comments</comments>
		<pubDate>Fri, 14 May 2010 19:52:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

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

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

		<category><![CDATA[church management]]></category>

		<guid isPermaLink="false">http://insidenorthpoint.org/it/?p=530</guid>
		<description><![CDATA[<p>We recently finished a series of training days for our staff where we did preliminary training on our new Arena Church Management System. Everything we do seems to bring its own set of lessons to learn from, and this was no different. Here are some things that we discovered (or re-discovered) about training:</p>
<ul>
<li>As much as we technologists might like playing around with computer systems, and as excited as we might be about launching something new, not everyone feels that way. It&#8217;s important to keep in mind that we very likely might be in the minority when it comes to this, so we should remember that in our delivery, planning, etc., and not assume that others are as geeky as we are.</li>
<li>It&#8217;s important to try to be as specific as you can, with realistic examples and exercises. It&#8217;s hard enough to remember your training once you start using a new system or application in earnest, but if the exercises were more theoretical than practical it will be even harder.</li>
<li>As much as we&#8217;d like to think we can train everyone so that they can hit the ground running once a new system is implemented, that&#8217;s just not reality. Our own experience supports this fact. There&#8217;s always a ramp-up time of regular usage before someone is truly comfortable using something new. This certainly doesn&#8217;t mean that we shouldn&#8217;t train people; rather that we should realize that formal training is just one piece of the puzzle. We are planning some follow-up targeted training, video screencasts, and other ideas to provide ongoing training for our staff.</li>
<li>Make it fun. We&#8217;re firm believers in the <a href="http://www.thefuntheory.com/" target="_blank">Fun Theory</a> around here, and while we might think a full day of computer training is fun, not everyone does. So come up with something that can make training fun - we played trivia games after each break (What does the word <em>Arena</em> mean in Latin, and why?) and incorporated some small prizes.</li>
<li>Have good snacks! We had soft pretzels, ice cream, and other goodies for our afternoon breaks, plus an assortment of candy, gum, fruit, etc., for the entire day. Everyone enjoyed getting to eat some candy they hadn&#8217;t had since they were kids (chewy sweet tarts, anyone?)</li>
</ul>
<p style="margin-top:20px"><a href="/it/2010/05/14/training/#respond">So what do you do to train your users?</a></p>
]]></description>
			<content:encoded><![CDATA[<p>We recently finished a series of training days for our staff where we did preliminary training on our new Arena Church Management System. Everything we do seems to bring its own set of lessons to learn from, and this was no different. Here are some things that we discovered (or re-discovered) about training:</p>
<ul>
<li>As much as we technologists might like playing around with computer systems, and as excited as we might be about launching something new, not everyone feels that way. It&#8217;s important to keep in mind that we very likely might be in the minority when it comes to this, so we should remember that in our delivery, planning, etc., and not assume that others are as geeky as we are.</li>
<li>It&#8217;s important to try to be as specific as you can, with realistic examples and exercises. It&#8217;s hard enough to remember your training once you start using a new system or application in earnest, but if the exercises were more theoretical than practical it will be even harder.</li>
<li>As much as we&#8217;d like to think we can train everyone so that they can hit the ground running once a new system is implemented, that&#8217;s just not reality. Our own experience supports this fact. There&#8217;s always a ramp-up time of regular usage before someone is truly comfortable using something new. This certainly doesn&#8217;t mean that we shouldn&#8217;t train people; rather that we should realize that formal training is just one piece of the puzzle. We are planning some follow-up targeted training, video screencasts, and other ideas to provide ongoing training for our staff.</li>
<li>Make it fun. We&#8217;re firm believers in the <a href="http://www.thefuntheory.com/" target="_blank">Fun Theory</a> around here, and while we might think a full day of computer training is fun, not everyone does. So come up with something that can make training fun - we played trivia games after each break (What does the word <em>Arena</em> mean in Latin, and why?) and incorporated some small prizes.</li>
<li>Have good snacks! We had soft pretzels, ice cream, and other goodies for our afternoon breaks, plus an assortment of candy, gum, fruit, etc., for the entire day. Everyone enjoyed getting to eat some candy they hadn&#8217;t had since they were kids (chewy sweet tarts, anyone?)</li>
</ul>
<p style="margin-top:20px"><a href="/it/2010/05/14/training/#respond">So what do you do to train your users?</a></p>
]]></content:encoded>
			<wfw:commentRss>http://insidenorthpoint.org/it/2010/05/14/training/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Scenes From the NorthPointOnline.tv 2.0 Launch</title>
		<link>http://insidenorthpoint.org/it/2010/05/10/scenes-from-the-northpointonlinetv-20-launch/</link>
		<comments>http://insidenorthpoint.org/it/2010/05/10/scenes-from-the-northpointonlinetv-20-launch/#comments</comments>
		<pubDate>Mon, 10 May 2010 17:41:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Web Team]]></category>

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

		<guid isPermaLink="false">http://insidenorthpoint.org/it/?p=521</guid>
		<description><![CDATA[<p>In April we launched the new (2nd) version of <a href="http://northpointonline.tv">http://northpointonline.tv</a> during the 11am service. I&#8217;ll leave the tech talk for those closer to the code than I am and instead, I&#8217;ll share some pictures from behind the scenes.</p>
<div>
<p><img class="aligncenter size-medium wp-image-615" src="http://insidenorthpoint.org/files/2010/04/201003-np-online-20-launch-5-300x199.jpg" alt="201003-np-online-20-launch-5" width="300" height="199" /><img class="aligncenter size-medium wp-image-622" src="http://insidenorthpoint.org/files/2010/04/201003-np-online-20-launch-8-300x199.jpg" alt="201003-np-online-20-launch-8" width="300" height="199" /><img class="aligncenter size-medium wp-image-621" src="http://insidenorthpoint.org/files/2010/04/201003-np-online-20-launch-10-300x199.jpg" alt="201003-np-online-20-launch-10" width="300" height="199" /><img class="aligncenter size-medium wp-image-626" src="http://insidenorthpoint.org/files/2010/04/201003-np-online-20-launch-2-300x199.jpg" alt="201003-np-online-20-launch-2" width="300" height="199" /><img class="aligncenter size-medium wp-image-625" src="http://insidenorthpoint.org/files/2010/04/201003-np-online-20-launch-4-300x199.jpg" alt="201003-np-online-20-launch-4" width="300" height="199" /><img class="aligncenter size-medium wp-image-617" src="http://insidenorthpoint.org/files/2010/04/201003-np-online-20-launch-3-300x199.jpg" alt="201003-np-online-20-launch-3" width="300" height="199" /><img class="aligncenter size-medium wp-image-620" src="http://insidenorthpoint.org/files/2010/04/201003-np-online-20-launch-12-300x199.jpg" alt="201003-np-online-20-launch-12" width="300" height="199" /><img class="aligncenter size-medium wp-image-628" src="http://insidenorthpoint.org/files/2010/04/201003-np-online-20-launch-300x199.jpg" alt="201003-np-online-20-launch" width="300" height="199" /><img class="aligncenter size-medium wp-image-623" src="http://insidenorthpoint.org/files/2010/04/201003-np-online-20-launch-7-300x199.jpg" alt="201003-np-online-20-launch-7" width="300" height="199" /><img class="aligncenter size-medium wp-image-614" src="http://insidenorthpoint.org/files/2010/04/201003-np-online-20-launch-11-300x199.jpg" alt="201003-np-online-20-launch-11" width="300" height="199" /></div>
]]></description>
			<content:encoded><![CDATA[<p>In April we launched the new (2nd) version of <a href="http://northpointonline.tv">http://northpointonline.tv</a> during the 11am service. I&#8217;ll leave the tech talk for those closer to the code than I am and instead, I&#8217;ll share some pictures from behind the scenes.</p>
<div>
<p><img class="aligncenter size-medium wp-image-615" src="http://insidenorthpoint.org/files/2010/04/201003-np-online-20-launch-5-300x199.jpg" alt="201003-np-online-20-launch-5" width="300" height="199" /><img class="aligncenter size-medium wp-image-622" src="http://insidenorthpoint.org/files/2010/04/201003-np-online-20-launch-8-300x199.jpg" alt="201003-np-online-20-launch-8" width="300" height="199" /><img class="aligncenter size-medium wp-image-621" src="http://insidenorthpoint.org/files/2010/04/201003-np-online-20-launch-10-300x199.jpg" alt="201003-np-online-20-launch-10" width="300" height="199" /><img class="aligncenter size-medium wp-image-626" src="http://insidenorthpoint.org/files/2010/04/201003-np-online-20-launch-2-300x199.jpg" alt="201003-np-online-20-launch-2" width="300" height="199" /><img class="aligncenter size-medium wp-image-625" src="http://insidenorthpoint.org/files/2010/04/201003-np-online-20-launch-4-300x199.jpg" alt="201003-np-online-20-launch-4" width="300" height="199" /><img class="aligncenter size-medium wp-image-617" src="http://insidenorthpoint.org/files/2010/04/201003-np-online-20-launch-3-300x199.jpg" alt="201003-np-online-20-launch-3" width="300" height="199" /><img class="aligncenter size-medium wp-image-620" src="http://insidenorthpoint.org/files/2010/04/201003-np-online-20-launch-12-300x199.jpg" alt="201003-np-online-20-launch-12" width="300" height="199" /><img class="aligncenter size-medium wp-image-628" src="http://insidenorthpoint.org/files/2010/04/201003-np-online-20-launch-300x199.jpg" alt="201003-np-online-20-launch" width="300" height="199" /><img class="aligncenter size-medium wp-image-623" src="http://insidenorthpoint.org/files/2010/04/201003-np-online-20-launch-7-300x199.jpg" alt="201003-np-online-20-launch-7" width="300" height="199" /><img class="aligncenter size-medium wp-image-614" src="http://insidenorthpoint.org/files/2010/04/201003-np-online-20-launch-11-300x199.jpg" alt="201003-np-online-20-launch-11" width="300" height="199" /></div>
]]></content:encoded>
			<wfw:commentRss>http://insidenorthpoint.org/it/2010/05/10/scenes-from-the-northpointonlinetv-20-launch/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Scheduling Blog Posts</title>
		<link>http://insidenorthpoint.org/it/2010/04/20/scheduling-blog-posts/</link>
		<comments>http://insidenorthpoint.org/it/2010/04/20/scheduling-blog-posts/#comments</comments>
		<pubDate>Tue, 20 Apr 2010 18:01:14 +0000</pubDate>
		<dc:creator>John</dc:creator>
		
		<category><![CDATA[Web Team]]></category>

		<guid isPermaLink="false">http://insidenorthpoint.org/it/?p=519</guid>
		<description><![CDATA[<p>It&#8217;s a tough world we live in, isn&#8217;t it?</p>
<p>Add trying to coordinate a few crazy-busy people to drop blog posts can drive people over the edge&#8230;! So how can it be done? What&#8217;s our strategy?</p>
<p>Very simple: Create a Master Schedule, assign dates, and then commit.</p>
<p>It&#8217;s that simple really! What we&#8217;ve done is assign our team specific friday&#8217;s to blog and then we <strong>trust</strong> that person to write. It&#8217;s not too complicated and it really can work.</p>
<p>We also help each other out when we&#8217;re struggling to come up with topics (because not all of us are born-bloggers). We&#8217;re a team, remember?</p>
<p>Have you got a strategy for posting blog posts on your church&#8217;s properties? How&#8217;s that working out for you?</p>
]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s a tough world we live in, isn&#8217;t it?</p>
<p>Add trying to coordinate a few crazy-busy people to drop blog posts can drive people over the edge&#8230;! So how can it be done? What&#8217;s our strategy?</p>
<p>Very simple: Create a Master Schedule, assign dates, and then commit.</p>
<p>It&#8217;s that simple really! What we&#8217;ve done is assign our team specific friday&#8217;s to blog and then we <strong>trust</strong> that person to write. It&#8217;s not too complicated and it really can work.</p>
<p>We also help each other out when we&#8217;re struggling to come up with topics (because not all of us are born-bloggers). We&#8217;re a team, remember?</p>
<p>Have you got a strategy for posting blog posts on your church&#8217;s properties? How&#8217;s that working out for you?</p>
]]></content:encoded>
			<wfw:commentRss>http://insidenorthpoint.org/it/2010/04/20/scheduling-blog-posts/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

