<?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>Thrive Line, Inc.</title>
	<atom:link href="http://www.thriveline.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thriveline.com/blog</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Thu, 20 May 2010 18:34:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Paypal X is off the hook!</title>
		<link>http://www.thriveline.com/blog/2009/11/paypal-x-is-off-the-hook/</link>
		<comments>http://www.thriveline.com/blog/2009/11/paypal-x-is-off-the-hook/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 17:13:43 +0000</pubDate>
		<dc:creator>nick</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.thriveline.com/blog/?p=31</guid>
		<description><![CDATA[We&#8217;re sitting here right now in San Francisco at the Paypal X Developer&#8217;s conference waiting for the opening keynote scheduled to start in a half hour.  Stay tuned&#8230; we will keep you updated.
]]></description>
			<content:encoded><![CDATA[<p>We&#8217;re sitting here right now in San Francisco at the Paypal X Developer&#8217;s conference waiting for the opening keynote scheduled to start in a half hour.  Stay tuned&#8230; we will keep you updated.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thriveline.com/blog/2009/11/paypal-x-is-off-the-hook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting up Google Apps for Businesses</title>
		<link>http://www.thriveline.com/blog/2009/10/setting-up-google-apps-for-businesses/</link>
		<comments>http://www.thriveline.com/blog/2009/10/setting-up-google-apps-for-businesses/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 18:43:23 +0000</pubDate>
		<dc:creator>nick</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://thriveline.com/blog/?p=19</guid>
		<description><![CDATA[What is it?

 Google Apps allows businesses to have free Email, Calendar, and Documents online.
Google has created the most secure and fast way to get your business running effectively online.

Is it the same as GMail?

What people usually mean when asking this question is &#8220;Will my email be  xxxxx@gmail.com&#8221;
The answer to that is no.  Google Apps [...]]]></description>
			<content:encoded><![CDATA[<p><strong>What is it?</strong></p>
<ul>
<li> Google Apps allows businesses to have free Email, Calendar, and Documents online.</li>
<li>Google has created the most secure and fast way to get your business running effectively online.</li>
</ul>
<p><strong>Is it the same as GMail?</strong></p>
<ul>
<li>What people usually mean when asking this question is &#8220;Will my email be  xxxxx@gmail.com&#8221;</li>
<li>The answer to that is no.  Google Apps Email allows companies to have email addresses that are branded with their website address like  xxxxx@mywebsite.com</li>
<li>On the other hand, using Google Apps Email does still use the powerful GMail web based email, it is just customized to the email address that you want.</li>
</ul>
<p><strong>How to sign up?</strong></p>
<ul>
<li> Google Apps Standard Edition is free for 100 users.</li>
<li>For those who feel up to it, you can signup here:  <a href="http://www.google.com/apps/intl/en/group/index.html" target="_blank">http://www.google.com/apps/intl/en/group/index.html</a></li>
</ul>
<p><strong>Will you guys do it for me?</strong></p>
<ul>
<li>We also offer Google Apps Setup for a nominal fee.  If you would like to save your time and have us do it for you, give us a call at (805) 628-2030</li>
</ul>
<p>- The team @ Thrive Line</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thriveline.com/blog/2009/10/setting-up-google-apps-for-businesses/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Copying a site&#8217;s files from one host to another</title>
		<link>http://www.thriveline.com/blog/2009/10/copying-a-sites-files-from-one-host-to-another/</link>
		<comments>http://www.thriveline.com/blog/2009/10/copying-a-sites-files-from-one-host-to-another/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 00:30:41 +0000</pubDate>
		<dc:creator>nick</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://thriveline.com/blog/2009/10/copying-a-sites-files-from-one-host-to-another/</guid>
		<description><![CDATA[Terms:
Site1 = http://site1.com/
Site2 = http://site2.com/
Site1Path = /home/user1045/domains/site1.com/html
Site2Path = /home/user9938/domains/site2.com/html
STEPS:
1) ssh into site1
- ssh serveradmin@site1.com
- enter password
- &#8220;cd domains/site1.com&#8221;
- &#8220;tar czf filesbackup.tar.gz html&#8221;
- &#8220;mv filesbackup.tar.gz html&#8221;
2) ssh into site2 and download files from site1
- ssh serveradmin@site2.com
- enter password
- &#8220;cd domains/site2.com&#8221;
- &#8220;rm -r html&#8221;
- &#8220;wget http://site1.com/filesbackup.tar.gz&#8221;
- &#8220;tar xvfz filesbackup.tar.gz&#8221;
]]></description>
			<content:encoded><![CDATA[<p><strong>Terms:</strong><br />
Site1 = http://site1.com/<br />
Site2 = http://site2.com/</p>
<p>Site1Path = /home/user1045/domains/site1.com/html<br />
Site2Path = /home/user9938/domains/site2.com/html</p>
<p><strong>STEPS:</strong><br />
1) ssh into site1<br />
- ssh serveradmin@site1.com<br />
- enter password<br />
- &#8220;cd domains/site1.com&#8221;<br />
- &#8220;tar czf filesbackup.tar.gz html&#8221;<br />
- &#8220;mv filesbackup.tar.gz html&#8221;</p>
<p>2) ssh into site2 and download files from site1<br />
- ssh serveradmin@site2.com<br />
- enter password<br />
- &#8220;cd domains/site2.com&#8221;<br />
- &#8220;rm -r html&#8221;<br />
- &#8220;wget http://site1.com/filesbackup.tar.gz&#8221;<br />
- &#8220;tar xvfz filesbackup.tar.gz&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thriveline.com/blog/2009/10/copying-a-sites-files-from-one-host-to-another/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Minimizing Complexity In User Interfaces</title>
		<link>http://www.thriveline.com/blog/2009/10/minimizing-complexity-in-user-interfaces/</link>
		<comments>http://www.thriveline.com/blog/2009/10/minimizing-complexity-in-user-interfaces/#comments</comments>
		<pubDate>Fri, 09 Oct 2009 00:59:43 +0000</pubDate>
		<dc:creator>j</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://thriveline.com/blog/?p=11</guid>
		<description><![CDATA[A great article on simplicity in UI design. Some key points I took away from it:

The &#8220;blank state&#8221; is the first impression. Make it useful.
&#8220;When deciding whether a feature is necessary, the default answer should be &#8216;No.&#8217;&#8221;
&#8220;80% of users use only 20% of software features.&#8221;
White space is a good thing!

Read the article: http://www.smashingmagazine.com/2009/10/07/minimizing-complexity-in-user-interfaces/
]]></description>
			<content:encoded><![CDATA[<p>A great article on simplicity in UI design. Some key points I took away from it:</p>
<ul>
<li>The &#8220;blank state&#8221; is the first impression. Make it useful.</li>
<li>&#8220;When deciding whether a feature is necessary, the default answer should be &#8216;No.&#8217;&#8221;</li>
<li>&#8220;80% of users use only 20% of software features.&#8221;</li>
<li>White space is a good thing!</li>
</ul>
<p>Read the article: <a href="http://www.smashingmagazine.com/2009/10/07/minimizing-complexity-in-user-interfaces/" target="_blank">http://www.smashingmagazine.com/2009/10/07/minimizing-complexity-in-user-interfaces/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thriveline.com/blog/2009/10/minimizing-complexity-in-user-interfaces/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is creativity?</title>
		<link>http://www.thriveline.com/blog/2009/10/what-is-creativity/</link>
		<comments>http://www.thriveline.com/blog/2009/10/what-is-creativity/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 22:13:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://thriveline.com/blog/?p=8</guid>
		<description><![CDATA[As jazz musician Charles Mingus said, “Making the simple complicated is commonplace; making the complicated simple, awesomely simple, that’s creativity.”
]]></description>
			<content:encoded><![CDATA[<p>As jazz musician Charles Mingus said, “Making the simple complicated is commonplace; making the complicated simple, awesomely simple, that’s creativity.”</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thriveline.com/blog/2009/10/what-is-creativity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Turn off PHP Register Globals in Drupal on Network Solutions</title>
		<link>http://www.thriveline.com/blog/2009/10/register_globals_network_solutions_drupal/</link>
		<comments>http://www.thriveline.com/blog/2009/10/register_globals_network_solutions_drupal/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 21:17:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[drupal]]></category>
		<category><![CDATA[network solutions]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[register_globals]]></category>

		<guid isPermaLink="false">http://thriveline.com/blog/?p=1</guid>
		<description><![CDATA[Turning off register_globals = off on Network Solutions is a real pain in a**.]]></description>
			<content:encoded><![CDATA[<p>1. Login to the Network Solutions file manager<br />
2. navigate to the /cgi-bin folder<br />
3. create /cgi-bin/php.ini file<br />
4. type the following:<br />
<em> register_globals = off<br />
</em>5. Save file</p>
<p>NOTE: Network solutions setup makes no sense.  Traditionally you would create the php.ini file in the path that you installed your php scripts.  For whatever reason there servers look here and effect your entire site inside <strong>htdocs</strong> folder.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thriveline.com/blog/2009/10/register_globals_network_solutions_drupal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
