<?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>Techtips</title>
	<atom:link href="http://tips.techretold.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://tips.techretold.com</link>
	<description></description>
	<lastBuildDate>Wed, 01 Sep 2010 18:03:01 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Pinging infinitely in Windows</title>
		<link>http://tips.techretold.com/pinging-infinitely-in-windows/</link>
		<comments>http://tips.techretold.com/pinging-infinitely-in-windows/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 18:03:01 +0000</pubDate>
		<dc:creator>ramanean</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Ping infinitely]]></category>
		<category><![CDATA[Pinging windows]]></category>

		<guid isPermaLink="false">http://tips.techretold.com/?p=227</guid>
		<description><![CDATA[<p>To ping infinitely in Windows use this command</p>
<blockquote><p>ping 172.67.71.34 -t</p></blockquote>
<p>To stop pinging infinitely use CTRL+C </p>
]]></description>
			<content:encoded><![CDATA[<p>To ping infinitely in Windows use this command</p>
<blockquote><p>ping 172.67.71.34 -t</p></blockquote>
<p>To stop pinging infinitely use CTRL+C </p>
]]></content:encoded>
			<wfw:commentRss>http://tips.techretold.com/pinging-infinitely-in-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ping command in Ubuntu</title>
		<link>http://tips.techretold.com/ping-command-in-ubuntu/</link>
		<comments>http://tips.techretold.com/ping-command-in-ubuntu/#comments</comments>
		<pubDate>Sat, 07 Aug 2010 06:40:03 +0000</pubDate>
		<dc:creator>ramanean</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Ping command in Ubuntu]]></category>

		<guid isPermaLink="false">http://tips.techretold.com/?p=224</guid>
		<description><![CDATA[<p>To ping a domain in Ubuntu</p>
<p>Steps<br />
1.Click on Applications &#8211;&#62;Terminals<br />
2.In the Terminal type</p>
<blockquote>
<p>ping google.com</p>
</blockquote>
<p>When you type the command you would get a response like this.. if it&#8217;s ping successfully</p>
<blockquote><p>
64 bytes from 66.249.92.104: icmp_seq=1 ttl=53 time=289 ms<br />
64 bytes from 66.249.92.104: icmp_seq=2 ttl=53&#8230;</p></blockquote>]]></description>
			<content:encoded><![CDATA[<p>To ping a domain in Ubuntu</p>
<p>Steps<br />
1.Click on Applications &#8211;&gt;Terminals<br />
2.In the Terminal type</p>
<blockquote>
<p>ping google.com</p>
</blockquote>
<p>When you type the command you would get a response like this.. if it&#8217;s ping successfully</p>
<blockquote><p>
64 bytes from 66.249.92.104: icmp_seq=1 ttl=53 time=289 ms<br />
64 bytes from 66.249.92.104: icmp_seq=2 ttl=53 time=290 ms<br />
64 bytes from 66.249.92.104: icmp_seq=3 ttl=53 time=294 ms<br />
64 bytes from 66.249.92.104: icmp_seq=4 ttl=53 time=294 ms<br />
64 bytes from 66.249.92.104: icmp_seq=5 ttl=53 time=281 ms
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://tips.techretold.com/ping-command-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Copying a directories in Ubuntu</title>
		<link>http://tips.techretold.com/copying-a-directories-in-ubuntu/</link>
		<comments>http://tips.techretold.com/copying-a-directories-in-ubuntu/#comments</comments>
		<pubDate>Sat, 07 Aug 2010 06:28:36 +0000</pubDate>
		<dc:creator>ramanean</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Copying directories in Ubuntu]]></category>

		<guid isPermaLink="false">http://tips.techretold.com/?p=221</guid>
		<description><![CDATA[<p>To Copy directories in Ubuntu use this command</p>
<p><span style="text-decoration: underline;">Syntax:</span></p>
<blockquote><p><code>sudo cp -R sourcepath destionationpath</code></p></blockquote>
<p><span style="text-decoration: underline;">E.g</span></p>
<blockquote><p><code>sudo cp -R /home/shan/Desktop/mapmaker  /opt/lampp/htdocs/mapmaker</code></p></blockquote>
<p>Here the directory mapmaker is copied from /home/shan/Desktop to  this folder<br />
/opt/lampp/htdocs/mapmaker .</p>
]]></description>
			<content:encoded><![CDATA[<p>To Copy directories in Ubuntu use this command</p>
<p><span style="text-decoration: underline;">Syntax:</span></p>
<blockquote><p><code>sudo cp -R sourcepath destionationpath</code></p></blockquote>
<p><span style="text-decoration: underline;">E.g</span></p>
<blockquote><p><code>sudo cp -R /home/shan/Desktop/mapmaker  /opt/lampp/htdocs/mapmaker</code></p></blockquote>
<p>Here the directory mapmaker is copied from /home/shan/Desktop to  this folder<br />
/opt/lampp/htdocs/mapmaker .</p>
]]></content:encoded>
			<wfw:commentRss>http://tips.techretold.com/copying-a-directories-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using custom fonts on websites</title>
		<link>http://tips.techretold.com/using-custom-fonts-on-websites/</link>
		<comments>http://tips.techretold.com/using-custom-fonts-on-websites/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 01:19:04 +0000</pubDate>
		<dc:creator>ramanean</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Embedding fonts in a webpage]]></category>

		<guid isPermaLink="false">http://tips.techretold.com/?p=218</guid>
		<description><![CDATA[<p>How to embed fonts in a webpage? or How to use custom fonts in a webpage?</p>
<p>The below tutorial would explain how to embed and use custom fonts in a webpage</p>
<p>There are many new fonts available in the web other than&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>How to embed fonts in a webpage? or How to use custom fonts in a webpage?</p>
<p>The below tutorial would explain how to embed and use custom fonts in a webpage</p>
<p>There are many new fonts available in the web other than Arial and Verdana to use them in your OS.. you can download those fonts and install it ..By this you can use them in Paint.NET ,Adobe Photoshop to create your own images but it would be impossible for anyone to create dynamic webpages with those fonts</p>
<p>This is needed as using different fonts rather than normal Arial or Verdana as that will make your site different from others</p>
<p>Here are 5 simple steps you can follow to make your site look different with different fonts</p>
<p><span style="text-decoration: underline;">Step 1:</span></p>
<p>Download fonts (from smashing magazine) and then head to</p>
<p><a href="http://cufon.shoqolate.com/generate/">http://cufon.shoqolate.com/generate/</a></p>
<p><span style="text-decoration: underline;">Step 2:</span></p>
<p>Upload any font you have</p>
<p><span style="text-decoration: underline;">Step 3:</span></p>
<p>Then click on generate font</p>
<p><span style="text-decoration: underline;">Step 4.</span></p>
<p>Download the javascript generated and upload it to your site.. and also download cufon-yui.js script..</p>
<p>See the below example and I am planning to use District font on my site so I have generated a script District_100.font.js</p>
<p>Insert the below code into your webpage<br />
<code><br />
<script src="http://www.techretold.com/fonts/cufon-yui.js" type="text/javascript"></script> <script src="http://www.techretold.com/fonts/District_100.font.js" type="text/javascript"></script></p>
<p><script type="text/javascript">// <![CDATA[
Cufon.replace('#df', { fontFamily: 'District'' });
Cufon.replace('h2', { fontFamily: 'District' });
// ]]&gt;</script></code></p>
<p>In the above code </p>
<p>The first cufon.replace would replace the fonts  inside the division id with &#8216;District font&#8217; and the second would replace the font for heading tag h2..</p>
]]></content:encoded>
			<wfw:commentRss>http://tips.techretold.com/using-custom-fonts-on-websites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Xml class for Php</title>
		<link>http://tips.techretold.com/xml-class-for-php/</link>
		<comments>http://tips.techretold.com/xml-class-for-php/#comments</comments>
		<pubDate>Fri, 16 Jul 2010 18:23:54 +0000</pubDate>
		<dc:creator>ramanean</dc:creator>
				<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://tips.techretold.com/?p=214</guid>
		<description><![CDATA[<p>Here is one the good xml classes for Php from  Troy wolf</p>
<p>http://www.troywolf.com/articles/php/class_xml/</p>
<p>Just download the file and see the example given the above url</p>
]]></description>
			<content:encoded><![CDATA[<p>Here is one the good xml classes for Php from  Troy wolf</p>
<p>http://www.troywolf.com/articles/php/class_xml/</p>
<p>Just download the file and see the example given the above url</p>
]]></content:encoded>
			<wfw:commentRss>http://tips.techretold.com/xml-class-for-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating a file in Unix</title>
		<link>http://tips.techretold.com/creating-a-file-in-unix/</link>
		<comments>http://tips.techretold.com/creating-a-file-in-unix/#comments</comments>
		<pubDate>Fri, 16 Jul 2010 17:34:31 +0000</pubDate>
		<dc:creator>ramanean</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://tips.techretold.com/?p=212</guid>
		<description><![CDATA[<p>To Create file in unix use this command</p>
<p>cat > a1.txt</p>
<p>Once this entered you can edit the contents of the file by typing anything and then pressing CTRL+D for saving it</p>
]]></description>
			<content:encoded><![CDATA[<p>To Create file in unix use this command</p>
<p>cat > a1.txt</p>
<p>Once this entered you can edit the contents of the file by typing anything and then pressing CTRL+D for saving it</p>
]]></content:encoded>
			<wfw:commentRss>http://tips.techretold.com/creating-a-file-in-unix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Multiple order by SQL</title>
		<link>http://tips.techretold.com/multiple-order-by-sql/</link>
		<comments>http://tips.techretold.com/multiple-order-by-sql/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 18:06:52 +0000</pubDate>
		<dc:creator>ramanean</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Multiple orders by SQL]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://tips.techretold.com/?p=206</guid>
		<description><![CDATA[<p>To display a table sorted out by multiple columns use this command below</p>
<p>E.g</p>
<p>I am having a table like this</p>
<p style="text-align: center;"><a href="http://tips.techretold.com/http://tips.techretold.com/wp-content/uploads/2010/06/orderby1.jpg"><img class="size-full wp-image-207 aligncenter" title="orderby1" src="http://tips.techretold.com/http://tips.techretold.com/wp-content/uploads/2010/06/orderby1.jpg" alt="" width="279" height="93" /></a></p>
<p><span style="text-decoration: underline;">Requirement:</span></p>
<p>So now I need to get the table ordered  by checkins first and then by nightsout</p>
<p><span style="text-decoration: underline;">Solution:</span><br />
<code>SELECT *FROM `foursquare_rank`ORDER BY `checkins` DESC ,&#8230;</code></p>]]></description>
			<content:encoded><![CDATA[<p>To display a table sorted out by multiple columns use this command below</p>
<p>E.g</p>
<p>I am having a table like this</p>
<p style="text-align: center;"><a href="http://tips.techretold.com/http://tips.techretold.com/wp-content/uploads/2010/06/orderby1.jpg"><img class="size-full wp-image-207 aligncenter" title="orderby1" src="http://tips.techretold.com/http://tips.techretold.com/wp-content/uploads/2010/06/orderby1.jpg" alt="" width="279" height="93" /></a></p>
<p><span style="text-decoration: underline;">Requirement:</span></p>
<p>So now I need to get the table ordered  by checkins first and then by nightsout</p>
<p><span style="text-decoration: underline;">Solution:</span><br />
<code>SELECT *FROM `foursquare_rank`ORDER BY `checkins` DESC , `nightsout` DESC</code></p>
<p>Now you will get a table ordered like this as exactly as the requirement</p>
<p style="text-align: center;"><a href="http://tips.techretold.com/http://tips.techretold.com/wp-content/uploads/2010/06/orderby2.jpg"><img class="size-full wp-image-208 aligncenter" title="orderby2" src="http://tips.techretold.com/http://tips.techretold.com/wp-content/uploads/2010/06/orderby2.jpg" alt="" width="285" height="98" /></a></p>
<p>So this is how you can order the column in SQL</p>
]]></content:encoded>
			<wfw:commentRss>http://tips.techretold.com/multiple-order-by-sql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting the MAC IP Address of a Windows machine</title>
		<link>http://tips.techretold.com/getting-the-mac-ip-address-of-a-windows-machine/</link>
		<comments>http://tips.techretold.com/getting-the-mac-ip-address-of-a-windows-machine/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 17:59:05 +0000</pubDate>
		<dc:creator>ramanean</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[MAC IP Address]]></category>
		<category><![CDATA[Physical IP Address]]></category>

		<guid isPermaLink="false">http://tips.techretold.com/?p=204</guid>
		<description><![CDATA[<p>To get the MAC IP Address  or Physical IP Address of the machine just use the following commands</p>
<p>Command  1   :  GETMAC</p>
<p>Command 2    :  IPCONFIG/ALL   </p>
<p>Where physical address is the address(MAC IP Address)  of your machine</p>
]]></description>
			<content:encoded><![CDATA[<p>To get the MAC IP Address  or Physical IP Address of the machine just use the following commands</p>
<p>Command  1   :  GETMAC</p>
<p>Command 2    :  IPCONFIG/ALL   </p>
<p>Where physical address is the address(MAC IP Address)  of your machine</p>
]]></content:encoded>
			<wfw:commentRss>http://tips.techretold.com/getting-the-mac-ip-address-of-a-windows-machine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Renaming a file in command prompt</title>
		<link>http://tips.techretold.com/renaming-a-file-in-command-prompt/</link>
		<comments>http://tips.techretold.com/renaming-a-file-in-command-prompt/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 12:18:45 +0000</pubDate>
		<dc:creator>ramanean</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Renaming a file in command prompt]]></category>

		<guid isPermaLink="false">http://tips.techretold.com/?p=202</guid>
		<description><![CDATA[<p>This command is used to rename files in command prompt</p>
<p>Command :RENAME</p>
<p>Syntax:</p>
<p>RENAME [drive:][path]filename1 filename2.<br />
REN [drive:][path]filename1 filename2.</p>
<p>To rename a file in the same path</p>
<p>RENAME filename1 filename2 </p>
<p>Note that you cannot specify a new drive or path for your destination file.</p>
&#8230;]]></description>
			<content:encoded><![CDATA[<p>This command is used to rename files in command prompt</p>
<p>Command :RENAME</p>
<p>Syntax:</p>
<p>RENAME [drive:][path]filename1 filename2.<br />
REN [drive:][path]filename1 filename2.</p>
<p>To rename a file in the same path</p>
<p>RENAME filename1 filename2 </p>
<p>Note that you cannot specify a new drive or path for your destination file.</p>
]]></content:encoded>
			<wfw:commentRss>http://tips.techretold.com/renaming-a-file-in-command-prompt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Latitude and Longitude distance at the poles</title>
		<link>http://tips.techretold.com/latitude-and-longitude-distance-at-the-poles/</link>
		<comments>http://tips.techretold.com/latitude-and-longitude-distance-at-the-poles/#comments</comments>
		<pubDate>Wed, 05 May 2010 18:32:04 +0000</pubDate>
		<dc:creator>ramanean</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Latitude and Longitude distance at the poles]]></category>

		<guid isPermaLink="false">http://tips.techretold.com/?p=199</guid>
		<description><![CDATA[<p>Here you go</p>
<p>One degree of latitude =  111.69 km or  69.40 mi<br />
One minute of latitude =    1.86 km or  1.16 mi<br />
One second of latitude =   31.03 m  or  101.79 ft</p>
]]></description>
			<content:encoded><![CDATA[<p>Here you go</p>
<p>One degree of latitude =  111.69 km or  69.40 mi<br />
One minute of latitude =    1.86 km or  1.16 mi<br />
One second of latitude =   31.03 m  or  101.79 ft</p>
]]></content:encoded>
			<wfw:commentRss>http://tips.techretold.com/latitude-and-longitude-distance-at-the-poles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
