<?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>HTML Remix</title>
	
	<link>http://www.htmlremix.com</link>
	<description>Don't copy code.. Remix it !</description>
	<lastBuildDate>Fri, 30 Nov 2012 14:05:48 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/htmlremix" /><feedburner:info uri="htmlremix" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>htmlremix</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Search a formatted number in a MySQL table with a differently formatted search word</title>
		<link>http://feedproxy.google.com/~r/htmlremix/~3/qJj3-x8LSj0/search-a-formatted-number-in-a-mysql-table-with-a-differently-formatted-search-word</link>
		<comments>http://www.htmlremix.com/css/search-a-formatted-number-in-a-mysql-table-with-a-differently-formatted-search-word#comments</comments>
		<pubDate>Fri, 30 Nov 2012 14:05:48 +0000</pubDate>
		<dc:creator>Remiz</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.htmlremix.com/?p=1011</guid>
		<description><![CDATA[Here is the MySQL query to find formatted phone number by a differently formatted search text]]></description>
				<content:encoded><![CDATA[<p>People enter phone number in various formats on the web.  Some people just write down the number without space or hyphens. Some does with ( brackets etc.</p>
<p>Sometimes we have to store it as it is to keep the clients /user happy. But its pain when you want to verify the number or do a search with number by entering entirely a different format.  Following MySQL query helps you do it with ease.</p>
<p>It strips off all symbols and spaces from the data which is there in entire phone number data in your db and matches it with the query text you enter.</p>
<h4>Here is the MySQL query to find formatted phone number by a differently formatted search text.</h4>
<pre>
SELECT * FROM bizz_business_user
WHERE 
TRIM(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(phone,
          ' ',   '' ),
          '-',   '' ),
          ',',   '' ),
          '/',   '' ),
          '(',   '' ),
          ')',   '' ),
          '+46', '0')
        ) = '2403473649'
