<?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>Tutorials and How-To&#039;s From Community :: FizzBuzz.NET</title>
	<atom:link href="http://fizzbuzz.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://fizzbuzz.net</link>
	<description>Presents: IM, Web development, Web design, Mobile</description>
	<lastBuildDate>Thu, 02 Feb 2012 15:42:32 +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>Difference Between Android and Droid</title>
		<link>http://fizzbuzz.net/difference-between-android-and-droid/</link>
		<comments>http://fizzbuzz.net/difference-between-android-and-droid/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 15:42:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://fizzbuzz.net/?p=35</guid>
		<description><![CDATA[We all know what Android is and Droid too. At least we think we do. &#8216;Cause many people would say that &#8220;Droid&#8221; is just short for &#8220;Android&#8221;. True, but not entirely. In fact there is a specific phone which Verizon &#8230; <a href="http://fizzbuzz.net/difference-between-android-and-droid/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>We all know what Android is and Droid too. At least we think we do. &#8216;Cause many people would say that &#8220;Droid&#8221; is just short for &#8220;Android&#8221;. True, but not entirely.</p>
<p>In fact there is a specific phone which Verizon offers, and it&#8217;s NOT Android. Android is (just) the operating system which powers many great smart phones today.</p>
<p>To make long story short, we could also say: operating system (OS) of the modern smart phones is Android. Nickname or short expression for the smart phone powered by Android can be &#8220;Droid&#8221;. If you exclude Verizon&#8217;s phone, it&#8217;s quite clear.</p>
<p>Hope this helps somebody <img src='http://fizzbuzz.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://fizzbuzz.net/difference-between-android-and-droid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to copy a file/directory between servers on Linux</title>
		<link>http://fizzbuzz.net/how-to-copy-a-file-between-servers-on-linux/</link>
		<comments>http://fizzbuzz.net/how-to-copy-a-file-between-servers-on-linux/#comments</comments>
		<pubDate>Tue, 19 Jul 2011 13:19:40 +0000</pubDate>
		<dc:creator>bbaja</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[compress a directory]]></category>
		<category><![CDATA[scp]]></category>
		<category><![CDATA[secure copy]]></category>
		<category><![CDATA[server copy]]></category>
		<category><![CDATA[tar compression]]></category>

		<guid isPermaLink="false">http://fizzbuzz.net/?p=24</guid>
		<description><![CDATA[So, you have a file or entire directory to copy from one server to another. The first thing you considered was probably download it to your local machine and upload it to new server. Then you asked yourself &#8211; why? &#8230; <a href="http://fizzbuzz.net/how-to-copy-a-file-between-servers-on-linux/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>So, you have a file or entire directory to copy from one server to another. The first thing you considered was probably download it to your local machine and upload it to new server. Then you asked yourself &#8211; why? And you ended up here <img src='http://fizzbuzz.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Easiest way to copy is directly from one server to another.</p>
<p>If you have a directory best thing you can do is to compress it first. This little line of code will create a tar/gzip file with entire directory content compressed inside &#8211; and you have a compressed file:</p>
<pre>tar -zcvf filename.tgz /path/to/directory</pre>
<p>-z: Compress archive using gzip program<br />
-c: Create archive<br />
-v: Verbose i.e display progress while creating archive<br />
-f: Archive File name</p>
<p>All you need to do now is to copy it to another server:</p>
<pre>scp filename.tgz username@remotehost.com:/path/to/target/directory</pre>
<p>If you want to copy entire directory (not one file) use &#8216;-r&#8217; switch (recursive):</p>
<pre>scp -r /path/to/source/directory username@remotehost.com:/path/to/target/directory</pre>
<p>But it&#8217;s much better and faster to copy a compressed file. <br />
Once compressed file is copied you&#8217;ll need to uncompress it:</p>
<pre>tar -zxvf filename.tgz</pre>
<p>-x: Extract files</p>
<p>And that&#8217;s all folks.</p>
]]></content:encoded>
			<wfw:commentRss>http://fizzbuzz.net/how-to-copy-a-file-between-servers-on-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple way for a easy Google Indexing of your site!</title>
		<link>http://fizzbuzz.net/simple-way-for-a-easy-google-indexing-of-your-site/</link>
		<comments>http://fizzbuzz.net/simple-way-for-a-easy-google-indexing-of-your-site/#comments</comments>
		<pubDate>Thu, 14 Jul 2011 19:11:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet Marketing]]></category>

		<guid isPermaLink="false">http://fizzbuzz.net/?p=12</guid>
		<description><![CDATA[As a first contribution, I&#8217;ll help out with small thing from Internet Marketing domain, specifically SEO which is fast and easy indexing of your new site by Google. Nowdays, SEO is the fashion of the Internet Business. So, getting indexed &#8230; <a href="http://fizzbuzz.net/simple-way-for-a-easy-google-indexing-of-your-site/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>As a first contribution, I&#8217;ll help out with small thing from Internet Marketing domain, specifically SEO which is fast and easy indexing of your new site by Google.</p>
<p>Nowdays, SEO is the fashion of the Internet Business. So, getting indexed means to join in, or even &#8211; start a race. So, to help you out; lemme give you a small hint;</p>
<p>You&#8217;ll start seeing your SEO results from day 1 when you can lay your finger on a search result position of your site using this small method.</p>
<p>To get your new site indexed fast, you can do it like this:</p>
<ol>
<li>Go to the http://identi.ca, and register an account over there. It&#8217;s good for your social networking.</li>
<li>Once you have a profile confirmed, you can enter your homepage URL, and say hello to a world, follow some people, and that&#8217;s it.</li>
<li>In about 24h max, your URL will be indexed and you can start the race <img src='http://fizzbuzz.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </li>
</ol>
<div><span style="font-size: medium;"><span class="Apple-style-span" style="line-height: 24px;">It&#8217;s no brainer this one, there are so many other solutions for a same problem, but let&#8217;s say &#8211; this is one from my techniques, that I&#8217;m sharing with you;</span></span></div>
<div><span style="font-size: medium;"><span class="Apple-style-span" style="line-height: 24px;">Cheers!</span></span></div>
<div></div>
<div></div>
<div></div>
]]></content:encoded>
			<wfw:commentRss>http://fizzbuzz.net/simple-way-for-a-easy-google-indexing-of-your-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

