<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>I Am Sumeet</title>
	<atom:link href="http://iamsumeet.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://iamsumeet.com</link>
	<description>Personal Weblog Of Sumeet</description>
	<lastBuildDate>Mon, 06 Dec 2010 05:35:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Get more traffic from digg &amp; stumble by gaining more votes using personalized greeting message</title>
		<link>http://iamsumeet.com/get-more-traffic-from-digg-stumble-by-gaining-more-votes-using-personalized-greeting-message/</link>
		<comments>http://iamsumeet.com/get-more-traffic-from-digg-stumble-by-gaining-more-votes-using-personalized-greeting-message/#comments</comments>
		<pubDate>Fri, 19 Dec 2008 08:39:03 +0000</pubDate>
		<dc:creator>Sumeet</dc:creator>
				<category><![CDATA[My Scripts]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://iamsumeet.com/?p=77</guid>
		<description><![CDATA[Social Bookmarking Website like Digg and stumbleupon are one of the best source of traffic for your website.In fact about 70% of one of my website&#8217;s traffic comes from stumble.
The problem with the traffic from social networking websites is,that its not very consistent.You need to have more votes to get more traffic. In case of [...]]]></description>
			<content:encoded><![CDATA[<p>Social Bookmarking Website like Digg and stumbleupon are one of the best source of traffic for your website.In fact about 70% of one of my website&#8217;s traffic comes from stumble.</p>
<p>The problem with the traffic from social networking websites is,that its not very consistent.You need to have more votes to get more traffic. In case of Digg.com you need to have more digs where as for Stumbleupon you need more &#8220;thumbs up or reviews&#8221; to get a consistent traffic.</p>
<p>Let&#8217;s see how SU works.You give your thumb&#8217;s up to a page. Initially SU refers low traffic to that page (as per my knowledge ,initially they refer old and top stumblers to that page). If they give a thumbs up to that page then you get more traffic from SU until the ratio of THUMBS-UP per REFERS remains high.</p>
<p>So I coded a very simple javascript to greet users coming from the social networking websites and asking them to give a thumbs-up OR digg to that page.I tested this script for about one month and its worked very nicely,especially in case of Stumbleupon votes.</p>
<p>Its a very simple javascript which check the page refer using ( document.referrer) and an if-else ladder to find the case.Then a popup dialog box (using alert function) is used to display the message.</p>
<p>CODE : (just for reference : DONT USE THIS CODE ,DOWNLOAD IT FROM THE LINK BELOW)</p>
<blockquote><address><em><span style="color: #000000;"><span style="color: #800000;">&lt;SCRIPT LANGUAGE=JAVASCRIPT TYPE=&#8221;TEXT/JAVASCRIPT&#8221;&gt; </span></span></em></address>
<address><em><span style="color: #000000;"><span style="color: #339966;">if </span><span style="color: #0000ff;">((document.referrer.indexOf( &#8216;digg&#8217; ) &gt; 1))</span></span></em></address>
<address><em><span style="color: #000000;"><span style="color: #0000ff;"> {</span></span></em></address>
<address><em><span style="color: #000000;"><span style="color: #0000ff;"> alert(&#8220;welcome Digg user.If you liked the content then please digg this page&#8221;);</span></span></em></address>
<address><em><span style="color: #000000;"><span style="color: #0000ff;"> }</span></span></em></address>
<address><em><span style="color: #000000;"><span style="color: #339966;">else if </span></span></em></address>
<address><em><span style="color: #000000;"> <span style="color: #0000ff;">((document.referrer.indexOf( &#8216;</span></span><span><span><span style="color: #000000;"><span style="color: #0000ff;">stumbleupon</span></span></span></span><span style="color: #000000;"><span style="color: #0000ff;">&#8216; ) &gt; 1))</span></span></em></address>
<address><em><span style="color: #000000;"><span style="color: #0000ff;"> {</span></span></em></address>
<address><em><span style="color: #000000;"><span style="color: #0000ff;"> alert(&#8220;welcome SU user.</span></span><span><span><span style="color: #000000;"><span style="color: #0000ff;">If you liked the content then please give a thumbs up to this page</span></span></span></span><span style="color: #000000;"><span style="color: #0000ff;">&#8220;);</span></span></em></address>
<address><em><span style="color: #000000;"><span style="color: #0000ff;"> }</span></span></em></address>
<address><em><span style="color: #000000;"><span style="color: #800000;">&lt;/SCRIPT&gt;</span></span></em></address>
</blockquote>
<p><strong><a href="http://iamsumeet.com/wp-content/uploads/greet_users_script.txt" target="_blank">Download</a></strong></p>
<p>Similarly you can add others if you want.You can also add google/yahoo/msn to greet users from search engines,but it makes no sense to greet users from search engine.</p>
<p>I am planing to code a wordpress plugin with this script after my exams get over. Although you can use this script directly on your wordpress blog. Just place this script in the &lt;head&gt; tag of the template. If you are using Joomla then you can use this script or you can also use a extension known as <a title="mfReferral" href="http://extensions.joomla.org/component/option,com_mtree/task,viewlink/link_id,4359/Itemid,35/" target="_blank">mfReferral</a></p>
<p>If you want to check this script, then you can use <a title="RefControl" href="http://www.stardrifter.org/refcontrol/" target="_blank">RefControl</a> .</p>
<p>Current issues with this script:</p>
<ul>
<li>Doesn&#8217;t work on IE6.I guess IE6 Doesn&#8217;t pass refer data to JavaScript.You will have to use php.</li>
<li>This script cannot sidtinguish between subdomain and domains.So something.blogspot.com and blogspot.com are the same for this script.</li>
</ul>
<p>Please comment if you find this script useful <img src='http://iamsumeet.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  .</p>
]]></content:encoded>
			<wfw:commentRss>http://iamsumeet.com/get-more-traffic-from-digg-stumble-by-gaining-more-votes-using-personalized-greeting-message/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Few images from Mumbai terror attacks</title>
		<link>http://iamsumeet.com/few-images-from-mumbai-terror-attacks/</link>
		<comments>http://iamsumeet.com/few-images-from-mumbai-terror-attacks/#comments</comments>
		<pubDate>Thu, 27 Nov 2008 17:15:06 +0000</pubDate>
		<dc:creator>Sumeet</dc:creator>
				<category><![CDATA[Personal Posts]]></category>

		<guid isPermaLink="false">http://iamsumeet.com/?p=61</guid>
		<description><![CDATA[Mumbai is under terrorist attack.There were ten simultaneous attacks occurred across Mumbai 26 November 2008.Till now least 125 people are dead, including at least six foreign nationals,and about 327 injured.
I collected from various sources(TV Twitter etc internet).I don&#8217;t claim the copyright of any these images.
]]></description>
			<content:encoded><![CDATA[<p>Mumbai is under terrorist attack.There were ten simultaneous attacks occurred across Mumbai 26 November 2008.Till now least 125 people are dead, including at least six foreign nationals,and about 327 injured.</p>
<div id="attachment_62" class="wp-caption alignnone" style="width: 310px"><a href="http://iamsumeet.com/wp-content/uploads/2008/11/1.jpg"><img class="size-medium wp-image-62" title="Mumbai Attack images source telegraph.co.uk" src="http://iamsumeet.com/wp-content/uploads/2008/11/1-300x187.jpg" alt="Mumbai Attack 26th nov" width="300" height="187" /></a><p class="wp-caption-text">Mumbai Attack 26th nov (source telegraph.co.uk)</p></div>
<div id="attachment_63" class="wp-caption alignnone" style="width: 310px"><a href="http://iamsumeet.com/wp-content/uploads/2008/11/2.jpg"><img class="size-medium wp-image-63" title="Mumbai Attack images source telegraph.co.uk" src="http://iamsumeet.com/wp-content/uploads/2008/11/2-300x187.jpg" alt="Mumbai Attack 26th nov" width="300" height="187" /></a><p class="wp-caption-text">Mumbai Attack 26th nov (source telegraph.co.uk)</p></div>
<div id="attachment_64" class="wp-caption alignnone" style="width: 310px"><a href="http://iamsumeet.com/wp-content/uploads/2008/11/3.jpg"><img class="size-medium wp-image-64" title="Mumbai Attack images source India TV" src="http://iamsumeet.com/wp-content/uploads/2008/11/3-300x193.jpg" alt="Mumbai Attack 26th nov" width="300" height="193" /></a><p class="wp-caption-text">Mumbai Attack 26th nov (source IndiaTV)</p></div>
<div id="attachment_65" class="wp-caption alignnone" style="width: 310px"><a href="http://iamsumeet.com/wp-content/uploads/2008/11/4.jpg"><img class="size-medium wp-image-65" title="Mumbai Attack images source NDTV" src="http://iamsumeet.com/wp-content/uploads/2008/11/4-300x193.jpg" alt="Mumbai Attack 26th nov images" width="300" height="193" /></a><p class="wp-caption-text">Mumbai Attack 26th nov (source NDTV)</p></div>
<div id="attachment_66" class="wp-caption alignnone" style="width: 310px"><a href="http://iamsumeet.com/wp-content/uploads/2008/11/5.jpg"><img class="size-medium wp-image-66" title="Taj On Fire" src="http://iamsumeet.com/wp-content/uploads/2008/11/5-300x193.jpg" alt="" width="300" height="193" /></a><p class="wp-caption-text">Taj On Fire ( Source Unknown)</p></div>
<div id="attachment_67" class="wp-caption alignnone" style="width: 310px"><a href="http://iamsumeet.com/wp-content/uploads/2008/11/6.jpg"><img class="size-medium wp-image-67" title="Mumbai Attack images source telegraph.co.uk" src="http://iamsumeet.com/wp-content/uploads/2008/11/6-300x193.jpg" alt="Mumbai Attack 26th nov" width="300" height="193" /></a><p class="wp-caption-text">Indian Commandos (source telegraph.co.uk)</p></div>
<div id="attachment_68" class="wp-caption alignnone" style="width: 310px"><a href="http://iamsumeet.com/wp-content/uploads/2008/11/7.jpg"><img class="size-medium wp-image-68" title="Mumbai Attack images source TV" src="http://iamsumeet.com/wp-content/uploads/2008/11/7-300x193.jpg" alt="Mumbai Attack 26th nov" width="300" height="193" /></a><p class="wp-caption-text">He lost his brother in Mumbai terrorist Attack on 26th nov (Source TV)</p></div>
<div id="attachment_69" class="wp-caption alignnone" style="width: 310px"><a href="http://iamsumeet.com/wp-content/uploads/2008/11/8.jpg"><img class="size-medium wp-image-69" title="Mumbai Attack images " src="http://iamsumeet.com/wp-content/uploads/2008/11/8-300x199.jpg" alt="source Vinukumar Ranganathan blog" width="300" height="199" /></a><p class="wp-caption-text">Pis of the 26th nov (source Vinukumar Ranganathan blog)</p></div>
<div id="attachment_70" class="wp-caption alignnone" style="width: 310px"><a href="http://iamsumeet.com/wp-content/uploads/2008/11/9.jpg"><img class="size-medium wp-image-70" title="Mumbai Attack images" src="http://iamsumeet.com/wp-content/uploads/2008/11/9-300x171.jpg" alt="Mumbai Attack images source unknown " width="300" height="171" /></a><p class="wp-caption-text">Shocking Images from Mumbai CST Station (source unknown)</p></div>
<p>I collected from various sources(TV Twitter etc internet).I don&#8217;t claim the copyright of any these images.</p>
]]></content:encoded>
			<wfw:commentRss>http://iamsumeet.com/few-images-from-mumbai-terror-attacks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Block The Visitors Who Are Using Ad-Blockers</title>
		<link>http://iamsumeet.com/block-the-visitors-who-are-using-ad-blockers/</link>
		<comments>http://iamsumeet.com/block-the-visitors-who-are-using-ad-blockers/#comments</comments>
		<pubDate>Wed, 22 Oct 2008 08:40:38 +0000</pubDate>
		<dc:creator>Sumeet</dc:creator>
				<category><![CDATA[My Scripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[adblocker]]></category>
		<category><![CDATA[forefox]]></category>

		<guid isPermaLink="false">http://iamsumeet.com/?p=67</guid>
		<description><![CDATA[While checking your website&#8217;s stats you may have thought  that, although my site has a good traffic but my ad revenue very low, why so??  Then you might have tried all the different positioning, color and format of ads to make them more attractive.
Actually the main problem is ,even you make changes to [...]]]></description>
			<content:encoded><![CDATA[<p>While checking your website&#8217;s stats you may have thought  that, although my site has a good traffic but my ad revenue very low, why so??  Then you might have tried all the different positioning, color and format of ads to make them more attractive.</p>
<p>Actually the main problem is ,even you make changes to your  ad formats to make it more visible and attractive, majority of the visitors do not want to see them. Most of the regular Internet users uses ad-blockers.  Especially in case of FireFox, people use an add-on named – Ad-block plus [Even I  am using it :p ].</p>
<p>Ad Blocker gets both positive and negative reactions.Majority of people  love it, as it blocks all those unwanted ads .On the other hand the webmasters  hate this add-on as it disables the source of income for ad supported websites.</p>
<p>Let’s see what we can do to block/redirect these vis&#8230;.<span id="more-42"></span>itors.<br />
While searching for blocking scripts I came across two nice solutions</p>
<ul>
<li><a href="http://www.thepcspy.com/read/how_to_block_adblock">How To Block Adblock</a></li>
<li><a href="http://www.adblock.org/2004/07/adblock_detection_script/">Adblock Detection Script</a></li>
</ul>
<p>Both of them work very nicely but they are a bit complicated and only work with Adblock Plus on firefox.</p>
<p>Hence I  worked out a very simple JavaScript which redirect these kinds of visitors to some other webpage. This script uses code form <a href="http://www.adblock.org/2004/07/adblock_detection_script/">Adblock Detection Script</a> .</p>
<p>This script checks whether adsense ads were displayed on that page or not. If not, then it redirects the visitor to another page.You can create a warning page for such visitors but what I will recommend you to create a special &#8220;lite&#8221; version of your website for such visitors and ask them to disable their adblocker to browse the whole website.Please keep in mind blocking visitors means you may see a declination in your traffic but you may earn more revenue as you will make them disable their adblocker.</p>
<p>Here is the code of the script</p>
<blockquote>
<pre class="style9"><span style="color: #0000ff;"><strong>&lt;script type="text/javascript"&gt;</strong></span></pre>
<pre class="style9"><strong><span style="color: #000000;">setTimeout('check_ads()', 100);
      function check_ads()
      {
      var rnd = </span><span style="color: #000000;">Math.random();
      if (rnd &lt; 1)
      { </span><span style="color: #000000;"><span class="style10">// only execute the following if rnd &lt; .2</span>
      var blocked = false;
      var e = document.getElementsByTagName("iframe");
      for (var i = 0; i &lt; e.length; i++)
      if ((e[i].src.</span><span style="color: #000000;">indexOf("</span><span style="color: #000000;">googlesyndication.com") &gt; -1) &amp;&amp;
      (e[i].setAttribute </span><span style="color: #000000;">&amp;&amp; (e[i].style.visibility == "hidden" ||
      e[i].style.display == "</span><span style="color: #000000;">none"))) blocked = </span><span style="color: #000000;">true;
      if ((e.length == 0) || blocked)
      { </span>
      location = "<span style="color: #ff6600;">http://www.YOURWEBSITE.COM/warningpage.html</span>"; <span class="style10">
<span style="color: #999999;">//enter the url of the page which contain the message for the
//blocked visitors.Alternatively you can create a lite website
//for them and ask them to disable their blocker who browse the
//full website.</span></span>
      window.location(location);
    }}}</strong></pre>
<pre class="style2"><span style="color: #0000ff;"><strong>&lt;/script&gt;

If you are unable to see the whole code :
 <a href="http://iamsumeet.com/wp-content/uploads/code.txt">Download the text file from here</a></strong></span></pre>
</blockquote>
<p>To use this script simple copy paste the code blow, just above your<span style="color: #0000ff;"> &lt;/body&gt;</span> tag OR your Adsense ad code.</p>
<p>A working demo is available here</p>
<blockquote>
<p style="text-align: center;"><span style="color: #0000ff;"><strong><a href="http://iamsumeet.com/wp-content/uploads/testpage.html" target="_blank">DEMO Page</a></strong></span></p>
<p style="text-align: center;">
<p style="text-align: center;"><strong><span style="color: #ff0000;">(Please disable your adblocker before continuing else you will directly land on the warning page).</span></strong></p>
</blockquote>
<p>The issues with this script are:</p>
<ul>
<li>If the visitor use their browsers back button from the warning page then the script fails.</li>
<li>Only works with Adsense because it only checks the access of googlesyndication.com from the webpage. Although you can replace it for other advertisers</li>
<li>I have no idea whether Adsense allows these kinds of scripts or not.</li>
</ul>
<p>Please do comment on this script. <img src='http://iamsumeet.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://iamsumeet.com/block-the-visitors-who-are-using-ad-blockers/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Funniest Email Forward I Ever read!</title>
		<link>http://iamsumeet.com/funniest-email-forward-i-ever-read/</link>
		<comments>http://iamsumeet.com/funniest-email-forward-i-ever-read/#comments</comments>
		<pubDate>Tue, 09 Sep 2008 14:45:06 +0000</pubDate>
		<dc:creator>Sumeet</dc:creator>
				<category><![CDATA[Humor]]></category>

		<guid isPermaLink="false">http://iamsumeet.com/?p=54</guid>
		<description><![CDATA[This one is the Funniest Email Forward I Ever read! .This email made me ROFL for hours.It was forwarded by Sathya
Here it goes
MINDBLOWING:  VIJAYAKANTH&#8217;S Dialogues in English
(Vijaykanth is a popular Tamil film actor from India)
1) U can study and get any certificates. But  ucannot get ur death certificate

2) U may have AIRTEL or [...]]]></description>
			<content:encoded><![CDATA[<p>This one is the Funniest Email Forward I Ever read! .This email made me ROFL for hours.It was forwarded by <a href="http://sathyabh.at" target="_blank">Sathya</a></p>
<p>Here it goes</p>
<blockquote><p><strong><span style="font-size: 14pt; color: navy;">MINDBLOWING:  VIJAYAKANTH&#8217;S Dialogues in English</span></strong><br />
<em>(Vijaykanth is a popular <span class="mw-redirect">Tamil film</span> actor from India)</em></p>
<p><span style="font-size: 13.5pt; color: #0000a1;">1) U can study and get any certificates. But  u</span><span><span style="font-size: 13.5pt; color: #0000a1;">cannot get ur death certificate</span></span><br />
<img class="alignnone" src="http://i34.tinypic.com/2npt3.jpg" alt="" width="220" height="320" /></p>
<p><span style="font-size: 13.5pt; color: #0000a1;">2) U may have AIRTEL or BSNL  connection but when u</span><span><span style="color: #0000a1;"> </span></span><span style="font-size: 13.5pt; color: #0000a1;">sneeze u ll say HUTCH</span><span> </span></p>
<p><img class="alignnone" src="http://i34.tinypic.com/2npt3.jpg" alt="" width="194" height="282" /></p>
<p><span style="font-size: 13.5pt; color: #0000a1;">3 ) U can bcome an engineer</span><span id="more-31"></span><span style="font-size: 13.5pt; color: #0000a1;"> if u study in</span><span> </span><span style="font-size: 13.5pt; color: #0000a1;"> engineering college. U cannot bcom a president if u studies in Presidency College</span></p>
<p><img class="alignnone" src="http://i34.tinypic.com/2npt3.jpg" alt="" width="172" height="250" /></p>
<p><span style="font-size: 13.5pt; color: #0000a1;">4 ) U can expect a BUS from a  BUS stop .. u</span><span> </span><span style="font-size: 13.5pt; color: #0000a1;">cannot expect a FULL from FULL stop</span></p>
<p><img class="alignnone" src="http://i34.tinypic.com/2npt3.jpg" alt="" width="175" height="255" /></p>
<p><span style="font-size: 13.5pt; color: #0000a1;">5) A mechanical engineer can  bcom a mechanic but a</span><span> </span><span style="font-size: 13.5pt; color: #0000a1;">software engineer cannot bcom a software</span><span style="font-size: 10pt;"><br />
</span></p>
<p><img class="alignnone" src="http://i34.tinypic.com/2npt3.jpg" alt="" width="190" height="276" /></p>
<p><span style="font-size: 13.5pt; color: #0000a1;">6 ) U can find tea in teacup.  But cannot find world</span><span> </span><span style="font-size: 13.5pt; color: #0000a1;">in world cup</span><span> </span><span style="font-size: 10pt;"><br />
</span></p>
<p><img class="alignnone" src="http://i34.tinypic.com/2npt3.jpg" alt="" width="227" height="329" /></p>
<p><span style="font-size: 13.5pt; color: #0000a1;">7) U can find keys in Keyboard but u  cannot find mother in motherboard.</span><span> </span><span style="font-size: 10pt;"><br />
</span></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://iamsumeet.com/funniest-email-forward-i-ever-read/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Prevent your Paypal account from getting limited</title>
		<link>http://iamsumeet.com/prevent-your-paypal-account-from-getting-limited/</link>
		<comments>http://iamsumeet.com/prevent-your-paypal-account-from-getting-limited/#comments</comments>
		<pubDate>Sun, 03 Aug 2008 08:45:06 +0000</pubDate>
		<dc:creator>Sumeet</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Paypal]]></category>
		<category><![CDATA[paypal accounts]]></category>
		<category><![CDATA[paypal limited account]]></category>

		<guid isPermaLink="false">http://iamsumeet.com/?p=48</guid>
		<description><![CDATA[ 
Almost every day hundreds of threads are created on webmaster&#8217;s forums about limited PayPal account. I am using the PayPal account from last two years and my account got limited once. I contacted their support several times about this issue and came to know about various reasons why an account gets limited.
Although once your [...]]]></description>
			<content:encoded><![CDATA[<p><!--[if gte mso 9]><xml> Normal   0               false   false   false      EN-US   X-NONE   X-NONE                                                     MicrosoftInternetExplorer4 </xml><![endif]--><!--[if gte mso 9]><xml> </xml><![endif]--> <!--[if gte mso 10]></p>
<style>
 /* Style Definitions */
 table.MsoNormalTable
	{mso-style-name:"Table Normal";
	mso-tstyle-rowband-size:0;
	mso-tstyle-colband-size:0;
	mso-style-noshow:yes;
	mso-style-priority:99;
	mso-style-qformat:yes;
	mso-style-parent:"";
	mso-padding-alt:0in 5.4pt 0in 5.4pt;
	mso-para-margin-top:0in;
	mso-para-margin-right:0in;
	mso-para-margin-bottom:10.0pt;
	mso-para-margin-left:0in;
	line-height:115%;
	mso-pagination:widow-orphan;
	font-size:11.0pt;
	font-family:"Calibri","sans-serif";
	mso-ascii-font-family:Calibri;
	mso-ascii-theme-font:minor-latin;
	mso-fareast-font-family:"Times New Roman";
	mso-fareast-theme-font:minor-fareast;
	mso-hansi-font-family:Calibri;
	mso-hansi-theme-font:minor-latin;}
</style>
<p><![endif]--></p>
<p>Almost every day hundreds of threads are created on webmaster&#8217;s forums about limited PayPal account. I am using the PayPal account from last two years and my account got limited once. I contacted their support several times about this issue and came to know about various reasons why an account gets limited.</p>
<p>Although once your account gets limited there&#8217;s no way to restore it without sending them the required documents. So it&#8217;s always better to take care about your account so that it doesn&#8217;t get limited. Here are a few major reasons why so many PayPal account gets limited.</p>
<p><strong>New account and unverified accounts: </strong>New accounts, especially unverified accounts often get limited just after their 1<sup>st</sup> transaction. PayPal monitor these accounts very closely so it&#8217;s always better to use correct account details while registering so that you can provide the required documents in case your account gets limited. Verifying your account is always a good idea. All you need is a valid credit card. Virtual Credit Cards (VCCs) works quite nicely for verification but using VCCs for PayPal verification process is illegal and you may lose your account if they come to know about this.</p>
<p><strong>Account verification</strong> : If your account is unverified then <span id="more-26"></span>it have the highest chances for getting limited, cause unverified accounts  are often used by scammers for money laundering. Verifying accounts is quite easy and it gives all the information about your real address, bank account and other financial details to paypal so if you don&#8217;t verify your account then PayPal may assume that you are doing something phishy. Who knows maybe the biggest scam of this century <img src='http://iamsumeet.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p><strong>Using proxy or using multiple IPs</strong>: Accessing a premium/personal accounts from various IP address or account you account from proxy will surely get our account limited. Premium and personal PayPal accounts are for single users. For multiple users opt for Paypal Business account.</p>
<p><strong>Accessing PayPal from your mobile :</strong> Don&#8217;t use your mobile browser to access <a href="https://paypal.com">https://paypal.com </a>directly. Instead use <a href="https://mobile.paypal.com/">https://mobile.paypal.com</a>.But before that, you will have to activate your <strong>PayPal mobile Account</strong> .Visit <a href="https://www.paypal.com/?cmd=xpt/cps/mobile/MobileOverview-outside">PayPal mobile</a> for more details. Even using the browsers like Opera mini OR Teashark is risky cause both of them uses proxy server for browsing.</p>
<p><strong>Amounts withdrawal</strong>: Limit your 1<sup>st</sup> amount withdrawal to a small amount especially if you have an unverified account. Withdrawing a very heavy amount from your brand new account seems like some kind of scam to PayPal so limit your first PayPal withdrawal to something like 100$ and increase the amount slowly.</p>
<p><strong>Account Details</strong>: Don&#8217;t change your account details frequently. This will raise a flag on your account. Keep all the details current and make sure that you have all the required documents to prove all those account details. A photo I-card with your address or a utility bill with your name and address is sufficient.</p>
<p><strong>Number of disputes : </strong>If you have any dispute on your PayPal account then try to solve then ASAP and try to keep the number of disputes below two at a same time. Too many complains or a dispute regarding your account is not good for you.</p>
<p><strong>Dealing with large amounts</strong> : If you are dealing with very huge amounts say about 1000USD then its always recommended to split up the receiving and withdrawal process to small amounts.If possible then always try to split up the payments below 500USD.Also do not try to withdraw the whole amount immediately after receiving.</p>
<p>Even after all these precautions your account gets limited then don&#8217;t waste your time but sending them &#8220;you suck&#8221; emails OR creating &#8220;PAYPAL IS A FRAUD&#8221; threads on forums. Just mail them the required documents and your account will get unbanned within 48 hours.</p>
]]></content:encoded>
			<wfw:commentRss>http://iamsumeet.com/prevent-your-paypal-account-from-getting-limited/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Manage multiple email accounts from single Gmail account</title>
		<link>http://iamsumeet.com/manage-multiple-email-accounts-from-single-gmail-account/</link>
		<comments>http://iamsumeet.com/manage-multiple-email-accounts-from-single-gmail-account/#comments</comments>
		<pubDate>Wed, 16 Jul 2008 15:07:02 +0000</pubDate>
		<dc:creator>Sumeet</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://iamsumeet.com/?p=47</guid>
		<description><![CDATA[Maintain and Manage multiple email accounts from one Gmail account 
Probably you have 100s of email IDs, One for your official works, one for personal usage, one for spam protection, one for registering on various sites, one for your website and so on. Although having multiple emails gives the convenience to do your work systematically [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center"><strong>Maintain and Manage multiple email accounts from one Gmail account </strong></p>
<p>Probably you have 100s of email IDs, One for your official works, one for personal usage, one for spam protection, one for registering on various sites, one for your website and so on. Although having multiple emails gives the convenience to do your work systematically and saves your from unwanted emails/SPAM but it&#8217;s a real big mess when you have to login each of them regularly just to check mails. Life is already complicated, why make it worse.  Here&#8217;s a method to maintain multiple email accounts from a single Gmail account. You will be able to receive and send mail from that single Gmail account using all of your IDs.  First of all you will require a Gmail account .If you don&#8217;t have one then create one by visiting gmail.com. It&#8217;s free and you don&#8217;t require any invitation. The signup procedure is easy and fast.  In this example we are considering 3 email Ids</p>
<ul>
<li>1 in Gmail</li>
<li>1 in yahoo pro mail (free accounts doesn&#8217;t have forwarding feature)</li>
<li>1 pop3 account ( your website etc)</li>
</ul>
<p>After going through this guide you will be able to manage all your email accounts form one single Gmail account .You will be able to receive all your mails on different IDs to this single Gmail account and will also be able to send emails from different ids using this same Gmail account. For example  you will be able to receive all the mails in</p>
<ul>
<li> iamsumeet2@gmail.com (Gmail account ),</li>
<li> iamsumeet1@yahoo.com (yahoo pro account ) and</li>
<li> iamsumeet@iamsumeet.com (POP3 Account )</li>
</ul>
<p>on a single Gmail account ( in this case it will be iamsumeet1@gmail.com ).And you will also be able to send emails as iamsumeet2@gmail.com OR iamsumeet1@yahoo.com OR iamsumeet@iamsumeet.com from the single account iamsumeet1@gmail.com .  For sake of simplicity we are going to call</p>
<ul>
<li>iamsumeet1@gmail.com as the <strong>master account </strong></li>
<li> iamsumeet2@gmail.com and <strong>child1 account </strong></li>
<li> iamsumeet1@yahoo.com as <strong>child2 account </strong></li>
<li> iamsumeet@iamsumeet.com as <strong>child3 account</strong></li>
</ul>
<p>Now let&#8217;s start  <span style="color: red;"><strong></strong></span></p>
<p><span style="color: red;"><strong>STEP: 1 ADDING A POP3 ACCOUNT TO YOUR &#8230;G</strong></span><span id="more-25"></span><span style="color: red;"><strong>MAIL ACCOUNT </strong></span></p>
<p style="margin-left: 36pt"><span style="color: red;"><strong>STEP1(a)To retrieve mails from your POP 3 server </strong></span></p>
<ul>
<li>First of all login your <strong>master Gmail account</strong> (the mail ID from which you are going to maintain all the other email accounts) and click settings</li>
</ul>
<p style="text-align: center"><img src="http://i221.photobucket.com/albums/dd129/sumeetindia/multiple_emails/image001.jpg" alt="Gmail Settings link" /></p>
<p style="text-align: center">
<ul>
<li>Now click on the <strong>&#8220;Accounts&#8221;</strong> tab and select <strong>&#8220;GET MAIL FROM OTHER ACCOUNTS&#8221;</strong> (Highlighted by green color on the image given below)</li>
</ul>
<p style="text-align: center"><img src="http://i221.photobucket.com/albums/dd129/sumeetindia/multiple_emails/image002.jpg" alt="Gmail settings adding new account" width="588" height="288" /></p>
<p style="text-align: center">
<ul>
<li>Gmail provides a feature by which you can retrieve emails, from any email services who provides a POP 3 server .In our case we are going to use this feature to retrieve mails from our website&#8217;s ID  iamsumeet@iamsumeet.com <strong>(CHILD3 ACCOUNT ) </strong></li>
</ul>
<ul>
<li>To do so &#8220;<strong>Click add another mail account&#8221; </strong>On the next screen type your email ID ( in our case its iamsumeet@iamsumeet.com ) and click <strong>&#8220;NEXT STEP&#8221; </strong></li>
</ul>
<p style="text-align: center"><img src="http://i221.photobucket.com/albums/dd129/sumeetindia/multiple_emails/image003.jpg" alt="Adding new POP3 accounts to gmail Step1" /></p>
<ul>
<li>Fill all the details about your POP3 Server (contact your mail host OR web host for these details) and check the &#8220;Label incoming messages&#8221; option then click <strong>&#8220;Add Account&#8221;</strong> You should get the following message.</li>
</ul>
<p style="text-align: center"><img src="http://i221.photobucket.com/albums/dd129/sumeetindia/multiple_emails/image004.jpg" alt="Adding new POP3 accounts to gmail Step2" /></p>
<p>This message means that now you will be able to read all the mails on your <strong>CHILD3 ACCOUNT, </strong>on this <strong>&#8220;MASTER ACCOUNT&#8221; </strong></p>
<p style="margin-left: 36pt"><span style="color: red;"><strong>STEP 1(b) To Send emails as your POP3 ID from Gmail account </strong></span></p>
<p style="margin-left: 36pt">
<ul>
<li>Now it will be great if you can also send email from your <strong>&#8220;CHILD3 ID&#8221;</strong> using this <strong>&#8216;MASTER ACCOUNT&#8217;</strong>. To do so, on this screen select <strong>&#8220;Yes, I want to be able to send mail as iamsumeet@iamsumeet.com.&#8221; </strong>and click <strong>&#8216;NEXT STEP&#8217; </strong></li>
</ul>
<ul>
<li>Fill up the details and click next</li>
</ul>
<p style="text-align: center"><img src="http://i221.photobucket.com/albums/dd129/sumeetindia/multiple_emails/image005.jpg" alt="Adding new POP3 accounts to send emails" /><strong> </strong></p>
<p style="text-align: center">
<ul>
<li>On the next step click<strong> &#8220;Send Verification&#8221; </strong></li>
</ul>
<p style="text-align: center"><img src="http://i221.photobucket.com/albums/dd129/sumeetindia/multiple_emails/image006.jpg" alt="Gmail POP3 accounts verification" /><strong> </strong></p>
<p style="text-align: center">
<ul>
<li>On the next step click<strong> &#8220;Close Window&#8221; </strong></li>
</ul>
<ul>
<li>Now return to your inbox and wait for the verification email .I will take about 20 mins for Gmail to retrieve that email from your POP 3 server. If everything goes fine then you will receive the conformation email</li>
</ul>
<p style="text-align: center"><img src="http://i221.photobucket.com/albums/dd129/sumeetindia/multiple_emails/image007.jpg" alt="Gmail POP3 accounts verification email" width="586" height="149" /></p>
<ul>
<li>Open that email and click the verification link on that email. From now onwards you will be able to send your mails form your POP3 server using your <strong>&#8220;MASTER GMAIL ACCOUNT&#8221;</strong></li>
</ul>
<ul>
<li>To verify this click &#8220;Compose mail&#8221; and you will notice a new option labeled &#8220;<strong>FROM</strong>&#8221; using which you can select the senders email</li>
</ul>
<p style="text-align: center"><img src="http://i221.photobucket.com/albums/dd129/sumeetindia/multiple_emails/image008.jpg" alt="Gmails compose mail send as dropdown list" width="643" height="141" /></p>
<p style="text-align: center">
<p style="text-align: center">
<p style="text-align: center">
<p><span style="color: red;"><strong>STEP: 2 ADDING ANOTHER GMAIL ACCOUNT AND YAHOO ACCOUNT TO YOUR MASTER GMAIL ACCOUNT </strong></span></p>
<p style="margin-left: 36pt"><span style="color: red;"><strong>STEP2 (a)To retrieve mails from your gmail(child1) and yahoo(child2) accounts </strong></span></p>
<p style="text-align: center">
<p style="margin-left: 18pt">Now its time to add the remaining &#8220;<strong>child1 account (iamsumeet2@gmail.com)&#8221;</strong> and &#8220;<strong>child2 account (iamsumeet1@yahoo.com</strong>)<strong>&#8220;.</strong>To add your child1 account (Gmail account ) You will have to logout from your &#8220;MASTER ID&#8221; and will have to login to your CHILD1 ID (iamsumeet2@gmail.com) <strong> </strong></p>
<ul>
<li>Click on the setting link</li>
</ul>
<p style="text-align: center"><img src="http://i221.photobucket.com/albums/dd129/sumeetindia/multiple_emails/image009.jpg" alt="" /></p>
<ul>
<li>Now click &#8220;<strong>Forwarding and POP/IMAP</strong>&#8221; tab and on that page check &#8220;Forward a copy of incoming mail to&#8221; and type your MASTER EMAIL ID there, In this case its <a href="mailto:iamsumeet1@gmail.com">iamsumeet1@gmail.com</a></li>
</ul>
<p style="text-align: center">
<p style="text-align: center"><img src="http://i221.photobucket.com/albums/dd129/sumeetindia/multiple_emails/image010.jpg" alt="Gmail POP3 and forwarding tab" width="513" height="136" /></p>
<p style="text-align: center">
<ul>
<li>
<div>Click &#8220;Save changes&#8221; button and logout from this ID.</div>
</li>
<li>Now log in to your Yahoo Pro account. Some regional yahoo IDS like &#8220;<span style="text-decoration: underline;">youremail@yahoo<strong>.CO.IN&#8221;</strong></span> (Yahoo INDIA) provides email forwarding feature for free on all the accounts. After logging in click OPTIONS located on the top-left</li>
</ul>
<p style="text-align: center"><img src="http://i221.photobucket.com/albums/dd129/sumeetindia/multiple_emails/image011.jpg" alt="Yahoo mail Options" /></p>
<p style="text-align: center">
<ul>
<li>On the option page select POP Access and forwarding</li>
</ul>
<p style="text-align: center">
<p style="text-align: center"><img src="http://i221.photobucket.com/albums/dd129/sumeetindia/multiple_emails/image012.jpg" alt="Yahoo mail POP access and forwarding feature" width="465" height="179" /></p>
<p style="text-align: center">
<ul>
<li>On the next page fill out your master email ID on the forwarding box (In this case its <strong>iamsumeet1@gmail.com</strong> )</li>
</ul>
<p style="text-align: center"><img src="http://i221.photobucket.com/albums/dd129/sumeetindia/multiple_emails/image013.jpg" alt="Yahoo forwarding emails" width="535" height="114" /></p>
<p style="text-align: center">
<ul>
<li>Now logout from your yahoo account and login your <strong>MASTER GMAIL</strong> account (iamsumeet1@gmail.com)</li>
</ul>
<ul>
<li>We have forwarded both out child email IDs (iamsumeet2@gmail.com and iamsumeet1@yahoo.com ) to our master ID iamsumeet1@gmail.com.Now you will be able to receive all your email on these two child accounts on your master Gmail account. But we need to create labels in our master account to manage on these forwarded emails easily. To do this ,after login in your master Gmail account (iamsumeet1@gmail.com) click settings</li>
</ul>
<p style="text-align: center"><img src="http://i221.photobucket.com/albums/dd129/sumeetindia/multiple_emails/image001.jpg" alt="" /></p>
<ul>
<li>And select the Filters tab.Now click &#8220;<strong>Create new filter</strong>&#8220;</li>
</ul>
<p style="text-align: center"><img src="http://i221.photobucket.com/albums/dd129/sumeetindia/multiple_emails/image014.jpg" alt="Gmail settings creating filters" width="610" height="89" /></p>
<ul>
<li>On the filter form enter your &#8220;<strong>CHILD1ID</strong>&#8221; (iamsumeet2@gmail.com) on the &#8220;<strong>To:</strong>&#8221; box, then click &#8220;<strong>Next Step</strong>&#8220;</li>
</ul>
<p style="text-align: center"><img src="http://i221.photobucket.com/albums/dd129/sumeetindia/multiple_emails/image015.jpg" alt="Creating gmail filter for labeling" width="553" height="165" /></p>
<ul>
<li>On the next page check mark &#8220;<strong>Apply the label</strong>&#8221; option and from the dropdown select &#8220;new label&#8221; and type your &#8220;<strong>CHILD1</strong>&#8221; email ID on the &#8220;<strong>label name</strong>&#8220;</li>
</ul>
<p style="text-align: center"><img src="http://i221.photobucket.com/albums/dd129/sumeetindia/multiple_emails/image016.jpg" alt="Creating new labels for filters" width="548" height="244" /></p>
<ul>
<li>Click &#8220;<strong>OK</strong>&#8221; and press the &#8220;<strong>Create filter</strong>&#8221; button. Repeat the same step for your &#8220;<strong>CHILD2 ID</strong>&#8221; (iamsumeet1@yahoo.com) and create a label titled iamsumeet1@yahoo.com</li>
</ul>
<ul>
<li>Your &#8220;<strong>FILTER TAB</strong> &#8220;Should be showing a similar following summary</li>
</ul>
<p style="text-align: center"><img src="http://i221.photobucket.com/albums/dd129/sumeetindia/multiple_emails/image017.jpg" alt="Gmail filters summary" width="568" height="115" /></p>
<p style="margin-left: 36pt"><span style="color: red;"><strong>STEP2(b) To send emails as your Gmail (child1) and yahoo (child2) accounts </strong></span></p>
<p style="margin-left: 36pt">
<p>Now we need the feature to send email as &#8220;<strong>CHILD1</strong>&#8221; and &#8220;<strong>CHILD2 ID</strong>&#8221; from our &#8220;<strong>MASTER GMAIL ID</strong>&#8221; .To do so Click the setting link on the top right hand side of your MASTER GMAIL account, go to accounts tab and click &#8220;<strong>Add Another Email Address</strong>&#8221;</p>
<p style="text-align: center"><img src="http://i221.photobucket.com/albums/dd129/sumeetindia/multiple_emails/image018.jpg" alt="" width="565" height="172" /></p>
<p style="text-align: center">
<ul>
<li>
<div>On the next BOX fill our <strong>&#8220;CHILD1 ID&#8221;</strong> (as shown below) and click <strong>NEXT STEP</strong></div>
</li>
</ul>
<p style="text-align: center"><img src="http://i221.photobucket.com/albums/dd129/sumeetindia/multiple_emails/image019.jpg" alt="" /></p>
<ul>
<li>Next is the verification step, So click the &#8220;send verification&#8221; button</li>
</ul>
<p style="text-align: center"><img src="http://i221.photobucket.com/albums/dd129/sumeetindia/multiple_emails/image020.jpg" alt="" /></p>
<ul>
<li>And close the window. Repeat the same steps for your CHID2 ID.</li>
</ul>
<p style="text-align: center">
<ul>
<li>Now logout your <strong>&#8220;MASTER GMAIL ACCOUNT&#8221;</strong> and Log in your &#8220;<strong>CHILD1 ID</strong>&#8221; to check the verification email (BTW you can also find the same email right on your &#8220;<strong>MASTER GMAIL ACCOUNT</strong>&#8221; cause you have already forwarded all the emails. It should be there by now ).Click on the verification link of that email.(I am not posting the screenshot of this step).</li>
</ul>
<ul>
<li>After conforming both the <strong>CHILD</strong> accounts .Login to your <strong>&#8220;MASTER GMAIL ACCOUNT&#8221;</strong> and click the COMPOSE link. Now on the dropdown list you should see all your email IDS from which you can send emails</li>
</ul>
<p style="text-align: center"><img src="http://i221.photobucket.com/albums/dd129/sumeetindia/multiple_emails/image021.jpg" alt="Gmails send as drop down list Multiple Emails" /></p>
<p style="text-align: center">
<ul>
<li>So everything is done. You will now manage all your mails on different IDs from your <strong>&#8220;MASTER GMAIL ACCOUNT&#8221;</strong> (iamsumeet1@gmail.com ) and will also be able to send emails from different ids using this same Gmail account. You can easily categorize and manage your emails on these IDS using the labels</li>
</ul>
<p style="text-align: center"><img src="http://i221.photobucket.com/albums/dd129/sumeetindia/multiple_emails/image022.jpg" alt="Gmail labels for multiple emails" /></p>
<p style="text-align: center">
<p>I know this tutorial was a little messy cause there are too many email IDs involved but there&#8217;s no alternative to this. I tried posting screenshots of all the important steps. If you have any doubt OR you find any error/mistake then pleases OR you have some better suggestions then please comment. Your comments will be helpful.</p>
]]></content:encoded>
			<wfw:commentRss>http://iamsumeet.com/manage-multiple-email-accounts-from-single-gmail-account/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>A guide for cheap domain registration</title>
		<link>http://iamsumeet.com/a-guide-for-cheap-domain-registration/</link>
		<comments>http://iamsumeet.com/a-guide-for-cheap-domain-registration/#comments</comments>
		<pubDate>Fri, 13 Jun 2008 09:31:20 +0000</pubDate>
		<dc:creator>Sumeet</dc:creator>
				<category><![CDATA[Domains]]></category>
		<category><![CDATA[Mumbai]]></category>
		<category><![CDATA[My Reviews]]></category>

		<guid isPermaLink="false">http://iamsumeet.com/?p=23</guid>
		<description><![CDATA[There are thousands of domain registrar&#8217;s and their count is increasing day by day ,hence giving rise to competition on the domain registration price.
So, I will be comparing all the reputed domain registrars and the price they offer in this post .I will try my best to keep this post updated.All the prices are valid [...]]]></description>
			<content:encoded><![CDATA[<p>There are thousands of domain registrar&#8217;s and their count is increasing day by day ,hence giving rise to competition on the domain registration price.</p>
<p>So, I will be comparing all the reputed domain registrars and the price they offer in this post .I will try my best to keep this post updated.All the prices are valid for 1st year only. Refer to the respective websites for the full details.<br />
This price list is as on<span style="text-decoration: underline;"><strong><span style="color: #000000;"> October 5th, 2008</span></strong></span> .If I have missed any reputed and old registrar then please mention it on the comments. If you want to place your own domain registrar company on this page, which is providing the cheaper registration price then the present one then please contact me</p>
<p style="text-align: center;"><strong>Few Recommended Registrars<br />
</strong></p>
<p style="text-align: center;"><span style="color: #ff0000;"><strong><a title="Domain Name Selection" href="http://www.brandtheweb.com/domains/" target="_blank">Domain Name Selection</a></strong></span></p>
<p><span style="color: #ff0000;"><strong>.COM Domains</strong></span></p>
<table border="1" cellspacing="0" cellpadding="0" width="277">
<tbody>
<tr>
<td width="152" valign="top"><strong>netfirms.com</strong></td>
<td width="125" valign="top">$6.99</td>
</tr>
<tr>
<td width="152" valign="top"><strong>estdomains.com</strong></td>
<td width="125" valign="top">$7.19</td>
</tr>
<tr></tr>
<tr>
<td width="152" valign="top"><strong>name.com</strong></td>
<td width="125" valign="top">$7.49    ( Use the code <strong>7UD9ID )<br />
</strong></td>
</tr>
<tr>
<td width="152" valign="top"><strong>moniker.com</strong></td>
<td width="125" valign="top">$8.02</td>
</tr>
<tr>
<td width="152" valign="top"><strong>1and1.com</strong></td>
<td width="125" valign="top">$8.99</td>
</tr>
<tr>
<td width="152" valign="top"><strong>dynadot.com</strong></td>
<td width="125" valign="top">$9.25</td>
</tr>
<tr>
<td width="152" valign="top"><strong>namecheap.com</strong></td>
<td width="125" valign="top">$9.69</td>
</tr>
<tr>
<td width="152" valign="top"><strong>godaddy.com</strong></td>
<td width="125" valign="top">$9.99</td>
</tr>
<tr>
<td width="152" valign="top"><strong>directnic.com</strong></td>
<td width="125" valign="top">$15.00</td>
</tr>
<tr>
<td width="152" valign="top"><strong>networksolutions.com</strong></td>
<td width="125" valign="top">$34.99</td>
</tr>
</tbody>
</table>
<p><span style="color: #ff0000;"><strong>.Net Domain</strong></span></p>
<table border="1" cellspacing="0" cellpadding="0" width="208">
<tbody>
<tr>
<td width="144" valign="top"></td>
<td width="64" valign="top"><strong>Net</strong></td>
</tr>
<tr>
<td width="144" valign="top"><strong>estdomains.com</strong></td>
<td width="64" valign="top">$5.89</td>
</tr>
<tr>
<td width="144" valign="top"><strong>name.com</strong></td>
<td width="64" valign="top">$5.99</td>
</tr>
<tr>
<td width="144" valign="top"><strong>moniker.com</strong></td>
<td width="64" valign="top">$6.64</td>
</tr>
<tr>
<td width="144" valign="top"><strong>1and1.com</strong></td>
<td width="64" valign="top">$6.99</td>
</tr>
<tr>
<td width="144" valign="top"><strong>netfirms.com</strong></td>
<td width="64" valign="top">$6.99</td>
</tr>
<tr>
<td width="144" valign="top"><strong>dynadot.com</strong></td>
<td width="64" valign="top">$9.25</td>
</tr>
<tr>
<td width="144" valign="top"><strong>namecheap.com</strong></td>
<td width="64" valign="top">$9.69</td>
</tr>
<tr>
<td width="144" valign="top"><strong>godaddy.com</strong></td>
<td width="64" valign="top">$9.99</td>
</tr>
<tr>
<td width="144" valign="top"><strong>directnic.com</strong></td>
<td width="64" valign="top">$15.00</td>
</tr>
<tr>
<td width="144" valign="top"><strong>networksolutions.com</strong></td>
<td width="64" valign="top">$34.99</td>
</tr>
</tbody>
</table>
<p><span style="color: #ff0000;"><strong>.ORG Domains</strong></span></p>
<table border="1" cellspacing="0" cellpadding="0" width="208">
<tbody>
<tr>
<td width="144" valign="top"></td>
<td width="64" valign="top"><strong>ORG</strong></td>
</tr>
<tr>
<td width="144" valign="top"><strong>estdomains.com</strong></td>
<td width="64" valign="top">$6.89</td>
</tr>
<tr>
<td width="144" valign="top"><strong>1and1.com</strong></td>
<td width="64" valign="top">$6.99</td>
</tr>
<tr>
<td width="144" valign="top"><strong>netfirms.com</strong></td>
<td width="64" valign="top">$6.99</td>
</tr>
<tr>
<td width="144" valign="top"><strong>dynadot.com</strong></td>
<td width="64" valign="top">$6.99</td>
</tr>
<tr>
<td width="144" valign="top"><strong>name.com</strong></td>
<td width="64" valign="top">$7.99</td>
</tr>
<tr>
<td width="144" valign="top"><strong>moniker.com</strong></td>
<td width="64" valign="top">$8.02</td>
</tr>
<tr>
<td width="144" valign="top"><strong>namecheap.com</strong></td>
<td width="64" valign="top">$9.69</td>
</tr>
<tr>
<td width="144" valign="top"><strong>godaddy.com</strong></td>
<td width="64" valign="top">$9.99</td>
</tr>
<tr>
<td width="144" valign="top"><strong>directnic.com</strong></td>
<td width="64" valign="top">$15.00</td>
</tr>
<tr>
<td width="144" valign="top"><strong>networksolutions.com</strong></td>
<td width="64" valign="top">$34.99</td>
</tr>
</tbody>
</table>
<p><span style="color: #ff0000;"><strong>.INFO Domains</strong></span></p>
<table border="1" cellspacing="0" cellpadding="0" width="208">
<tbody>
<tr>
<td width="144" valign="top"></td>
<td width="64" valign="top"><strong>INFO</strong></td>
</tr>
<tr>
<td width="144" valign="top"><strong>godaddy.com</strong></td>
<td width="64" valign="top">$1.49</td>
</tr>
<tr>
<td width="144" valign="top"><strong>namecheap.com</strong></td>
<td width="64" valign="top">$2.98</td>
</tr>
<tr>
<td width="144" valign="top"><strong>moniker.com</strong></td>
<td width="64" valign="top">$3.50</td>
</tr>
<tr>
<td width="144" valign="top"><strong>netfirms.com</strong></td>
<td width="64" valign="top">$6.25</td>
</tr>
<tr>
<td width="144" valign="top"><strong>estdomains.com</strong></td>
<td width="64" valign="top">$6.89</td>
</tr>
<tr>
<td width="144" valign="top"><strong>dynadot.com</strong></td>
<td width="64" valign="top">$6.99</td>
</tr>
<tr>
<td width="144" valign="top"><strong>name.com</strong></td>
<td width="64" valign="top">$9.95</td>
</tr>
<tr>
<td width="144" valign="top"><strong>1and1.com</strong></td>
<td width="64" valign="top">$9.99</td>
</tr>
<tr>
<td width="144" valign="top"><strong>directnic.com</strong></td>
<td width="64" valign="top">$15.00</td>
</tr>
<tr>
<td width="144" valign="top"><strong>networksolutions.com</strong></td>
<td width="64" valign="top">$34.99</td>
</tr>
</tbody>
</table>
<p><span style="color: #ff0000;"><strong>.BIZ Domains</strong></span></p>
<table border="1" cellspacing="0" cellpadding="0" width="217">
<tbody>
<tr>
<td width="152" valign="top"></td>
<td width="65" valign="top"><strong>BIZ</strong></td>
</tr>
<tr>
<td width="152" valign="top"><strong>moniker.com</strong></td>
<td width="65" valign="top">$6.99</td>
</tr>
<tr>
<td width="152" valign="top"><strong>estdomains.com</strong></td>
<td width="65" valign="top">$7.19</td>
</tr>
<tr>
<td width="152" valign="top"><strong>1and1.com</strong></td>
<td width="65" valign="top">$7.99</td>
</tr>
<tr>
<td width="152" valign="top"><strong>netfirms.com</strong></td>
<td width="65" valign="top">$8.02</td>
</tr>
<tr>
<td width="152" valign="top"><strong>namecheap.com</strong></td>
<td width="65" valign="top">$9.69</td>
</tr>
<tr>
<td width="152" valign="top"><strong>name.com</strong></td>
<td width="65" valign="top">$9.95</td>
</tr>
<tr>
<td width="152" valign="top"><strong>godaddy.com</strong></td>
<td width="65" valign="top">$14.99</td>
</tr>
<tr>
<td width="152" valign="top"><strong>directnic.com</strong></td>
<td width="65" valign="top">$15.00</td>
</tr>
<tr>
<td width="152" valign="top"><strong>networksolutions.com</strong></td>
<td width="65" valign="top">$34.99</td>
</tr>
<tr>
<td width="152" valign="top"><strong>dynadot.com</strong></td>
<td width="65" valign="top">$6.99    (Currently free)</td>
</tr>
</tbody>
</table>
<p><span id="more-23"></span></p>
<p><span style="color: #ff0000;"><strong>.NAME Domains</strong></span></p>
<table border="1" cellspacing="0" cellpadding="0" width="208">
<tbody>
<tr>
<td width="144" valign="top"></td>
<td width="64" valign="top"><strong>NAME</strong></td>
</tr>
<tr>
<td width="144" valign="top"><strong>estdomains.com</strong></td>
<td width="64" valign="top">$5.99</td>
</tr>
<tr>
<td width="144" valign="top"><strong>dynadot.com</strong></td>
<td width="64" valign="top">$6.99</td>
</tr>
<tr>
<td width="144" valign="top"><strong>moniker.com</strong></td>
<td width="64" valign="top">$7.99</td>
</tr>
<tr>
<td width="144" valign="top"><strong>1and1.com</strong></td>
<td width="64" valign="top">$7.99</td>
</tr>
<tr>
<td width="144" valign="top"><strong>directnic.com</strong></td>
<td width="64" valign="top">$15.00</td>
</tr>
<tr>
<td width="144" valign="top"><strong>netfirms.com</strong></td>
<td width="64" valign="top">$27.17</td>
</tr>
<tr>
<td width="144" valign="top"><strong>networksolutions.com</strong></td>
<td width="64" valign="top">$34.99</td>
</tr>
<tr>
<td width="144" valign="top"><strong>namecheap.com</strong></td>
<td width="64" valign="top">N/A</td>
</tr>
<tr>
<td width="144" valign="top"><strong>name.com</strong></td>
<td width="64" valign="top">N/A</td>
</tr>
<tr>
<td width="144" valign="top"><strong>godaddy.com</strong></td>
<td width="64" valign="top">N/A</td>
</tr>
</tbody>
</table>
<p><span style="color: #ff0000;"><strong>.MOBI Domains</strong></span></p>
<table border="1" cellspacing="0" cellpadding="0" width="208">
<tbody>
<tr>
<td width="144" valign="top"></td>
<td width="64" valign="top"><strong>MOBI</strong></td>
</tr>
<tr>
<td width="144" valign="top"><strong>netfirms.com</strong></td>
<td width="64" valign="top">$7.49</td>
</tr>
<tr>
<td width="144" valign="top"><strong>namecheap.com</strong></td>
<td width="64" valign="top">$7.99</td>
</tr>
<tr>
<td width="144" valign="top"><strong>godaddy.com</strong></td>
<td width="64" valign="top">$7.99</td>
</tr>
<tr>
<td width="144" valign="top"><strong>moniker.com</strong></td>
<td width="64" valign="top">$9.99</td>
</tr>
<tr>
<td width="144" valign="top"><strong>1and1.com</strong></td>
<td width="64" valign="top">$9.99</td>
</tr>
<tr>
<td width="144" valign="top"><strong>estdomains.com</strong></td>
<td width="64" valign="top">$12.79</td>
</tr>
<tr>
<td width="144" valign="top"><strong>dynadot.com</strong></td>
<td width="64" valign="top">$19.99</td>
</tr>
<tr>
<td width="144" valign="top"><strong>networksolutions.com</strong></td>
<td width="64" valign="top">$34.99</td>
</tr>
<tr>
<td width="144" valign="top"><strong>directnic.com</strong></td>
<td width="64" valign="top">N/A</td>
</tr>
<tr>
<td width="144" valign="top"><strong>name.com</strong></td>
<td width="64" valign="top">N/A</td>
</tr>
</tbody>
</table>
<p><span style="color: #ff0000;"><strong>.US Domains</strong></span></p>
<table border="1" cellspacing="0" cellpadding="0" width="208">
<tbody>
<tr>
<td width="144" valign="top"></td>
<td width="64" valign="top"><strong>US</strong></td>
</tr>
<tr>
<td width="144" valign="top"><strong>estdomains.com</strong></td>
<td width="64" valign="top">$6.79</td>
</tr>
<tr>
<td width="144" valign="top"><strong>moniker.com</strong></td>
<td width="64" valign="top">$6.99</td>
</tr>
<tr>
<td width="144" valign="top"><strong>dynadot.com</strong></td>
<td width="64" valign="top">$6.99</td>
</tr>
<tr>
<td width="144" valign="top"><strong>netfirms.com</strong></td>
<td width="64" valign="top">$7.29</td>
</tr>
<tr>
<td width="144" valign="top"><strong>1and1.com</strong></td>
<td width="64" valign="top">$7.99</td>
</tr>
<tr>
<td width="144" valign="top"><strong>namecheap.com</strong></td>
<td width="64" valign="top">$8.88</td>
</tr>
<tr>
<td width="144" valign="top"><strong>directnic.com</strong></td>
<td width="64" valign="top">$15.00</td>
</tr>
<tr>
<td width="144" valign="top"><strong>godaddy.com</strong></td>
<td width="64" valign="top">$19.99</td>
</tr>
<tr>
<td width="144" valign="top"><strong>networksolutions.com</strong></td>
<td width="64" valign="top">$34.99</td>
</tr>
<tr>
<td width="144" valign="top"><strong>name.com</strong></td>
<td width="64" valign="top">N/A</td>
</tr>
</tbody>
</table>
<p><span style="color: #ff0000;"><strong>.IN Domains</strong></span></p>
<table border="1" cellspacing="0" cellpadding="0" width="208">
<tbody>
<tr>
<td width="144" valign="top"></td>
<td width="64" valign="top"><strong>IN</strong></td>
</tr>
<tr>
<td width="144" valign="top"><strong>1and1.com</strong></td>
<td width="64" valign="top">$13.99</td>
</tr>
<tr>
<td width="144" valign="top"><strong>netfirms.com</strong></td>
<td width="64" valign="top">$18.46</td>
</tr>
<tr>
<td width="144" valign="top"><strong>namecheap.com</strong></td>
<td width="64" valign="top">$21.00</td>
</tr>
<tr>
<td width="144" valign="top"><strong>networksolutions.com</strong></td>
<td width="64" valign="top">$29.99</td>
</tr>
<tr>
<td width="144" valign="top"><strong>estdomains.com</strong></td>
<td width="64" valign="top">N/A</td>
</tr>
<tr>
<td width="144" valign="top"><strong>moniker.com</strong></td>
<td width="64" valign="top">N/A</td>
</tr>
<tr>
<td width="144" valign="top"><strong>dynadot.com</strong></td>
<td width="64" valign="top">N/A</td>
</tr>
<tr>
<td width="144" valign="top"><strong>directnic.com</strong></td>
<td width="64" valign="top">N/A</td>
</tr>
<tr>
<td width="144" valign="top"><strong>godaddy.com</strong></td>
<td width="64" valign="top">N/A</td>
</tr>
<tr>
<td width="144" valign="top"><strong>name.com</strong></td>
<td width="64" valign="top">N/A</td>
</tr>
</tbody>
</table>
<p><span style="color: #ff0000;"><strong>.WS Domains</strong></span></p>
<table border="1" cellspacing="0" cellpadding="0" width="208">
<tbody>
<tr>
<td width="144" valign="top"></td>
<td width="64" valign="top"><strong>WS</strong></td>
</tr>
<tr>
<td width="144" valign="top"><strong>netfirms.com</strong></td>
<td width="64" valign="top">$7.99</td>
</tr>
<tr>
<td width="144" valign="top"><strong>namecheap.com</strong></td>
<td width="64" valign="top">$8.99</td>
</tr>
<tr>
<td width="144" valign="top"><strong>1and1.com</strong></td>
<td width="64" valign="top">$12.79</td>
</tr>
<tr>
<td width="144" valign="top"><strong>networksolutions.com</strong></td>
<td width="64" valign="top">$12.87</td>
</tr>
<tr>
<td width="144" valign="top"><strong>estdomains.com</strong></td>
<td width="64" valign="top">$14.50</td>
</tr>
<tr>
<td width="144" valign="top"><strong>directnic.com</strong></td>
<td width="64" valign="top">$14.99</td>
</tr>
<tr>
<td width="144" valign="top"><strong>dynadot.com</strong></td>
<td width="64" valign="top">$15.00</td>
</tr>
<tr>
<td width="144" valign="top"><strong>moniker.com</strong></td>
<td width="64" valign="top">$28.80</td>
</tr>
<tr>
<td width="144" valign="top"><strong>godaddy.com</strong></td>
<td width="64" valign="top">$34.99</td>
</tr>
<tr>
<td width="144" valign="top"><strong>name.com</strong></td>
<td width="64" valign="top">N/A</td>
</tr>
</tbody>
</table>
<p><span style="color: #ff0000;"><strong>.CC Domains</strong></span></p>
<table border="1" cellspacing="0" cellpadding="0" width="208">
<tbody>
<tr>
<td width="144" valign="top"><strong>networksolutions.com</strong></td>
<td width="64" valign="top">$18.99</td>
</tr>
<tr>
<td width="144" valign="top"><strong>namecheap.com</strong></td>
<td width="64" valign="top">$19.99</td>
</tr>
<tr>
<td width="144" valign="top"><strong>directnic.com</strong></td>
<td width="64" valign="top"><strong>$19.99</strong></td>
</tr>
<tr>
<td width="144" valign="top"><strong>dynadot.com</strong></td>
<td width="64" valign="top">$25.00</td>
</tr>
<tr>
<td width="144" valign="top"><strong>1and1.com</strong></td>
<td width="64" valign="top">$25.79</td>
</tr>
<tr>
<td width="144" valign="top"><strong>moniker.com</strong></td>
<td width="64" valign="top">$28.88</td>
</tr>
<tr>
<td width="144" valign="top"><strong>netfirms.com</strong></td>
<td width="64" valign="top">$29.99</td>
</tr>
<tr>
<td width="144" valign="top"><strong>godaddy.com</strong></td>
<td width="64" valign="top">$34.99</td>
</tr>
<tr>
<td width="144" valign="top"><strong>estdomains.com</strong></td>
<td width="64" valign="top">$35.00</td>
</tr>
<tr>
<td width="144" valign="top"><strong>name.com</strong></td>
<td width="64" valign="top">N/A</td>
</tr>
</tbody>
</table>
<p><span style="color: #ff0000;"><strong>.FM Domains</strong></span></p>
<table border="1" cellspacing="0" cellpadding="0" width="217">
<tbody>
<tr>
<td width="144" valign="top"></td>
<td width="73" valign="top"><strong>FM(2years)</strong></td>
</tr>
<tr>
<td width="144" valign="top"><strong>directnic.com</strong></td>
<td width="73" valign="top">$69.99</td>
</tr>
<tr>
<td width="144" valign="top"><strong>godaddy.com</strong></td>
<td width="73" valign="top">$74.99</td>
</tr>
<tr>
<td width="144" valign="top"><strong>networksolutions.com</strong></td>
<td width="73" valign="top">$89.70</td>
</tr>
<tr>
<td width="144" valign="top"><strong>namecheap.com</strong></td>
<td width="73" valign="top">N/A</td>
</tr>
<tr>
<td width="144" valign="top"><strong>dynadot.com</strong></td>
<td width="73" valign="top">N/A</td>
</tr>
<tr>
<td width="144" valign="top"><strong>1and1.com</strong></td>
<td width="73" valign="top">N/A</td>
</tr>
<tr>
<td width="144" valign="top"><strong>moniker.com</strong></td>
<td width="73" valign="top">N/A</td>
</tr>
<tr>
<td width="144" valign="top"><strong>netfirms.com</strong></td>
<td width="73" valign="top">N/A</td>
</tr>
<tr>
<td width="144" valign="top"><strong>estdomains.com</strong></td>
<td width="73" valign="top">N/A</td>
</tr>
<tr>
<td width="144" valign="top"><strong>name.com</strong></td>
<td width="73" valign="top">N/A</td>
</tr>
</tbody>
</table>
<p><span style="color: #ff0000;"><strong>.TV Domains</strong></span></p>
<table border="1" cellspacing="0" cellpadding="0" width="208">
<tbody>
<tr>
<td width="144" valign="top"></td>
<td width="64" valign="top"><strong>TV</strong></td>
</tr>
<tr>
<td width="144" valign="top"><strong>directnic.com</strong></td>
<td width="64" valign="top">$19.99</td>
</tr>
<tr>
<td width="144" valign="top"><strong>moniker.com</strong></td>
<td width="64" valign="top">$25.00</td>
</tr>
<tr>
<td width="144" valign="top"><strong>netfirms.com</strong></td>
<td width="64" valign="top">$25.99</td>
</tr>
<tr>
<td width="144" valign="top"><strong>namecheap.com</strong></td>
<td width="64" valign="top">$29.99</td>
</tr>
<tr>
<td width="144" valign="top"><strong>1and1.com</strong></td>
<td width="64" valign="top">$30.79</td>
</tr>
<tr>
<td width="144" valign="top"><strong>networksolutions.com</strong></td>
<td width="64" valign="top">$32.99</td>
</tr>
<tr>
<td width="144" valign="top"><strong>estdomains.com</strong></td>
<td width="64" valign="top">$35.00</td>
</tr>
<tr>
<td width="144" valign="top"><strong>godaddy.com</strong></td>
<td width="64" valign="top">$44.99</td>
</tr>
<tr>
<td width="144" valign="top"><strong>dynadot.com</strong></td>
<td width="64" valign="top">$50.00</td>
</tr>
<tr>
<td width="144" valign="top"><strong>name.com</strong></td>
<td width="64" valign="top">N/A</td>
</tr>
</tbody>
</table>
<p><span style="color: #ff0000;"><strong>.ASIA Domains</strong></span></p>
<table border="1" cellspacing="0" cellpadding="0" width="217">
<tbody>
<tr>
<td width="152" valign="top"><strong>netfirms.com</strong></td>
<td width="65" valign="top">$7.99</td>
</tr>
<tr>
<td width="152" valign="top"><strong>directnic.com</strong></td>
<td width="65" valign="top">$14.99</td>
</tr>
<tr>
<td width="152" valign="top"><strong>networksolutions.com</strong></td>
<td width="65" valign="top">$15.00</td>
</tr>
<tr>
<td width="152" valign="top"><strong>estdomains.com</strong></td>
<td width="65" valign="top">$16.99</td>
</tr>
<tr>
<td width="152" valign="top"><strong>name.com</strong></td>
<td width="65" valign="top">$24.95</p>
<p>(2 yr    min)</td>
</tr>
<tr>
<td width="152" valign="top"><strong>moniker.com</strong></td>
<td width="65" valign="top">N/A</td>
</tr>
<tr>
<td width="152" valign="top"><strong>namecheap.com</strong></td>
<td width="65" valign="top">N/A</td>
</tr>
<tr>
<td width="152" valign="top"><strong>godaddy.com</strong></td>
<td width="65" valign="top">N/A</td>
</tr>
<tr>
<td width="152" valign="top"><strong>1and1.com</strong></td>
<td width="65" valign="top">N/A</td>
</tr>
<tr>
<td width="152" valign="top"><strong>dynadot.com</strong></td>
<td width="65" valign="top">N/A</td>
</tr>
</tbody>
</table>
<p><span style="color: #ff0000;"><strong>Private WhoIs Rates</strong></span></p>
<table border="1" cellspacing="0" cellpadding="0" width="338">
<tbody>
<tr>
<td width="152" valign="bottom"><strong>dynadot.com</strong></td>
<td width="186" valign="bottom">
<p align="center">$2.00</p>
</td>
</tr>
<tr>
<td width="152" valign="bottom"><strong>moniker.com</strong></td>
<td width="186" valign="bottom">
<p align="center">$4.00</p>
</td>
</tr>
<tr>
<td width="152" valign="bottom"><strong>godaddy.com</strong></td>
<td width="186" valign="bottom">
<p align="center">$6.00</p>
</td>
</tr>
<tr>
<td width="152" valign="bottom"><strong>namecheap.com</strong></td>
<td width="186" valign="bottom">
<p align="center">$7.88</p>
</td>
</tr>
<tr>
<td width="152" valign="bottom"><strong>networksolutions.com</strong></td>
<td width="186" valign="bottom">
<p align="center">$9.00</p>
</td>
</tr>
<tr>
<td width="152" valign="bottom"><strong>1and1.com</strong></td>
<td width="186" valign="bottom">
<p align="center">Free</p>
</td>
</tr>
<tr>
<td width="152" valign="bottom"><strong>name.com</strong></td>
<td width="186" valign="bottom">
<p align="center">Free</p>
</td>
</tr>
<tr>
<td width="152" valign="bottom"><strong>netfirms.com</strong></td>
<td width="186" valign="bottom">
<p align="center">Free with .net and .com</p>
</td>
</tr>
<tr>
<td width="152" valign="bottom"><strong>directnic.com</strong></td>
<td width="186" valign="bottom">
<p align="center">N/A</p>
</td>
</tr>
<tr>
<td width="152" valign="bottom"><strong>estdomains.com</strong></td>
<td width="186" valign="bottom">Yes(temporarily)</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://iamsumeet.com/a-guide-for-cheap-domain-registration/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>BSNL Cellone GPRS Configuration settings</title>
		<link>http://iamsumeet.com/bsnl-cellone-gprs-configuration-settings/</link>
		<comments>http://iamsumeet.com/bsnl-cellone-gprs-configuration-settings/#comments</comments>
		<pubDate>Wed, 14 May 2008 17:58:45 +0000</pubDate>
		<dc:creator>Sumeet</dc:creator>
				<category><![CDATA[BSNL/Dataone/Cellone]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[BSNL]]></category>
		<category><![CDATA[Cellone]]></category>
		<category><![CDATA[Configuration]]></category>
		<category><![CDATA[GPRS]]></category>
		<category><![CDATA[Mobile India GPRS]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://iamsumeet.com/?p=22</guid>
		<description><![CDATA[BSNL Cellone is one of the biggest cellular service provider in INDIA.Even though they are very huge, most probably the biggest mobile customer base in INDIA, their service is not up to the mark.Espically the customer care and Addon services (including the GPRS service) is very bad .BSNL Cellone was one of the 1st providers [...]]]></description>
			<content:encoded><![CDATA[<p><strong>BSNL Cellone</strong> is one of the biggest cellular service provider in INDIA.Even though they are very huge, most probably the biggest mobile customer base in INDIA, their service is not up to the mark.Espically the customer care and Addon services (including the GPRS service) is very bad .BSNL Cellone was one of the 1st providers who started providing GPRS in INDIA.Although time passed many other companies came in market and due to the competition the price of GPRS was reduced by others,BSNL Cellone never bothered to review their 2 year old GPRS rates ..A freaking <strong>Rs 20 per MB (Approx 50 cent /MB). </strong>Anyways the speed is good.</p>
<p>BSNL Cellone have introduced many ways to provide their customers an &#8220;automatic configuration download system&#8221; ,By using these you can directly download the settings from internet to your mobile phone without any charges. (Although god knows why  they never ever notified their customers about this feature :-/ ) . To get your GPRS Settings automatically</p>
<p>Visit :</p>
<ul>
<li><strong>WEST ZONE &#8211; </strong><a href="http://210.212.179.183/msp/html/" target="_blank">http://210.212.179.183/msp/html/</a></li>
<li><strong>NORTH ZONE</strong> &#8211; <a href="http://218.248.65.83:8081/msp/html/">http://218.248.65.83:8081/msp/html/</a></li>
<li><strong>EAST ZONE</strong> &#8211; <a href="http://218.248.71.14/msp/html/">http://218.248.71.14/msp/html/</a></li>
<li><strong>SOUTH ZONE</strong> &#8211; <a href="http://218.248.72.246/msp/html/">http://218.248.72.246/msp/html/</a></li>
<li>Log-in using your mobile number as 9194XXXXXXXX (replace xxxx.. with your number) and click login.</li>
<li>Go to device management tab</li>
<li>Select your phone vendor and Phone Model</li>
<li>Then click the &#8220;Configure my phone&#8221; Button</li>
</ul>
<p>They will Send the settings to your phone within 5 mins (Well&#8230;There&#8217;s no gurantee <img src='http://iamsumeet.com/wp-includes/images/smilies/icon_neutral.gif' alt=':|' class='wp-smiley' />  .. Afterall Its BSNL )</p>
<p>If you do not get the settings then .. . . <span id="more-21"></span>configure your phone with the following generic settings for your phone.Try adjusting these values as per your phone models.</p>
<p><strong>Generic Settings for BSNL Cellone WAP,GPRS And MMS</strong></p>
<p>People From south INDIA Before going through these settings please caregorise your phone as SOUTH A /SOUTH B</p>
<p><strong>South Category A </strong>- 9440, 94410, 9443, 9444[0-4], 9447, 9448, 9449[5-6]<br />
<strong>South Category B</strong> &#8211; 9441[1-9], 9442, 9444[5-9], 9446, 9480[0-4], 9486[0-4],  9449[0-4 &amp; 7-9], 9490[0-4], 9495[0-4]</p>
<pre>---------------------------------------------------------------------</pre>
<h1><span style="color: #ff0000;"><strong>WAP SETTINGS</strong></span></h1>
<p><span style="color: #ff0000;"><strong>BSNL Cellone </strong><span style="text-decoration: underline;"><strong>WAP SETTINGS</strong><strong> FOR WEST, EAST AND NORTH</strong></span></span></p>
<table style="height: 140px;" border="1" cellspacing="0" cellpadding="0" width="490">
<tbody>
<tr>
<td valign="top"></td>
<td valign="top">WEST</td>
<td valign="top">EAST</td>
<td valign="top">NORTH</td>
</tr>
<tr>
<td valign="top">Setting Name</td>
<td valign="top">CelloneWest_wap</td>
<td valign="top">CelloneEast_wap</td>
<td valign="top">CelloneNorth_wap_n</td>
</tr>
<tr>
<td valign="top">Access Point Name</td>
<td valign="top">wapwest.cellone.in</td>
<td valign="top">www.e.pr</td>
<td valign="top">wapnorth.cellone.in</td>
</tr>
<tr>
<td valign="top">Port</td>
<td valign="top">9201 for Wap 1 device<br />
9209 for Wap 2 device</td>
<td valign="top">9201 for Wap 1 device<br />
8080 for Wap 2 device</td>
<td valign="top">9201 for Wap 1.0 device<br />
8080 for Wap 2.0 device</td>
</tr>
<tr>
<td valign="top">Proxy IP</td>
<td valign="top">10.100.3.2</td>
<td valign="top">192.168.81.163</td>
<td valign="top">10.132.194.196</td>
</tr>
<tr>
<td valign="top">Authentication</td>
<td valign="top">Normal</td>
<td valign="top">Normal</td>
<td valign="top">Normal</td>
</tr>
<tr>
<td valign="top">User Name</td>
<td valign="top">&lt;leave blank&gt;</td>
<td valign="top">&lt;leave blank&gt;</td>
<td valign="top">&lt;leave blank&gt;</td>
</tr>
<tr>
<td valign="top">Password</td>
<td valign="top">&lt;leave blank&gt;</td>
<td valign="top">&lt;leave blank&gt;</td>
<td valign="top">&lt;leave blank&gt;</td>
</tr>
<tr>
<td valign="top">Home Page</td>
<td valign="top">http://wap.cellone.in</td>
<td valign="top">http://wap.cellone.in</td>
<td valign="top">http://wap.cellone.in</td>
</tr>
</tbody>
</table>
<p><span style="color: #ff0000;"><strong>BSNL Cellone </strong><span style="text-decoration: underline;"><strong>WAP SETTINGS</strong><strong> FOR SOUTH A AND SOUTH B</strong></span></span></p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top">VALUES</td>
<td valign="top">SOUTH A</td>
<td valign="top">South B</td>
</tr>
<tr>
<td valign="top">Setting Name</td>
<td valign="top">CelloneSouth_wap_m</td>
<td valign="top">CelloneSouth_wap_n</td>
</tr>
<tr>
<td valign="top">Access Point Name</td>
<td valign="top">bsnlwap</td>
<td valign="top">wapsouth.cellone.in</td>
</tr>
<tr>
<td valign="top">Port</td>
<td valign="top">9201 for Wap 1 device<br />
9401 for Wap 2 device</td>
<td valign="top">9201 for Wap 1 device<br />
9401 for Wap 2 device</td>
</tr>
<tr>
<td valign="top">Proxy IP</td>
<td valign="top">10.31.54.2</td>
<td valign="top">10.31.54.2</td>
</tr>
<tr>
<td valign="top">Authentication</td>
<td valign="top">Normal</td>
<td valign="top">Normal</td>
</tr>
<tr>
<td valign="top">User Name</td>
<td valign="top">&lt;leave blank&gt;</td>
<td valign="top">ppp</td>
</tr>
<tr>
<td valign="top">Password</td>
<td valign="top">&lt;leave blank&gt;</td>
<td valign="top">ppp123</td>
</tr>
<tr>
<td valign="top">Home Page</td>
<td valign="top">http://wap.cellone.in</td>
<td valign="top">http://wap.cellone.in</td>
</tr>
</tbody>
</table>
<pre>------------------------------------------------------------------------</pre>
<h1><span style="color: #ff0000;">GPRS SETTINGS</span></h1>
<p><span style="color: #ff0000;"><strong>BSNL Cellone </strong><span style="text-decoration: underline;"><strong>GPRS SETTINGS</strong><strong> FOR WEST, EAST AND NORTH</strong></span></span></p>
<table style="height: 96px;" border="1" cellspacing="0" cellpadding="0" width="415">
<tbody>
<tr>
<td valign="top">Values</td>
<td valign="top">West</td>
<td valign="top">East</td>
<td valign="top">North</td>
</tr>
<tr>
<td valign="top">Settings Name</td>
<td valign="top">CelloneWest_gprs</td>
<td valign="top">CelloneEast_gprs</td>
<td valign="top">CelloneNorth_gprs_n</td>
</tr>
<tr>
<td valign="top">Access Point Name</td>
<td valign="top">gprswest.cellone.in</td>
<td valign="top">www.e.pr</td>
<td valign="top">gprsnorth.cellone.in</td>
</tr>
<tr>
<td valign="top">Username</td>
<td valign="top">&lt;leave blank&gt;</td>
<td valign="top">&lt;leave blank&gt;</td>
<td valign="top">&lt;leave blank&gt;</td>
</tr>
<tr>
<td valign="top">Password</td>
<td valign="top">&lt;leave blank&gt;</td>
<td valign="top">&lt;leave blank&gt;</td>
<td valign="top">&lt;leave blank&gt;</td>
</tr>
</tbody>
</table>
<p><strong><span style="color: #ff0000;">BSNL Cellone <span style="text-decoration: underline;">GPRS SETTINGS FOR SOUTH A AND SOUTH B</span></span></strong></p>
<table style="height: 88px;" border="1" cellspacing="0" cellpadding="0" width="425">
<tbody>
<tr>
<td valign="top">Values</td>
<td valign="top">South A</td>
<td valign="top">South B</td>
</tr>
<tr>
<td valign="top">Settings Name</td>
<td valign="top">CelloneSouth_gprs_m</td>
<td valign="top">CelloneSouth_gprs_n</td>
</tr>
<tr>
<td valign="top">Access Point Name</td>
<td valign="top">bsnlsouth</td>
<td valign="top">gprssouth.cellone.in</td>
</tr>
<tr>
<td valign="top">Username</td>
<td valign="top">your mobile number</td>
<td valign="top">your mobile number with prefix 91</td>
</tr>
<tr>
<td valign="top">Password</td>
<td valign="top">your mobile number</td>
<td valign="top">your mobile number with prefix 91</td>
</tr>
</tbody>
</table>
<pre>------------------------------------------------------------------------</pre>
<h1><span style="color: #ff0000;">MMS Settings</span></h1>
<p><span style="color: #ff0000;"><strong>BSNL Cellone </strong><span style="text-decoration: underline;"><strong>MMS Settings</strong><strong> FOR WEST, EAST AND NORTH</strong></span></span></p>
<table style="height: 176px;" border="1" cellspacing="0" cellpadding="0" width="460">
<tbody>
<tr>
<td valign="top">Values</td>
<td valign="top">West</td>
<td valign="top">East</td>
<td valign="top">North</td>
</tr>
<tr>
<td valign="top">Settings Name</td>
<td valign="top">CelloneWest_mms</td>
<td valign="top">CelloneEast_mms</td>
<td valign="top">CelloneNorth_mms_n</td>
</tr>
<tr>
<td valign="top">Access Point Name</td>
<td valign="top">mmswest.cellone.in</td>
<td valign="top">mmseast.cellone.in</td>
<td valign="top">mmsnorth.cellone.in</td>
</tr>
<tr>
<td valign="top">Port</td>
<td valign="top">3100</td>
<td valign="top">9201 for Wap 1.0 device<br />
8080 for Wap 2.0 device</td>
<td valign="top">9201 for Wap 1.0 device<br />
8080 for Wap 2.0 device</td>
</tr>
<tr>
<td valign="top">Proxy IP</td>
<td valign="top">10.100.5.20</td>
<td valign="top">10.210.10.11</td>
<td valign="top">10.132.194.196</td>
</tr>
<tr>
<td valign="top">Authenticati<br />
-on</td>
<td valign="top">Normal</td>
<td valign="top">Normal</td>
<td valign="top">Normal</td>
</tr>
<tr>
<td valign="top">User Name</td>
<td valign="top">&lt;leave blank&gt;</td>
<td valign="top">bsnl</td>
<td valign="top">&lt;leave blank&gt;</td>
</tr>
<tr>
<td valign="top">Password</td>
<td valign="top">&lt;leave blank&gt;</td>
<td valign="top">mmsc</td>
<td valign="top">&lt;leave blank&gt;</td>
</tr>
<tr>
<td valign="top">Home Page</td>
<td valign="top">http://mms/mmsc</td>
<td valign="top">http://10.210.10.11:8514</td>
<td valign="top">http://10.132.194.197:8002</td>
</tr>
</tbody>
</table>
<p><span style="color: #ff0000;"><strong>BSNL Cellone </strong></span><span style="color: #ff0000;"><span style="text-decoration: underline;"><strong>MMS Settings</strong><strong> FOR SOUTH A AND SOUTH B</strong></span></span></p>
<table style="height: 164px;" border="1" cellspacing="0" cellpadding="0" width="439">
<tbody>
<tr>
<td valign="top">Values</td>
<td valign="top">South A</td>
<td valign="top">South B</td>
</tr>
<tr>
<td valign="top">Settings Name</td>
<td valign="top">CelloneSouth_wap_m</td>
<td valign="top">CelloneSouth_wap_n</td>
</tr>
<tr>
<td valign="top">Access Point Name</td>
<td valign="top">bsnlmms</td>
<td valign="top">mmssouth.cellone.in</td>
</tr>
<tr>
<td valign="top">Port</td>
<td valign="top">9201 for Wap 1 device<br />
9401 for Wap 2 device</td>
<td valign="top">9201   for Wap 1 device<br />
8080 for Wap 2 device</td>
</tr>
<tr>
<td valign="top">Proxy IP</td>
<td valign="top">10.31.54.2</td>
<td valign="top">10.7.236.11</td>
</tr>
<tr>
<td valign="top">Authentication</td>
<td valign="top">Normal</td>
<td valign="top">Normal</td>
</tr>
<tr>
<td valign="top">User Name</td>
<td valign="top">ppp</td>
<td valign="top">your   mobile number with prefix 91 (9194xxxxxxxx )</td>
</tr>
<tr>
<td valign="top">Password</td>
<td valign="top">ppp123</td>
<td valign="top">mmsc</td>
</tr>
<tr>
<td valign="top">Home Page</td>
<td valign="top">http://10.31.53.18/mms/</td>
<td valign="top">http://10.7.236.11:8514</td>
</tr>
</tbody>
</table>
<p>If you have having trouble reading these tables then download the Word Document <a href="http://rapidshare.com/files/114910402/BSNL_CELLONE_GPRS_SETTINGS.doc.html" target="_blank">from here</a></p>
<p>EDIT :  I am disabling comments on this page because of too many queries. Please note I am not from BSNL nor affiliated to them, So stop mailing me hate mails and complains about BSNL Service.  Hope you will understand.If you are facing issues while getting the settings, then call the customer care .They will send you the settings free of cost.</p>
]]></content:encoded>
			<wfw:commentRss>http://iamsumeet.com/bsnl-cellone-gprs-configuration-settings/feed/</wfw:commentRss>
		<slash:comments>56</slash:comments>
		</item>
		<item>
		<title>Build links and Sell links on your high pageranked pages</title>
		<link>http://iamsumeet.com/build-links-and-sell-links-on-your-high-pageranked-pages/</link>
		<comments>http://iamsumeet.com/build-links-and-sell-links-on-your-high-pageranked-pages/#comments</comments>
		<pubDate>Tue, 06 May 2008 10:32:32 +0000</pubDate>
		<dc:creator>Sumeet</dc:creator>
				<category><![CDATA[Domains]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Link Building]]></category>
		<category><![CDATA[Pagerank]]></category>
		<category><![CDATA[Pagerank Checker]]></category>
		<category><![CDATA[Sell Links]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://iamsumeet.com/?p=21</guid>
		<description><![CDATA[Pagerank A very special criteria maintained by google to rank the importance of a webpage OR website.A Pagerank is one of the many important things a webmaster cannot ignore. In fact it is one of the the main motive of SEO.Pagerank is also a very important factor to analyze the overall value of a website.
Google [...]]]></description>
			<content:encoded><![CDATA[<p><span style="text-decoration: underline;"><strong>Pagerank</strong></span> A very special criteria<strong> </strong>maintained by google to rank the importance of a webpage OR website.A Pagerank is one of the many important things a webmaster cannot ignore. In fact it is one of the the main motive of SEO.Pagerank is also a very important factor to analyze the overall value of a website.</p>
<p>Google measure the pagerank of a website by calculating the number of backlinks to that website OR webpage and hence it give rise to  &#8220;Link Exchange&#8221;,&#8221;Reciprocal link placement&#8221; and even encourage &#8220;Link sales&#8221;.Many webmasters sell the links on high Pageranked pages .&#8221;Paid reviews&#8221; OR &#8221; Paid Blog posts&#8221; works on the same concept of link building.So if you are also considering selling your links then head on to digitalpoint forums.BUT make a note that google penalize sites who sell their links so, try not to mention your website/Webpage&#8217;s address on the thread.</p>
<p>Also Google doesn&#8217;t index sites who are involved in &#8220;link exchange programs&#8221; SO don&#8217;t go near link farms, If you want to exchange link then find websites related to your content and EMAIL the webmaster personally.Its a good idea to say a few good things about their website and to mention the benefits of link exchange.A three way link exchange will be a good idea cause if Google finds a reciprocal link on both the website then it may penalize both websites for link exchange.</p>
<p>So Now if you want to exchange or sell your links then make a note of the pagerank of all your pages.You can check your page rank on the google toolbar ,and note them on a Excel sheet.BUT This process will be very painful if you have too many pages , So use the <a title="Check Bulk Page Rank" href="http://checkbulkpagerank.com/" target="_self">http://checkbulkpagerank.com</a> to <a title="Check PageRank" href="http://checkbulkpagerank.com/" target="_self">check page rank</a> of all your pages in bulk.You can also export the results in CVS Format.</p>
<p>Now as you are ready with the reports ,use google and find the websites which are related to your content and start emailing them.Also if you want to sell them then use the forums link digitalpoint and make a new post on their &#8220;<a href="http://forums.digitalpoint.com/forumdisplay.php?f=58" target="_self">LINK SALES</a>&#8221; Section ,Don&#8217;t forget to mention your pagerank and the amount on the thread title,Also mentioning the <span class="a"><strong>Niche </strong>of your page in the thread title.<strong><br />
</strong></span></p>
]]></content:encoded>
			<wfw:commentRss>http://iamsumeet.com/build-links-and-sell-links-on-your-high-pageranked-pages/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Interesting things about domains you may not be knowing</title>
		<link>http://iamsumeet.com/interesting-things-about-domains-you-may-not-be-knowing/</link>
		<comments>http://iamsumeet.com/interesting-things-about-domains-you-may-not-be-knowing/#comments</comments>
		<pubDate>Tue, 29 Apr 2008 14:41:44 +0000</pubDate>
		<dc:creator>Sumeet</dc:creator>
				<category><![CDATA[Domains]]></category>
		<category><![CDATA[Information]]></category>
		<category><![CDATA[Paypal]]></category>

		<guid isPermaLink="false">http://iamsumeet.com/?p=20</guid>
		<description><![CDATA[Things you should know before reading this : TLD -Top level domain ; gTLD-generic top-level domains example -.com ; ccTLD &#8211; country code top-level domains example &#8211; .us /in

Q.com and X.com are the only &#8220;single letter&#8221; .com ever registered ,After the registration of these two domains the registration of &#8220;single letter&#8221;.coms were prohibited .Currently q.com [...]]]></description>
			<content:encoded><![CDATA[<p>Things you should know before reading this : <strong>TLD</strong> -<em>Top level domain</em> ; <strong>gTLD</strong>-<em>generic top-level domains</em> <em>example -.com</em> ; ccTLD &#8211; <em>country code top-level domains example &#8211; .us /in</em></p>
<ul>
<li>Q.com and X.com are the only &#8220;single letter&#8221; .com ever registered ,After the registration of these two domains the registration of &#8220;single letter&#8221;.coms were prohibited .Currently q.com is owned by <strong>qwest.com</strong> and x.com is owned by <strong>paypal labs</strong></li>
</ul>
<ul>
<li>Domains can&#8217;t end/start with a &#8220;-&#8221; hyphen .None of the registrar will allow you to register any such domain BUT <a href="http://www.mc-.info/">mc-.info </a>is the only website which was registered before this rule was established hence it is the only domain which ends with a &#8220;-&#8221; hyphen</li>
</ul>
<ul>
<li>Although no one knows , what is the most expensive domain ever sold but as per Guinness Book of World Records <strong>Business.com</strong> is the most expensive domain name in the world.It was sold to Marc Ostrofsky 1999 for a price of $7.5 million.But few recent studies shows that sex.com was the most expensive domain ever sold (about 14 million ) , although the actual figure is unknown.</li>
</ul>
<ul>
<li>The domain extension <strong>.TV</strong> is mostly used for Television /music/entertainment related websites but actually its a ccTLD ( COUNTRY CODE TLD ) of Tuvalu an island in South Pacific.Similarly the ccTLD <strong>.FM</strong> belongs to Federated States of Micronesia</li>
</ul>
<ul>
<li>There are over 250 TLD ( including ccTLD like .us/.in and gtld like .com)</li>
</ul>
<ul>
<li><strong>.example</strong> , <strong>.</strong><tt><strong>invalid</strong>, <strong>.localhost</strong> and <strong>.test</strong> are the four reserved TLD and will never ever become an actual TLD</tt></li>
</ul>
<ul>
<li>Similar to ccTLD and gTLD<strong>,  &#8220;iTLD&#8221;</strong> which is used exclusively for Internet-infrastructure purposes !<tt> <a href="http://en.wikipedia.org/wiki/Top-level_domain" target="_blank">.arpa</a> (</tt>confirmed)<tt> and <a href="http://en.wikipedia.org/wiki/.root">.root</a> (existing without any reason) are the two extensions under this category</tt></li>
</ul>
<ul>
<li>Domain name statics can be found here : <a href="http://icannwiki.org/Domain_Statistics">http://icannwiki.org/Domain_Statistics</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://iamsumeet.com/interesting-things-about-domains-you-may-not-be-knowing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