</pre>
<p>Hope this helps you to do awesome things with phone numbers.
<div style="float:left; text-align:left;><img alt='' src='http://0.gravatar.com/avatar/4566283db4866972b067011f5fdedfef?s=100&amp;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D100&amp;r=G' class='avatar avatar-100 photo' height='100' width='100' /></div>
<h3><a href='http://www.htmlremix.com/author/admin' title='Remiz'>Remiz</a></h3>
<p>Remixed version of unstable human emotions and thirst of mankind actions. UX designer, UI developer and HE of WebCastle Media Pvt LTD</p>
<p class='wpa-nomargin'><a href='http://www.htmlremix.com/author/admin' title='More posts by Remiz'>More Posts</a>  - <a href='http://www.twitter.com/remiz'>Twitter</a> - <a href='http://www.facebook.com/pages/Remix/186137951454717'>Facebook</a></p></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/htmlremix?a=qJj3-x8LSj0:x6-DWizmZM8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/htmlremix?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/htmlremix?a=qJj3-x8LSj0:x6-DWizmZM8:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/htmlremix?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/htmlremix?a=qJj3-x8LSj0:x6-DWizmZM8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/htmlremix?i=qJj3-x8LSj0:x6-DWizmZM8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/htmlremix?a=qJj3-x8LSj0:x6-DWizmZM8:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/htmlremix?i=qJj3-x8LSj0:x6-DWizmZM8:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/htmlremix/~4/qJj3-x8LSj0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.htmlremix.com/css/search-a-formatted-number-in-a-mysql-table-with-a-differently-formatted-search-word/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.htmlremix.com/css/search-a-formatted-number-in-a-mysql-table-with-a-differently-formatted-search-word</feedburner:origLink></item>
		<item>
		<title>Easiest way to type Malayalam – Easy Malayalam Software Download</title>
		<link>http://feedproxy.google.com/~r/htmlremix/~3/YGEpkjQSkr0/easiest-way-to-type-malayalam-easy-malayalam-software-download</link>
		<comments>http://www.htmlremix.com/review/easiest-way-to-type-malayalam-easy-malayalam-software-download#comments</comments>
		<pubDate>Sat, 22 Sep 2012 14:12:08 +0000</pubDate>
		<dc:creator>Remiz</dc:creator>
				<category><![CDATA[Review]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[malayalam]]></category>
		<category><![CDATA[software download]]></category>

		<guid isPermaLink="false">http://www.htmlremix.com/?p=1005</guid>
		<description><![CDATA[My friend Anoop MC's Easy Malayalam Software hit 2 million download. Lets celebrate. ]]></description>
				<content:encoded><![CDATA[<p>Last week on a busy day, I got a courier which packed like gift in white flowered mosaic paper colored in blue. It had a letter attached to it in a cover. Surprise! it was send from a friend of mine, Mr Anoop MC. And the package was sweat <a href="http://www.ferrero.com/products/the-most-famous-products/ferrero-rocher/a-brillant-idea/">Ferrero Rocher</a> from my favorite morning spread <a href="http://www.ferrero.com/products/the-most-famous-products/nutella/an-original-idea/">Nutella </a>company Ferrero.</p>
<p><a href="http://www.htmlremix.com/wp-content/uploads/2012/09/ferrerorochert24_n.jpg"><img onError="javascript: wp_404_images_fix = window.wp_404_images_fix || function(){}; wp_404_images_fix(this);"  class="alignnone size-medium wp-image-1006" title="Ferrero Rocher" src="http://i1.wp.com/www.htmlremix.com/wp-content/uploads/2012/09/ferrerorochert24_n.jpg?resize=300%2C300" alt="Ferrero Rocher" data-recalc-dims="1" /></a></p>
<p>One of his project called Easy Malayalam Software reached 2 million downloads. Yes, that&#8217;s a big number considering the number of computer users who use Malayalam on their computers. The application was built on 2008, when I don&#8217;t even remember what I was doing that time. He did a whole application to type Malayalam when technology was not yet there to type in Malayalam.</p>
<p>Now, lets gear up and go to SourceForge project and <a href="http://sourceforge.net/projects/easy-malayalam/">download Easy Malayalam software</a>. Its amazing and easy to use like its mentioned on the name. Download Easy Malayalam Software.<br />
<hr />
<h4>Incoming search terms:</h4>
<p><a href="http://www.htmlremix.com/review/easiest-way-to-type-malayalam-easy-malayalam-software-download" title="type easy malayalam software">type easy malayalam software</a>, <a href="http://www.htmlremix.com/review/easiest-way-to-type-malayalam-easy-malayalam-software-download" title="www malayalam remix com">www malayalam remix com</a>, <a href="http://www.htmlremix.com/review/easiest-way-to-type-malayalam-easy-malayalam-software-download" title="Www malayallam Rimex com">Www malayallam Rimex com</a></p>
<p>
<div style="float:left; text-align:left;><img alt='' src='http://0.gravatar.com/avatar/4566283db4866972b067011f5fdedfef?s=100&amp;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D100&amp;r=G' class='avatar avatar-100 photo' height='100' width='100' /></div>
<h3><a href='http://www.htmlremix.com/author/admin' title='Remiz'>Remiz</a></h3>
<p>Remixed version of unstable human emotions and thirst of mankind actions. UX designer, UI developer and HE of WebCastle Media Pvt LTD</p>
<p class='wpa-nomargin'><a href='http://www.htmlremix.com/author/admin' title='More posts by Remiz'>More Posts</a>  - <a href='http://www.twitter.com/remiz'>Twitter</a> - <a href='http://www.facebook.com/pages/Remix/186137951454717'>Facebook</a></p></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/htmlremix?a=YGEpkjQSkr0:d6cd-A4Xf2A:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/htmlremix?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/htmlremix?a=YGEpkjQSkr0:d6cd-A4Xf2A:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/htmlremix?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/htmlremix?a=YGEpkjQSkr0:d6cd-A4Xf2A:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/htmlremix?i=YGEpkjQSkr0:d6cd-A4Xf2A:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/htmlremix?a=YGEpkjQSkr0:d6cd-A4Xf2A:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/htmlremix?i=YGEpkjQSkr0:d6cd-A4Xf2A:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/htmlremix/~4/YGEpkjQSkr0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.htmlremix.com/review/easiest-way-to-type-malayalam-easy-malayalam-software-download/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.htmlremix.com/review/easiest-way-to-type-malayalam-easy-malayalam-software-download</feedburner:origLink></item>
		<item>
		<title>Apple iPhone 5 launch event live blog</title>
		<link>http://feedproxy.google.com/~r/htmlremix/~3/P6bnQm6Drro/apple-iphone-5-launch-event-live-blog</link>
		<comments>http://www.htmlremix.com/iphone/apple-iphone-5-launch-event-live-blog#comments</comments>
		<pubDate>Wed, 12 Sep 2012 13:16:27 +0000</pubDate>
		<dc:creator>Remiz</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[iphone 5]]></category>
		<category><![CDATA[Live blog]]></category>
		<category><![CDATA[new iphone]]></category>

		<guid isPermaLink="false">http://www.htmlremix.com/?p=997</guid>
		<description><![CDATA[Live event blog of Apple iPhone 5 launch. ]]></description>
				<content:encoded><![CDATA[<p>So for those who are waiting to know whats happening at Apple iPhone 5 launch event, here is the live updates from event.<br />
<a href="http://i1.wp.com/www.htmlremix.com/wp-content/uploads/2012/09/liveblogdsc08883.jpg?resize=600%2C399"><img onError="javascript: wp_404_images_fix = window.wp_404_images_fix || function(){}; wp_404_images_fix(this);"  class="alignnone  wp-image-998" title="New iPhone" src="http://i1.wp.com/www.htmlremix.com/wp-content/uploads/2012/09/liveblogdsc08883.jpg?resize=600%2C399" alt="" data-recalc-dims="1" /></a><br />
<iframe src="http://www.coveritlive.com/index2.php/option=com_altcaster/task=viewaltcast/altcast_code=5b3e4f4672/height=600/width=478" scrolling="no" width="478" height="600"></iframe>
<div style="float:left; text-align:left;><img alt='' src='http://0.gravatar.com/avatar/4566283db4866972b067011f5fdedfef?s=100&amp;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D100&amp;r=G' class='avatar avatar-100 photo' height='100' width='100' /></div>
<h3><a href='http://www.htmlremix.com/author/admin' title='Remiz'>Remiz</a></h3>
<p>Remixed version of unstable human emotions and thirst of mankind actions. UX designer, UI developer and HE of WebCastle Media Pvt LTD</p>
<p class='wpa-nomargin'><a href='http://www.htmlremix.com/author/admin' title='More posts by Remiz'>More Posts</a>  - <a href='http://www.twitter.com/remiz'>Twitter</a> - <a href='http://www.facebook.com/pages/Remix/186137951454717'>Facebook</a></p></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/htmlremix?a=P6bnQm6Drro:qMf4yAwqfSc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/htmlremix?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/htmlremix?a=P6bnQm6Drro:qMf4yAwqfSc:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/htmlremix?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/htmlremix?a=P6bnQm6Drro:qMf4yAwqfSc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/htmlremix?i=P6bnQm6Drro:qMf4yAwqfSc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/htmlremix?a=P6bnQm6Drro:qMf4yAwqfSc:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/htmlremix?i=P6bnQm6Drro:qMf4yAwqfSc:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/htmlremix/~4/P6bnQm6Drro" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.htmlremix.com/iphone/apple-iphone-5-launch-event-live-blog/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.htmlremix.com/iphone/apple-iphone-5-launch-event-live-blog</feedburner:origLink></item>
		<item>
		<title>Duplicating entire rows in MySQL table to the same table</title>
		<link>http://feedproxy.google.com/~r/htmlremix/~3/a8nVbZK4xoo/duplicating-entire-rows-in-mysql-table-to-the-same-table</link>
		<comments>http://www.htmlremix.com/css/duplicating-entire-rows-in-mysql-table-to-the-same-table#comments</comments>
		<pubDate>Thu, 06 Sep 2012 18:22:07 +0000</pubDate>
		<dc:creator>Remiz</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[clone data]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://www.htmlremix.com/?p=992</guid>
		<description><![CDATA[One line MySQL query to clone entire data from a table to the same table without conflicting primary key.]]></description>
				<content:encoded><![CDATA[<p>On a recent large scale web application we were developing at <a href="http://webcastletech.com">WebCastle</a>, I came across a need to clone complete rows from a MySQL table to same table. Initially we were having <strong>2.5 million</strong> product rows in the table. Our requirement was to test our application performance with <a href="http://sphinxsearch.com">Sphinx Search</a> engine to load it with <strong>1 million</strong> products. Client didn&#8217;t had that much products ready yet and we wanted to make it rocket fast and bulletproof.</p>
<p>There were suggestions around the web to copy the rows in to new table and then copy back to original table to avoid duplicate key issue for indexed ID ( primary key ). But I just have a simple idea.  Just below query will do the job of cloning entire rows in to the same table without conflicting primary key</p>
<blockquote><p>INSERT INTO `TABLENAME` (`field2`, `field3`,&#8230; ) SELECT `field2`, `field3`,&#8230; FROM TABLENAME</p></blockquote>
<p>Replace TABLENAME with your table&#8217;s name. Care that I kept field2 as the first column name which means, you should not insert in to ID column or select data from it. Just copy the rest and ID will auto increment.</p>
<h4>There is one more thing</h4>
<p>To get the complete field names within a table, you can just export the table with only one row in it. Again remember to delete primary key field name.</p>
<p><a href="http://www.htmlremix.com/wp-content/uploads/2012/09/export-one-row-phpMyAdmin.png"><img onError="javascript: wp_404_images_fix = window.wp_404_images_fix || function(){}; wp_404_images_fix(this);"  class="alignnone size-medium wp-image-993" title="Export one row mysql data using phpMyAdmin" src="http://i1.wp.com/www.htmlremix.com/wp-content/uploads/2012/09/export-one-row-phpMyAdmin.png?resize=300%2C163" alt="Export one row mysql data using phpMyAdmin" data-recalc-dims="1" /></a><br />
<hr />
<h4>Incoming search terms:</h4>
<p><a href="http://www.htmlremix.com/css/duplicating-entire-rows-in-mysql-table-to-the-same-table" title="mysql copy table row to another table">mysql copy table row to another table</a></p>
<p>
<div style="float:left; text-align:left;><img alt='' src='http://0.gravatar.com/avatar/4566283db4866972b067011f5fdedfef?s=100&amp;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D100&amp;r=G' class='avatar avatar-100 photo' height='100' width='100' /></div>
<h3><a href='http://www.htmlremix.com/author/admin' title='Remiz'>Remiz</a></h3>
<p>Remixed version of unstable human emotions and thirst of mankind actions. UX designer, UI developer and HE of WebCastle Media Pvt LTD</p>
<p class='wpa-nomargin'><a href='http://www.htmlremix.com/author/admin' title='More posts by Remiz'>More Posts</a>  - <a href='http://www.twitter.com/remiz'>Twitter</a> - <a href='http://www.facebook.com/pages/Remix/186137951454717'>Facebook</a></p></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/htmlremix?a=a8nVbZK4xoo:_wNq6AocYlc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/htmlremix?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/htmlremix?a=a8nVbZK4xoo:_wNq6AocYlc:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/htmlremix?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/htmlremix?a=a8nVbZK4xoo:_wNq6AocYlc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/htmlremix?i=a8nVbZK4xoo:_wNq6AocYlc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/htmlremix?a=a8nVbZK4xoo:_wNq6AocYlc:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/htmlremix?i=a8nVbZK4xoo:_wNq6AocYlc:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/htmlremix/~4/a8nVbZK4xoo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.htmlremix.com/css/duplicating-entire-rows-in-mysql-table-to-the-same-table/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.htmlremix.com/css/duplicating-entire-rows-in-mysql-table-to-the-same-table</feedburner:origLink></item>
		<item>
		<title>How Airtel become worst cellular company in India</title>
		<link>http://feedproxy.google.com/~r/htmlremix/~3/2mzxfpRU8ec/how-airtel-become-worst-cellular-company-in-india</link>
		<comments>http://www.htmlremix.com/review/how-airtel-become-worst-cellular-company-in-india#comments</comments>
		<pubDate>Wed, 16 May 2012 16:11:31 +0000</pubDate>
		<dc:creator>Remiz</dc:creator>
				<category><![CDATA[Review]]></category>

		<guid isPermaLink="false">http://www.htmlremix.com/?p=975</guid>
		<description><![CDATA[Disclaimer : Following is not meant to be a hate/insult review. But is my personal experience in real life. I am not affiliated to any cellular company at the time of writing this article. If you have any problem/complaints regarding the content of this article, please use contact page on this website. Due to massive [...]]]></description>
				<content:encoded><![CDATA[<p><em> Disclaimer : Following is not meant to be a hate/insult review. But is my personal experience in real life. I am not affiliated to any cellular company at the time of writing this article. If you have any problem/complaints regarding the content of this article, please use <a href="http://www.htmlremix.com/contact">contact page</a> on this website. Due to massive email requests and busy schedules, I may not respond to all of the emails.</em></p>
<hr />
<p>If you know me for last 8 years, only thing I never changed is my personal mobile number. I was <strong>Airtel fan</strong> since I started using mobile. Their extended support for not just calls and SMS but data plans attracted a lot of youth. But good people are not always good. And now it&#8217;s Airtel who turned bad ass. If you need more clarity they have turned worst than Indian post office!</p>
<p><a href="http://www.htmlremix.com/wp-content/uploads/2012/05/mezqusgbfbf.jpg"><img onError="javascript: wp_404_images_fix = window.wp_404_images_fix || function(){}; wp_404_images_fix(this);"  class="alignnone size-medium wp-image-979" title="Airtel needs to make a clean image" src="http://i1.wp.com/www.htmlremix.com/wp-content/uploads/2012/05/mezqusgbfbf.jpg?resize=300%2C196" alt="Airtel needs to make a clean image" data-recalc-dims="1" /></a></p>
<p>It&#8217;s not the time people had to stick with one cellular company like it was once. I brought Airtel sim when it costed near a thousand rupees. Now any sim is free of cost and plans and offers are everywhere the way you need it. Now I use one personal and another private sim, one for iPad and three landlines as in two offices and one at home besides my Vodafone mobile which is used for business. Ohh yea, last month I cancelled one Airtel broadband with landline and switched to MTS Mblaze, which gives me better stability. I believe it&#8217;s time to move on the rest as well. Here is why.</p>
<p>Airtel is in loss, so they are trying to juice existing customers and regain stability. If you get crappy SMS alerts which give you no use, remember you are being charged. Even if you don&#8217;t activate it, Airtel automatically does it for you! And not every customer care executives can find what&#8217;s active on your account. So keep calling them every day to see if anything is activated. Ohh wait, they will charge you for calling customer care too. That is, to solve an issue created by them, you need to spend your time and money! WTF!! It&#8217;s my personal experience. Listen to conversations I had two times with Airtel CC. First guy didn&#8217;t know what&#8217;s active on my number. On Second time call they says SMS alert was active for a long time and they refuse refund. Dear Airtel, you lost the first balls here.</p>
<p>Now it&#8217;s Airtel broadband. If you check my twitter timeline, you can see every month at least twice I tweet my Airtel broadband is down. Every time they say different reasons. Mostly being cable cut. Why don&#8217;t they fucking get some good shit to replace the poor quality cables? They have a reason. It&#8217;s outsourced. Bengali daily waged people are the once who aligns the connection. They do it like it’s just rope! Now another argument is that modem malfunction. When we took connection, we brought it from Airtel. Now that&#8217;s too outsourced. So if you have a complaint for modem, you better replace it with new one without telling anyone. Because nobody at Airtel knows where to complain or what to do when modem is not working. Recently I brought MTS Mblaze, which gives me better speed than 2mbps Airtel ever gave. So I recommend it than Airtel BB and specially Mblaze is wireless so no hassle with Bengalis who don&#8217;t know Malayalam or how to cable properly.</p>
<p>Airtel Landline is fun. They can give you connection. But won&#8217;t provide a phone! Last year, I brought 7 Tata Indicom landlines with zero upfront payment and APBX with automated call routing. Airtel wasn&#8217;t capable of proving single landline connection that time because they didn&#8217;t have free sockets available. They asked for 20 days time more time after I waited for one week hearing their promise. But later I took one connection with BB and phone. Now, they don&#8217;t provide phone when you take a new connection. The same phone device that TATA gave last year, Airtel is charging for it. I said fuck it; I&#8217;ll buy a good one from store.</p>
<p>Customer care people are worst than post office people. It&#8217;s not that I have any personal enmity with anyone at post office. When I was kid, I used to go post office for paying my home BSNL bills. They were treating people like we are in some refugee camp begging for food form their home. May be its just that post officers or may be it’s that it is the only Govnt office I walked in several times. I haven&#8217;t been in post office for years now. Not sure if I will ever walk in again. Post offices are so dead for me. Now everything is online and courier services are good at speed. Now back to Airtel customer care.</p>
<p>Last week I was traveling through Ernakulam &#8211; Kannur &#8211; Chennai &#8211; Bangalore &#8211; Kannur. I use Airtel sim on my iPad so that I can access on Demand 3G when I&#8217;m away from wifi. It worked fine till I reached Chennai. Then all of a sudden data is not available. I thought it’s because of Roaming. But everyone offers free 3G data roaming. It was not sorted when I came back home. So I tried USSD query to see if it connects. It failed with no response. Then I called to its number from another phone. It said my number is temporarily blocked!! Time for another WTF!!</p>
<p>I called customer care, one Mr. Yasser tried to help me and said someone reported sim missing on this number and so my sim was blocked! I asked who reported and when? He didn&#8217;t have answer and I asked to connect me to seniors. He said ok, and I waited few minutes then he came back and said top teams aren&#8217;t available. He promised to fix it in an hour and I asked him to send confirmation on my personal number as iPad can&#8217;t receive SMS and calls. He said he don&#8217;t have its facility to call another number even if it&#8217;s the number I&#8217;m calling to complain! I asked him to call me manually from his phone. He said he can&#8217;t call. (WTF!) I belied it will fix that night. Because I had to book tickets next morning at 8 when the IRCTC Tatkal opens. Bullshit happened next day, it was still blocked. As I don&#8217;t plan for an alternative connection, I got one hour delayed to book ticket and my mom and I had to travel in Chennai Mail general coach from Kannur. We got wait listed AC reservation only due to the delay in booking. A sleep less journey! (WTF). I called customer care for 3rd time to solve the block issue, this time a lady said she just unblocked my number and it will be active in an hour. It didn&#8217;t happen for now when I&#8217;m writing this, which is 24+ hours after that call. Now I&#8217;m in Chennai, I can&#8217;t call Customer Care. It gives no option to talk to them. Just IVR. But<br />
I just got one advertising call from Airtel comedy while I&#8217;m roaming. No comments on it than WTF!</p>
<p>Later that day, I got two calls from Airtel saying they saw my complaints on twitter and they are checking what the reason it got blocked is. Anyways, I&#8217;m going to buy new sim from BSNL for iPad. Fuck Airtel.<br />
<hr />
<h4>Incoming search terms:</h4>
<p><a href="http://www.htmlremix.com/review/how-airtel-become-worst-cellular-company-in-india" title="Airtel private number">Airtel private number</a>, <a href="http://www.htmlremix.com/review/how-airtel-become-worst-cellular-company-in-india" title="airtel company review">airtel company review</a>, <a href="http://www.htmlremix.com/review/how-airtel-become-worst-cellular-company-in-india" title="airtel is very costly">airtel is very costly</a>, <a href="http://www.htmlremix.com/review/how-airtel-become-worst-cellular-company-in-india" title="you are temporarily blocked airtel">you are temporarily blocked airtel</a></p>
<p>
<div style="float:left; text-align:left;><img alt='' src='http://0.gravatar.com/avatar/4566283db4866972b067011f5fdedfef?s=100&amp;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D100&amp;r=G' class='avatar avatar-100 photo' height='100' width='100' /></div>
<h3><a href='http://www.htmlremix.com/author/admin' title='Remiz'>Remiz</a></h3>
<p>Remixed version of unstable human emotions and thirst of mankind actions. UX designer, UI developer and HE of WebCastle Media Pvt LTD</p>
<p class='wpa-nomargin'><a href='http://www.htmlremix.com/author/admin' title='More posts by Remiz'>More Posts</a>  - <a href='http://www.twitter.com/remiz'>Twitter</a> - <a href='http://www.facebook.com/pages/Remix/186137951454717'>Facebook</a></p></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/htmlremix?a=2mzxfpRU8ec:mxqdbzqqxEo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/htmlremix?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/htmlremix?a=2mzxfpRU8ec:mxqdbzqqxEo:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/htmlremix?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/htmlremix?a=2mzxfpRU8ec:mxqdbzqqxEo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/htmlremix?i=2mzxfpRU8ec:mxqdbzqqxEo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/htmlremix?a=2mzxfpRU8ec:mxqdbzqqxEo:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/htmlremix?i=2mzxfpRU8ec:mxqdbzqqxEo:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/htmlremix/~4/2mzxfpRU8ec" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.htmlremix.com/review/how-airtel-become-worst-cellular-company-in-india/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.htmlremix.com/review/how-airtel-become-worst-cellular-company-in-india</feedburner:origLink></item>
		<item>
		<title>Google Chrome prerendering and how developer can get ready</title>
		<link>http://feedproxy.google.com/~r/htmlremix/~3/CDy2bNipdx4/google-chrome-prerendering-and-how-developer-can-get-ready</link>
		<comments>http://www.htmlremix.com/google/google-chrome-prerendering-and-how-developer-can-get-ready#comments</comments>
		<pubDate>Wed, 11 Jan 2012 17:43:54 +0000</pubDate>
		<dc:creator>Remiz</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[Google chrome]]></category>
		<category><![CDATA[page speed]]></category>
		<category><![CDATA[speed]]></category>
		<category><![CDATA[wordpress plugin]]></category>

		<guid isPermaLink="false">http://www.htmlremix.com/?p=960</guid>
		<description><![CDATA[Web developer's precautions to Google Chrome Prerendering to get the best out of it. Give better experience to visitors with less cost for hosting. ]]></description>
				<content:encoded><![CDATA[<p>Last year, Google announced of <a href="http://www.chromium.org/developers/design-documents/prerender">Chrome Prerendering</a>, that is a feature added to Chrome to improve user-visible page load times. Chrome will load the page even if the user is not clicked on it. So that when user actually clicks the link, use feels like it loads faster.</p>
<p><a href="http://i1.wp.com/www.htmlremix.com/wp-content/uploads/2012/01/speed.jpg?resize=600%2C275"><img onError="javascript: wp_404_images_fix = window.wp_404_images_fix || function(){}; wp_404_images_fix(this);"  src="http://i1.wp.com/www.htmlremix.com/wp-content/uploads/2012/01/speed.jpg?resize=600%2C275" alt="" title="speed" class="alignnone size-full wp-image-966" data-recalc-dims="1" /></a><br />
Now, Google has added it in the <a href="http://chrome.blogspot.com/2012/01/speed-and-security.html">stable release of Chrome</a>, which will be downloaded masses. Now, as developers, how can we utilize this wisely and still save bandwidth.</p>
<p>First, we need to tell Chrome which links to prerender. For this, you just need to add this line on your HEAD tag. </p>
<pre class="qoate-code">
&lt;link rel="prerender" href="http://example.org/nextpage.html" /&gt;
</pre>
<p>Here is a <a href="http://www.htmlremix.com/projects/preloader-meta-wordpress-plugin">WordPress plugin</a> which does this out of the box for you.</p>
<h4>Negative effects if you enable Prerendering</h4>
<p>No questions, its so cool for the visitors to get pages load faster. But it eats up their bandwidth uselessly unless they want to click on another link.<br />
Now whats bad for the developer / site owner ?</p>
<ol>
<li>It loads pages un-necessarily, which wastes server resource and band width.</li>
<li>Users may see not so updated page if you have real time data on your page. Because what user will see is data already loaded</li>
<li>DOM based JS layouting may have trouble ( atleast for now, some websites may break )</li>
<li>Analytics Data may get messed &#8211; Google says that any page <a href="http://support.google.com/analytics/bin/answer.py?hl=en&#038;topic=1070353&#038;answer=1350288">Analytics may count prerendering as a pageview</a>. It was a small amount earlier, but now Prerendering is spread through Chrome stable release. Lets hope Google Analytics Team will come up with a solution. </li>
<li>Be prepared with a good <a href="http://www.webhostingsearch.com/">web hosting packages</a> to get more visits on to your site. I mean just hists, not visits though <img onError="javascript: wp_404_images_fix = window.wp_404_images_fix || function(){}; wp_404_images_fix(this);"  src='http://www.htmlremix.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </li>
</ol>
<p>Keep watching this space to get updated on this matter.</p>
<p>
<div style="float:left; text-align:left;><img alt='' src='http://0.gravatar.com/avatar/4566283db4866972b067011f5fdedfef?s=100&amp;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D100&amp;r=G' class='avatar avatar-100 photo' height='100' width='100' /></div>
<h3><a href='http://www.htmlremix.com/author/admin' title='Remiz'>Remiz</a></h3>
<p>Remixed version of unstable human emotions and thirst of mankind actions. UX designer, UI developer and HE of WebCastle Media Pvt LTD</p>
<p class='wpa-nomargin'><a href='http://www.htmlremix.com/author/admin' title='More posts by Remiz'>More Posts</a>  - <a href='http://www.twitter.com/remiz'>Twitter</a> - <a href='http://www.facebook.com/pages/Remix/186137951454717'>Facebook</a></p></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/htmlremix?a=CDy2bNipdx4:3yw4epVNjRM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/htmlremix?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/htmlremix?a=CDy2bNipdx4:3yw4epVNjRM:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/htmlremix?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/htmlremix?a=CDy2bNipdx4:3yw4epVNjRM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/htmlremix?i=CDy2bNipdx4:3yw4epVNjRM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/htmlremix?a=CDy2bNipdx4:3yw4epVNjRM:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/htmlremix?i=CDy2bNipdx4:3yw4epVNjRM:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/htmlremix/~4/CDy2bNipdx4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.htmlremix.com/google/google-chrome-prerendering-and-how-developer-can-get-ready/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.htmlremix.com/google/google-chrome-prerendering-and-how-developer-can-get-ready</feedburner:origLink></item>
		<item>
		<title>Permanent URL masking for mirroring website using php and htaccess</title>
		<link>http://feedproxy.google.com/~r/htmlremix/~3/rHj7lEIuHjw/permanent-url-masking-for-mirroring-website-using-php-and-htaccess</link>
		<comments>http://www.htmlremix.com/css/permanent-url-masking-for-mirroring-website-using-php-and-htaccess#comments</comments>
		<pubDate>Wed, 04 Jan 2012 17:54:43 +0000</pubDate>
		<dc:creator>Remiz</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[code snippet]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[permalink]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php script]]></category>
		<category><![CDATA[research]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[url]]></category>

		<guid isPermaLink="false">http://www.htmlremix.com/?p=953</guid>
		<description><![CDATA[Load originalsite.com content to newsite.com url with all links working straight from newsite.com without iframe. Just php and htaccess goodness]]></description>
				<content:encoded><![CDATA[<p><em> Note: This article was published on my <a href="http://webcastletech.com/blog/mask-site-url-using-php-and-htaccess-proxy">web development company blog</a> and re-posted over here for enabling discussion and continuous developments </em></p>
<hr />
Now you want to mirror a website of someone else or your own to a new domain. You can simply set it as an addon domain if you have access to original site&#8217;s hosting control panel. But what if not? If you use htaccess redirects, it promptly redirects to original site.</p>
<p>Another quick way is to use iframes. Just put following code in your index.html of new domain.</p>
<pre class="qoate-code"> &lt;iframe src="http://originalsite.com" height="100%" width="100"&gt;&lt;/iframe&gt; </pre>
<p>But if visitor clicks a link on the page, it wont update the url on the address bar and user fill feel fishy <img onError="javascript: wp_404_images_fix = window.wp_404_images_fix || function(){}; wp_404_images_fix(this);"  src='http://www.htmlremix.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Here is the simple script which makes the masking work. It has two portions a php file and one htaccess file.</p>
<p>What php file does is, it opens the original website and grab the content to bump it back to the browser. In the process, it replaces any text with source site url to your new url. So that links on the site and all resource are called from your new domain itself. Smart! isn&#8217;t it?</p>
<pre class="qoate-code">
# index.php
&lt;?php
// enter your site names here. Just the core url no http or tail slashes 
$wc_source = "originalsite.com";
$wc_mirror = "yourawesomedomain.com";
/*
Look hard under this line. But dont try to change unless you are above 18 and know how to read awasthakiyoguyiomonstia
*/ 
$sql = $_GET['sql'];
$URL = "http://".$wc_source."/".$sql;
$fullPath = $URL;
$base = '&lt;base href="'.$URL.'"&gt;';
$host = preg_replace('/^[^\/]+\/\//','',$URL);
$tarray = explode('/',$host);
$host = array_shift($tarray);
$URI = '/' . implode('/',$tarray);
$content = '';
$fp = @fsockopen($host,80,$errno,$errstr,30);
if(!$fp) { echo "Unable to open socked: $errstr ($errno)\n"; exit; } 
fwrite($fp,"GET $URI HTTP/1.0\r\n");
fwrite($fp,"Host: $host\r\n");
if( isset($_SERVER["HTTP_USER_AGENT"]) ) { fwrite($fp,'User-Agent: '.$_SERVER["HTTP_USER_AGENT"]."\r\n"); }
fwrite($fp,"Connection: Close\r\n");
fwrite($fp,"\r\n");
while (!feof($fp)) { $content .= fgets($fp, 128); }
fclose($fp);
if( strpos($content,"\r\n") &gt; 0 ) { $eolchar = "\r\n"; }
else { $eolchar = "\n"; }
$eolpos = strpos($content,"$eolchar$eolchar");
$content = substr($content,($eolpos + strlen("$eolchar$eolchar")));
$content = str_replace($wc_source,$wc_mirror,$content);
// replaces paths with / in the begining without full url. not required unless you are in subfolder
$content = str_replace('href="/','href="http://'.$wc_mirror.'/',$content);
$content = str_replace('src="/','src="http://'.$wc_mirror.'/',$content);

// $fsize = filesize($fullPath); 
    $path_parts = pathinfo($fullPath); 
    $ext = strtolower($path_parts["extension"]); 
    
    // Determine Content Type 
    switch ($ext) { 
      case "pdf": $ctype="application/pdf"; break; 
      case "exe": $ctype="application/octet-stream"; break; 
      case "zip": $ctype="application/zip"; break; 
      case "doc": $ctype="application/msword"; break; 
      case "xls": $ctype="application/vnd.ms-excel"; break; 
      case "ppt": $ctype="application/vnd.ms-powerpoint"; break; 
      case "gif": $ctype="image/gif"; break; 
      case "png": $ctype="image/png"; break; 
      case "jpeg": $ctype="image/jpg"; break; 
      case "jpg": $ctype="image/jpg"; break;
      case "js": $ctype="text/javascript"; break;	 
      case "css": $ctype="text/css"; break;
    } 

    header("Pragma: public"); // required 
    header("Expires: 0"); 
    header("Cache-Control: must-revalidate, post-check=0, pre-check=0"); 
    header("Cache-Control: private",false); // required for certain browsers 
    header("Content-Type: $ctype"); 
    header("Content-Transfer-Encoding: binary"); 
//    header("Content-Length: ".$fsize); 
	

if( preg_match('/&lt;head\s*&gt;/i',$content) ) { echo( preg_replace('/&lt;head\s*&gt;/i','&lt;head&gt;'.$base,$content,1) ); }
else { echo ( str_replace($wc_source,$wc_mirror,preg_replace('/&lt;([a-z])([^&gt;]+)&gt;/i',"&lt;\\1\\2&gt;".$base,$content,1) )); 
}
?&gt;
</pre>
<p>Now its true that you don&#8217;t have any other resource / files on the new domain server. Here comes the htaccess to play its role. htaccess sends all requests to index.php with full path so that index.php can return content for corresponding files from Original website.</p>
<pre class="qoate-code">
#htaccess file
&lt;IfModule mod_rewrite.c&gt;
    RewriteEngine On
    RewriteBase /
    #Checks to see if the user is attempting to access a valid file,
    #such as an image or css document, if this isn't true it sends the
    #request to index.php
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ /index.php?sql=$1 [L]
&lt;/IfModule&gt;
</pre>
<p>Implementation is very straight forward. You just need to put in the source and mirror urls in the php file. Everything works out of the box.</p>
<p>Once the files are set with proper urls, when you go to <strong>newdomain.com</strong> , it will show you content from <strong>originalsite.com</strong> and all links will word as of <strong>newdomain.com/link.html</strong><br />
<hr />
<h4>Incoming search terms:</h4>
<p><a href="http://www.htmlremix.com/css/permanent-url-masking-for-mirroring-website-using-php-and-htaccess" title="url masking htaccess">url masking htaccess</a>, <a href="http://www.htmlremix.com/css/permanent-url-masking-for-mirroring-website-using-php-and-htaccess" title="url masking">url masking</a>, <a href="http://www.htmlremix.com/css/permanent-url-masking-for-mirroring-website-using-php-and-htaccess" title="url masking in php">url masking in php</a>, <a href="http://www.htmlremix.com/css/permanent-url-masking-for-mirroring-website-using-php-and-htaccess" title="url masking html">url masking html</a>, <a href="http://www.htmlremix.com/css/permanent-url-masking-for-mirroring-website-using-php-and-htaccess" title="htaccess url masking">htaccess url masking</a>, <a href="http://www.htmlremix.com/css/permanent-url-masking-for-mirroring-website-using-php-and-htaccess" title="url masking using htaccess">url masking using htaccess</a>, <a href="http://www.htmlremix.com/css/permanent-url-masking-for-mirroring-website-using-php-and-htaccess" title="php code for url masking">php code for url masking</a>, <a href="http://www.htmlremix.com/css/permanent-url-masking-for-mirroring-website-using-php-and-htaccess" title="mask url php">mask url php</a>, <a href="http://www.htmlremix.com/css/permanent-url-masking-for-mirroring-website-using-php-and-htaccess" title="htaccess domain masking">htaccess domain masking</a>, <a href="http://www.htmlremix.com/css/permanent-url-masking-for-mirroring-website-using-php-and-htaccess" title="iframe generator to mask url php cloaking">iframe generator to mask url php cloaking</a></p>
<p>
<div style="float:left; text-align:left;><img alt='' src='http://0.gravatar.com/avatar/4566283db4866972b067011f5fdedfef?s=100&amp;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D100&amp;r=G' class='avatar avatar-100 photo' height='100' width='100' /></div>
<h3><a href='http://www.htmlremix.com/author/admin' title='Remiz'>Remiz</a></h3>
<p>Remixed version of unstable human emotions and thirst of mankind actions. UX designer, UI developer and HE of WebCastle Media Pvt LTD</p>
<p class='wpa-nomargin'><a href='http://www.htmlremix.com/author/admin' title='More posts by Remiz'>More Posts</a>  - <a href='http://www.twitter.com/remiz'>Twitter</a> - <a href='http://www.facebook.com/pages/Remix/186137951454717'>Facebook</a></p></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/htmlremix?a=rHj7lEIuHjw:YERxVMAlbus:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/htmlremix?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/htmlremix?a=rHj7lEIuHjw:YERxVMAlbus:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/htmlremix?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/htmlremix?a=rHj7lEIuHjw:YERxVMAlbus:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/htmlremix?i=rHj7lEIuHjw:YERxVMAlbus:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/htmlremix?a=rHj7lEIuHjw:YERxVMAlbus:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/htmlremix?i=rHj7lEIuHjw:YERxVMAlbus:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/htmlremix/~4/rHj7lEIuHjw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.htmlremix.com/css/permanent-url-masking-for-mirroring-website-using-php-and-htaccess/feed</wfw:commentRss>
		<slash:comments>16</slash:comments>
		<feedburner:origLink>http://www.htmlremix.com/css/permanent-url-masking-for-mirroring-website-using-php-and-htaccess</feedburner:origLink></item>
		<item>
		<title>Mullaperiyar – An Appeal from half dead human to sleeping mankind</title>
		<link>http://feedproxy.google.com/~r/htmlremix/~3/r24rxygUdW8/mullaperiyar-an-appeal-from-half-dead-human-to-sleeping-mankind</link>
		<comments>http://www.htmlremix.com/uncategorized/mullaperiyar-an-appeal-from-half-dead-human-to-sleeping-mankind#comments</comments>
		<pubDate>Mon, 21 Nov 2011 14:10:43 +0000</pubDate>
		<dc:creator>Remiz</dc:creator>
				<category><![CDATA[Remix]]></category>
		<category><![CDATA[Dam]]></category>
		<category><![CDATA[India disaster]]></category>
		<category><![CDATA[Kerala]]></category>
		<category><![CDATA[Mullaperiyar]]></category>
		<category><![CDATA[Tamil Nadu]]></category>

		<guid isPermaLink="false">http://www.htmlremix.com/?p=943</guid>
		<description><![CDATA[If we die tomorrow we are not going to complaint no more about it. News papers and TV channels may live broadcast us drinking water and die. You may see us dead after few days like fishes on the shore]]></description>
				<content:encoded><![CDATA[<p><em>Note to my regular readers: This is no way related to technology or business model, idea or even a blog post. This is an appeal from a stupid common man living in the south side of Indian sub-continent called Kerala, specifically Cochin.</em></p>
<p><iframe src="http://www.youtube.com/embed/gS0PwCmjIt4" frameborder="0" width="420" height="315"></iframe></p>
<p>For last few days, I have been looking towards high stored buildings. If you know me in person, it&#8217;s not me who stare at large buildings often. I usually don&#8217;t care height, age and the language you speak and that applies to any object not just human. But why I now began to look for large buildings now days? It has a solid reason behind it. I know for sure it&#8217;s the only thing which can save my life tomorrow. Yes, if the <a href="http://ibnlive.in.com/news/fear-and-agony-near-mullaperiyar-dam/53728-3.html">Mullapperiyar Dam collapses</a> tomorrow, I will be one of the 35 lack people who will go underwater. I&#8217;m not afraid of dying I know it will happen a day and I always believed myself that mine will be sooner. What I want my readers is to make sure that we know we were gonna die before we actually do.</p>
<p><a href="http://www.htmlremix.com/wp-content/uploads/2011/11/save-kerala.jpg"><img onError="javascript: wp_404_images_fix = window.wp_404_images_fix || function(){}; wp_404_images_fix(this);"  class="alignnone size-medium wp-image-947" title="Kerala after and Before Mullaperiyar Dam collapse" src="http://i0.wp.com/www.htmlremix.com/wp-content/uploads/2011/11/save-kerala.jpg?resize=300%2C262" alt="Kerala after and Before Mullaperiyar Dam collapse" data-recalc-dims="1" /></a></p>
<p>35 lack people are going to die not because of a natural disaster. But the <a href="http://vimeo.com/18283950">laziness and ignorance</a> of a major part of us and shattered groups of people who know it&#8217;s going to happen and didn&#8217;t care. I don’t understand the logic of renting a <a href="http://mowr.gov.in/index3.asp?subsublinkid=751&amp;langid=1&amp;sslid=733">50 years lifetime guaranteed dam for 999 years</a> with rent of 30 rupee per acre. And it&#8217;s been more than 116&#8242;years. Couple of tens of years ago, the agreement <a href="https://sites.google.com/site/profshivajirao/mullaperiyardam">was renewed by officers of both Kerala and Tamil Nadu</a> and nobody was known about it in public.</p>
<p>You can read more about the issues and the history behind the funny Mullaperiyar dam agreements here. But what I&#8217;m Noreen interested is ignoring the history considering it as a story and find a solution.</p>
<ul>
<li><a href="http://mowr.gov.in/index3.asp?subsublinkid=751&amp;langid=1&amp;sslid=733">Ministry of Water resources</a></li>
<li><a href="https://sites.google.com/site/profshivajirao/mullaperiyardam">IS MULLA PERIYAR DAM SAFE</a>? by Prof.T.Shivaji Rao, Director, Centre for Environmental Studies, GITAM, Visakhapatnam</li>
</ul>
<p>As the case is between two states Kerala and Tamil Nadu things are little complicated here. Only question Kerala has is about life of 35lack people in five districts including Idukki, Ernakulam and Alappuzha.<br />
For Tamil Nadu, it&#8217;s main source of their revenue in terms of electricity which Tamil Nadu produces from Mullaperiyar which was not agreed in the Dam agreement with Kerala. What Kerala agreed was that the water can be used for serving water supply to seven districts in Tamil Nadu.</p>
<p><strong>Solution #1</strong>: Build a large parallel Dam within secure distance from current dam and break current one.<br />
Flaws: It will take at least ten years to build a similar capacity dam and current dam can&#8217;t stay for more than an year as it is now. Keep in mind that yesterday there was fourth miner earthquake of this month. So either Tamil Nadu will have to suffer ten years without less water which may cause major financial lose to the state specially who depends on agriculture. But keeping watter level in low while the other Dam is build will solve 70% of water availability issue. Kerala Govnt even agreed to spend 600 crores for new Dam for sake of people security. Kerala is not using water from Mullaperiyar Dam at present. So with investment of money in, Kerala is expecting to get water benefits.</p>
<p><strong>Solution #2</strong>: Build more smaller Dams and lower water level of Mullaperiyar and distroy Mullaperiyar securely after all Dams are built. Water can still be used by Tamil Nadu, but they wont be able to make 30,000 crore per year which they are making now by electricity which was not agreed in the initial agreement with Kerala. Tamil Nadu will not agree to such a lose ignoring life of millions of people in Kerala.</p>
<p><strong>Solution #3: </strong>This is my favorite. The more I grow, Im losing my pride as Indian. Politics, Language barriers and unwanted criticism and overtaking of rules my human is making me nervous these days. I dont find a meaning in being one country with numerous states that fights each other. The Central government system has no power when it comes to warn or act against these states. Corruption is leading the country to its higher levels.</p>
<p>So lets talk about the solution. Shuffle the state boundary structure. A lot of people in Idukki District are Tamil speaking people and the range fixing of states in India was not done properly when we got Freedom in 1947. So shuffle state borders in a way that there is no more inter state fights.</p>
<p>So to wrap, let me write this too&#8230; If we die tomorrow we are not going to complaint no more about it. News papers and TV channels may live broadcast us drinking water and die. You may see us dead after few days like fishes on the shore. But people who watch this wont feel anything special humanly about it. Because we died because we didn&#8217;t had voice to talk, or those who had voice, they didn&#8217;t talk. So we die&#8230;
<div style="float:left; text-align:left;><img alt='' src='http://0.gravatar.com/avatar/4566283db4866972b067011f5fdedfef?s=100&amp;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D100&amp;r=G' class='avatar avatar-100 photo' height='100' width='100' /></div>
<h3><a href='http://www.htmlremix.com/author/admin' title='Remiz'>Remiz</a></h3>
<p>Remixed version of unstable human emotions and thirst of mankind actions. UX designer, UI developer and HE of WebCastle Media Pvt LTD</p>
<p class='wpa-nomargin'><a href='http://www.htmlremix.com/author/admin' title='More posts by Remiz'>More Posts</a>  - <a href='http://www.twitter.com/remiz'>Twitter</a> - <a href='http://www.facebook.com/pages/Remix/186137951454717'>Facebook</a></p></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/htmlremix?a=r24rxygUdW8:6JlFWVSew3g:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/htmlremix?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/htmlremix?a=r24rxygUdW8:6JlFWVSew3g:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/htmlremix?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/htmlremix?a=r24rxygUdW8:6JlFWVSew3g:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/htmlremix?i=r24rxygUdW8:6JlFWVSew3g:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/htmlremix?a=r24rxygUdW8:6JlFWVSew3g:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/htmlremix?i=r24rxygUdW8:6JlFWVSew3g:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/htmlremix/~4/r24rxygUdW8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.htmlremix.com/uncategorized/mullaperiyar-an-appeal-from-half-dead-human-to-sleeping-mankind/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		<feedburner:origLink>http://www.htmlremix.com/uncategorized/mullaperiyar-an-appeal-from-half-dead-human-to-sleeping-mankind</feedburner:origLink></item>
		<item>
		<title>Top 10 iPad Applications (Awesome ten iPad Apps)</title>
		<link>http://feedproxy.google.com/~r/htmlremix/~3/83oJshtIll0/top-10-ipad-applications-awesome-ten-ipad-apps</link>
		<comments>http://www.htmlremix.com/iphone/top-10-ipad-applications-awesome-ten-ipad-apps#comments</comments>
		<pubDate>Tue, 25 Oct 2011 14:03:47 +0000</pubDate>
		<dc:creator>Remiz</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[Download iphone apps]]></category>
		<category><![CDATA[Get]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[ipad apps]]></category>
		<category><![CDATA[iphone app]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[Review]]></category>

		<guid isPermaLink="false">http://www.htmlremix.com/?p=933</guid>
		<description><![CDATA[List of my Favorite ten iPad Applications. Including life saver iSSH and Magical app Air Display]]></description>
				<content:encoded><![CDATA[<p>If you loved my old posts about <a href="http://www.htmlremix.com/iphone/out-of-box-iphone-apps">Out of box iPhone Apps</a> and <a href="http://www.htmlremix.com/iphone/must-have-iphone-applications">Must have iPhone Apps</a>, here is the list of ten amazing iPad application I use now a days.</p>
<p><img onError="javascript: wp_404_images_fix = window.wp_404_images_fix || function(){}; wp_404_images_fix(this);"  class="alignnone size-large wp-image-936" title="iPad 3D" src="http://www.htmlremix.com/wp-content/uploads/2011/10/iPad-3D-1024x625.jpg" alt="" width="491" height="300" /></p>
<p>&nbsp;</p>
<h4><a href="http://itunes.apple.com/us/app/issh-ssh-vnc-console/id287765826?mt=8" target="_blank">iSSH</a></h4>
<p>Though it smells greeky to have ssh client on top of the list, it is really a life saver for me.</p>
<h4><a href="http://avatron.com/apps/air-display" target="_blank">Air Display</a></h4>
<p>Ever wished if your monitor had touch screen? Now that dream has come true. Now you can use iPad/iPhone as additional display for your Windows and Mac with touch capability. Close your mouth and start touching your desktop icons and Paint brush with your fingers in Photoshop</p>
<h4><a href="http://itunes.apple.com/us/app/skyfire-web-browser-for-ipad/id409153623?mt=8" target="_blank">Skyfire Web Browser for iPad</a></h4>
<p>I love Chrome to be on my iPad as well. But for now Safari is my main browser on iPad. Skyfire is awesome because you wont miss flash videos anymore.</p>
<h4><a href="http://itunes.apple.com/us/app/phone-drive-file-sharing/id431033044?mt=8" target="_blank">Phone Drive</a></h4>
<p>Storing files on iDevices are still pain in Ass as unless you use iFiles. Now there are a lot of Apps which lets you use iPad as Wifi Hard Disc so that you can store files and sync files using iTunes. Photo Drive also lets you access through FTP client, which is awesome.</p>
<h4>NAVIGON MobileNavigator</h4>
<p>The Awesome most GPS tracking App for iPad. I know there are several other apps. But this one got almost all roads in India covered. This one got voice over feature which helps when you are driving. But dont trust machines on Indian roads yet <img onError="javascript: wp_404_images_fix = window.wp_404_images_fix || function(){}; wp_404_images_fix(this);"  src='http://www.htmlremix.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h4><a href="http://itunes.apple.com/us/app/reeder-for-ipad/id375661689?mt=8" target="_blank">Reeder</a></h4>
<p>Google Reader Client with minimal UI and faster Syncing for Offline reading. Best app when you wake up and go out for a long day with spare time. Sync feeds in the morning and read whole day.</p>
<h4><a href="http://itunes.apple.com/us/app/talkatone-free-calls-sms-texting/id397648381?mt=8" target="_blank">Talkatone</a></h4>
<p>Who said iPad cant be used as Phone? Call me on my Google voice number and I will answer you from my iPad. I can also make calls from my Google Voice number using GV Connect. It just works like a Charm.</p>
<h4><a href="http://itunes.apple.com/us/app/real-piano-hd-pro/id413943804?mt=8" target="_blank"> Real Piano HD Pro</a></h4>
<p>Dont worry about the name HD and Pro, its Free! . A Beautiful music app with amazing features and simple interface. Just fell in love with it though Guitar was my favorite <a href="http://www.htmlremix.com/music" target="_blank">music instrument</a>.</p>
<h4>VLC</h4>
<p>You know her very well, so do I. You will need to jailbreak to install this now a days. Apple removed her from AppStore coz its opensource.</p>
<h4>Installous</h4>
<p>If you know about this app, you already have it installed. Jailbreakme your iPad with a reason. This is it.</p>
<p>I hope you love these apps as well. Tell me if you have some awesome app on your iPad which I havent mentioned here. I love to try all of them <img onError="javascript: wp_404_images_fix = window.wp_404_images_fix || function(){}; wp_404_images_fix(this);"  src='http://www.htmlremix.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<hr />
<h4>Incoming search terms:</h4>
<p><a href="http://www.htmlremix.com/iphone/top-10-ipad-applications-awesome-ten-ipad-apps" title="awesome ipad apps">awesome ipad apps</a>, <a href="http://www.htmlremix.com/iphone/top-10-ipad-applications-awesome-ten-ipad-apps" title="best indian ipad apps">best indian ipad apps</a>, <a href="http://www.htmlremix.com/iphone/top-10-ipad-applications-awesome-ten-ipad-apps" title="top 10 ipad apps">top 10 ipad apps</a>, <a href="http://www.htmlremix.com/iphone/top-10-ipad-applications-awesome-ten-ipad-apps" title="top ten ipad apps">top ten ipad apps</a>, <a href="http://www.htmlremix.com/iphone/top-10-ipad-applications-awesome-ten-ipad-apps" title="Top Indian iPad apps">Top Indian iPad apps</a>, <a href="http://www.htmlremix.com/iphone/top-10-ipad-applications-awesome-ten-ipad-apps" title="top ipad apps for india">top ipad apps for india</a>, <a href="http://www.htmlremix.com/iphone/top-10-ipad-applications-awesome-ten-ipad-apps" title="best ipad apps in india">best ipad apps in india</a>, <a href="http://www.htmlremix.com/iphone/top-10-ipad-applications-awesome-ten-ipad-apps" title="useful apps for ipad india">useful apps for ipad india</a></p>
<p>
<div style="float:left; text-align:left;><img alt='' src='http://0.gravatar.com/avatar/4566283db4866972b067011f5fdedfef?s=100&amp;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D100&amp;r=G' class='avatar avatar-100 photo' height='100' width='100' /></div>
<h3><a href='http://www.htmlremix.com/author/admin' title='Remiz'>Remiz</a></h3>
<p>Remixed version of unstable human emotions and thirst of mankind actions. UX designer, UI developer and HE of WebCastle Media Pvt LTD</p>
<p class='wpa-nomargin'><a href='http://www.htmlremix.com/author/admin' title='More posts by Remiz'>More Posts</a>  - <a href='http://www.twitter.com/remiz'>Twitter</a> - <a href='http://www.facebook.com/pages/Remix/186137951454717'>Facebook</a></p></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/htmlremix?a=83oJshtIll0:anCpXY4brkE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/htmlremix?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/htmlremix?a=83oJshtIll0:anCpXY4brkE:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/htmlremix?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/htmlremix?a=83oJshtIll0:anCpXY4brkE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/htmlremix?i=83oJshtIll0:anCpXY4brkE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/htmlremix?a=83oJshtIll0:anCpXY4brkE:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/htmlremix?i=83oJshtIll0:anCpXY4brkE:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/htmlremix/~4/83oJshtIll0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.htmlremix.com/iphone/top-10-ipad-applications-awesome-ten-ipad-apps/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.htmlremix.com/iphone/top-10-ipad-applications-awesome-ten-ipad-apps</feedburner:origLink></item>
		<item>
		<title>Track iPhone 2G / 3G / 4G remotely and recover stolen / lost iPhone</title>
		<link>http://feedproxy.google.com/~r/htmlremix/~3/sSEcSIPhrSg/track-iphone-2g-3g-4g-remotely-and-recover-stolen-lost-iphone</link>
		<comments>http://www.htmlremix.com/iphone/track-iphone-2g-3g-4g-remotely-and-recover-stolen-lost-iphone#comments</comments>
		<pubDate>Tue, 23 Aug 2011 14:57:38 +0000</pubDate>
		<dc:creator>Remiz</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[Download iphone apps]]></category>
		<category><![CDATA[Free iphone apps]]></category>
		<category><![CDATA[Geek]]></category>
		<category><![CDATA[iphone app]]></category>
		<category><![CDATA[virtual]]></category>

		<guid isPermaLink="false">http://www.htmlremix.com/?p=927</guid>
		<description><![CDATA[Then I came across a jaw dropping featured iPhone app for tracking location. iLocalis. It has everything that Find iPhone app promises, and does a lot more]]></description>
				<content:encoded><![CDATA[<p>Yesterday, I came across articles about recovering lost phones. That made me think of &#8220;What if I lost my <a href="http://www.htmlremix.com/iphone">iPhone</a>?&#8221; Till today, I haven&#8217;t done any preoccupation to prevent my iPhone from losing it or a way to get it back once its lost. So I tried on several options to track the phone remotely. <a href="http://itunes.apple.com/us/app/find-my-iphone/id376101648?mt=8">Find My iPhone</a> official Apple does a great job. But what if the iPhone is not connected to internet?</p>
<p>As said, most people including me don&#8217;t always have wifi connected. Specially when we are on road and that&#8217;s where phone is mostly gonna get disappeared. And I keep cellular data turned off on iPhone because it drains battery easily and costs me even if I don&#8217;t do anything. (It keeps checking mails and updates)</p>
<p>Then I came across a jaw dropping featured iPhone app for tracking location. <a href="http://ilocalis.com/">iLocalis</a>. It has everything that Find iPhone app promises, and does a lot more.</p>
<p><a href="http://i2.wp.com/www.htmlremix.com/wp-content/uploads/2011/08/ilocalis3.png?resize=240%2C400"><img onError="javascript: wp_404_images_fix = window.wp_404_images_fix || function(){}; wp_404_images_fix(this);"  class="alignnone size-full wp-image-928" title="ilocalis3" src="http://i2.wp.com/www.htmlremix.com/wp-content/uploads/2011/08/ilocalis3.png?resize=240%2C400" alt="" data-recalc-dims="1" /></a></p>
<ul>
<li>Track phone using remote SMS commands</li>
<li>Notify friends nearby</li>
<li>Initiate Call remotely ( You can make phone calls from iPhone to any number from a web interface )</li>
<li>Remote backup ( Never lose your data even if you lose your phone )</li>
<li>Alert Zones ( Know when ever they come to your area )</li>
<li>Remote audio recording &#8211; A real spy on your phone who send you Thief&#8217;s secret talk to your email</li>
<li>Remote iPhone lock</li>
</ul>
<p>Another very cool feature is that, you can update your location data to Google Latitude in real time. This helps users with old iPhone to use Google Latitude functionality as official app requires latest iOS.</p>
<p>Wait no more, download <strong>iLocalis</strong> from <strong>cydia</strong>. <a href="http://ilocalis.com/google/step1.php">Here is how to do that</a>. Tell me about your lost phone story <img onError="javascript: wp_404_images_fix = window.wp_404_images_fix || function(){}; wp_404_images_fix(this);"  src='http://www.htmlremix.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<hr />
<h4>Incoming search terms:</h4>
<p><a href="http://www.htmlremix.com/iphone/track-iphone-2g-3g-4g-remotely-and-recover-stolen-lost-iphone" title="track iphone 3g">track iphone 3g</a>, <a href="http://www.htmlremix.com/iphone/track-iphone-2g-3g-4g-remotely-and-recover-stolen-lost-iphone" title="track iphone remotely">track iphone remotely</a>, <a href="http://www.htmlremix.com/iphone/track-iphone-2g-3g-4g-remotely-and-recover-stolen-lost-iphone" title="how to track iphone 2g">how to track iphone 2g</a>, <a href="http://www.htmlremix.com/iphone/track-iphone-2g-3g-4g-remotely-and-recover-stolen-lost-iphone" title="track iphone location using 3g">track iphone location using 3g</a>, <a href="http://www.htmlremix.com/iphone/track-iphone-2g-3g-4g-remotely-and-recover-stolen-lost-iphone" title="iphone remote off on tracker">iphone remote off on tracker</a>, <a href="http://www.htmlremix.com/iphone/track-iphone-2g-3g-4g-remotely-and-recover-stolen-lost-iphone" title="iphone 2g apps how to lose my phone">iphone 2g apps how to lose my phone</a>, <a href="http://www.htmlremix.com/iphone/track-iphone-2g-3g-4g-remotely-and-recover-stolen-lost-iphone" title="i lost my apple 3g phone what to do">i lost my apple 3g phone what to do</a>, <a href="http://www.htmlremix.com/iphone/track-iphone-2g-3g-4g-remotely-and-recover-stolen-lost-iphone" title="how to track iphone using 2g">how to track iphone using 2g</a>, <a href="http://www.htmlremix.com/iphone/track-iphone-2g-3g-4g-remotely-and-recover-stolen-lost-iphone" title="how to track iphone 2g if stolen">how to track iphone 2g if stolen</a>, <a href="http://www.htmlremix.com/iphone/track-iphone-2g-3g-4g-remotely-and-recover-stolen-lost-iphone" title="how to track an iphone if stolen">how to track an iphone if stolen</a></p>
<p>
<div style="float:left; text-align:left;><img alt='' src='http://0.gravatar.com/avatar/4566283db4866972b067011f5fdedfef?s=100&amp;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D100&amp;r=G' class='avatar avatar-100 photo' height='100' width='100' /></div>
<h3><a href='http://www.htmlremix.com/author/admin' title='Remiz'>Remiz</a></h3>
<p>Remixed version of unstable human emotions and thirst of mankind actions. UX designer, UI developer and HE of WebCastle Media Pvt LTD</p>
<p class='wpa-nomargin'><a href='http://www.htmlremix.com/author/admin' title='More posts by Remiz'>More Posts</a>  - <a href='http://www.twitter.com/remiz'>Twitter</a> - <a href='http://www.facebook.com/pages/Remix/186137951454717'>Facebook</a></p></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/htmlremix?a=sSEcSIPhrSg:65sbbrZ3yuA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/htmlremix?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/htmlremix?a=sSEcSIPhrSg:65sbbrZ3yuA:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/htmlremix?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/htmlremix?a=sSEcSIPhrSg:65sbbrZ3yuA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/htmlremix?i=sSEcSIPhrSg:65sbbrZ3yuA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/htmlremix?a=sSEcSIPhrSg:65sbbrZ3yuA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/htmlremix?i=sSEcSIPhrSg:65sbbrZ3yuA:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/htmlremix/~4/sSEcSIPhrSg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.htmlremix.com/iphone/track-iphone-2g-3g-4g-remotely-and-recover-stolen-lost-iphone/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.htmlremix.com/iphone/track-iphone-2g-3g-4g-remotely-and-recover-stolen-lost-iphone</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic page generated in 0.327 seconds. --><!-- Cached page generated by WP-Super-Cache on 2013-05-14 14:25:37 -->
