<?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>Tech Hacks</title>
	
	<link>http://tech.chandrahasa.com</link>
	<description>Tit Bits from my experience...</description>
	<lastBuildDate>Wed, 09 May 2012 15:23:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/techhacksfeed" /><feedburner:info uri="techhacksfeed" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Compressing files in Unix – CheatSheet</title>
		<link>http://feedproxy.google.com/~r/techhacksfeed/~3/BKnV7i5MkmQ/</link>
		<comments>http://tech.chandrahasa.com/2012/04/06/compressing-files-in-unix-cheatsheet/#comments</comments>
		<pubDate>Fri, 06 Apr 2012 11:01:22 +0000</pubDate>
		<dc:creator>Haas</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Solutions]]></category>
		<category><![CDATA[bzip]]></category>
		<category><![CDATA[Bzip2]]></category>
		<category><![CDATA[compression]]></category>
		<category><![CDATA[Computer file]]></category>
		<category><![CDATA[Data compression]]></category>
		<category><![CDATA[files]]></category>
		<category><![CDATA[gzip]]></category>
		<category><![CDATA[tar]]></category>
		<category><![CDATA[Tar (file format)]]></category>
		<category><![CDATA[uncompress]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[zip]]></category>

		<guid isPermaLink="false">http://tech.chandrahasa.com/?p=328</guid>
		<description><![CDATA[Here is a quick cheat-sheet to compress and uncompress files in Unix/Linux Zip zip archive file1 file2 file3 Compresses file1 file2 file3 into an achive with filename archive.zip zip archive * Compresses all files in the current directory into an achive with filename archive.zip zip -r archive dir Compresses the directory dir(and its subdirectories) into [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a quick cheat-sheet to compress and uncompress files in Unix/Linux</p>
<p><strong>Zip</strong></p>
<p><code><a class="zem_slink" title="ZIP (file format)" rel="wikipedia" href="http://en.wikipedia.org/wiki/ZIP_%28file_format%29" target="_blank">zip archive</a> file1 file2 file3</code><br />
Compresses file1 file2 file3 into an achive with filename archive.zip</p>
<p><code>zip archive *</code><br />
Compresses all files in the current directory into an achive with filename archive.zip</p>
<p><code>zip -r archive dir</code><br />
Compresses the directory dir(and its subdirectories) into an achive with filename archive.zip</p>
<p><code>unzip archive.zip</code><br />
Uncompresses the archive archive.zip to the current directory</p>
<p><code>unzip archive.zip -d dir</code><br />
Uncompresses the archive archive.zip to the directory dir</p>
<p><strong>Tar</strong></p>
<p>The tar command accepts common parameters.  These are:</p>
<ul>
<li> c â€“ create a new archive</li>
<li>v &#8211; verbosely describe each step of the process</li>
<li>f &#8211; following is the <a class="zem_slink" title="Archive file" rel="wikipedia" href="http://en.wikipedia.org/wiki/Archive_file" target="_blank">archive file</a> name</li>
<li>t &#8211; list the contents of the archive</li>
<li>x &#8211; extract the archive</li>
</ul>
<p><code>tar cvf archive.tar file1 file2 file3</code><br />
Creates an uncompressed archive of the files file1 file2 file3 with filename archive.tar</p>
<p><code>tar cvf archive.tar dir</code><br />
Creates an uncompressed archive of the directory dir with filename archive.tar</p>
<p><code>tar tvf archive.tar</code><br />
List all files in the archive archive.tar verbosely</p>
<p><code>tar -xvf archive.tar</code><br />
Extract all files in the archive archive.tar</p>
<p><code>tar xvf archive_file.tar /path/to/file1 /path/to/file2 /path/to/file3</code><br />
Extracts specific files from the archive archive.tar</p>
<p><code>tar xvf archive.tar --wildcards '*.txt'</code><br />
Extracts all files ending with &#8216;.txt&#8217; from the archive archive.tar</p>
<p><strong>Tar &#8211; <a class="zem_slink" title="Bzip2" rel="wikipedia" href="http://en.wikipedia.org/wiki/Bzip2" target="_blank">Bzip</a></strong></p>
<p><code>tar cvfj archive.tar.bz2 file1 file2 file3</code><br />
Creates an archive using the bz2 algorithm of the files file1 file2 file3 with filename archive.tar.bz2</p>
<p><code>tar cvfj archive.tar.bz2 dir</code><br />
Creates an archive using the bz2 algorithm of the directory dir with filename archive.tar.bz2</p>
<p><code>tar -xvfj archive.tar.bz2</code><br />
Extract all files in the archive archive.tar.bz2</p>
<p><code>tar xvfj archive_file.tar.bz2 /path/to/file1 /path/to/file2 /path/to/file3</code><br />
Extracts specific files from the archive archive.tar.bz2</p>
<p><code>tar xvfj archive.tar.bz2 --wildcards '*.txt'</code><br />
Extracts all files ending with &#8216;.txt&#8217; from the archive archive.tar.bz2</p>
<p><strong><a class="zem_slink" title="Tar (file format)" rel="wikipedia" href="http://en.wikipedia.org/wiki/Tar_%28file_format%29" target="_blank">Tar &#8211; Gzip</a></strong></p>
<p><code>tar cvfz archive.tar.gz file1 file2 file3</code><br />
Creates an archive using the gz algorithm of the files file1 file2 file3 with filename archive.tar.gz</p>
<p><code>tar cvfz archive.tar.gz dir</code><br />
Creates an archive using the bz2 algorithm of the directory dir with filename archive.tar.gz</p>
<p><code>tar -xvfz archive.tar.gz</code><br />
Extract all files in the archive archive.tar.gz</p>
<p><code>tar xvf archive_file.tar.gz /path/to/file1 /path/to/file2 /path/to/file3</code><br />
Extracts a specific files from the archive archive.tar.gz</p>
<p><code>tar xvf archive.tar.gz --wildcards '*.txt'</code><br />
Extracts all files ending with &#8216;.txt&#8217; from the archive archive.tar</p>
<p><strong>Note:</strong> Bzip archives takes more time to compress and decompress compared to Gzip.<br />
Bzip archival size is less than Bzip.</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/pixy.gif?x-id=321d6876-266d-4df5-9c60-81e1b765e1f1" alt="" /></div>

<p><a href="http://feedads.g.doubleclick.net/~a/sA8i6ID30KWLI7-vWycJ2H01JM8/0/da"><img src="http://feedads.g.doubleclick.net/~a/sA8i6ID30KWLI7-vWycJ2H01JM8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/sA8i6ID30KWLI7-vWycJ2H01JM8/1/da"><img src="http://feedads.g.doubleclick.net/~a/sA8i6ID30KWLI7-vWycJ2H01JM8/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/techhacksfeed/~4/BKnV7i5MkmQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tech.chandrahasa.com/2012/04/06/compressing-files-in-unix-cheatsheet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://tech.chandrahasa.com/2012/04/06/compressing-files-in-unix-cheatsheet/</feedburner:origLink></item>
		<item>
		<title>Fix Formula One Live Timing Errors</title>
		<link>http://feedproxy.google.com/~r/techhacksfeed/~3/9JPaxvKPQhU/</link>
		<comments>http://tech.chandrahasa.com/2012/03/16/fix-formula-one-live-timing-errors/#comments</comments>
		<pubDate>Sat, 17 Mar 2012 05:57:25 +0000</pubDate>
		<dc:creator>Haas</dc:creator>
				<category><![CDATA[Solutions]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[cookies]]></category>
		<category><![CDATA[Errors]]></category>
		<category><![CDATA[Fix]]></category>
		<category><![CDATA[Formula One]]></category>
		<category><![CDATA[Live Timing]]></category>

		<guid isPermaLink="false">http://tech.chandrahasa.com/?p=332</guid>
		<description><![CDATA[With the start of new season of Formula One, a lot of viewers were left refreshing their pages because the live timing refused to work for the first day of Practice.Â  The problem had to do with the old cookies of the website from the previous year&#8217;s timing widget. To fix the problem follow this [...]]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignright" style="width: 203px"><a href="http://en.wikipedia.org/wiki/File:F1_logo.svg" target="_blank"><img class="zemanta-img-inserted zemanta-img-configured" title="Formula One" src="http://tech.chandrahasa.com/wp-content/uploads/2012/03/193px-F1_logo.svg_1.png" alt="Formula One" width="193" height="95" /></a><p class="wp-caption-text">Image via Wikipedia</p></div>
<p>With the start of new season of <a class="zem_slink" title="Formula One" rel="wikipedia" href="http://en.wikipedia.org/wiki/Formula_One" target="_blank">Formula One</a>, a lot of viewers were left refreshing their pages because the <a href="http://www.formula1.com/live_timing/" target="_blank">live timing</a></p>
<div class="mceTemp"></div>
<p>refused to work for the first day of Practice.Â  The problem had to do with the old cookies of the website from the previous year&#8217;s timing widget.</p>
<p>To fix the problem follow this tutorial to <a href="http://tech.chandrahasa.com/2012/03/16/deleting-specific-cookies-in-firefox-chrome/" target="_blank">Remove Cookies from your browser</a>.</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/pixy.gif?x-id=9a20f192-1cf8-4460-98e3-a83f66910bf8" alt="" /></div>

<p><a href="http://feedads.g.doubleclick.net/~a/-ifKemTu0e0ua689DT8eSkph2hs/0/da"><img src="http://feedads.g.doubleclick.net/~a/-ifKemTu0e0ua689DT8eSkph2hs/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/-ifKemTu0e0ua689DT8eSkph2hs/1/da"><img src="http://feedads.g.doubleclick.net/~a/-ifKemTu0e0ua689DT8eSkph2hs/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/techhacksfeed/~4/9JPaxvKPQhU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tech.chandrahasa.com/2012/03/16/fix-formula-one-live-timing-errors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://tech.chandrahasa.com/2012/03/16/fix-formula-one-live-timing-errors/</feedburner:origLink></item>
		<item>
		<title>Deleting specific Cookies in Firefox &amp; Chrome</title>
		<link>http://feedproxy.google.com/~r/techhacksfeed/~3/WCJstJzCmcg/</link>
		<comments>http://tech.chandrahasa.com/2012/03/16/deleting-specific-cookies-in-firefox-chrome/#comments</comments>
		<pubDate>Sat, 17 Mar 2012 05:47:47 +0000</pubDate>
		<dc:creator>Haas</dc:creator>
				<category><![CDATA[Chrome]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Solutions]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Chromebook]]></category>
		<category><![CDATA[clear]]></category>
		<category><![CDATA[cookies]]></category>
		<category><![CDATA[Google Chrome]]></category>
		<category><![CDATA[HTTP cookie]]></category>
		<category><![CDATA[Internet privacy]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[remove]]></category>
		<category><![CDATA[specific]]></category>
		<category><![CDATA[Toolbar]]></category>
		<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://tech.chandrahasa.com/?p=330</guid>
		<description><![CDATA[Sometimes when websites are updated,they tend to change the way they manage cookies.Â  What happens then is that there is a small possibility of certain parts of the website not functioning as the old cookies remain in the browser.Â  In those cases the best approach is to remove the errant cookie and let the website [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes when websites are updated,they tend to change the way they manage cookies.Â  What happens then is that there is a small possibility of certain parts of the website not functioning as the old cookies remain in the browser.Â  In those cases the best approach is to remove the errant <a class="zem_slink" title="HTTP cookie" rel="wikipedia" href="http://en.wikipedia.org/wiki/HTTP_cookie" target="_blank">cookie</a> and let the website recreate the cookies.</p>
<p>Here is a quick tutorial on how to do that:</p>
<p><strong>Firefox</strong>:</p>
<ul>
<li>Click on <strong>Tools</strong>, then <strong>Options</strong> (or Edit | Preferences on <a class="zem_slink" title="Linux" rel="wikipedia" href="http://en.wikipedia.org/wiki/Linux" target="_blank">Linux</a>)</li>
<li>Select <strong>Privacy</strong></li>
<li>In the <strong>Cookies</strong> panel, click on <strong>Show Cookies</strong></li>
<li>To remove a single cookie click on the entry in the list and click on the <strong>Remove Cookie button</strong></li>
<li>To remove all cookies click on the <strong>Remove All Cookies button</strong></li>
<li>VoilÃ , you are done <img src='http://tech.chandrahasa.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
</ul>
<p><strong><a class="zem_slink" title="Google Chrome" rel="homepage" href="http://www.google.com/chrome" target="_blank">Chrome</a>:</strong></p>
<ul>
<li>Click the &#8220;<strong>wrench</strong>&#8221; icon  on the browser toolbar (usually on the right extreme)</li>
<li>Click the <strong>Under the Hood</strong> tab.</li>
<li>Goto the <strong>Content settings</strong> in the &#8220;Privacy&#8221; section.</li>
<li>Click the <strong>Cookies</strong> tab in the Content Settings dialog that appears.</li>
<li>Click <strong>All cookies and site data</strong> to open the Cookies and Other Data dialog.</li>
<li>To delete all cookies, click <strong>Remove all</strong> at the bottom of the dialog.</li>
<li>To delete a <strong>specific cookie</strong>, select the site that issued the cookie, then the cookie, and click <strong>Remove</strong>.</li>
<li>VoilÃ , you are done <img src='http://tech.chandrahasa.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
</ul>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/pixy.gif?x-id=5dd10fb7-1a48-4207-88fa-2b487dfd50e4" alt="" /></div>

<p><a href="http://feedads.g.doubleclick.net/~a/39vcskdoZuwyjAJfpqLWiCdxxMY/0/da"><img src="http://feedads.g.doubleclick.net/~a/39vcskdoZuwyjAJfpqLWiCdxxMY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/39vcskdoZuwyjAJfpqLWiCdxxMY/1/da"><img src="http://feedads.g.doubleclick.net/~a/39vcskdoZuwyjAJfpqLWiCdxxMY/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/techhacksfeed/~4/WCJstJzCmcg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tech.chandrahasa.com/2012/03/16/deleting-specific-cookies-in-firefox-chrome/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://tech.chandrahasa.com/2012/03/16/deleting-specific-cookies-in-firefox-chrome/</feedburner:origLink></item>
		<item>
		<title>How to find your Facebook AdminID for Facebook Apps</title>
		<link>http://feedproxy.google.com/~r/techhacksfeed/~3/RupOj1nnXZ0/</link>
		<comments>http://tech.chandrahasa.com/2012/03/12/how-to-find-your-facebook-adminid-for-facebook-apps/#comments</comments>
		<pubDate>Mon, 12 Mar 2012 13:50:16 +0000</pubDate>
		<dc:creator>Haas</dc:creator>
				<category><![CDATA[FaceBook]]></category>
		<category><![CDATA[Solutions]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[AdminID]]></category>
		<category><![CDATA[developer]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Facebook features]]></category>
		<category><![CDATA[Social Networking]]></category>

		<guid isPermaLink="false">http://tech.chandrahasa.com/?p=322</guid>
		<description><![CDATA[Your Facebook AdminID is required for administering many developer based apps. You can figure out your AdminID using the following method: Goto https://graph.facebook.com/{username} In the output you will find the AdminID of the user after the &#8220;id&#8221; part.]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignright" style="width: 255px"><a href="http://www.crunchbase.com/company/facebook" target="_blank"><img class="zemanta-img-inserted zemanta-img-configured" title="Image representing Facebook as depicted in Cru..." src="http://tech.chandrahasa.com/wp-content/uploads/2012/03/4561v1-max-450x4503.png" alt="Image representing Facebook as depicted in Cru..." width="245" height="100" /></a><p class="wp-caption-text">Image via CrunchBase</p></div>
<p>Your <a title="Facebook" rel="homepage" href="http://facebook.com/" target="_blank">Facebook</a> AdminID is required for administering many developer based apps.  You can figure out your AdminID using the following method:</p>
<ul>
<li>Goto https://graph.facebook.com/{username}</li>
<li>In the output you will find the AdminID of the user after the &#8220;id&#8221; part.
<div class="mceTemp"></div>
</li>
</ul>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/pixy.gif?x-id=10a6e546-23a0-474a-a195-482e0af36178" alt="" /></div>

<p><a href="http://feedads.g.doubleclick.net/~a/N28JtZ9aZPMtviqQZ3BdZFhRadU/0/da"><img src="http://feedads.g.doubleclick.net/~a/N28JtZ9aZPMtviqQZ3BdZFhRadU/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/N28JtZ9aZPMtviqQZ3BdZFhRadU/1/da"><img src="http://feedads.g.doubleclick.net/~a/N28JtZ9aZPMtviqQZ3BdZFhRadU/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/techhacksfeed/~4/RupOj1nnXZ0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tech.chandrahasa.com/2012/03/12/how-to-find-your-facebook-adminid-for-facebook-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://tech.chandrahasa.com/2012/03/12/how-to-find-your-facebook-adminid-for-facebook-apps/</feedburner:origLink></item>
		<item>
		<title>How to find your Facebook ID for Facebook Apps</title>
		<link>http://feedproxy.google.com/~r/techhacksfeed/~3/FQBGibmhstw/</link>
		<comments>http://tech.chandrahasa.com/2012/03/10/how-to-find-your-facebook-id-for-facebook-apps/#comments</comments>
		<pubDate>Sat, 10 Mar 2012 16:38:43 +0000</pubDate>
		<dc:creator>Haas</dc:creator>
				<category><![CDATA[FaceBook]]></category>
		<category><![CDATA[Solutions]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Application programming interface]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Facebook features]]></category>
		<category><![CDATA[Facebook Platform]]></category>
		<category><![CDATA[Online Communities]]></category>
		<category><![CDATA[Open Graph protocol]]></category>
		<category><![CDATA[Social Network]]></category>

		<guid isPermaLink="false">http://tech.chandrahasa.com/?p=311</guid>
		<description><![CDATA[Your Facebook ID (not your login ID) is required for administering many developer based apps (pages, share buttons and open graph based programs). You can figure out your ID using the following method: Login to Facebook Go to your photos and click on any of your photosets Right Click on any photo and open it [...]]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignright" style="width: 255px"><a href="http://www.crunchbase.com/company/facebook" target="_blank"><img class="zemanta-img-inserted zemanta-img-configured" title="Image representing Facebook as depicted in Cru..." src="http://tech.chandrahasa.com/wp-content/uploads/2012/03/4561v1-max-450x4501.png" alt="Image representing Facebook as depicted in Cru..." width="245" height="100" /></a><p class="wp-caption-text">Image via CrunchBase</p></div>
<p>Your <a class="zem_slink" title="Facebook" rel="homepage" href="http://facebook.com" target="_blank">Facebook</a> ID (not your login ID) is required for administering many developer based apps (pages, share buttons and <a class="zem_slink" title="Facebook Platform" rel="wikipedia" href="http://en.wikipedia.org/wiki/Facebook_Platform" target="_blank">open graph</a> based programs).  You can figure out your ID using the following method:</p>
<ol>
<li>Login to Facebook</li>
<li>Go to your photos and click on any of your photosets</li>
<li>Right Click on any photo and open it in a new window</li>
<li>In the url look for the text &#8220;fbid&#8221; and copy the number right next to it between the &#8216;=&#8217; and &#8216;&amp;&#8217;.</li>
<li>This number is your Facebook ID.</li>
</ol>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/pixy.gif?x-id=a152933d-b0ed-4dc8-8a35-eb3e2dd92a6b" alt="" /></div>

<p><a href="http://feedads.g.doubleclick.net/~a/JmQTHcc3USYp3TvellTgcbOyXPI/0/da"><img src="http://feedads.g.doubleclick.net/~a/JmQTHcc3USYp3TvellTgcbOyXPI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/JmQTHcc3USYp3TvellTgcbOyXPI/1/da"><img src="http://feedads.g.doubleclick.net/~a/JmQTHcc3USYp3TvellTgcbOyXPI/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/techhacksfeed/~4/FQBGibmhstw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tech.chandrahasa.com/2012/03/10/how-to-find-your-facebook-id-for-facebook-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://tech.chandrahasa.com/2012/03/10/how-to-find-your-facebook-id-for-facebook-apps/</feedburner:origLink></item>
		<item>
		<title>How to disable/customize audio notificaitons for email in Android</title>
		<link>http://feedproxy.google.com/~r/techhacksfeed/~3/LNqjLF21sEM/</link>
		<comments>http://tech.chandrahasa.com/2012/03/09/how-to-disablecustomize-audio-notificaitons-for-email-in-android/#comments</comments>
		<pubDate>Fri, 09 Mar 2012 12:38:56 +0000</pubDate>
		<dc:creator>Haas</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Apps]]></category>
		<category><![CDATA[Solutions]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[Email address]]></category>
		<category><![CDATA[Gmail]]></category>
		<category><![CDATA[Mail]]></category>
		<category><![CDATA[Notify]]></category>
		<category><![CDATA[Ringtone]]></category>
		<category><![CDATA[setting]]></category>
		<category><![CDATA[Silent]]></category>

		<guid isPermaLink="false">http://tech.chandrahasa.com/?p=307</guid>
		<description><![CDATA[I receive a lot of emails and while I like to be on top of my inbox most of the time, I occasionally don&#8217;t want an audio notification for every mail I receive. So here is a simple step by step process of disabling/customizing audio notification for the Gmail app in Android. Click on your [...]]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignright" style="width: 140px"><a href="http://www.crunchbase.com/product/gmail" target="_blank"><img class="zemanta-img-inserted zemanta-img-configured" title="Image representing Gmail as depicted in CrunchBase" src="http://tech.chandrahasa.com/wp-content/uploads/2012/03/12806v21-max-450x4501.png" alt="Image representing Gmail as depicted in CrunchBase" width="130" height="59" /></a><p class="wp-caption-text">Image via CrunchBase</p></div>
<p>I receive a lot of emails and while I like to be on top of my inbox most of the time, I occasionally don&#8217;t want an audio notification for every mail I receive.  So here is a simple step by step process of disabling/customizing audio notification for the <a class="zem_slink" title="Gmail" rel="homepage" href="http://gmail.com" target="_blank">Gmail</a> app in Android.</p>
<ul>
<li>Click on your Gmail icon.</li>
<li>Go to &#8220;Menu&#8221; &gt; &#8220;More&#8221; &gt; &#8220;Settings&#8221;</li>
<li>Select the <a class="zem_slink" title="Email address" rel="wikipedia" href="http://en.wikipedia.org/wiki/Email_address" target="_blank">email address</a> you&#8217;d like to change the setting for (eg yourname@gmail.com)</li>
<li>Scroll down and Select &#8220;Lables to Notify&#8221;</li>
<li>Hit the dropdown arrow next to &#8220;Inbox&#8221;</li>
<li>Select &#8220;Ringtone&#8221; and then select &#8220;Silent&#8221;(for disabling audio notifications) or your desired ringtone</li>
</ul>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/pixy.gif?x-id=7031383e-fcbf-479c-924a-66866cb3a993" alt="" /></div>

<p><a href="http://feedads.g.doubleclick.net/~a/tMbnyO5aOSRsfO9XV2bXuZ3sDtI/0/da"><img src="http://feedads.g.doubleclick.net/~a/tMbnyO5aOSRsfO9XV2bXuZ3sDtI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/tMbnyO5aOSRsfO9XV2bXuZ3sDtI/1/da"><img src="http://feedads.g.doubleclick.net/~a/tMbnyO5aOSRsfO9XV2bXuZ3sDtI/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/techhacksfeed/~4/LNqjLF21sEM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tech.chandrahasa.com/2012/03/09/how-to-disablecustomize-audio-notificaitons-for-email-in-android/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://tech.chandrahasa.com/2012/03/09/how-to-disablecustomize-audio-notificaitons-for-email-in-android/</feedburner:origLink></item>
		<item>
		<title>How to check if a Website is actually down?</title>
		<link>http://feedproxy.google.com/~r/techhacksfeed/~3/8f5v0Foq0-8/</link>
		<comments>http://tech.chandrahasa.com/2011/09/11/how-to-check-if-a-website-is-actually-down/#comments</comments>
		<pubDate>Sun, 11 Sep 2011 15:43:15 +0000</pubDate>
		<dc:creator>Haas</dc:creator>
				<category><![CDATA[Solutions]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[Domain Name System]]></category>
		<category><![CDATA[Internet service provider]]></category>
		<category><![CDATA[IP address]]></category>
		<category><![CDATA[Protocols]]></category>
		<category><![CDATA[Proxying and Filtering]]></category>
		<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://tech.chandrahasa.com/?p=281</guid>
		<description><![CDATA[There are many reasons why a website might not open in your browser. They include: The website being down Your DNS not being able to lookup the IP address of the website Settings in your browser blocking access to the website Routers/Proxy servers redirecting traffic The possiblity of error might seem to be larger on [...]]]></description>
			<content:encoded><![CDATA[<p>There are many reasons why a <a class="zem_slink" title="Website" rel="wikipedia" href="http://en.wikipedia.org/wiki/Website">website</a> might not open in your <a class="zem_slink" title="Web browser" rel="wikipedia" href="http://en.wikipedia.org/wiki/Web_browser">browser</a>.  They include:</p>
<ul>
<li>The website being down</li>
<li>Your <a class="zem_slink" title="Domain Name System" rel="wikipedia" href="http://en.wikipedia.org/wiki/Domain_Name_System">DNS</a> not being able to lookup the <a class="zem_slink" title="IP address" rel="wikipedia" href="http://en.wikipedia.org/wiki/IP_address">IP address</a> of the website</li>
<li>Settings in your browser blocking access to the website</li>
<li>Routers/Proxy servers redirecting traffic</li>
</ul>
<p>The possiblity of error might seem to be larger on your side but its deeply frustrating to check every cause and eventually figure out that the problem was actually on the website&#8217;s side.Â  The simplest way to eliminate this possibility is to check the website through <a href="http://www.downforeveryoneorjustme.com/">http://www.downforeveryoneorjustme.com/</a></p>
<p>Fire up your browser and point it to <a href="http://www.downforeveryoneorjustme.com/">http://www.downforeveryoneorjustme.com/</a></p>
<p><a href="http://tech.chandrahasa.com/wp-content/uploads/2011/09/down1.jpeg"><img class="alignnone size-medium wp-image-302" title="down1" src="http://tech.chandrahasa.com/wp-content/uploads/2011/09/down1-300x95.jpg" alt="" width="300" height="95" /></a></p>
<p>Once there type the website to check, in the space provided and hit enter.</p>
<p>If the website is down you will get something like the following message:</p>
<p><a href="http://tech.chandrahasa.com/wp-content/uploads/2011/09/down2.jpeg"><img class="alignnone size-medium wp-image-303" title="down2" src="http://tech.chandrahasa.com/wp-content/uploads/2011/09/down2-300x49.jpg" alt="" width="300" height="49" /></a></p>
<p>Other wise you will get a message like this one:</p>
<p><a href="http://tech.chandrahasa.com/wp-content/uploads/2011/09/down3.jpeg"><img class="alignnone size-medium wp-image-304" title="down3" src="http://tech.chandrahasa.com/wp-content/uploads/2011/09/down3-300x72.jpg" alt="" width="300" height="72" /></a></p>
<p>In case of the latter, maybe its time to choose a better DNS provider or recheck your browser/router settings</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/pixy.gif?x-id=2c7dc851-201f-400c-9919-f3d490df9de6" alt="" /></div>

<p><a href="http://feedads.g.doubleclick.net/~a/RHzvC_a1lbrDAZSlxzzLhm7rDk8/0/da"><img src="http://feedads.g.doubleclick.net/~a/RHzvC_a1lbrDAZSlxzzLhm7rDk8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/RHzvC_a1lbrDAZSlxzzLhm7rDk8/1/da"><img src="http://feedads.g.doubleclick.net/~a/RHzvC_a1lbrDAZSlxzzLhm7rDk8/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/techhacksfeed/~4/8f5v0Foq0-8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tech.chandrahasa.com/2011/09/11/how-to-check-if-a-website-is-actually-down/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://tech.chandrahasa.com/2011/09/11/how-to-check-if-a-website-is-actually-down/</feedburner:origLink></item>
		<item>
		<title>In Line Dictionary for Firefox</title>
		<link>http://feedproxy.google.com/~r/techhacksfeed/~3/ixZuf2Hq2u8/</link>
		<comments>http://tech.chandrahasa.com/2011/07/06/in-line-dictionary-for-firefox/#comments</comments>
		<pubDate>Thu, 07 Jul 2011 06:08:32 +0000</pubDate>
		<dc:creator>Haas</dc:creator>
				<category><![CDATA[Apps]]></category>
		<category><![CDATA[Solutions]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Add-ons]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Dictionary]]></category>
		<category><![CDATA[Google Translate]]></category>
		<category><![CDATA[Mozilla Firefox]]></category>

		<guid isPermaLink="false">http://tech.chandrahasa.com/?p=278</guid>
		<description><![CDATA[Google Dictionary and Google Translate Extension for Firefox provides a simple solution for in-line translation/dictionary look-up of words &#38; translation of whole pages. Once installed all you need to do is double-click or highlight a word, and a little pop-up will show the definition of it in your language. Click on the link below to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="https://addons.mozilla.org/en-US/firefox/addon/google-dictionary-and-google-t/">Google Dictionary and Google Translate Extension for Firefox </a>provides a simple solution for in-line translation/dictionary look-up of words &amp; translation of whole pages.</p>
<p>Once installed all you need to do is double-click or highlight a word, and a little pop-up will show the definition of it in your language.</p>
<p><a href="http://tech.chandrahasa.com/wp-content/uploads/2011/07/dict1.jpeg"><img class="alignnone size-full wp-image-282" title="dict1" src="http://tech.chandrahasa.com/wp-content/uploads/2011/07/dict1.jpeg" alt="" width="389" height="170" /></a><br />
<script type="text/javascript"><!--
google_ad_client = "ca-pub-9117368074421821";
/* 468x60, created 4/20/10 */
google_ad_slot = "4702308326";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
Click on the link below to install the plugin:<br />
<a href="https://addons.mozilla.org/en-US/firefox/addon/google-dictionary-and-google-t/">Google Dictionary and Google Translate 2.5</a></p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/pixy.gif?x-id=b0435898-d02e-415a-a667-f09e260cbb17" alt="" /></div>

<p><a href="http://feedads.g.doubleclick.net/~a/COj5WuG2sVxxcrg8xb8FVDHATJw/0/da"><img src="http://feedads.g.doubleclick.net/~a/COj5WuG2sVxxcrg8xb8FVDHATJw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/COj5WuG2sVxxcrg8xb8FVDHATJw/1/da"><img src="http://feedads.g.doubleclick.net/~a/COj5WuG2sVxxcrg8xb8FVDHATJw/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/techhacksfeed/~4/ixZuf2Hq2u8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tech.chandrahasa.com/2011/07/06/in-line-dictionary-for-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://tech.chandrahasa.com/2011/07/06/in-line-dictionary-for-firefox/</feedburner:origLink></item>
		<item>
		<title>Restoring Lost Session in Firefox</title>
		<link>http://feedproxy.google.com/~r/techhacksfeed/~3/g-MtCpxyOVo/</link>
		<comments>http://tech.chandrahasa.com/2011/07/03/restoring-lost-session-in-firefox/#comments</comments>
		<pubDate>Mon, 04 Jul 2011 05:34:54 +0000</pubDate>
		<dc:creator>Haas</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Solutions]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Mozilla Firefox]]></category>
		<category><![CDATA[Restore]]></category>
		<category><![CDATA[Session]]></category>
		<category><![CDATA[Web browser]]></category>

		<guid isPermaLink="false">http://tech.chandrahasa.com/?p=273</guid>
		<description><![CDATA[After a crash Firefox, when restarted gives a page with the option of Restoring the session or Starting a new session. Sometimes in haste we might hit the &#8220;New Session&#8221; option and feel a bit stupid that all those open tabs are now gone&#8230; Well there is a simple way to undo that. Simply point [...]]]></description>
			<content:encoded><![CDATA[<div class="zemanta-img" style="margin: 1em; display: block;">
<div class="wp-caption alignright" style="width: 240px"><a href="http://www.crunchbase.com/product/firefox"><img title="Image representing Firefox as depicted in Crun..." src="http://tech.chandrahasa.com/wp-content/uploads/2011/07/13109v1-max-450x450.png" alt="Image representing Firefox as depicted in Crun..." width="230" height="77" /></a><p class="wp-caption-text">Image via CrunchBase</p></div>
</div>
<p>After a crash <a class="zem_slink" title="Firefox" rel="homepage" href="http://www.mozilla.com/firefox/">Firefox</a>, when restarted gives a page with the option of Restoring the session or Starting a new session.  Sometimes in haste we might hit the &#8220;New Session&#8221; option and feel a bit stupid that all those open tabs are now gone&#8230;</p>
<p>Well there is a simple way to undo that.  Simply point your browser to &#8220;about:sessionrestore&#8221; and you will get back to the page with the option of restoring your previous session again!</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/pixy.gif?x-id=339e22a6-91ae-491a-b76d-79571141465e" alt="" /></div>

<p><a href="http://feedads.g.doubleclick.net/~a/QtkLkhoBJ61zYGA89mx3q3lJ7Pg/0/da"><img src="http://feedads.g.doubleclick.net/~a/QtkLkhoBJ61zYGA89mx3q3lJ7Pg/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/QtkLkhoBJ61zYGA89mx3q3lJ7Pg/1/da"><img src="http://feedads.g.doubleclick.net/~a/QtkLkhoBJ61zYGA89mx3q3lJ7Pg/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/techhacksfeed/~4/g-MtCpxyOVo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tech.chandrahasa.com/2011/07/03/restoring-lost-session-in-firefox/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://tech.chandrahasa.com/2011/07/03/restoring-lost-session-in-firefox/</feedburner:origLink></item>
		<item>
		<title>Galaxy Ace – Gingerbread Update – Notes</title>
		<link>http://feedproxy.google.com/~r/techhacksfeed/~3/fQy7T9rIDBY/</link>
		<comments>http://tech.chandrahasa.com/2011/06/28/galaxy-ace-gingerbread-update-notes/#comments</comments>
		<pubDate>Tue, 28 Jun 2011 09:52:11 +0000</pubDate>
		<dc:creator>Haas</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Solutions]]></category>
		<category><![CDATA[Galaxy Ace]]></category>
		<category><![CDATA[Gingerbread]]></category>
		<category><![CDATA[Samsung]]></category>
		<category><![CDATA[Smartphone]]></category>
		<category><![CDATA[Update]]></category>

		<guid isPermaLink="false">http://tech.chandrahasa.com/?p=270</guid>
		<description><![CDATA[There are many good tutorials on the web about installing Gingerbread on the Ace (like this one). Once you have Gingerbread installed what can you expect from your new system? Other than the already present updates to Android, here are a few notes I made: The Default language at the start is not English. To [...]]]></description>
			<content:encoded><![CDATA[<div class="zemanta-img" style="margin: 1em; display: block;">
<div class="wp-caption alignright" style="width: 163px"><a href="http://www.crunchbase.com/product/android"><img title="Image representing Android as depicted in Crun..." src="http://tech.chandrahasa.com/wp-content/uploads/2011/08/14601v1-max-450x45011.png" alt="Image representing Android as depicted in Crun..." width="153" height="55" /></a><p class="wp-caption-text">Image via CrunchBase</p></div>
</div>
<p>There are many good tutorials on the web about installing Gingerbread on the Ace (like <a href="http://androidadvices.com/how-to-update-samsung-galaxy-ace-gt-s5830-to-gingerbread-2-3-3-xxkpe-firmware/">this one</a>).</p>
<p>Once you have Gingerbread installed what can you expect from your new system?<br />
Other than the already present updates to <a class="zem_slink" title="Android (operating system)" rel="wikipedia" href="http://en.wikipedia.org/wiki/Android_%28operating_system%29">Android</a>, here are a few notes I made:<br />
<script type="text/javascript"><!--
google_ad_client = "ca-pub-9117368074421821";
/* 468x60, created 4/20/10 */
google_ad_slot = "4702308326";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<ul>
<li>The Default language at the start is not English. To change, go to Settings -&gt; Locale and Text (recognizable by the keyboard key A as the logo) -&gt; Select Language (Option no. 1 in the list) -&gt; English (or any other language)</li>
<li>The battery lasts longer and is estimated more accurately. &#8211; The battery info is more detailed too.</li>
<li>The <a class="zem_slink" title="Wi-Fi" rel="wikipedia" href="http://en.wikipedia.org/wiki/Wi-Fi">Wifi</a> bug that caused the &#8220;<a class="zem_slink" title="Black Screen of Death" rel="wikipedia" href="http://en.wikipedia.org/wiki/Black_Screen_of_Death">black screen of death</a>&#8221; problem is fixed.  Expect more stability while using Wifi</li>
<li>The UI is faster and more responsive</li>
<li>Fonts are crispier and look great</li>
<li>The notification bar is smaller and that really helps screen real estate.</li>
<li>Internal memory usage has improved leaps and bounds, expect lesser problems in that area</li>
</ul>
<p>All in all the upgrade to Gingerbread has been perfect so far.</p>
<p><strong>Note:</strong> The version I have installed is XXKPH</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/pixy.gif?x-id=df444230-f7ac-4b97-b421-a7d2edc30e6f" alt="" /></div>

<p><a href="http://feedads.g.doubleclick.net/~a/901_VWfQTjHhoM6c8UWX4T-tMa4/0/da"><img src="http://feedads.g.doubleclick.net/~a/901_VWfQTjHhoM6c8UWX4T-tMa4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/901_VWfQTjHhoM6c8UWX4T-tMa4/1/da"><img src="http://feedads.g.doubleclick.net/~a/901_VWfQTjHhoM6c8UWX4T-tMa4/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/techhacksfeed/~4/fQy7T9rIDBY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tech.chandrahasa.com/2011/06/28/galaxy-ace-gingerbread-update-notes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://tech.chandrahasa.com/2011/06/28/galaxy-ace-gingerbread-update-notes/</feedburner:origLink></item>
	</channel>
</rss>

