<?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>Deer Creek Enterprise</title>
	<atom:link href="http://www.deer-creek.ca/feed" rel="self" type="application/rss+xml" />
	<link>http://www.deer-creek.ca</link>
	<description>Web Designer Custom Web Developer</description>
	<lastBuildDate>Wed, 15 Feb 2012 14:46:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>How to Put a Project Under SVN Control</title>
		<link>http://www.deer-creek.ca/articles/web-development/how-to-put-a-project-under-svn-control</link>
		<comments>http://www.deer-creek.ca/articles/web-development/how-to-put-a-project-under-svn-control#comments</comments>
		<pubDate>Fri, 27 Jan 2012 20:17:34 +0000</pubDate>
		<dc:creator>Michael Bernardo</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.deer-creek.ca/?p=1076</guid>
		<description><![CDATA[Developers use SVN to maintain current and historical versions of files such as source code, web pages, and documentation. In this article, I&#8217;ll be doing a walkthrough of how to put a PHP project into source control using Subversion also known as SVN. I will be using the command line on an Ubuntu server to [...]]]></description>
			<content:encoded><![CDATA[<p>Developers use SVN to maintain current and historical versions of files such as source code, web pages, and documentation. In this article, I&#8217;ll be doing a walkthrough of how to put a PHP project into source control using Subversion also known as SVN. I will be using the command line on an Ubuntu server to create a new repository, and TortoiseSVN to checkout and commit files into SVN.</p>
<p>Make sure that the following prerequisites have been completed:</p>
<ul>
<li>SVN server has been installed on your server.</li>
<li>Tortoise SVN client has been installed on your workstation.</li>
<li>Putty has been installed on your workstation.</li>
</ul>
<p>In Windows Explorer, determine where you would like to keep your source code. I like to keep my sources under the C:\wamp\www\ folder. In this exercise, our project folder will be named stored in C:\wamp\www\ciproj1\.</p>
<p>Open a new Putty session and connect to your SVN server. Find out where your repository folder is. In this example, our repositories are stored in the \home\svn\repos\ folder. The new repository name will be &#8216;ciproj1&#8242;. Make sure that your user has super user access to run the SVN commands below:</p>
<pre>    cd /home/svn/repos
    sudo svnadmin create ciproj1
    sudo chown -R www-data.www-data ciproj1</pre>
<div id="attachment_1092" class="wp-caption alignnone" style="width: 573px"><a href="http://www.deer-creek.ca/wp-content/uploads/2012/01/putty-svnadmin-create1.gif"><img class="size-full wp-image-1092" title="Putty SVN svnadmin create command" src="http://www.deer-creek.ca/wp-content/uploads/2012/01/putty-svnadmin-create1.gif" alt="Putty SVN svnadmin create command" width="563" height="408" /></a><p class="wp-caption-text">Putty SVN svnadmin create command</p></div>
<p>The last command gives Apache read and write access to the new repository.<br />
Review the access control file to make sure users can use the new repository. In this example, our access control file is located in the /etc/ folder.</p>
<pre>    vi /etc/svn-access-control</pre>
<p>Now we should be able to checkout the new repository using TortoiseSVN&#8217;s checkout command. First, rename the C:\wamp\www\ciproj1 folder to C:\wamp\www\ciproj1-bak. This is because when we checkout the new repository, we don&#8217;t want to overwrite your existing folder.</p>
<p>In Windows Explorer, right-click on an empty space, and choose SVN Checkout. In the URL of repository field, enter the URL to your SVN server, making sure that the last directory points to your newly created repository. Click OK.</p>
<p>Notice that the new folder will have a green checkmark, indicating that it is under source control. The repository is currently empty. The Subversion documentation recommends that you create 3 subfolders under the root of your project as follows:</p>
<p style="padding-left: 30px;">C:\wamp\www\ciproj1\branches<br />
C:\wamp\www\ciproj1\tags<br />
C:\wamp\www\ciproj1\trunk</p>
<div id="attachment_1088" class="wp-caption alignnone" style="width: 602px"><a href="http://www.deer-creek.ca/wp-content/uploads/2012/01/svn-folders.gif"><img class="size-full wp-image-1088" title="SVN Folders" src="http://www.deer-creek.ca/wp-content/uploads/2012/01/svn-folders.gif" alt="SVN Folders" width="592" height="377" /></a><p class="wp-caption-text">SVN Folders from the root as recommended by Subversion documentation</p></div>
<p>Your files should be placed into the trunk directory. The trunk folder is where the code is unstable because it is being developed by 1 or more developers. I will not go into details of what the branches and tags folder are for.</p>
<p>Copy and paste the files and folders located in C:\wamp\www\ciproj1-bak\ folder into the trunk folder.</p>
<p>From the C:\wamp\www\ciproj1\ folder, right-click on an empty space, and navigate to TortoiseSVN &gt; Add. Acknowlege the following screen by clicking OK. Be default, all files will be Added to source control.</p>
<p>The final step is to run the commit command: right-click on an empty space, click SVN Commit. Enter a comment, for example, &#8220;This is the first commit.&#8221; and click the OK button.</p>
<div id="attachment_1094" class="wp-caption alignnone" style="width: 513px"><a href="http://www.deer-creek.ca/wp-content/uploads/2012/01/svn-commit.gif"><img class="size-full wp-image-1094" title="SVN Commit" src="http://www.deer-creek.ca/wp-content/uploads/2012/01/svn-commit.gif" alt="SVN Commit" width="503" height="522" /></a><p class="wp-caption-text">SVN Commit</p></div>
<p>I just want to make a note that there are other ways to import a project into SVN, and this is just one of them. I hope you enjoyed that walkthrough. Let me know if you have any comments.</p>
<p>Below are links where you can download the applications used in this tutorial:</p>
<ul>
<li>Subversion: <a href="http://subversion.tigris.org/" target="_blank">http://subversion.tigris.org/</a></li>
<li>TortoiseSVN: <a href="http://tortoisesvn.tigris.org/" target="_blank">http://tortoisesvn.tigris.org/</a></li>
<li>Putty: <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/" target="_blank">http://www.chiark.greenend.org.uk/~sgtatham/putty/</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.deer-creek.ca/articles/web-development/how-to-put-a-project-under-svn-control/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Mobile Lets You Manage Content Wherever You Are</title>
		<link>http://www.deer-creek.ca/articles/web-development/wordpress-mobile</link>
		<comments>http://www.deer-creek.ca/articles/web-development/wordpress-mobile#comments</comments>
		<pubDate>Thu, 22 Dec 2011 21:18:16 +0000</pubDate>
		<dc:creator>Michael Bernardo</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://dc-wp.deer-creek.ca/?p=659</guid>
		<description><![CDATA[Are you thinking of building a WordPress site or do you already have a WordPress site? Download WordPress Mobile so you can add or update content wherever you are. WordPress Mobile is available for a variety of platforms: WordPress for iOS WordPress for Android WordPress for BlackBerry WordPress for Windows Phone 7 WordPress for Nokia [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-660" title="WordPress Mobile" src="http://dc-wp.deer-creek.ca/wp-content/uploads/2011/12/home-ss1.png" alt="WordPress Mobile" width="200" height="158" /><br />
Are you thinking of building a WordPress site or do you already have a WordPress site?<a href="http://wordpress.org/extend/mobile/" target="_blank"> Download WordPress Mobile</a> so you can add or update content wherever you are.<br />
<span id="more-659"></span></p>
<p class="dc-clear">WordPress Mobile is available for a variety of platforms:</p>
<ul>
<li>WordPress for iOS</li>
<li>WordPress for Android</li>
<li>WordPress for BlackBerry</li>
<li>WordPress for Windows Phone 7</li>
<li>WordPress for Nokia</li>
<li>WordPress for WebOS</li>
</ul>
<p>Remember to change your administration settings under &#8216;Settings&#8217; &gt; &#8216;Writing&#8217; XML-RPC. Make sure this setting is enabled, then you can use the WordPress mobile app to log in to the WordPress dashboard.</p>
<p><img class="alignnone size-full wp-image-666" title="Writing Settings" src="http://dc-wp.deer-creek.ca/wp-content/uploads/2011/12/xml-rpc.jpg" alt="Writing Settings" width="580" height="202" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.deer-creek.ca/articles/web-development/wordpress-mobile/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>We have moved to our new studio</title>
		<link>http://www.deer-creek.ca/whats-new/we-have-moved-to-our-new-studio</link>
		<comments>http://www.deer-creek.ca/whats-new/we-have-moved-to-our-new-studio#comments</comments>
		<pubDate>Mon, 19 Dec 2011 20:37:34 +0000</pubDate>
		<dc:creator>Michael Bernardo</dc:creator>
				<category><![CDATA[What's New]]></category>

		<guid isPermaLink="false">http://dc-wp.deer-creek.ca/?p=973</guid>
		<description><![CDATA[We are excited to announce that we have moved to a bigger studio! Our new office is located at 909 Simcoe Street North, Unit 2, Oshawa, ON L1G 4W1. It is located between Rossland Road and Beatrice Road on the east side of Simcoe Street directly across from the Long and McQuade. We are open [...]]]></description>
			<content:encoded><![CDATA[<p>We are excited to announce that we have moved to a bigger studio! Our new office is located at 909 Simcoe Street North, Unit 2, Oshawa, ON L1G 4W1. It is located between Rossland Road and Beatrice Road on the east side of Simcoe Street directly across from the Long and McQuade.</p>
<p>We are open from Monday to Friday between the hours of 9 AM to 5 PM. Swing on by to meet our friendly staff, Michael, Mark and introducing, Chanthoun.</p>
<p>Click here for a map on Googlemaps: <a href="http://g.co/maps/wbrpr" target="_blank">http://g.co/maps/wbrpr</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.deer-creek.ca/whats-new/we-have-moved-to-our-new-studio/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Our Oshawa Number Is Not Working</title>
		<link>http://www.deer-creek.ca/whats-new/our-oshawa-number-is-not-working</link>
		<comments>http://www.deer-creek.ca/whats-new/our-oshawa-number-is-not-working#comments</comments>
		<pubDate>Mon, 12 Dec 2011 21:05:25 +0000</pubDate>
		<dc:creator>Michael Bernardo</dc:creator>
				<category><![CDATA[What's New]]></category>

		<guid isPermaLink="false">http://dc-wp.deer-creek.ca/?p=511</guid>
		<description><![CDATA[We are in the middle of another move to a slightly bigger office. During the transition, our Oshawa number is stuck in limbo. If you need to call using our Oshawa number, you will not get a reply, it will not be automatically transferred, and it will not be forwarded to voicemail. Instead, please call [...]]]></description>
			<content:encoded><![CDATA[<p>We are in the middle of another move to a slightly bigger office. During the transition, our Oshawa number is stuck in limbo. If you need to call using our Oshawa number, you will not get a reply, it will not be automatically transferred, and it will not be forwarded to voicemail.</p>
<p>Instead, please call 416-402-4858 if you require immediate assistance. Otherwise, please send an email to info@deer-creek.ca, and someone will get back to you shortly. We apologize for any inconvenience this may have caused. You can still come in person if you wish. We will remain at our old office during the holidays.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.deer-creek.ca/whats-new/our-oshawa-number-is-not-working/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>We are Completely Satisfied With Your Knowledge and Professionalism</title>
		<link>http://www.deer-creek.ca/testimonials/we-are-completely-satisfied-with-your-knowledge-and-professionalism</link>
		<comments>http://www.deer-creek.ca/testimonials/we-are-completely-satisfied-with-your-knowledge-and-professionalism#comments</comments>
		<pubDate>Fri, 25 Nov 2011 03:21:26 +0000</pubDate>
		<dc:creator>Michael Bernardo</dc:creator>
				<category><![CDATA[Testimonials]]></category>

		<guid isPermaLink="false">http://dc-wp.deer-creek.ca/?p=26</guid>
		<description><![CDATA[Thank you for your quick and detailed responses. We are completely satisfied with your knowledge and professionalism. Looking forward to working with you on our next project. Jesse Martell Martell Training Systems &#8211; Oshawa, ON]]></description>
			<content:encoded><![CDATA[<p>Thank you for your quick and detailed responses. We are completely satisfied with your knowledge and professionalism. Looking forward to working with you on our next project.</p>
<p>Jesse Martell<br />
Martell Training Systems &#8211; Oshawa, ON</p>
]]></content:encoded>
			<wfw:commentRss>http://www.deer-creek.ca/testimonials/we-are-completely-satisfied-with-your-knowledge-and-professionalism/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I was very satisfied with the level of service provided by Deer Creek</title>
		<link>http://www.deer-creek.ca/testimonials/i-was-very-satisfied-with-the-level-of-service-provided-by-deer-creek</link>
		<comments>http://www.deer-creek.ca/testimonials/i-was-very-satisfied-with-the-level-of-service-provided-by-deer-creek#comments</comments>
		<pubDate>Fri, 14 Oct 2011 21:03:37 +0000</pubDate>
		<dc:creator>Michael Bernardo</dc:creator>
				<category><![CDATA[Testimonials]]></category>

		<guid isPermaLink="false">http://dc-wp.deer-creek.ca/?p=220</guid>
		<description><![CDATA[Keill Hare Critter Companion Pet Services &#8211; Clarington, On &#8220;I was very satisfied with the level of service provided by Deer Creek. Even though my project was small in scope, they treated me as a valued client. I would not hesitate to use them again in the future.&#8221;]]></description>
			<content:encoded><![CDATA[<p>Keill Hare<br />
Critter Companion Pet Services &#8211; Clarington, On</p>
<p>&#8220;I was very satisfied with the level of service provided by Deer Creek. Even though my project was small in scope, they treated me as a valued client. I would not hesitate to use them again in the future.&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.deer-creek.ca/testimonials/i-was-very-satisfied-with-the-level-of-service-provided-by-deer-creek/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thank you for your quick and detailed responses</title>
		<link>http://www.deer-creek.ca/testimonials/thank-you-for-your-quick-and-detailed-responses</link>
		<comments>http://www.deer-creek.ca/testimonials/thank-you-for-your-quick-and-detailed-responses#comments</comments>
		<pubDate>Fri, 14 Oct 2011 19:39:39 +0000</pubDate>
		<dc:creator>Michael Bernardo</dc:creator>
				<category><![CDATA[Testimonials]]></category>

		<guid isPermaLink="false">http://dc-wp.deer-creek.ca/?p=589</guid>
		<description><![CDATA[Jesse Martell Martell Training Systems &#8211; Oshawa, ON &#8220;Thank you for your quick and detailed responses. We are completely satisfied with your knowledge and professionalism. Looking forward to working with you on our next project&#8221;]]></description>
			<content:encoded><![CDATA[<p>Jesse Martell<br /> Martell Training Systems &#8211; Oshawa, ON</p>
<p>&#8220;Thank you for your quick and detailed responses. We are completely satisfied with your knowledge and professionalism. Looking forward to working with you on our next project&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.deer-creek.ca/testimonials/thank-you-for-your-quick-and-detailed-responses/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Michael Knows His Stuff and Does it With Class</title>
		<link>http://www.deer-creek.ca/testimonials/michael-knows-his-stuff-and-does-it-with-class</link>
		<comments>http://www.deer-creek.ca/testimonials/michael-knows-his-stuff-and-does-it-with-class#comments</comments>
		<pubDate>Fri, 14 Oct 2011 03:11:24 +0000</pubDate>
		<dc:creator>Michael Bernardo</dc:creator>
				<category><![CDATA[Testimonials]]></category>

		<guid isPermaLink="false">http://dc-wp.deer-creek.ca/?p=20</guid>
		<description><![CDATA[Michael knows his stuff and he does it with class. He responds to all inquiries you have and is very suggestive in a positive and insightful manner. I am confident he is the go to person and I will be glad to recommend him to my associates. He goes above and beyond and is patient [...]]]></description>
			<content:encoded><![CDATA[<p>Michael knows his stuff and he does it with class. He responds to all inquiries you have and is very suggestive in a positive and insightful manner. I am confident he is the go to person and I will be glad to recommend him to my associates. He goes above and beyond and is patient where ever modifications and changes have to be made.</p>
<p>Greham Showa<br />
Entrepreneur &#8211; Ottawa, ON</p>
]]></content:encoded>
			<wfw:commentRss>http://www.deer-creek.ca/testimonials/michael-knows-his-stuff-and-does-it-with-class/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DIY SEO for Small Business</title>
		<link>http://www.deer-creek.ca/articles/search-engine-optimization/diy-seo-for-small-business</link>
		<comments>http://www.deer-creek.ca/articles/search-engine-optimization/diy-seo-for-small-business#comments</comments>
		<pubDate>Wed, 12 Oct 2011 19:06:26 +0000</pubDate>
		<dc:creator>Michael Bernardo</dc:creator>
				<category><![CDATA[Search Engine Optimization]]></category>

		<guid isPermaLink="false">http://dc-wp.deer-creek.ca/?p=318</guid>
		<description><![CDATA[For many small companies that are just starting out, they simply cannot afford professional search engine optimization (SEO) services yet. If you are one of these companies, you are probably a 1-person team managing your sales, marketing, finances, and operation. It could take a lot of patience to find your website listed on the first [...]]]></description>
			<content:encoded><![CDATA[<p>For many small companies that are just starting out, they simply cannot afford professional search engine optimization (SEO) services yet. If you are one of these companies, you are probably a 1-person team managing your sales, marketing, finances, and operation. It could take a lot of patience to find your website listed on the first page of Google search engine results, but it can be done. Here are some things that you can do on your own to get started on your SEO.</p>
<p><span id="more-318"></span></p>
<p><img class="alignleft size-full wp-image-319" title="diy-seo-for-small-businesses" src="http://dc-wp.deer-creek.ca/wp-content/uploads/2011/12/diy-seo-for-small-businesses.gif" alt="" width="150" height="163" />The Do-It-Yourself SEO Checklist:</p>
<div>
<ol>
<li style="margin-left: 15px;">Start networking with other companies in the same industry and ask for reciprocal links.</li>
<li style="margin-left: 15px;">Get your company listed in industry specific directories.</li>
<li style="margin-left: 15px;">Get listed on high ranking sites like government and schools by trying to offer something in return like a useful article(s).</li>
<li style="margin-left: 15px;">Create subject matter expert blogs and articles outside of your site like Facebook and Twitter and link them to your website.</li>
<li style="margin-left: 15px;">Build satellite sites that are specific to one subject and put specific information about that subject in that site. Link that site to your main site.</li>
<li style="margin-left: 15px;">Build satellite sites with keyword-heavy domain names related to the keywords you want to target.</li>
<li style="margin-left: 15px;">Create a YouTube channel and publish subject matter expert videos.</li>
</ol>
</div>
<p>There are many more techniques that you can do on your own by searching for &#8216;SEO tips&#8217; on Google. Don&#8217;t forget to monitor your progress by subscribing to Google Analytics. Have no fear. Doing something about SEO is better than not doing anything at all.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.deer-creek.ca/articles/search-engine-optimization/diy-seo-for-small-business/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Great job Deer Creek! You went above and beyond what I had anticipated</title>
		<link>http://www.deer-creek.ca/testimonials/great-job-deer-creek-you-went-above-and-beyond-what-i-had-anticipated</link>
		<comments>http://www.deer-creek.ca/testimonials/great-job-deer-creek-you-went-above-and-beyond-what-i-had-anticipated#comments</comments>
		<pubDate>Wed, 31 Aug 2011 21:48:40 +0000</pubDate>
		<dc:creator>Michael Bernardo</dc:creator>
				<category><![CDATA[Testimonials]]></category>

		<guid isPermaLink="false">http://dc-wp.deer-creek.ca/?p=572</guid>
		<description><![CDATA[Emmalyn C.Keiz Marshall Performing Arts Academy · Brampton, ON &#8220;Great job Deer Creek! You went above and beyond what I had anticipated. You have definitely exceeded my expectation. Remained within the deadline as promised, everyone was friendly and great response time. We waited until we came across an opportunity to see your response time when [...]]]></description>
			<content:encoded><![CDATA[<p>Emmalyn C.<br />Keiz Marshall Performing Arts Academy · Brampton, ON</p>
<p>&#8220;Great job Deer Creek! You went above and beyond what I had anticipated. You have definitely exceeded my expectation. Remained within the deadline as promised, everyone was friendly and great response time. </span></p>
<p><span id="more-572"></span></p>
<p>We waited until we came across an opportunity to see your response time when it comes to support after the project was done, and until now, you haven&#8217;t let us down and we are grateful! Best wishes to Deer Creek and thank you once again.</span>&#8220;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.deer-creek.ca/testimonials/great-job-deer-creek-you-went-above-and-beyond-what-i-had-anticipated/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

