<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>cloud9 Business</title>
	
	<link>http://www.cloud9business.com</link>
	<description>Increased profits through effective marketing strategies</description>
	<lastBuildDate>Sat, 10 Mar 2012 08:52:53 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/cloud9Business" /><feedburner:info uri="cloud9business" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>User Acceptance Testing</title>
		<link>http://feedproxy.google.com/~r/cloud9Business/~3/HyMgRPu07SY/</link>
		<comments>http://www.cloud9business.com/user-acceptance-testing/#comments</comments>
		<pubDate>Sun, 26 Feb 2012 01:33:02 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Definitions]]></category>
		<category><![CDATA[UAT]]></category>
		<category><![CDATA[user acceptance testing]]></category>

		<guid isPermaLink="false">http://www.cloud9business.com/?p=798</guid>
		<description><![CDATA[User acceptance testing (UAT) is where the client checks and then approves changes prior to deployment to production. This is a separate process to testing during the development process.]]></description>
				<content:encoded><![CDATA[<p>User acceptance testing (UAT) is where the client checks and then approves changes prior to deployment to production. This is a separate process to testing during the development process.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cloud9business.com/user-acceptance-testing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.cloud9business.com/user-acceptance-testing/</feedburner:origLink></item>
		<item>
		<title>Software Configuration Management</title>
		<link>http://feedproxy.google.com/~r/cloud9Business/~3/Grnyv6qbeyI/</link>
		<comments>http://www.cloud9business.com/software-configuration-management/#comments</comments>
		<pubDate>Sun, 26 Feb 2012 01:23:33 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Definitions]]></category>
		<category><![CDATA[SCM]]></category>
		<category><![CDATA[software configuration management]]></category>

		<guid isPermaLink="false">http://www.cloud9business.com/?p=794</guid>
		<description><![CDATA[Software configuration management (SCM) is a process within software engineering. It is the task of keeping track of and controlling changes in the software and is how you maintain control over the evolution of a software project. SCM practices include the establishment of baselines and revision control. SCM answers the question &#8220;Somebody did something, how can [...]]]></description>
				<content:encoded><![CDATA[<p>Software configuration management (SCM) is a process within software engineering. It is the task of keeping track of and controlling changes in the software and is how you maintain control over the evolution of a software project. SCM practices include the establishment of baselines and revision control. SCM answers the question &#8220;Somebody did something, how can we reproduce it?&#8221;</p>
<p>SCM is typically implemented using systems such as Atlassian&#8217;s <a href="http://www.atlassian.com/software/bamboo/overview" target="_blank">Bamboo</a>, <a href="https://github.com/capistrano/capistrano" target="_blank">Capistrano</a> and <a href="http://capifony.org/" target="_blank">Capifony</a>.</p>
<p>A basic requirement of a good SCM process is to have local development environments for each developer so that they can perform their work without impacting other developers and only be required to merge their work when they are getting ready to deploy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cloud9business.com/software-configuration-management/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.cloud9business.com/software-configuration-management/</feedburner:origLink></item>
		<item>
		<title>Symfony2 Command Line Made Easy</title>
		<link>http://feedproxy.google.com/~r/cloud9Business/~3/PiH-yJULt7M/</link>
		<comments>http://www.cloud9business.com/symfony2-command-line-made-easy/#comments</comments>
		<pubDate>Sat, 28 Jan 2012 20:44:19 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Symfony]]></category>

		<guid isPermaLink="false">http://www.cloud9business.com/?p=788</guid>
		<description><![CDATA[Relates to: Symfony 2 Symfony is an excellent framework however it can be a bit verbose and tedious at times. For example, when executing commands from the command line it&#8217;s a requirement to be in the root directory of your Symfony project and use something like: php app/console cache:clear The following script allows you to [...]]]></description>
				<content:encoded><![CDATA[<p>Relates to: Symfony 2</p>
<p>Symfony is an excellent framework however it can be a bit verbose and tedious at times. For example, when executing commands from the command line it&#8217;s a requirement to be in the root directory of your Symfony project and use something like:</p>
<pre>php app/console cache:clear</pre>
<p>The following script allows you to instead run commands using a shortened command from anywhere within your project&#8217;s directory tree. For example:</p>
<pre>sf cache:clear</pre>
<blockquote><p>#!/bin/bash</p>
<p># Expand globs to null when there are no matches<br />
shopt -s nullglob</p>
<p># Look for either a &#8216;/console&#8217; or a &#8216;symfony&#8217; file<br />
until<br />
file=(*/console symfony); [[ -f "$file" ]] &amp;&amp; php &#8220;$file&#8221; &#8220;$@&#8221; &amp;&amp; exit;<br />
do<br />
[[ "$PWD" == "/" ]] &amp;&amp; break;<br />
cd ..<br />
done</p>
<p>echo &#8216;No Symfony file could be found!&#8217;</p></blockquote>
<p>To install, simply create a file with the above bash script called &#8216;sf&#8217; and place it somewhere in your path, for example /usr/local/bin/. Be sure to give it the correct execute permissions.</p>
<p>References:</p>
<ol>
<li><a title="Symfony2 CLI bash script" href="http://www.tobiassjosten.net/symfony/symfony2-cli-bash-script" target="_blank">Symfony2 CLI bash script</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.cloud9business.com/symfony2-command-line-made-easy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.cloud9business.com/symfony2-command-line-made-easy/</feedburner:origLink></item>
		<item>
		<title>Publish updates from Eclipse to GitHub</title>
		<link>http://feedproxy.google.com/~r/cloud9Business/~3/ug6kxo3xw1o/</link>
		<comments>http://www.cloud9business.com/publish-updates-from-eclipse-to-github/#comments</comments>
		<pubDate>Sun, 08 Jan 2012 11:09:54 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[IDE]]></category>
		<category><![CDATA[Source Code Control]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[Git]]></category>

		<guid isPermaLink="false">http://www.cloud9business.com/?p=780</guid>
		<description><![CDATA[Assumes a local Git repository is already configured in Eclipse and the corresponding respository exists on GitHub. Step 1 Make your coding changes and commit in Eclipse. Step 2 cd to the local repository and: git push origin master &#160;]]></description>
				<content:encoded><![CDATA[<p>Assumes a local Git repository is already configured in Eclipse and the corresponding respository exists on GitHub.</p>
<p><strong>Step 1</strong></p>
<p>Make your coding changes and commit in Eclipse.</p>
<p style="text-align: center;"><img class="aligncenter  wp-image-781" title="commit-changes-to-local-git-repository" src="http://www.cloud9business.com/wp-content/uploads/2012/01/commit-changes-to-local-git-repository.png" alt="commit changes to local git repository Publish updates from Eclipse to GitHub" width="452" height="426" /></p>
<p><strong>Step 2</strong></p>
<p>cd to the local repository and:</p>
<p>git push origin master</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cloud9business.com/publish-updates-from-eclipse-to-github/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.cloud9business.com/publish-updates-from-eclipse-to-github/</feedburner:origLink></item>
		<item>
		<title>How To Setup GitHub and Eclipse To Maintain Symfony2 Bundles</title>
		<link>http://feedproxy.google.com/~r/cloud9Business/~3/D2nNT1oq3AE/</link>
		<comments>http://www.cloud9business.com/how-to-setup-github-and-eclipse-to-maintain-symfony2-bundles/#comments</comments>
		<pubDate>Sun, 08 Jan 2012 07:35:26 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[IDE]]></category>
		<category><![CDATA[Source Code Control]]></category>
		<category><![CDATA[Symfony]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[Git]]></category>

		<guid isPermaLink="false">http://www.cloud9business.com/?p=762</guid>
		<description><![CDATA[Step 1 Create a new repository on GitHub Step 2 Set up the local Git on your computer: http://help.github.com/mac-set-up-git/ Create a directory for the Git reposiories. Something like ~/GitRep. Follow the instructions on the GitHub page: Step 3 Setup Egit in Eclipse: http://eclipse.org/egit/ Set the default repository directory to the one create din step 2. [...]]]></description>
				<content:encoded><![CDATA[<p><strong>Step 1</strong></p>
<p>Create a new repository on GitHub</p>
<p><img class="aligncenter size-full wp-image-763" title="new-github-repository" src="http://www.cloud9business.com/wp-content/uploads/2012/01/new-github-repository.png" alt="new github repository How To Setup GitHub and Eclipse To Maintain Symfony2 Bundles" width="475" height="113" /></p>
<p style="text-align: center;"><img class="aligncenter  wp-image-764" title="github-repository-details" src="http://www.cloud9business.com/wp-content/uploads/2012/01/github-repository-details.png" alt="github repository details How To Setup GitHub and Eclipse To Maintain Symfony2 Bundles" width="474" height="370" /></p>
<p><strong>Step 2</strong></p>
<p>Set up the local Git on your computer:</p>
<p><a title="set up git on a Mac" href="http://help.github.com/mac-set-up-git/" target="_blank">http://help.github.com/mac-set-up-git/</a></p>
<p>Create a directory for the Git reposiories. Something like ~/GitRep.</p>
<p>Follow the instructions on the GitHub page:</p>
<p style="text-align: center;"><img class="aligncenter  wp-image-772" title="Setup-git-on-your-computer" src="http://www.cloud9business.com/wp-content/uploads/2012/01/Setup-git-on-your-computer.png" alt="Setup git on your computer How To Setup GitHub and Eclipse To Maintain Symfony2 Bundles" width="452" height="458" /></p>
<p><strong>Step 3</strong></p>
<p>Setup Egit in Eclipse:</p>
<p><a href="http://eclipse.org/egit/" target="_blank">http://eclipse.org/egit/</a></p>
<p>Set the default repository directory to the one create din step 2. e.g. ~/GitRep</p>
<p><strong>Step 4</strong></p>
<p>Locate the repository URI on GitHub.</p>
<p style="text-align: center;"><img class="aligncenter  wp-image-778" title="github-repository-uri" src="http://www.cloud9business.com/wp-content/uploads/2012/01/github-repository-uri1.png" alt="github repository uri1 How To Setup GitHub and Eclipse To Maintain Symfony2 Bundles" width="479" height="120" /></p>
<p style="text-align: center;">
<p>Clone the repository hosted on GitHub</p>
<p style="text-align: center;"><img class="aligncenter  wp-image-777" title="clone-git-repository" src="http://www.cloud9business.com/wp-content/uploads/2012/01/clone-git-repository1.png" alt="clone git repository1 How To Setup GitHub and Eclipse To Maintain Symfony2 Bundles" width="521" height="392" /></p>
<p>&nbsp;</p>
<p><strong>Step 6</strong></p>
<p>From the Git Repository view in Eclipse import the project by right clicking on the master branch.</p>
<p style="text-align: center;"><img class="aligncenter  wp-image-766" title="import-git-project" src="http://www.cloud9business.com/wp-content/uploads/2012/01/import-git-project.png" alt="import git project How To Setup GitHub and Eclipse To Maintain Symfony2 Bundles" width="484" height="142" /></p>
<p>Import as a general project</p>
<p style="text-align: center;"><img class="aligncenter  wp-image-767" title="import-general-git-project" src="http://www.cloud9business.com/wp-content/uploads/2012/01/import-general-git-project.png" alt="import general git project How To Setup GitHub and Eclipse To Maintain Symfony2 Bundles" width="450" height="418" /></p>
<p>Your new Symfony2 Bundle project will now be in GitHub and in a local Git repository accessible within Eclipse.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cloud9business.com/how-to-setup-github-and-eclipse-to-maintain-symfony2-bundles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.cloud9business.com/how-to-setup-github-and-eclipse-to-maintain-symfony2-bundles/</feedburner:origLink></item>
		<item>
		<title>Exclude .svn directories in Eclipse</title>
		<link>http://feedproxy.google.com/~r/cloud9Business/~3/4XQOKqVgU-U/</link>
		<comments>http://www.cloud9business.com/exclude-svn-directories-in-eclipse/#comments</comments>
		<pubDate>Sun, 08 Jan 2012 03:22:53 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[IDE]]></category>
		<category><![CDATA[Source Code Control]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[SVN]]></category>

		<guid isPermaLink="false">http://www.cloud9business.com/?p=750</guid>
		<description><![CDATA[Applies to: Eclipse Indigo Something that you don&#8217;t want to include in your source control are the hidden files used by the source control system itself. For SVN that would be the .svn and related directories. Here&#8217;s a simply way to exclude them: Open the properties of the project and go to Resource &#62; Resource Filters. [...]]]></description>
				<content:encoded><![CDATA[<p>Applies to: Eclipse Indigo</p>
<p>Something that you don&#8217;t want to include in your source control are the hidden files used by the source control system itself. For SVN that would be the .svn and related directories.</p>
<p>Here&#8217;s a simply way to exclude them:</p>
<p>Open the properties of the project and go to Resource &gt; Resource Filters.</p>
<p style="text-align: center;"><img class="aligncenter  wp-image-758" title="eclipse-resource-filters" src="http://www.cloud9business.com/wp-content/uploads/2012/01/eclipse-resource-filters.png" alt="eclipse resource filters Exclude .svn directories in Eclipse" width="535" height="398" /></p>
<p>Select &#8220;Exclude all&#8221; and click on the &#8220;Add&#8230;&#8221; button.<span style="text-align: center;"> </span></p>
<p style="text-align: center;"><img class="aligncenter  wp-image-751" title="exclude-svn-directories" src="http://www.cloud9business.com/wp-content/uploads/2012/01/exclude-svn-directories1.png" alt="exclude svn directories1 Exclude .svn directories in Eclipse" width="477" height="333" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cloud9business.com/exclude-svn-directories-in-eclipse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.cloud9business.com/exclude-svn-directories-in-eclipse/</feedburner:origLink></item>
		<item>
		<title>Exclude .git directories in Eclipse</title>
		<link>http://feedproxy.google.com/~r/cloud9Business/~3/ttYEIVvj2MI/</link>
		<comments>http://www.cloud9business.com/exclude-git-directories-in-eclipse/#comments</comments>
		<pubDate>Sun, 08 Jan 2012 03:02:22 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[IDE]]></category>
		<category><![CDATA[Source Code Control]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[Git]]></category>

		<guid isPermaLink="false">http://www.cloud9business.com/?p=741</guid>
		<description><![CDATA[Applies to: Eclipse Indigo Something that you don&#8217;t want to include in your source control are the hidden files used by the source control system itself. For Git that would be the .git and related directories. Here&#8217;s a simply way to exclude them: Open the properties of the project and go to Resource &#62; Resource Filters. [...]]]></description>
				<content:encoded><![CDATA[<p>Applies to: Eclipse Indigo</p>
<p>Something that you don&#8217;t want to include in your source control are the hidden files used by the source control system itself. For Git that would be the .git and related directories.</p>
<p>Here&#8217;s a simply way to exclude them:</p>
<p>Open the properties of the project and go to Resource &gt; Resource Filters.</p>
<p style="text-align: center;"><img class="aligncenter  wp-image-758" title="eclipse-resource-filters" src="http://www.cloud9business.com/wp-content/uploads/2012/01/eclipse-resource-filters.png" alt="eclipse resource filters Exclude .git directories in Eclipse" width="535" height="398" /></p>
<p>Select &#8220;Exclude all&#8221; and click on the &#8220;Add&#8230;&#8221; button.</p>
<p style="text-align: center;"><img class="aligncenter  wp-image-744" title="exclude-git-directories" src="http://www.cloud9business.com/wp-content/uploads/2012/01/exclude-git-directories1.png" alt="exclude git directories1 Exclude .git directories in Eclipse" width="477" height="333" /></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cloud9business.com/exclude-git-directories-in-eclipse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.cloud9business.com/exclude-git-directories-in-eclipse/</feedburner:origLink></item>
		<item>
		<title>Article Marketing Expert</title>
		<link>http://feedproxy.google.com/~r/cloud9Business/~3/KWa-07bGZYg/</link>
		<comments>http://www.cloud9business.com/jobs/article-marketing-expert/#comments</comments>
		<pubDate>Fri, 04 Feb 2011 00:21:46 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
		
		<guid isPermaLink="false">http://www.cloud9business.com/jobs/article-marketing-expert/</guid>
		<description />
				<content:encoded />
			<wfw:commentRss>http://www.cloud9business.com/jobs/article-marketing-expert/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.cloud9business.com/jobs/article-marketing-expert/</feedburner:origLink></item>
		<item>
		<title>Increase Client Value</title>
		<link>http://feedproxy.google.com/~r/cloud9Business/~3/J26N10eE6Zw/</link>
		<comments>http://www.cloud9business.com/lp/increase-client-value/#comments</comments>
		<pubDate>Tue, 25 Jan 2011 00:43:23 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
		
		<guid isPermaLink="false">http://www.cloud9business.com/?post_type=landingpage&amp;p=716</guid>
		<description><![CDATA[Secure your complimentary marketing consultation valued at $500. Eligibility criteria apply.]]></description>
				<content:encoded><![CDATA[<div class="cols2leftcolumn">It&#8217;s common knowledge that it costs more to get a new customer than it does to<strong> sell more to your existing customers</strong>. Why is it then that some business owners are willing to spend so much money on advertising to get in new customers when there is a <strong>goldmine in your own backyard</strong>? The agile entrepreneur understands this concept and puts in place systems to up sell, to cross sell and to <strong>increase the frequency of sale</strong>. To be effective this requires a carefully designed process that gets inside the customers head and provides them with solutions to their</div>
<p><div class="cols2rightcolumn">ongoing problems. This is good news, but there is even more. There is an <strong>underutilised resource</strong> of new business that could be sitting there in your backyard waiting for you to harvest. Every happy customer is a potential source of referrals. Understanding how your customer thinks and at what point in the process they are most likely to refer their friends, family and colleagues to you presents an opportunity that can&#8217;t be missed. The correct mix of t<strong>argeted online and offline techniques</strong> can dramatically increase your profits with no additional advertising.</div><br />
<div style="clear:both;"><!-- --></div></p>
<div style="font-size: 22px; color: #f36; text-align: center;"><strong>Secure your complimentary marketing consultation valued at $500.</strong><br />
Eligibility criteria apply.</div>
]]></content:encoded>
			<wfw:commentRss>http://www.cloud9business.com/lp/increase-client-value/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.cloud9business.com/lp/increase-client-value/</feedburner:origLink></item>
		<item>
		<title>Convert To Sales</title>
		<link>http://feedproxy.google.com/~r/cloud9Business/~3/yTpWnTZjm5o/</link>
		<comments>http://www.cloud9business.com/lp/convert-to-sales/#comments</comments>
		<pubDate>Tue, 25 Jan 2011 00:42:56 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
		
		<guid isPermaLink="false">http://www.cloud9business.com/?post_type=landingpage&amp;p=715</guid>
		<description><![CDATA[Secure your complimentary marketing consultation valued at $500. Eligibility criteria apply.]]></description>
				<content:encoded><![CDATA[<div class="cols2leftcolumn">It&#8217;s one thing to get potential clients to come through your door. It&#8217;s another thing altogether to actually get them to take out their wallet and part with their money. A <strong>highly tuned sales conversion system</strong> is a key part in running a profitable business. A lax sales conversion process on the other hand will cost you money and cause you pain. Think about the number of &#8220;tire kickers&#8221; that you have to deal with. It would obviously free up your time if you didn&#8217;t have to deal with these people that are never really going</div>
<p><div class="cols2rightcolumn">to buy from you. With a system that sends you <strong>pre-qualified leads</strong> you can devote more attention to these <strong>high value prospects</strong> guiding them through a highly systemised process that leads the right prospects to that magic moment when they hand over their cash in exchange for your products or services. You can have a system like this in place using both <strong>online and offline methods</strong> to send you more of the right kind of prospects and guide them towards a successful sale.</div><br />
<div style="clear:both;"><!-- --></div></p>
<div style="font-size: 22px; color: #f36; text-align: center;"><strong>Secure your complimentary marketing consultation valued at $500.</strong><br />
Eligibility criteria apply.</div>
]]></content:encoded>
			<wfw:commentRss>http://www.cloud9business.com/lp/convert-to-sales/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.cloud9business.com/lp/convert-to-sales/</feedburner:origLink></item>
	</channel>
</rss>
