<?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>My Experiences - Manoj Goure</title>
	<atom:link href="http://www.manojgoure.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.manojgoure.com</link>
	<description>Research, Explore and Share</description>
	<lastBuildDate>Tue, 20 Sep 2011 18:51:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Rounded Curved Table without Image</title>
		<link>http://www.manojgoure.com/rounded-curved-table-without-image</link>
		<comments>http://www.manojgoure.com/rounded-curved-table-without-image#comments</comments>
		<pubDate>Mon, 12 Sep 2011 03:13:29 +0000</pubDate>
		<dc:creator>ManojGoure</dc:creator>
				<category><![CDATA[Design & Development]]></category>
		<category><![CDATA[curved border without image]]></category>
		<category><![CDATA[html curved border]]></category>
		<category><![CDATA[table curved corner without image]]></category>

		<guid isPermaLink="false">http://www.manojgoure.com/?p=604</guid>
		<description><![CDATA[Getting curve for table corner in HTML is quite tedious task. There is no HTML tag for making curved corner for table. The only solution is to get image as a curve. That’s the reason I always avoid tables in my layouts. I don’t like to increase unnecessary HTTPs requests on my webpages. Once I<a href="http://www.manojgoure.com/rounded-curved-table-without-image">&#160;&#160;[ Read More ]</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.manojgoure.com/wp-content/uploads/2011/09/curve-html.jpg"><img class="alignleft size-medium wp-image-681" style="margin: 10px;" title="curve html" src="http://www.manojgoure.com/wp-content/uploads/2011/09/curve-html-300x225.jpg" alt="html table curve without image" width="255" height="191" /></a>Getting curve for table corner in HTML is quite tedious task. There is no HTML tag for making curved corner for table. The only solution is to get image as a curve. That’s the reason I always avoid tables in my layouts. I don’t like to increase unnecessary HTTPs requests on my webpages.</p>
<p>Once I got myself into a situation where I cannot do away with table. I had to use the tables and with curved border only. Getting this done with Divs and CSS is quite possible but tables are little headache to play with in such condition.</p>
<p>With little tweaking in the code I achieved easily without using images. (This won’t work in IE. IE9 may support it.)</p>
<p>Examples of tables with curved border:</p>
<div style="margin: 15px;">
<h4>1. Table Without Cell Border</h4>
</div>
<div style="margin-left: 150px;">
<table class="curve_b" style="background: none repeat scroll 0% 0% #889988; border: 1px solid #333333; text-align: center;" width="200">
<tbody>
<tr>
<td>Name</td>
<td>ID</td>
</tr>
<tr>
<td>Steve</td>
<td style="text-align: center;">0123</td>
</tr>
<tr>
<td>Peter</td>
<td>0124</td>
</tr>
</tbody>
</table>
</div>
<p>The code for above table is</p>
<blockquote><p>&lt;table width=&#8221;200&#8243; style=&#8221;background:#CCC;border:1px #333 solid;text-align:center;&#8221; <span style="color: #ff0000;">class=&#8221;curve_b&#8221;</span>&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;Name&lt;/td&gt;&lt;td&gt;ID&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;Steve&lt;/td&gt;&lt;td&gt;Peter&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;0123&lt;/td&gt;&lt;td&gt;0124&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;</p></blockquote>
<p>The curve effect is being generated by class <strong>&#8220;curve_b&#8221;</strong> included in table (red color).  And CSS style code for the class is</p>
<blockquote><p><em><span style="color: #993300;"><span style="color: #000000;">.curve_b</span> {</span></em><br />
<em> <span style="color: #993300;">     border-radius:10px;</span></em><br />
<em> <span style="color: #993300;">     -webkit-border-radius:10px;</span></em><br />
<em> <span style="color: #993300;"> }</span></em></p></blockquote>
<div style="margin: 15px;">
<h4>2. Table With Cell Border</h4>
<p>There can be two possibilities for the table with cell border, it can be with cellspacing or without cellspacing. We will see both examples.</p>
</div>
<div style="margin-left: 150px;">
<p>a) Table with cellspacing</p>
<table class="curve_b" style="background: none repeat scroll 0% 0% #889988; border: 1px solid #333333; text-align: center;" width="200">
<tbody>
<tr>
<td class="curve_tl" style="border: 1px solid #333333;">Name</td>
<td class="curve_tr" style="border: 1px solid #333333;">ID</td>
</tr>
<tr>
<td style="border: 1px solid #333333;">Steve</td>
<td style="border: 1px solid #333333;">Peter</td>
</tr>
<tr>
<td class="curve_bl" style="border: 1px solid #333333;">0123</td>
<td class="curve_br" style="border: 1px solid #333333;">0124</td>
</tr>
</tbody>
</table>
<p>b) Table without cellspacing</p>
<table class="curve_b" style="background: none repeat scroll 0% 0% #889988; border: 1px solid #333333; text-align: center;" width="200" cellspacing="0">
<tbody>
<tr>
<td class="curve_tl" style="border: 1px solid #333333;">Name</td>
<td class="curve_tr" style="border: 1px solid #333333;">ID</td>
</tr>
<tr>
<td style="border: 1px solid #333333;">Steve</td>
<td style="border: 1px solid #333333;">Peter</td>
</tr>
<tr>
<td class="curve_bl" style="border: 1px solid #333333;">0123</td>
<td class="curve_br" style="border: 1px solid #333333;">0124</td>
</tr>
</tbody>
</table>
</div>
<p>Getting curve for tables having cell border need little extra coding. We need to define separate classes to each cell which has to be curved. See sample code below</p>
<blockquote><p><strong>a) Table with Cellspacing<br />
</strong></p>
<p>&lt;table width=&#8221;200&#8243; style=&#8221;background:#CCC;border:1px #333 solid;text-align:center;&#8221;&gt;<br />
&lt;tr&gt;<br />
&lt;td <span style="color: #ff0000;">class=&#8221;curve_tl&#8221;</span>&gt;Name&lt;/td&gt;<br />
&lt;td <span style="color: #ff0000;">class=&#8221;curve_tr&#8221;</span>&gt;ID&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td style=&#8221;border:1px #333 solid;&#8221;&gt;Steve&lt;/td&gt;<br />
&lt;td style=&#8221;border:1px #333 solid;&#8221;&gt;Peter&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td<span style="color: #ff0000;"> class=&#8221;curve_bl&#8221;</span>&gt;0123&lt;/td&gt;<br />
&lt;td <span style="color: #ff0000;">class=&#8221;curve_br&#8221;</span>&gt;0124&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;</p>
<p><strong>b) Table without  Cellspacing</strong></p>
<p>&lt;table width=&#8221;200&#8243; style=&#8221;background:#CCC;border:1px #333 solid;text-align:center;&#8221; cellspacing=&#8221;0&#8243;&gt;<br />
&lt;tr&gt;<br />
&lt;td <span style="color: #ff0000;">class=&#8221;curve_tl&#8221;</span>&gt;Name&lt;/td&gt;<br />
&lt;td <span style="color: #ff0000;">class=&#8221;curve_tr&#8221;</span>&gt;ID&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td style=&#8221;border:1px #333 solid;&#8221;&gt;Steve&lt;/td&gt;<br />
&lt;td style=&#8221;border:1px #333 solid;&#8221;&gt;Peter&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td<span style="color: #ff0000;"> class=&#8221;curve_bl&#8221;</span>&gt;0123&lt;/td&gt;<br />
&lt;td <span style="color: #ff0000;">class=&#8221;curve_br&#8221;</span>&gt;0124&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;</p></blockquote>
<p>CSS properties creating curve borders for table cells are</p>
<blockquote><p><em><span style="color: #993300;"><span style="color: #000000;">.curve_tl </span>{</span></em><br />
<em><span style="color: #993300;">    border:1px #333 solid;</span></em><br />
<em><span style="color: #993300;">    border-top-left-radius:10px;    </span></em><br />
<em><span style="color: #993300;">    -webkit-border-top-left-radius:10px;</span></em><br />
<em><span style="color: #993300;">}</span></em></p>
<p><em><span style="color: #993300;"><span style="color: #000000;">.curve_tr </span>{</span></em><br />
<em><span style="color: #993300;">    border:1px #333 solid;    </span></em><br />
<em><span style="color: #993300;">    border-top-right-radius:10px;    </span></em><br />
<em><span style="color: #993300;">    -webkit-border-top-right-radius:10px;</span></em><br />
<em><span style="color: #993300;">}</span></em></p>
<p><em><span style="color: #993300;"><span style="color: #000000;">.curve_bl</span> {</span></em><br />
<span style="color: #993300;"><em>    border:1px #333 solid;    </em></span><br />
<span style="color: #993300;"><em>    border-bottom-left-radius:10px;        </em></span><br />
<span style="color: #993300;"><em>    -webkit-border-bottom-left-radius:10px;</em></span><br />
<em><span style="color: #993300;">}</span></em></p>
<p><span style="color: #ff0000;"><em><span style="color: #000000;">.curve_br</span> <span style="color: #993300;">{</span></em></span><br />
<em><span style="color: #993300;">    border:1px #333 solid;    </span></em><br />
<em><span style="color: #993300;">    border-bottom-right-radius:10px;    </span></em><br />
<em><span style="color: #993300;">    -webkit-border-bottom-right-radius:10px;</span></em><br />
<em><span style="color: #993300;">}</span></em></p></blockquote>
<p><strong>Note:</strong></p>
<ul>
<li>Firefox, Safari and Opera browsers support &#8220;border-radiaus&#8221; property, but not Chrome and IE.</li>
<li>Chrome support &#8220;webkit&#8221;.</li>
<li>IE does not support border curve properties.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.manojgoure.com/rounded-curved-table-without-image/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Step by step guide to access internet on laptop through Nokia N900</title>
		<link>http://www.manojgoure.com/step-by-step-guide-to-access-internet-on-laptop-through-nokia-n900</link>
		<comments>http://www.manojgoure.com/step-by-step-guide-to-access-internet-on-laptop-through-nokia-n900#comments</comments>
		<pubDate>Sun, 21 Aug 2011 18:57:10 +0000</pubDate>
		<dc:creator>ManojGoure</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[access internet on laptop through mobile]]></category>
		<category><![CDATA[connect mobile with laptop]]></category>
		<category><![CDATA[Nokia N900 a modem]]></category>
		<category><![CDATA[phone as modem]]></category>
		<category><![CDATA[Use internet on laptop through nokia n900]]></category>
		<category><![CDATA[use internet via mobile]]></category>

		<guid isPermaLink="false">http://www.manojgoure.com/?p=589</guid>
		<description><![CDATA[With latest technology and development in the electronic world, it is getting easier to be remained connected with internet in every possible moment of life. It does not matter where you are, in or out of home or office. Wireless modems, data cards, smart phones, internet tabs and laptops are the new gadgets on high<a href="http://www.manojgoure.com/step-by-step-guide-to-access-internet-on-laptop-through-nokia-n900">&#160;&#160;[ Read More ]</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.manojgoure.com/wp-content/uploads/2011/08/NOKIA-N900.png"><img class="alignleft size-medium wp-image-596" title="NOKIA N900" src="http://www.manojgoure.com/wp-content/uploads/2011/08/NOKIA-N900-300x271.png" alt="" width="258" height="233" /></a>With latest technology and development in the electronic world, it is getting easier to be remained connected with internet in every possible moment of life. It does not matter where you are, in or out of home or office. Wireless modems, data cards, smart phones, internet tabs and laptops are the new gadgets on high in demand and making life simpler.</p>
<p>One of the great features of smart phones that I need most is that it can be used as a modem. From last few days I am trying to use internet on my Acer laptop through my Nokia N900 but because of some missing in drives of Bluetooth I could connect my smart phone with my laptop.  I tried few drivers downloaded from different location. But nothing worked.</p>
<p>While surfing some websites and rooming around in some forums I got a hint of using Nokia PC suite to access internet.  I thought to make a try.</p>
<p>I downloaded Nokia PC suite for Nokia N900 from <a href="http://www.nokia.co.in/support/product_support/nokia-pc-suites/compatibility-and-download" rel="nofollow">Nokia website</a>. There you can find huge list of all the PC suites for Nokia Mobile which are available in the market.</p>
<p style="text-align: left;"><strong><a href="http://www.manojgoure.com/wp-content/uploads/2011/08/nokia-pc-suite.png"><img class="size-full wp-image-590 aligncenter" title="nokia pc suite" src="http://www.manojgoure.com/wp-content/uploads/2011/08/nokia-pc-suite.png" alt="" width="474" height="375" /></a></strong><a title="download Nokia N900" href="http://www.nokia.co.in/support/product_support/nokia-pc-suites/compatibility-and-download" rel="nofollow">Click here </a>to download PC Suite for Nokia N900<strong><br />
</strong></p>
<p>After installing PC suite, I connected Nokia N900 with laptop through USB data cable and selected  <strong>PC Suite mode</strong> from Nokia N900.</p>
<p style="text-align: center;"><a href="http://www.manojgoure.com/wp-content/uploads/2011/08/IMG113.jpg"><img class="size-medium wp-image-592 aligncenter" title="IMG113" src="http://www.manojgoure.com/wp-content/uploads/2011/08/IMG113-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>Now <strong>Nokia PC Suite</strong> application that will connect mobile to laptop need be started. It can be started from windows start menu or from quick launch icon if it was left on desktop while installing PC suite.</p>
<p style="text-align: center;"><a href="http://www.manojgoure.com/wp-content/uploads/2011/08/nokia-pc-suite-snapshot.png"><img class="size-full wp-image-593 aligncenter" title="nokia pc suite snapshot" src="http://www.manojgoure.com/wp-content/uploads/2011/08/nokia-pc-suite-snapshot.png" alt="" width="357" height="478" /></a></p>
<p>Now clicked web icon (red circled) to make internet connectivity between phone to laptop. An another window (<strong>One Touch Access</strong>) is opened showing connectivity.</p>
<p><a href="http://www.manojgoure.com/wp-content/uploads/2011/08/nokia-pc-suite-one-touch.jpg"><img class="aligncenter size-full wp-image-594" title="nokia pc suite one touch" src="http://www.manojgoure.com/wp-content/uploads/2011/08/nokia-pc-suite-one-touch.jpg" alt="" width="424" height="442" /></a></p>
<p>And finally I got successfully running internet on my laptop. This was the easiest way I could find to access internet on laptop with my Nokia N900.</p>
<p><a href="http://www.manojgoure.com/wp-content/uploads/2011/08/nokia-pc-suite-connected.jpg"><img class="aligncenter size-full wp-image-595" title="nokia pc suite connected" src="http://www.manojgoure.com/wp-content/uploads/2011/08/nokia-pc-suite-connected.jpg" alt="" width="425" height="436" /></a></p>
<p>If you want you can use Bluetooth for using internet on your laptop, will be having same method. The only difference would be connecting laptop and cell via Bluetooth instead USB cable. And process will be same.</p>
<p>I will install required Bluetooth drivers so that I can connect my laptop with my smart phone. And will update this post for Bluetooth connectivity.</p>
<p>Share your experiences of using interned by using your phone. This will help many new users to get connected with internet by using phone as a modem.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.manojgoure.com/step-by-step-guide-to-access-internet-on-laptop-through-nokia-n900/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to deal with bad online reputation of eCommerce Business?</title>
		<link>http://www.manojgoure.com/how-to-deal-with-bad-online-reputation-of-ecommerce-business</link>
		<comments>http://www.manojgoure.com/how-to-deal-with-bad-online-reputation-of-ecommerce-business#comments</comments>
		<pubDate>Thu, 09 Dec 2010 01:28:00 +0000</pubDate>
		<dc:creator>ManojGoure</dc:creator>
				<category><![CDATA[Brand Reputation]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=482</guid>
		<description><![CDATA[Online reputation is very essential for online business. If spoilt a bit may creep for long time and keep damaging your business. So it’s better to get rid off it as soon as possible or take required precautions so that your reputation could not get hurt. Let’s first understand how the reputation built or damaged<a href="http://www.manojgoure.com/how-to-deal-with-bad-online-reputation-of-ecommerce-business">&#160;&#160;[ Read More ]</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.manojgoure.com/wp-content/uploads/2010/12/online-reputation.jpg"><img class="alignnone size-full wp-image-531" title="online reputation" src="http://www.manojgoure.com/wp-content/uploads/2010/12/online-reputation.jpg" alt="" width="320" height="295" /></a>Online reputation is very essential for online business. If spoilt a bit may creep for long time and keep damaging your business. So it’s better to get rid off it as soon as possible or take required precautions so that your reputation could not get hurt.</p>
<p>Let’s first understand how the reputation built or damaged online. Online Reputation is directly proportional to users/customer’s experience with your websites and services. The more user is satisfied with your website the less chances are there for negative review.</p>
<p>It doesn’t matter how much you starve to give better experience to your user, one day you might face some bad review because practically it is not possible to fulfill the requirement and expectation of every user. Sometimes some silly mistakes or misunderstanding from user can earn you bad review.</p>
<p>I will let you know few tactics by which you can keep your negative brand reputation up to minimal level and how you can keep your bad review away from user’s eye.<br />
<span style="font-size: 180%;"><br />
</span><span style="font-size: 130%;">Precautionary Measures:</span> (It is always better to be safe than worry)<br />
<span style="font-weight: bold;">Better Browsing Experience:</span> The tag line would be “Keep your user satisfied and give your visitor a great experience while walking through your website!” Keep few important things in your mind.</p>
<ul>
<li>Make your websites in such way that it should answer all the questions that may come into user’s mind.</li>
<li>Do not frustrate your user by unorganized navigation and menus.</li>
<li>Keep proper hierarchy or presentation of your content.</li>
<li>All your important pages and customer information pages should be accessible from your entire website.</li>
<li>Try to make your website fast enough to take your visitors smoothly throughout the website. Delay in opening of Web Pages may annoy visitor.</li>
</ul>
<p>Following all these points will make your website user friendly and will make user experience better reducing the probabilities of annoying user.</p>
<p><span style="font-weight: bold;">Maintaining User Trust: </span>It is very important to keep your customer happy and satisfied with your products and services to retain the trust of your customer.</p>
<p>The tag line would be “do not leave your customer until they get what they paid for!” Also some important points have to be taken into consideration so far user trust is concerned.</p>
<ul>
<li>Do not give fake or wrong information to your customer.</li>
<li>Fulfill the commitment regarding your product and services.</li>
<li>Be very communicative to your user and explain as much as you can about your product and services. Every thing has to be very open and clear to the customer about your product and services.</li>
<li>Keep a feedback and complain section in your website so that you can come to know any unknown issue which might be annoying or disturbing to your trusted customer.</li>
</ul>
<p>If worked on all these steps may reduce the chances of getting your online image worsen any way. All these things will not guarantee you to keep your online business untouched from bad reputation, but surely can be of great benefit.</p>
<p><span style="font-size: 130%;">Actions to be taken after you hit with bad review:</span> (Tips to cope up with negative review.)<br />
Imagine one person is spitting on you, what would you do? What are you thinking … will hit him. You can escape yourself somehow. Now suppose 100 people are spiting on you, now? How will you escape? In this situation what can help you? An umbrella, over jacket, raincoat or you will run out of the place. NOTHING WILL WORK.</p>
<p>Then what the hell you should do? Here.. the best you can do is that shut the mouth of whoever spitting.</p>
<p>In simple words take complains very seriously and resolve every single issue and problem faced by your respected customer or user.</p>
<p>Revenge and frustration are inbuilt and most powerful characteristics of human, this will only lead to damage and disaster if challenged. Being very attentive and responsive with great humble and politeness will make your customer more comfortable and patient till you find the issues and resolve it.</p>
<p>After resolving the issues, ask the customer to remove/delete the negative review wherever it was published. If it is not possible to remove that ask the customer to reply or make compensatory comment over there. You should also follow-up the respective issues as a company representative in the same place addressing issues in professional way and emphasizing the resolving point.</p>
<p><span style="font-weight: bold;">Keep the bad review away from User’s eye:</span> The websites about consumer forums, review and complain sooner get authority and their pages rank quit good in SE SERPs. This is the reason discussing anything with domain name in such website achieve top ranking for the respective domain name. Any user searching about the website or company with the domain name may come across such negative reviews. This directly creates the negative image of your company in user’s mind.</p>
<p>Sometimes it is not possible to get rid off of it. In this case drags such comments and review out of the user’s eye. To deal such issue creates your company’s profile in some quality and authoritative websites and promote them. Twitter, Facebook, Linkedin etc. can be exploited for this purpose. Along with you can get listing in company profile, business profile and business directory websites; and with good amount of promotion and link building, all these profiles for your website may rank higher in SERPs and will push bad review little beyond the reach of user’s eye.</p>
<p>For successful business keep one thing in your mind that your <span style="font-weight: bold; font-style: italic;">real business is not your product and service your are providing, your real business is your customer.</span> There must hundreds other who all providing the same product and service. <span style="font-weight: bold; font-style: italic;">A relationship of trust between customer and provider is the real key of successful business.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.manojgoure.com/how-to-deal-with-bad-online-reputation-of-ecommerce-business/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3 Easy Tips to Speed Up Your Website&#8217;s Load Time</title>
		<link>http://www.manojgoure.com/3-easy-tips-to-speed-up-your-websites-load-time</link>
		<comments>http://www.manojgoure.com/3-easy-tips-to-speed-up-your-websites-load-time#comments</comments>
		<pubDate>Tue, 20 Apr 2010 16:22:00 +0000</pubDate>
		<dc:creator>ManojGoure</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[how to speed up load time]]></category>
		<category><![CDATA[site load time]]></category>
		<category><![CDATA[website speed]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=481</guid>
		<description><![CDATA[Page speed one of the hot topic these day in the SEO world. Matt Cutts has confirmed that page speed is also taken in to consideration for ranking a website. Off course its not very big ranking factor but yes it may affect. In my understanding, including &#8220;Page Speed&#8221; as a Search Engine Ranking factor<a href="http://www.manojgoure.com/3-easy-tips-to-speed-up-your-websites-load-time">&#160;&#160;[ Read More ]</a>]]></description>
			<content:encoded><![CDATA[<p><span class="fullpost"><a href="http://www.manojgoure.com/wp-content/uploads/2010/04/speedometer-browser1.jpg"><img class="alignleft size-full wp-image-539" style="margin: 10px;" title="speedometer browser" src="http://www.manojgoure.com/wp-content/uploads/2010/04/speedometer-browser1.jpg" alt="" width="234" height="234" /></a>Page speed one of the hot topic these day in the SEO world. Matt Cutts has confirmed that page speed is also taken in to consideration for ranking a website. Off course its not very big ranking factor but yes it may affect.</span></p>
<div>
<div><span class="fullpost">In my understanding, including &#8220;Page Speed&#8221; as a Search Engine Ranking factor Google want to give its user a fast browsing experience. Google&#8217;s search share is more than 70% of the total global search. So it means Google has the potential to make the internet fast by taking user to fast websites only.</span></div>
<div><span class="fullpost"><br />
</span></div>
<div><span class="fullpost">The websites those are fast may do well in Google SERPs and those are not, will try to be fast. This will lead to a better user experience. To achieve this milestone the initiatives taken by Google and Yahoo! are really appreciable. Google&#8217;s &#8220;Page Speed Tool&#8221; and Yahoo&#8217;s &#8220;Yslow!&#8221; give large information that will let you to make your website faster.</span></div>
<div><span class="fullpost"><br />
</span></div>
<div><span class="fullpost">I followed this information and I could speed up my website&#8217;s speed by 40%. Three most common thing that every website should follow to reduce the website loading time are-</span></div>
<div>
<ol>
<li><strong>Remove Unnecessary Code:</strong> Make the size of every file (html, css, js etc) as small as possible. And how can you do it? Simple, just remove the unnecessary code, blank spaces and comments from your page source code.</li>
<li><strong>Optimizing Code and Files:<span class="Apple-style-span" style="font-weight: normal;"> Put all the inline CSS and inline JavaScript in the external file. Remove unused CSS. Now combine and minify all the CSS, JavaScript and html files. This will greatly reduce the size of each file. Include CSS in the header and JavaScript in footer, will look like your page loading faster as all the content get loaded first then the JavaScript at last.</span></strong></li>
<li><strong>Sprite the Images: </strong>Spriting the image can save number of HTTP request. Take all your small image and icons in one image only and call the sections of the image required in the desired location by defining classes and IDs through CSS.</li>
</ol>
</div>
<div><span class="fullpost"><br />
</span></div>
<div><span class="fullpost">If you follow these three steps only you will see great improvement in your website&#8217;s loading time.</span></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.manojgoure.com/3-easy-tips-to-speed-up-your-websites-load-time/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What Causes Google Penalties?</title>
		<link>http://www.manojgoure.com/what-causes-google-penalties</link>
		<comments>http://www.manojgoure.com/what-causes-google-penalties#comments</comments>
		<pubDate>Fri, 06 Nov 2009 13:18:00 +0000</pubDate>
		<dc:creator>ManojGoure</dc:creator>
				<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=480</guid>
		<description><![CDATA[Follow up of this post: Middle of Google Ban and Google Penalty Still I am waiting to get some response or any clue from Google WMT to decide my further strategies. As it may take weeks, I kept on researching and studying Google Penalties. After this instance I got one thing very clearly that link<a href="http://www.manojgoure.com/what-causes-google-penalties">&#160;&#160;[ Read More ]</a>]]></description>
			<content:encoded><![CDATA[<p><span class="fullpost">Follow up of this post: </span><a href="http://www.manojgoure.com/2009/11/middle-of-google-ban-and-google-penalty.html">Middle of Google Ban and Google Penalty</a><span class="fullpost"><br />
</span><span class="fullpost"><span class="fullpost"><a href="http://www.manojgoure.com/wp-content/uploads/2009/11/Google-penalties.jpg"><img class="alignleft size-medium wp-image-541" style="margin: 10px;" title="Google penalties" src="http://www.manojgoure.com/wp-content/uploads/2009/11/Google-penalties-300x198.jpg" alt="" width="300" height="198" /></a>Still I am waiting to get some response or any clue from Google WMT to decide my further strategies. As it may take weeks, I kept on researching and studying Google Penalties. After this instance I got one thing very clearly that link building is not an easy task. If done correctly under the guidelines of Google, will take you on the top but if you tried breaking Google’s law, one day you will find yourself in HELL. So it’s better to keep your pace gradual (don’t do aggressive link building) and only work with white hat techniques. But if you are thinking you have been fooling Google for long and Google is not able to catch, <span>you are fooling yourself</span>. One day you will be caught and will be thrown on hot desert where you won’t find a single drop of water.</span></span></p>
<p>Anybody who is working as a Webmaster, SEO, SEM or Link Builder first read Google Webmaster Guidelines and then strategies you work. I have collected some very important points from Google webmaster Guidelines and also from some very genuine and senior white hat webmasters, those have to be kept in mind or should be avoided to stay away from Google Penalty.</p>
<div><span class="fullpost"><span class="fullpost"><span class="fullpost"><br />
</span></span></span></p>
<div style="text-align: center;"><span class="fullpost"><span style="font-size: 130%;"><span style="font-weight: bold;">Google Webmaster Guidelines</span></span></span></div>
<p><span class="fullpost"><br />
Google has clearly mentioned what has to be followed and what not while optimizing your website or promoting your website. The more you understand these, the less spam you do. Only one line says all about Google Quality Guidelines</span></p>
<div>
<blockquote><p>&#8220;Make pages primarily for users, not for search engines.&#8221;</p></blockquote>
<div><span class="fullpost"><span class="fullpost"><span class="fullpost">Find Google Webmaster Guidelines <a href="http://www.google.com/support/webmasters/bin/answer.py?hl=en&amp;answer=35769">here</a>:</span></span></span>All the Google Guidelines are in a very general way. To understand it in a better way I also followed some discussion and suggestions on different forums by white hat SEOs and Webmasters. The out come that I have got is described below.</p>
<div style="text-align: center;"><span class="fullpost"><span style="font-size: 130%;"><span style="font-weight: bold;">Other Webmaster Guidelines</span></span></span></div>
<ol>
<li>Make sure that your website is not linked to any spam websites, gambling &amp; adult websites, banned websites and unrelated websites.</li>
<li>If IP whether has been blacklisted.</li>
<li>Don’t over stuff your keywords in content and Meta tags. Use only wherever it needs.</li>
<li>Don’t give excessive interlinks to the pages present in the same website. Extensive interlinking of all your websites, particularly if they are on the same C Class IP address will affect all your websites.</li>
<li>Avoid hidden text or links</li>
<li>You should not participate in any link farm or Add Nofollw.</li>
<li>Use different keywords for anchor texts and don’t use the same for all back links.</li>
<li>Avoid Cloaking</li>
<li>Avoid Duplicate Content</li>
<li>Avoid Hidden Text</li>
<li>Don’t do Keyword Spam and Keyword Stuffing</li>
<li>Do not Buying Links</li>
<li>Avoid Link to bad neighborhood</li>
<li>Avoid Hidden Links</li>
<li>Don’t do Sneaky Redirect</li>
<li>Don’t send automated query to Google associated with your domain.</li>
</ol>
<div><span class="fullpost"><span style="font-weight: bold;">The final precipitate I could draw from reading all the Google Webmaster Guidelines and Other Webmaster Guidelines (Suggestions): </span><br />
Common reasons behind Penalty of your website Or Google Ban:</span></div>
<div>
<ul>
<li>Hidden text</li>
<li>Hidden links</li>
<li>Keyword stuffing</li>
<li>Link Buying</li>
<li>Link Exchange</li>
<li>Linking to bad neighborhood</li>
<li>Sneaky redirects</li>
<li>Cloaking</li>
<li>Doorway pages</li>
</ul>
<p>&nbsp;</p>
</div>
</div>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.manojgoure.com/what-causes-google-penalties/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Middle of Google Ban and Google Penalty</title>
		<link>http://www.manojgoure.com/middle-of-google-ban-and-google-penalty</link>
		<comments>http://www.manojgoure.com/middle-of-google-ban-and-google-penalty#comments</comments>
		<pubDate>Tue, 03 Nov 2009 13:35:00 +0000</pubDate>
		<dc:creator>ManojGoure</dc:creator>
				<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=479</guid>
		<description><![CDATA[I don’t think any one can be an expert SEO without ever been experienced any Google Penalty. I have read many articles, blog posts and forums about Google banned a website. The most common line I found there is that I woke up in the morning and found that Google slapped me badly (My website<a href="http://www.manojgoure.com/middle-of-google-ban-and-google-penalty">&#160;&#160;[ Read More ]</a>]]></description>
			<content:encoded><![CDATA[<div style="text-align: justify;"><a href="http://www.manojgoure.com/wp-content/uploads/2009/11/google-banned.jpg"><img class="alignleft size-full wp-image-546" title="google-banned" src="http://www.manojgoure.com/wp-content/uploads/2009/11/google-banned.jpg" alt="" width="300" height="187" /></a>I don’t think any one can be an expert SEO without ever been experienced any Google Penalty. I have read many articles, blog posts and forums about Google banned a website. The most common line I found there is that I woke up in the morning and found that Google slapped me badly (My website is no where in Google). Oh my God I have lost all my rankings. I always used to think why every people found they have banned in the morning. Why not some people find it while working checked the ranking and on the very next moment he is banned. Whatever happened with the others, I have never thought I will also come across with the same condition. But this is the real truth of Google world, you have to face it.</div>
<p>29 October 2009 when I checked ranking of my websites, I could not even believed in my eyes. I tried all the variations of keywords but my website was nowhere. I tried domain name too but still showing nothing. I checked few more websites I was working on and worst I found. All my major websites were out of Google Index. Finally used Google Site operator to find my websites that I was restricting myself to does that as it may confirm my websites gone completely. And that too didn’t return anything.</p>
<p><span style="font-weight: bold;">Was it Google Penalty only or complete Ban?</span></p>
<p>First of all what is Google Penalty I believe, if your traffic down unnaturally or your keywords lost ranking in a drastic manner not because of any issues like mistakenly disallow your important pages in robots.txt or your ISP having any technical issues which makes your website unavailable to Search Engine for long time. So if I try to find out is it my website penalized on this definition then YES it seems that my website is penalized. But I had to confirm is it only penalty or a complete ban in Google. I have done some checking and testing that put me nowhere.</p>
<p><span style="font-weight: bold; font-style: italic;">What Checks I Have Done:</span></p>
<ol style="text-align: justify;">
<li>Checked PR: <span style="font-weight: bold; color: #009900;">No change found.</span></li>
<li>Checked website with Site operator: <span style="font-weight: bold; color: #ff0000;">Google showed no results.</span></li>
<li>Checked website with link operator: <span style="font-weight: bold; color: #009900;">Google showed results</span>.</li>
<li>Checked GA account: <span style="font-weight: bold; color: #009900;">Google is giving traffic</span> (reduced traffic by 90%).</li>
<li>Checked Webmaster Tool: <span style="font-weight: bold; color: #009900;">Says all the pages are included in Google Index</span>. (Google webmaster might not have been updated).</li>
</ol>
<div style="text-align: justify;">If all these 5 checks would have given me negative results I would have simply concluded that it’s Google Ban. As only site operator is not showing results and website is positive on other criterias (other checks) tells me that website might be having index exclusion penalty not the Google ban.</div>
<p>But when I think deeper on rest of the other checks I found they may be deceptive. It’s true that PR check is not a reliable way to determine whether a website is banned or not? Google Analytics showing visit through Google, this may be because of results might have not been updated in all the Google datacenters. And the Google Webmaster Tool might have not been completely updated and showing old ranking and statistics.</p>
<p>The only link operator check I could not find any reason to be deceptive. So my website is completely banned or penalized is hard to say at this moment. I will be able conclude is it really ban or penalty as soon as I find some updated statistics in Google Analytics and Google Webmaster Tools. But till then I will have to wait and watch at Google’s mercy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.manojgoure.com/middle-of-google-ban-and-google-penalty/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Brief Look Up at HTTP Response Status Codes</title>
		<link>http://www.manojgoure.com/a-brief-look-up-at-http-response-status-codes</link>
		<comments>http://www.manojgoure.com/a-brief-look-up-at-http-response-status-codes#comments</comments>
		<pubDate>Thu, 24 Sep 2009 13:28:00 +0000</pubDate>
		<dc:creator>ManojGoure</dc:creator>
				<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=478</guid>
		<description><![CDATA[For last few days I was studying the different types of HTTP (HyperText Transfer Protocol) response status code. I am not very techy but as a SEO by profession I was aware with few of them like 200, 301 and 302 but there I found quite more than that. And I have to have the<a href="http://www.manojgoure.com/a-brief-look-up-at-http-response-status-codes">&#160;&#160;[ Read More ]</a>]]></description>
			<content:encoded><![CDATA[<p>For last few days I was studying the different types of HTTP (<span style="font-weight: bold;">H</span>yper<span style="font-weight: bold;">T</span>ext <span style="font-weight: bold;">T</span>ransfer <span style="font-weight: bold;">P</span>rotocol) response status code. I am not very techy but as a SEO by profession I was aware with few of them like 200, 301 and 302 but there I found quite more than that. And I have to have the the brief knowledge of these codes so I decided to note down in my online book (My BLog).</p>
<p><span style="font-size: 180%;">1xx Informational</span>- Request received, continuing process.</p>
<ul>
<li>100 Continue</li>
<li>101 Switching Protocols</li>
<li>102 Processing</li>
</ul>
<p><span style="font-size: 180%;">2xx Success</span>- The action was successfully received, understood, and accepted</p>
<ul>
<li>200 OK</li>
<li>201 Created</li>
<li>202 Accepted</li>
<li>203 Non-Authoritative Information (since HTTP/1.1)</li>
<li>204 No Content</li>
<li>205 Reset Content</li>
<li>206 Partial Content</li>
<li>207 Multi-Status (WebDAV)</li>
</ul>
<p><span style="font-size: 180%;">3xx Redirection</span>- The client must take additional action to complete the request.</p>
<ul>
<li>300 Multiple Choices</li>
<li>301 Moved Permanently</li>
<li>302 Found</li>
<li>303 See Other</li>
<li>304 Not Modified</li>
<li>305 Use Proxy (since HTTP/1.1)</li>
<li>306 Switch Proxy</li>
<li>307 Temporary Redirect (since HTTP/1.1)</li>
</ul>
<p><span style="font-size: 180%;">4xx Client Error</span>- The request contains bad syntax or cannot be fulfilled</p>
<ul>
<li>400 Bad Request</li>
<li>401 Unauthorized</li>
<li>402 Payment Required</li>
<li>403 Forbidden</li>
<li>404 Not Found</li>
<li>405 Method Not Allowed</li>
<li>406 Not Acceptable</li>
<li>407 Proxy Authentication Required</li>
<li>408 Request Timeout</li>
<li>409 Conflict</li>
<li>410 Gone</li>
<li>411 Length Required</li>
<li>412 Precondition Failed</li>
<li>413 Request Entity Too Large</li>
<li>414 Request-URI Too Long</li>
<li>415 Unsupported Media Type</li>
<li>416 Requested Range Not Satisfiable</li>
<li>417 Expectation Failed</li>
<li>418 I&#8217;m a teapot</li>
<li>422 Unprocessable Entity (WebDAV)</li>
<li>423 Locked (WebDAV)</li>
<li>424 Failed Dependency (WebDAV)</li>
<li>425 Unordered Collection</li>
<li>426 Upgrade Required</li>
<li>449 Retry With</li>
</ul>
<p><span style="font-size: 180%;">5xx Server Error</span>- The server failed to fulfill an apparently valid request</p>
<ul>
<li>500 Internal Server Error</li>
<li>501 Not Implemented</li>
<li>502 Bad Gateway</li>
<li>503 Service Unavailable</li>
<li>504 Gateway Timeout</li>
<li>505 HTTP Version Not Supported</li>
<li>506 Variant Also Negotiates</li>
<li>507 Insufficient Storage (WebDAV)</li>
<li>509 Bandwidth Limit Exceeded (Apache bw/limited extension)</li>
<li>510 Not Extended</li>
</ul>
<p><span style="font-size: 130%;">Brief Explaination of all the HTTP codes</span></p>
<div class="nobr">
<p><span style="font-weight: bold; font-size: 180%;"><br />
</span></p>
<p><span style="font-weight: bold; font-size: 180%;"><br />
</span></p>
<table border="1">
<tbody>
<tr>
<td style="font-weight: bold; text-align: center;" colspan="2"><span style="font-size: 180%;">1xx Informational</span></td>
</tr>
<tr>
<td style="font-weight: bold;">100 &#8211; Continue</td>
<td>Tells the client that the first part of the request has been received and that it should continue with the rest of the request or ignore if the request has been fulfilled.</td>
</tr>
<tr>
<td style="font-weight: bold;">101 &#8211; Switching Protocols</td>
<td>Tells the client that the server will switch protocols to that specified in the Upgrade message header field during the current connection.</td>
</tr>
<tr>
<td style="font-weight: bold;">102 Processing</td>
<td>The server has received and is processing the request, but no response is available yet.</td>
</tr>
<tr>
<td style="font-weight: bold; text-align: center;" colspan="2"><span style="font-size: 180%;">2xx Success</span></td>
</tr>
<tr>
<td style="font-weight: bold;">200 &#8211; OK</td>
<td>The request sent by the client was successful.</td>
</tr>
<tr>
<td style="font-weight: bold;">201 &#8211; Created</td>
<td>The request was successful and a new resource was created.</td>
</tr>
<tr>
<td>2<span style="font-weight: bold;">02 &#8211; Accepted </span></td>
<td>The request has been accepted for processing, but has not yet been processed.</td>
</tr>
<tr>
<td style="font-weight: bold;">203 &#8211; Non-Authoritative Information</td>
<td>The returned meta information in the entity-header is not the definitive set as available from the origin server.</td>
</tr>
<tr>
<td style="font-weight: bold;">204 &#8211; No Content</td>
<td>The request was successful but does not require the return of an entity-body.</td>
</tr>
<tr>
<td style="font-weight: bold;">205 &#8211; Reset Content</td>
<td>The request was successful but the User-Agent should reset the document view that caused the request.</td>
</tr>
<tr>
<td style="font-weight: bold;">206 &#8211; Partial Content</td>
<td>The partial GET request has been successful.</td>
</tr>
<tr>
<td style="font-weight: bold;">207 Multi-Status (WebDAV)</td>
<td>The message body that follows is an XML message and can contain a number of separate response codes, depending on how many sub-requests were made.</td>
</tr>
<tr>
<td style="font-weight: bold; text-align: center;" colspan="2"><span style="font-size: 180%;">3xx Redirection</span></td>
</tr>
<tr>
<td style="font-weight: bold;">300 &#8211; Multiple Choices</td>
<td>The requested resource has multiple possibilities, each with different locations.</td>
</tr>
<tr>
<td style="font-weight: bold;">301 &#8211; Moved Permanently</td>
<td>The resource has permanently moved to a different URI.</td>
</tr>
<tr>
<td style="font-weight: bold;">302 &#8211; Found</td>
<td>The requested resource has been found under a different URI but the client should continue to use the original URI.</td>
</tr>
<tr>
<td><span style="font-weight: bold;">303 &#8211; See Other</span></td>
<td>The requested response is at a different URI and should be accessed using a GET command at the given URI.</td>
</tr>
<tr>
<td style="font-weight: bold;">304 &#8211; Not Modified</td>
<td>The resource has not been modified since the last request.</td>
</tr>
<tr>
<td style="font-weight: bold;">305 &#8211; Use Proxy</td>
<td>The requested resource can only be accessed through the proxy specified in the location field.</td>
</tr>
<tr>
<td style="font-weight: bold;">306 &#8211; No Longer Used</td>
<td>Reserved for future use.</td>
</tr>
<tr>
<td style="font-weight: bold;">307 &#8211; Temporary Redirect</td>
<td>The resource has temporarily been moved to a different URI. The client should use the original URI to access the resource in future as the URI may change.</td>
</tr>
<tr>
<td style="font-weight: bold; text-align: center;" colspan="2"><span style="font-size: 180%;">4xx Client Error</span></td>
</tr>
<tr>
<td style="font-weight: bold;">400 &#8211; Bad Request</td>
<td>The syntax of the request was not understood by the server.</td>
</tr>
<tr>
<td style="font-weight: bold;">401 &#8211; Not Authorised</td>
<td>The request needs user authentication</td>
</tr>
<tr>
<td style="font-weight: bold;">402 &#8211; Payment Required</td>
<td>Reserved for future use.</td>
</tr>
<tr>
<td style="font-weight: bold;">403 &#8211; Forbidden</td>
<td>The server has refused to fulfill the request.</td>
</tr>
<tr>
<td style="font-weight: bold;">404 &#8211; Not Found</td>
<td>The document/file requested by the client was not found.</td>
</tr>
<tr>
<td style="font-weight: bold;">405 &#8211; Method Not Allowed</td>
<td>The method specified in the Request-Line is not allowed for the specified resource.</td>
</tr>
<tr>
<td style="font-weight: bold;">406 &#8211; Not Acceptable</td>
<td>The resource requested is only capable of generating response entities which have content characteristics not specified in the accept headers sent in the request.</td>
</tr>
<tr>
<td style="font-weight: bold;">407 &#8211; Proxy Authentication Required</td>
<td>The request first requires authentication with the proxy.</td>
</tr>
<tr>
<td style="font-weight: bold;">408 &#8211; Request Timeout</td>
<td>The client failed to sent a request in the time allowed by the server.</td>
</tr>
<tr>
<td style="font-weight: bold;">409 &#8211; Conflict</td>
<td>The request was unsuccessful due to a conflict in the state of the resource.</td>
</tr>
<tr>
<td style="font-weight: bold;">410 &#8211; Gone</td>
<td>The resource requested is no longer available and no forwarding address is available.</td>
</tr>
<tr>
<td style="font-weight: bold;">411 &#8211; Length Required</td>
<td>The server will not accept the request without a valid Content-Length header field.</td>
</tr>
<tr>
<td style="font-weight: bold;">412 &#8211; Precondition Failed</td>
<td>A precondition specified in one or more Request-Header fields returned false.</td>
</tr>
<tr>
<td style="font-weight: bold;">413 &#8211; Request Entity Too Large</td>
<td>The request was unsuccessful because the request entity is larger than the server will allow.</td>
</tr>
<tr>
<td style="font-weight: bold;">414 &#8211; Request URI Too Long</td>
<td>The request was unsuccessful because the URI specified is longer than the server is willing to process.</td>
</tr>
<tr>
<td style="font-weight: bold;">415 &#8211; Unsupported Media Type</td>
<td>The request was unsuccessful because the entity of the request is in a format not supported by the requested resource for the method requested.</td>
</tr>
<tr>
<td style="font-weight: bold;">416 &#8211; Requested Range Not Satisfiable</td>
<td>The request included a Range request-header field, and not any of the range-specifier values in this field overlap the current extent of the selected resource, and also the request did not include an If-Range request-header field.</td>
</tr>
<tr>
<td style="font-weight: bold;">417 &#8211; Expectation Failed</td>
<td>The expectation given in the Expect request-header could not be fulfilled by the server.</td>
</tr>
<tr>
<td style="font-weight: bold; text-align: center;" colspan="2"><span style="font-size: 180%;">5xx Server Error</span></td>
</tr>
<tr>
<td style="font-weight: bold;">500 &#8211; Internal Server Error</td>
<td>The request was unsuccessful due to an unexpected condition encountered by the server.</td>
</tr>
<tr>
<td style="font-weight: bold;">501 &#8211; Not Implemented</td>
<td>The request was unsuccessful because the server can not support the functionality needed to fulfill the request.</td>
</tr>
<tr>
<td style="font-weight: bold;">502 &#8211; Bad Gateway</td>
<td>The server received an invalid response from the upstream server while trying to fulfill the request.</td>
</tr>
<tr>
<td style="font-weight: bold;">503 &#8211; Service Unavailable</td>
<td>The request was unsuccessful to the server being down or overloaded.</td>
</tr>
<tr>
<td style="font-weight: bold;">504 &#8211; Gateway Timeout</td>
<td>The upstream server failed to send a request in the time allowed by the server.</td>
</tr>
<tr>
<td style="font-weight: bold;">505 &#8211; HTTP Version Not Supported</td>
<td>The server does not support or is not allowing the HTTP protocol version specified in the request.</td>
</tr>
<tr>
<td style="font-weight: bold;">506 Variant Also Negotiates</td>
<td>Transparent content negotiation for the request, results in a circular reference.</td>
</tr>
<tr>
<td style="font-weight: bold;">509 Bandwidth Limit Exceeded (Apache bw/limited extension)</td>
<td>This status code, while used by many servers, is not specified in any RFCs.</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.manojgoure.com/a-brief-look-up-at-http-response-status-codes/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Internet Stat</title>
		<link>http://www.manojgoure.com/google-internet-stat</link>
		<comments>http://www.manojgoure.com/google-internet-stat#comments</comments>
		<pubDate>Fri, 11 Sep 2009 06:08:00 +0000</pubDate>
		<dc:creator>ManojGoure</dc:creator>
				<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=477</guid>
		<description><![CDATA[Google Internet Stat is a resource of latest facts. It seems to be one more good thing from Google. The facts and information are based on some topics and categories. Google kept it limited to five categories Macro Economic Trends, Technology, Consumer Trends, Media Consumption and Media Landscape. These categories are further categories in subcategories.<a href="http://www.manojgoure.com/google-internet-stat">&#160;&#160;[ Read More ]</a>]]></description>
			<content:encoded><![CDATA[<p>Google Internet Stat is a resource of latest facts. It seems to be one more good thing from Google. The facts and information are based on some topics and categories. Google kept it limited to five categories <span style="font-weight: bold;">Macro Economic Trends</span>, <span style="font-weight: bold;">Technology</span>, <span style="font-weight: bold;">Consumer Trends</span>, <span style="font-weight: bold;">Media Consumption </span>and<span style="font-weight: bold;"> Media Landscape</span>. These categories are further categories in subcategories.</p>
<p>According to Google:</p>
<blockquote><p>This Google resource brings together the latest industry facts and insights. These have been collected from a number of third party sources covering a range of topics from macroscopic economic and media trends to how consumer behaviour and technology are changing over time.</p></blockquote>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_yhOJ808llSQ/SqnrSDDBY1I/AAAAAAAAAVA/aGMEPBTupA0/s1600-h/google-stats.jpg"><img id="BLOGGER_PHOTO_ID_5380089925158921042" style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 482px; height: 498px;" src="http://1.bp.blogspot.com/_yhOJ808llSQ/SqnrSDDBY1I/AAAAAAAAAVA/aGMEPBTupA0/s400/google-stats.jpg" alt="" border="0" /></a><br />
Random Statistics Search helps you to get the facts about your desired topics and interests. But presently you will not see enough facts and data as it is as evolving stage. But probabilities are there that <a href="http://www.google.co.uk/intl/en/landing/internetstats/">Google Internet Stat</a> can be one of the useful things for user.</p>
<p>It has very simple design and structure. Till yet there are limited facts and stats. But this resource can grow to larger database of facts and stat as there is facility to <a href="https://services.google.com/fb/forms/internetstats/">submit a stat</a>.</p>
<p>The wondering thing is here Google has hosted it in Google UK domain. There might be some official reasons behind this.</p>
<p>Current data sources have been mentioned in the bottom. With the <span style="font-weight: bold;">Note:</span></p>
<blockquote><p>Any links to third party websites are provided as a convenience to our users only, and Google does not make any representation, affiliation or endorsement of these websites.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.manojgoure.com/google-internet-stat/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Title and Meta Tag Optimization</title>
		<link>http://www.manojgoure.com/title-and-meta-tag-optimization</link>
		<comments>http://www.manojgoure.com/title-and-meta-tag-optimization#comments</comments>
		<pubDate>Wed, 02 Sep 2009 12:33:00 +0000</pubDate>
		<dc:creator>ManojGoure</dc:creator>
				<category><![CDATA[Search Engine Optimization]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=476</guid>
		<description><![CDATA[One of the most simplest and important thing while optimizing a website is the optimizing “Title and Meta Tag”. It is simplest because you have to keep few points in your mind before optimization (illustrated further) and important because it is one of the factor considered by Search Engine for ranking purpose. There been lot<a href="http://www.manojgoure.com/title-and-meta-tag-optimization">&#160;&#160;[ Read More ]</a>]]></description>
			<content:encoded><![CDATA[<div style="text-align: justify;"><a href="http://www.manojgoure.com/wp-content/uploads/2009/09/title-tag-opimization.jpg"><img class="alignleft size-full wp-image-556" title="title tag opimization" src="http://www.manojgoure.com/wp-content/uploads/2009/09/title-tag-opimization.jpg" alt="" width="187" height="204" /></a>One of the most simplest and important thing while optimizing a website is the optimizing “Title and Meta Tag”. It is simplest because you have to keep few points in your mind before optimization (illustrated further) and important because it is one of the factor considered by Search Engine for ranking purpose. There been lot of speculations and controversies on Meta tag. It was believed that it was most important factor for top ranking in the early days of Search Engine. But Because of too much spam and manipulation by SEO and Webmasters, many new factors have come into play and gradually it’s important reduced. But still it has some value to contribute in the ranking algorithm. So definitely you would not want to lose this value. Let’s discuss Title Tag first.</div>
<p><span style="font-weight: bold;">TITLE TAG</span></p>
<div style="text-align: justify;">Title tag is the most important part of your optimization. It is second and most important place that gives an idea to Search Engine what about the page is. Off course first is the URL of the page. So try getting the best out of your title of the page. Generally what I follow while optimizing Title Tag have described below in dos and don’ts.</div>
<p><span style="font-weight: bold;">Dos while optimizing Title:</span></p>
<ul>
<li>Short and unique title (I prefer to keep its length up to 80 char. I think making it too long will dilute the effect of title.)</li>
<li>Making it keyword rich.</li>
<li>Important keyword and key phrases at the beginning.</li>
<li>Proper and shorter combination of multiple keywords and key phrases. (eg Buy furniture | Cheap Furniture | Furniture Online = Buy Cheap Furniture Online)</li>
<li>Title should represent the content of the page.</li>
<li>Do not waist your title character limit by having too much spaces and special characters in the title.</li>
</ul>
<p><span style="font-weight: bold;">Don’ts while optimizing Title:</span></p>
<ul>
<li>Do not over stuff keywords in the title. (Having any keyword two times in a Title are more than enough).</li>
<li>Do not have irrelevant Title with respect to content of the page.</li>
</ul>
<p><span style="font-weight: bold;">META TAG</span></p>
<div style="text-align: justify;">General attributes which comes under Meta tags are Name and Content. Attribute name have defined values like description, keyword, robots, copyright and few more. Some of the examples of Meta tag are given below.</div>
<p>&lt;META NAME=&#8221;Description&#8221; CONTENT=&#8221;Description Text&#8221;&gt;<br />
&lt;META NAME=&#8221;Keywords&#8221; CONTENT=&#8221;Set of keywords and key phrases&#8221;&gt;<br />
&lt;META NAME=&#8221;Robots&#8221; CONTENT=&#8221;nofollow or follow&#8221;&gt;<br />
&lt;META NAME=&#8221;Robots&#8221; CONTENT=&#8221;index or noindex&#8221;&gt;<br />
&lt;META NAME=&#8221;Robots&#8221; CONTENT=&#8221;archive or noarchive&#8221;&gt;<br />
&lt;META NAME=&#8221;Copyright&#8221; CONTENT=&#8221;All Right Reserved 2009&#8243;&gt;<br />
<span style="font-style: italic;"><span style="font-weight: bold;">NOTE</span>: Do not use both NOFOLLOW and FOLLOW. </span></p>
<div style="text-align: justify;">It is still fully not cleared Meta description having any involvement in the ranking factors of Google and MSN. But it is believed that Yahoo! and Bing consider it for ranking in the SERPs. It is observed that the search snippet of Google and MSN show Meta Description, so it is hard to say that it is completely neglected by Google. Thus best practice would be taking the every bit of advantage of Meta Tag.</div>
<p><span style="font-weight: bold;">Writing Description Tips:</span></p>
<ul>
<li>Description should be unique with respect to all the pages in the website</li>
<li>Keep it relevant to the content of the page.</li>
<li>Better if follow character limit up to 200 (15-25 words).</li>
<li>Try to add some important keywords and key phrases in the description.</li>
<li>If possible repeat important keywords 2-3 times.</li>
</ul>
<p><span style="font-weight: bold;">Writing Keywords Tips:</span></p>
<ul>
<li>Only add keywords those have been used in the content of the page.</li>
<li>Keyword length should be 150 Char. (best used 6-8 words only.)</li>
<li>Do not repeat same keyword as it is without any key phrase or alterations.</li>
<li>Some Keywords may get repeated while using different key phrases but try making not to use more than 2-3 times.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.manojgoure.com/title-and-meta-tag-optimization/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Googlers used goats to avoid air polution</title>
		<link>http://www.manojgoure.com/googlers-used-goats-to-avoid-air-polution</link>
		<comments>http://www.manojgoure.com/googlers-used-goats-to-avoid-air-polution#comments</comments>
		<pubDate>Sat, 02 May 2009 06:48:00 +0000</pubDate>
		<dc:creator>ManojGoure</dc:creator>
				<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=475</guid>
		<description><![CDATA[At Mountain View Headquarter (California) of Google, they used to mow grass and weeds to avoid fire hazards. But putting Big mowers (that work with gasoline) pollutes the air badly also create noisy disturbance. To avoid such things Googlers rented 200 goats and spend a week to get all the work done. Whacky and strange<a href="http://www.manojgoure.com/googlers-used-goats-to-avoid-air-polution">&#160;&#160;[ Read More ]</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.manojgoure.com/wp-content/uploads/2009/05/google-goat.png"><img class="aligncenter size-medium wp-image-559" title="google-goat" src="http://www.manojgoure.com/wp-content/uploads/2009/05/google-goat-300x193.png" alt="" width="300" height="193" /></a><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_yhOJ808llSQ/Sfvt1R1GvjI/AAAAAAAAAUc/gij8DKEyyv4/s1600-h/Goats.JPG"><br />
</a><br />
At Mountain View Headquarter (California) of Google, they used to mow grass and weeds to avoid fire hazards. But putting Big mowers (that work with gasoline) pollutes the air badly also create noisy disturbance. To avoid such things Googlers rented 200 goats and spend a week to get all the work done.</p>
<p>Whacky and strange idea but proved to be ecological friendly. Need to be really appreciated.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.manojgoure.com/googlers-used-goats-to-avoid-air-polution/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

