<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://vishnuprasad.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Vishnu Prasad blog</title><link>http://vishnuprasad.com/default.aspx</link><description>This space gives you a sneak peak into whats going inside and outside my head</description><dc:language>en</dc:language><generator>CommunityServer 2.1 (Build: 60804.900)</generator><item><title>PIVOT in SQL Server 2005</title><link>http://vishnuprasad.com/archive/2009/04/13/PIVOT-in-SQL-Server-2005.aspx</link><pubDate>Mon, 13 Apr 2009 00:26:00 GMT</pubDate><guid isPermaLink="false">bf6bce95-1e81-4ef7-965f-45bc55c1466c:56211</guid><dc:creator>Vishnu</dc:creator><slash:comments>0</slash:comments><comments>http://vishnuprasad.com/comments/56211.aspx</comments><wfw:commentRss>http://vishnuprasad.com/commentrss.aspx?PostID=56211</wfw:commentRss><wfw:comment>http://vishnuprasad.com/rsscomments.aspx?PostID=56211</wfw:comment><description>&lt;p&gt;We can use PIVOT relational operator to change a table-valued expression into another table. &lt;strong&gt;PIVOT &lt;/strong&gt;rotates a table-valued expression by turning the unique values from one column in the expression into multiple columns in the output, and performs aggregations where they are required on any remaining column values that are wanted in the final output. Source &lt;a href="http://msdn.microsoft.com/en-us/library/ms177410.aspx" target="_blank"&gt;msdn&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Here is an example I was working on.&lt;/p&gt;&lt;p&gt;I have a table called Student and with 3 columns Subject, Grade and Student_Id. I am looking for output which is aggregated along the Subject. Something shown below.&lt;/p&gt;&lt;p&gt;Subject&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; A&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; B&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; C&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; D &lt;br /&gt;----------------------------------- &lt;br /&gt;MATH&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 20&amp;nbsp;&amp;nbsp;&amp;nbsp; 10&amp;nbsp;&amp;nbsp;&amp;nbsp; 30&amp;nbsp;&amp;nbsp;&amp;nbsp; 50 &lt;br /&gt;PHY&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 20&amp;nbsp;&amp;nbsp;&amp;nbsp; 10&amp;nbsp;&amp;nbsp;&amp;nbsp; 50&amp;nbsp;&amp;nbsp;&amp;nbsp; 30 &lt;br /&gt;CHEM&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 30&amp;nbsp;&amp;nbsp;&amp;nbsp; 20&amp;nbsp;&amp;nbsp;&amp;nbsp; 50&amp;nbsp;&amp;nbsp;&amp;nbsp; 10 &lt;br /&gt;BIO&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 30&amp;nbsp;&amp;nbsp;&amp;nbsp; 10&amp;nbsp;&amp;nbsp;&amp;nbsp; 20&amp;nbsp;&amp;nbsp;&amp;nbsp; 50&lt;/p&gt;&lt;p&gt;Its not easy to aggregate along the subject using the group by statement and the case statement. (Atleast I dont know of any easy way!!!) But using the Pivot operator makes this very simple.&lt;/p&gt;&lt;p&gt;&lt;img alt="SQL Suery" height="42" src="http://vishnuprasad.com/mypics/SQLQuery.png" style="width:350px;height:42px;" title="SQL Suery" width="350" /&gt;&lt;/p&gt;&lt;p&gt;Running the above query displays the information as shown below. &lt;/p&gt;&lt;p&gt;&lt;img alt="SQL Results" height="131" src="http://vishnuprasad.com/mypics/SQLResults.png" style="width:188px;height:131px;" title="SQL Results" width="188" /&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;strong&gt;UNPIVOT &lt;/strong&gt;performs almost the reverse operation of PIVOT, by rotating columns into rows. &lt;/p&gt;
&lt;div class = "shareblock"&gt;&lt;strong&gt;Share this post:&lt;/strong&gt; &lt;a href = "mailto:?body=Thought you might like this: http://vishnuprasad.com/archive/2009/04/13/PIVOT-in-SQL-Server-2005.aspx&amp;amp;;subject=PIVOT+in+SQL+Server+2005" target="_blank" title = "Post http://vishnuprasad.com/archive/2009/04/13/PIVOT-in-SQL-Server-2005.aspx"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://vishnuprasad.com/archive/2009/04/13/PIVOT-in-SQL-Server-2005.aspx&amp;amp;;title=PIVOT+in+SQL+Server+2005" target="_blank" title = "Post http://vishnuprasad.com/archive/2009/04/13/PIVOT-in-SQL-Server-2005.aspx"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://vishnuprasad.com/archive/2009/04/13/PIVOT-in-SQL-Server-2005.aspx&amp;amp;;phase=2" target="_blank" title = "Post http://vishnuprasad.com/archive/2009/04/13/PIVOT-in-SQL-Server-2005.aspx"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://vishnuprasad.com/archive/2009/04/13/PIVOT-in-SQL-Server-2005.aspx&amp;amp;title=PIVOT+in+SQL+Server+2005" target="_blank" title = "Post http://vishnuprasad.com/archive/2009/04/13/PIVOT-in-SQL-Server-2005.aspx"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://vishnuprasad.com/archive/2009/04/13/PIVOT-in-SQL-Server-2005.aspx&amp;amp;;title=PIVOT+in+SQL+Server+2005" target="_blank" title = "Post http://vishnuprasad.com/archive/2009/04/13/PIVOT-in-SQL-Server-2005.aspx"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;;mkt=en-us&amp;amp;;url=http://vishnuprasad.com/archive/2009/04/13/PIVOT-in-SQL-Server-2005.aspx&amp;amp;;title=PIVOT+in+SQL+Server+2005&amp;amp;;top=1" target="_blank" title = "Post http://vishnuprasad.com/archive/2009/04/13/PIVOT-in-SQL-Server-2005.aspx"&gt;live it!&lt;/a&gt;&lt;/div&gt;&lt;img src="http://vishnuprasad.com/aggbug.aspx?PostID=56211" width="1" height="1"&gt;</description><category domain="http://vishnuprasad.com/archive/tags/SQL+Server/default.aspx">SQL Server</category><category domain="http://vishnuprasad.com/archive/tags/Pivot/default.aspx">Pivot</category></item><item><title>Gemplus Card Reader for Windows 7</title><link>http://vishnuprasad.com/archive/2009/03/07/Gemplus-Card-Reader-for-Windows-7.aspx</link><pubDate>Fri, 06 Mar 2009 20:42:27 GMT</pubDate><guid isPermaLink="false">bf6bce95-1e81-4ef7-965f-45bc55c1466c:55823</guid><dc:creator>Vishnu</dc:creator><slash:comments>1</slash:comments><comments>http://vishnuprasad.com/comments/55823.aspx</comments><wfw:commentRss>http://vishnuprasad.com/commentrss.aspx?PostID=55823</wfw:commentRss><wfw:comment>http://vishnuprasad.com/rsscomments.aspx?PostID=55823</wfw:comment><description>&lt;p&gt;If you have a Gemplus (GemPC433 SL7) card reader then it works in Windows 7 OS. Gemplus card reader, GemPC433 SL7, is said to have installation issues in Windows 7 and is not expected to work as desired. &lt;/p&gt;  &lt;p&gt;Contrary to reports, Gemplus (GemPC433 SL7) card reader works in Windows 7 OS. The installation in Windows 7 is same as in Vista. I tried it on Windows 7 (build 7000) 32-bit and it works. &lt;/p&gt;  &lt;p&gt;Refer my previous post &lt;a href="http://vishnuprasad.com/archive/2009/02/12/Installing-Gemplus-PC433-SL7-Smart-Card-reader.aspx" target="_blank"&gt;here&lt;/a&gt; for installing on Vista 32-bit.&lt;/p&gt;  &lt;p&gt;/Vishnu&lt;/p&gt;
&lt;div class = "shareblock"&gt;&lt;strong&gt;Share this post:&lt;/strong&gt; &lt;a href = "mailto:?body=Thought you might like this: http://vishnuprasad.com/archive/2009/03/07/Gemplus-Card-Reader-for-Windows-7.aspx&amp;amp;;subject=Gemplus+Card+Reader+for+Windows+7" target="_blank" title = "Post http://vishnuprasad.com/archive/2009/03/07/Gemplus-Card-Reader-for-Windows-7.aspx"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://vishnuprasad.com/archive/2009/03/07/Gemplus-Card-Reader-for-Windows-7.aspx&amp;amp;;title=Gemplus+Card+Reader+for+Windows+7" target="_blank" title = "Post http://vishnuprasad.com/archive/2009/03/07/Gemplus-Card-Reader-for-Windows-7.aspx"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://vishnuprasad.com/archive/2009/03/07/Gemplus-Card-Reader-for-Windows-7.aspx&amp;amp;;phase=2" target="_blank" title = "Post http://vishnuprasad.com/archive/2009/03/07/Gemplus-Card-Reader-for-Windows-7.aspx"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://vishnuprasad.com/archive/2009/03/07/Gemplus-Card-Reader-for-Windows-7.aspx&amp;amp;title=Gemplus+Card+Reader+for+Windows+7" target="_blank" title = "Post http://vishnuprasad.com/archive/2009/03/07/Gemplus-Card-Reader-for-Windows-7.aspx"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://vishnuprasad.com/archive/2009/03/07/Gemplus-Card-Reader-for-Windows-7.aspx&amp;amp;;title=Gemplus+Card+Reader+for+Windows+7" target="_blank" title = "Post http://vishnuprasad.com/archive/2009/03/07/Gemplus-Card-Reader-for-Windows-7.aspx"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;;mkt=en-us&amp;amp;;url=http://vishnuprasad.com/archive/2009/03/07/Gemplus-Card-Reader-for-Windows-7.aspx&amp;amp;;title=Gemplus+Card+Reader+for+Windows+7&amp;amp;;top=1" target="_blank" title = "Post http://vishnuprasad.com/archive/2009/03/07/Gemplus-Card-Reader-for-Windows-7.aspx"&gt;live it!&lt;/a&gt;&lt;/div&gt;&lt;img src="http://vishnuprasad.com/aggbug.aspx?PostID=55823" width="1" height="1"&gt;</description></item><item><title>Google retires Send to SMS?</title><link>http://vishnuprasad.com/archive/2009/02/20/Google-retires-Send-to-SMS_3F00_.aspx</link><pubDate>Fri, 20 Feb 2009 08:49:44 GMT</pubDate><guid isPermaLink="false">bf6bce95-1e81-4ef7-965f-45bc55c1466c:55664</guid><dc:creator>Vishnu</dc:creator><slash:comments>0</slash:comments><comments>http://vishnuprasad.com/comments/55664.aspx</comments><wfw:commentRss>http://vishnuprasad.com/commentrss.aspx?PostID=55664</wfw:commentRss><wfw:comment>http://vishnuprasad.com/rsscomments.aspx?PostID=55664</wfw:comment><description>&lt;p&gt;One of the helpful functionality of Google Toolbar has been the “Send to SMS” option. You can quickly SMS the information to your mobile device and continue reading on the go.&lt;/p&gt;  &lt;p&gt;&lt;img src="http://vishnuprasad.com/mypics/sendto.gif" /&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Looks like this option has been retired now. Below is the error message which shows up when you access the Send to SMS option.&lt;/p&gt;  &lt;p&gt;&lt;img src="http://vishnuprasad.com/mypics/sendto-error.gif" /&gt; &lt;/p&gt;  &lt;p&gt;Not very sure, what prompted Google to retire this useful feature. With the web fast becoming the new windows, this is like shooting a bullet in your foot. Google toolbar is a very handy extension of your browser if you prefer to search the web a lot, read news, check your gmail and like to satisfy your ego by checking your sites page rank.&lt;/p&gt;  &lt;p&gt;If Google is really serious about this, then its time to update the toolbar.&lt;/p&gt;  &lt;p&gt;/Vishnu&lt;/p&gt;
&lt;div class = "shareblock"&gt;&lt;strong&gt;Share this post:&lt;/strong&gt; &lt;a href = "mailto:?body=Thought you might like this: http://vishnuprasad.com/archive/2009/02/20/Google-retires-Send-to-SMS_3F00_.aspx&amp;amp;;subject=Google+retires+Send+to+SMS%3f" target="_blank" title = "Post http://vishnuprasad.com/archive/2009/02/20/Google-retires-Send-to-SMS_3F00_.aspx"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://vishnuprasad.com/archive/2009/02/20/Google-retires-Send-to-SMS_3F00_.aspx&amp;amp;;title=Google+retires+Send+to+SMS%3f" target="_blank" title = "Post http://vishnuprasad.com/archive/2009/02/20/Google-retires-Send-to-SMS_3F00_.aspx"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://vishnuprasad.com/archive/2009/02/20/Google-retires-Send-to-SMS_3F00_.aspx&amp;amp;;phase=2" target="_blank" title = "Post http://vishnuprasad.com/archive/2009/02/20/Google-retires-Send-to-SMS_3F00_.aspx"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://vishnuprasad.com/archive/2009/02/20/Google-retires-Send-to-SMS_3F00_.aspx&amp;amp;title=Google+retires+Send+to+SMS%3f" target="_blank" title = "Post http://vishnuprasad.com/archive/2009/02/20/Google-retires-Send-to-SMS_3F00_.aspx"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://vishnuprasad.com/archive/2009/02/20/Google-retires-Send-to-SMS_3F00_.aspx&amp;amp;;title=Google+retires+Send+to+SMS%3f" target="_blank" title = "Post http://vishnuprasad.com/archive/2009/02/20/Google-retires-Send-to-SMS_3F00_.aspx"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;;mkt=en-us&amp;amp;;url=http://vishnuprasad.com/archive/2009/02/20/Google-retires-Send-to-SMS_3F00_.aspx&amp;amp;;title=Google+retires+Send+to+SMS%3f&amp;amp;;top=1" target="_blank" title = "Post http://vishnuprasad.com/archive/2009/02/20/Google-retires-Send-to-SMS_3F00_.aspx"&gt;live it!&lt;/a&gt;&lt;/div&gt;&lt;img src="http://vishnuprasad.com/aggbug.aspx?PostID=55664" width="1" height="1"&gt;</description><category domain="http://vishnuprasad.com/archive/tags/Google/default.aspx">Google</category></item><item><title>Installing Gemplus PC433 SL7 Smart Card reader</title><link>http://vishnuprasad.com/archive/2009/02/12/Installing-Gemplus-PC433-SL7-Smart-Card-reader.aspx</link><pubDate>Thu, 12 Feb 2009 08:08:38 GMT</pubDate><guid isPermaLink="false">bf6bce95-1e81-4ef7-965f-45bc55c1466c:55559</guid><dc:creator>Vishnu</dc:creator><slash:comments>1</slash:comments><comments>http://vishnuprasad.com/comments/55559.aspx</comments><wfw:commentRss>http://vishnuprasad.com/commentrss.aspx?PostID=55559</wfw:commentRss><wfw:comment>http://vishnuprasad.com/rsscomments.aspx?PostID=55559</wfw:comment><description>&lt;p&gt;Here is a quick info for installing Gemplus GemPC433 SL7 Smart Card for Windows Vista (32 bit). When you connect gemplus card reader, Vista installs generic card drivers. Your smart card wont be detected with these generic drivers and you would need to install the unsigned drivers from their &lt;a href="http://support.gemalto.com/index.php?id=faq&amp;amp;tx_irfaq_pi1[cat]=17" target="_blank"&gt;website&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;Make sure you follow the instructions in their FAQ site. Connect the card reader to USB and in the device manager upgrade the drivers by pointing them to the latest drivers. &lt;/p&gt;  &lt;p&gt;PS: &lt;a href="http://www.gemplus.com/" target="_blank"&gt;Gemplus&lt;/a&gt; has merged with &lt;a href="http://www.axalto.com/" target="_blank"&gt;Axalto&lt;/a&gt; to form &lt;a href="http://www.gemalto.com/" target="_blank"&gt;Gemalto&lt;/a&gt;.&lt;/p&gt;
&lt;div class = "shareblock"&gt;&lt;strong&gt;Share this post:&lt;/strong&gt; &lt;a href = "mailto:?body=Thought you might like this: http://vishnuprasad.com/archive/2009/02/12/Installing-Gemplus-PC433-SL7-Smart-Card-reader.aspx&amp;amp;;subject=Installing+Gemplus+PC433+SL7+Smart+Card+reader" target="_blank" title = "Post http://vishnuprasad.com/archive/2009/02/12/Installing-Gemplus-PC433-SL7-Smart-Card-reader.aspx"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://vishnuprasad.com/archive/2009/02/12/Installing-Gemplus-PC433-SL7-Smart-Card-reader.aspx&amp;amp;;title=Installing+Gemplus+PC433+SL7+Smart+Card+reader" target="_blank" title = "Post http://vishnuprasad.com/archive/2009/02/12/Installing-Gemplus-PC433-SL7-Smart-Card-reader.aspx"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://vishnuprasad.com/archive/2009/02/12/Installing-Gemplus-PC433-SL7-Smart-Card-reader.aspx&amp;amp;;phase=2" target="_blank" title = "Post http://vishnuprasad.com/archive/2009/02/12/Installing-Gemplus-PC433-SL7-Smart-Card-reader.aspx"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://vishnuprasad.com/archive/2009/02/12/Installing-Gemplus-PC433-SL7-Smart-Card-reader.aspx&amp;amp;title=Installing+Gemplus+PC433+SL7+Smart+Card+reader" target="_blank" title = "Post http://vishnuprasad.com/archive/2009/02/12/Installing-Gemplus-PC433-SL7-Smart-Card-reader.aspx"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://vishnuprasad.com/archive/2009/02/12/Installing-Gemplus-PC433-SL7-Smart-Card-reader.aspx&amp;amp;;title=Installing+Gemplus+PC433+SL7+Smart+Card+reader" target="_blank" title = "Post http://vishnuprasad.com/archive/2009/02/12/Installing-Gemplus-PC433-SL7-Smart-Card-reader.aspx"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;;mkt=en-us&amp;amp;;url=http://vishnuprasad.com/archive/2009/02/12/Installing-Gemplus-PC433-SL7-Smart-Card-reader.aspx&amp;amp;;title=Installing+Gemplus+PC433+SL7+Smart+Card+reader&amp;amp;;top=1" target="_blank" title = "Post http://vishnuprasad.com/archive/2009/02/12/Installing-Gemplus-PC433-SL7-Smart-Card-reader.aspx"&gt;live it!&lt;/a&gt;&lt;/div&gt;&lt;img src="http://vishnuprasad.com/aggbug.aspx?PostID=55559" width="1" height="1"&gt;</description><category domain="http://vishnuprasad.com/archive/tags/Gemplus/default.aspx">Gemplus</category></item><item><title>SEO – Interesting Sitemap FAQ</title><link>http://vishnuprasad.com/archive/2009/02/11/SEO-_1320_-Interesting-Sitemap-FAQ.aspx</link><pubDate>Wed, 11 Feb 2009 00:47:00 GMT</pubDate><guid isPermaLink="false">bf6bce95-1e81-4ef7-965f-45bc55c1466c:55543</guid><dc:creator>Vishnu</dc:creator><slash:comments>0</slash:comments><comments>http://vishnuprasad.com/comments/55543.aspx</comments><wfw:commentRss>http://vishnuprasad.com/commentrss.aspx?PostID=55543</wfw:commentRss><wfw:comment>http://vishnuprasad.com/rsscomments.aspx?PostID=55543</wfw:comment><description>&lt;p&gt;As part of &lt;a href="http://en.wikipedia.org/wiki/Search_engine_optimization" target="_blank"&gt;Search Engine Optimization&lt;/a&gt; strategy, &lt;a href="http://en.wikipedia.org/wiki/Site_map" target="_blank"&gt;Sitemaps&lt;/a&gt; provide a way for the crawlers to index your site. There are 2 types of Sitemaps, Human friendly sitemaps and Crawler friendly sitemap. &lt;/p&gt;&lt;p&gt;Human friendly sitemaps provide a textual map of the website which is being viewed. Some links could be buried deep in a site that could be easily located using the sitemap by humans. Example &lt;a href="http://www.microsoft.com/presspass/sitemap.mspx" target="_blank"&gt;Microsoft PressPass Sitemap&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Crawler Friendly Sitemaps are those which help the crawler to uncover deeplinks in the website and help them understand the site better.&lt;/p&gt;&lt;p&gt;Before &lt;a href="http://Sitemaps.org" target="_blank"&gt;Sitemap.org&lt;/a&gt; came into existence all major search engines like Google, Yahoo, AOL, MSN wanted web masters to format their feed for their crawlers. This made it extremely difficult for the webmasters to submit their updated content automatically to the search engines. Google then came up with &lt;a href="http://Sitemaps.org"&gt;http://Sitemaps.org&lt;/a&gt;. Sitemaps is an XML based format which is now supported by all major search engines. It is extensible and provides the search engines to better &amp;ldquo;understand&amp;rdquo; the website. Unlike the normal sitemap protocol, sitemaps.org protocol provides additional information to search engines like the change frequency of the page, last modified date of the file, the relative priority of a URL when compared to other URL&amp;rsquo;s in your site. This can help the crawler not only to index the site but also obtain meta information about the site. The sitemaps protocol can be found &lt;a href="http://sitemaps.org/protocol.php" target="_blank"&gt;here&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;u&gt;Interesting facts about Sitemaps.org&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;&lt;ol&gt;&lt;li&gt;The protocol for sitemaps.org was developed by Google but the site is hosted with Yahoo!. A Whois lookup shows that the nameservers for sitemaps.org points to YNS1.YAHOO.COM and YNS2.YAHOO.COM. A good strategy to gather Yahoo support. &lt;/li&gt;&lt;li&gt;This really isn&amp;rsquo;t a fact per se, but good to know. The meta description in the Whois reads as &lt;font color="#0000ff"&gt;&amp;ldquo;The Sitemaps protocol enables webmasters to information &lt;strong&gt;&lt;u&gt;earch &lt;/u&gt;&lt;/strong&gt;engine about pages on their site that are available for crawling&amp;rdquo;. :-)&lt;/font&gt; &lt;/li&gt;&lt;/ol&gt;&lt;p&gt;Most of the popular blogging platforms like Wordpress, Community Server, Typepad, blogger etc have add-on&amp;rsquo;s which are SEO friendly. &lt;/p&gt;&lt;p&gt;/Vishnu&lt;/p&gt;
&lt;div class = "shareblock"&gt;&lt;strong&gt;Share this post:&lt;/strong&gt; &lt;a href = "mailto:?body=Thought you might like this: http://vishnuprasad.com/archive/2009/02/11/SEO-_1320_-Interesting-Sitemap-FAQ.aspx&amp;amp;;subject=SEO+%e2%80%93+Interesting+Sitemap+FAQ" target="_blank" title = "Post http://vishnuprasad.com/archive/2009/02/11/SEO-_1320_-Interesting-Sitemap-FAQ.aspx"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://vishnuprasad.com/archive/2009/02/11/SEO-_1320_-Interesting-Sitemap-FAQ.aspx&amp;amp;;title=SEO+%e2%80%93+Interesting+Sitemap+FAQ" target="_blank" title = "Post http://vishnuprasad.com/archive/2009/02/11/SEO-_1320_-Interesting-Sitemap-FAQ.aspx"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://vishnuprasad.com/archive/2009/02/11/SEO-_1320_-Interesting-Sitemap-FAQ.aspx&amp;amp;;phase=2" target="_blank" title = "Post http://vishnuprasad.com/archive/2009/02/11/SEO-_1320_-Interesting-Sitemap-FAQ.aspx"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://vishnuprasad.com/archive/2009/02/11/SEO-_1320_-Interesting-Sitemap-FAQ.aspx&amp;amp;title=SEO+%e2%80%93+Interesting+Sitemap+FAQ" target="_blank" title = "Post http://vishnuprasad.com/archive/2009/02/11/SEO-_1320_-Interesting-Sitemap-FAQ.aspx"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://vishnuprasad.com/archive/2009/02/11/SEO-_1320_-Interesting-Sitemap-FAQ.aspx&amp;amp;;title=SEO+%e2%80%93+Interesting+Sitemap+FAQ" target="_blank" title = "Post http://vishnuprasad.com/archive/2009/02/11/SEO-_1320_-Interesting-Sitemap-FAQ.aspx"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;;mkt=en-us&amp;amp;;url=http://vishnuprasad.com/archive/2009/02/11/SEO-_1320_-Interesting-Sitemap-FAQ.aspx&amp;amp;;title=SEO+%e2%80%93+Interesting+Sitemap+FAQ&amp;amp;;top=1" target="_blank" title = "Post http://vishnuprasad.com/archive/2009/02/11/SEO-_1320_-Interesting-Sitemap-FAQ.aspx"&gt;live it!&lt;/a&gt;&lt;/div&gt;&lt;img src="http://vishnuprasad.com/aggbug.aspx?PostID=55543" width="1" height="1"&gt;</description><category domain="http://vishnuprasad.com/archive/tags/SEO/default.aspx">SEO</category></item><item><title>Search Engine Optimization - Cloaking</title><link>http://vishnuprasad.com/archive/2009/01/25/Search-Engine-Optimization-_2D00_-Cloaking.aspx</link><pubDate>Sun, 25 Jan 2009 13:19:00 GMT</pubDate><guid isPermaLink="false">bf6bce95-1e81-4ef7-965f-45bc55c1466c:55418</guid><dc:creator>Vishnu</dc:creator><slash:comments>1</slash:comments><comments>http://vishnuprasad.com/comments/55418.aspx</comments><wfw:commentRss>http://vishnuprasad.com/commentrss.aspx?PostID=55418</wfw:commentRss><wfw:comment>http://vishnuprasad.com/rsscomments.aspx?PostID=55418</wfw:comment><description>&lt;p&gt;I am currently working on Search Engine Optimization for an online marketplace. I do have a brief idea about SEO but for this assignment I need to come up with best practices. There are a lot of techniques but one thing which caught my attention was &lt;a href="http://en.wikipedia.org/wiki/Cloaking" target="_blank"&gt;Cloaking&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;Cloaking is a technique by which different content is delivered by the website based on whether the request is made by a spider (search engine crawler) or a browser (user). Cloaking can be achieved either by finding out the IP address or the User Agent HTTP header request.&lt;/p&gt;  &lt;p&gt;In IP address cloaking based on the well known IP address of spiders, content is served by the website. Most of the search engines spiders have a well known range of IP address using which they crawl the web. The website monitors and serves special content based on the IP addresses. The catch here is to find obtain the range of IP addresses of the spiders and target them. Pretty sure that popular search engines wont give away their list of IP addresses. This said, it wont be too hard for site webmaster/admins to find them out if they monitor the requests closely.&lt;/p&gt;  &lt;p&gt;In User Agent HTTP header request technique, every requesting entity like web browser, crawler, mobile device and other clients identify themselves to the server by sending the ser agent type in the HTTP request.&lt;/p&gt;  &lt;p&gt;This is my first post on SEO. Will be adding a lot more soon.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Happy Blogging&lt;/strong&gt;&lt;/p&gt;
&lt;div class = "shareblock"&gt;&lt;strong&gt;Share this post:&lt;/strong&gt; &lt;a href = "mailto:?body=Thought you might like this: http://vishnuprasad.com/archive/2009/01/25/Search-Engine-Optimization-_2D00_-Cloaking.aspx&amp;amp;;subject=Search+Engine+Optimization+-+Cloaking" target="_blank" title = "Post http://vishnuprasad.com/archive/2009/01/25/Search-Engine-Optimization-_2D00_-Cloaking.aspx"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://vishnuprasad.com/archive/2009/01/25/Search-Engine-Optimization-_2D00_-Cloaking.aspx&amp;amp;;title=Search+Engine+Optimization+-+Cloaking" target="_blank" title = "Post http://vishnuprasad.com/archive/2009/01/25/Search-Engine-Optimization-_2D00_-Cloaking.aspx"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://vishnuprasad.com/archive/2009/01/25/Search-Engine-Optimization-_2D00_-Cloaking.aspx&amp;amp;;phase=2" target="_blank" title = "Post http://vishnuprasad.com/archive/2009/01/25/Search-Engine-Optimization-_2D00_-Cloaking.aspx"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://vishnuprasad.com/archive/2009/01/25/Search-Engine-Optimization-_2D00_-Cloaking.aspx&amp;amp;title=Search+Engine+Optimization+-+Cloaking" target="_blank" title = "Post http://vishnuprasad.com/archive/2009/01/25/Search-Engine-Optimization-_2D00_-Cloaking.aspx"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://vishnuprasad.com/archive/2009/01/25/Search-Engine-Optimization-_2D00_-Cloaking.aspx&amp;amp;;title=Search+Engine+Optimization+-+Cloaking" target="_blank" title = "Post http://vishnuprasad.com/archive/2009/01/25/Search-Engine-Optimization-_2D00_-Cloaking.aspx"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;;mkt=en-us&amp;amp;;url=http://vishnuprasad.com/archive/2009/01/25/Search-Engine-Optimization-_2D00_-Cloaking.aspx&amp;amp;;title=Search+Engine+Optimization+-+Cloaking&amp;amp;;top=1" target="_blank" title = "Post http://vishnuprasad.com/archive/2009/01/25/Search-Engine-Optimization-_2D00_-Cloaking.aspx"&gt;live it!&lt;/a&gt;&lt;/div&gt;&lt;img src="http://vishnuprasad.com/aggbug.aspx?PostID=55418" width="1" height="1"&gt;</description><category domain="http://vishnuprasad.com/archive/tags/SEO/default.aspx">SEO</category></item><item><title>Happy New Year</title><link>http://vishnuprasad.com/archive/2006/12/31/Happy-New-Year.aspx</link><pubDate>Sun, 31 Dec 2006 17:00:00 GMT</pubDate><guid isPermaLink="false">bf6bce95-1e81-4ef7-965f-45bc55c1466c:38</guid><dc:creator>Vishnu</dc:creator><slash:comments>1</slash:comments><comments>http://vishnuprasad.com/comments/38.aspx</comments><wfw:commentRss>http://vishnuprasad.com/commentrss.aspx?PostID=38</wfw:commentRss><wfw:comment>http://vishnuprasad.com/rsscomments.aspx?PostID=38</wfw:comment><description>&lt;p&gt;Wishing all the people, their friends, enemies, competitors reading this entry a very&lt;/p&gt;&lt;p&gt;&lt;font color="#0000ff" size="6"&gt;Happy, Exciting and Competitive New Year.....&lt;/font&gt;&lt;/p&gt;&lt;p&gt;It has been a while since i posted some useful content to my blog. Apply polly logies for the infrequent entries to the blog. The year gone by has not been particularly bad. I had my fair share of luck. I do not really believe in any resolutions as they are always broken by me within the first two weeks. Never the less, i have promised my mom few thing(s) and expect that i would rise upto them. &lt;/p&gt;&lt;p&gt;I was quite busy the past few months working on &lt;a href="http://forums.microsoft.com/MSDN/default.aspx?ForumGroupID=296&amp;amp;SiteID=1" title="The new Home Page of Live Gadgets" target="_blank"&gt;Live Gadgets&lt;/a&gt; with a lot of help from my &lt;a href="http://shekar.spaces.live.com/" title="My brothers blog" target="_blank"&gt;brother&lt;/a&gt;. There were a lot of things on my plate and i was not quite managing them well. I am currently working on getting a good hang on gadgets. I was named as an evangelist on Live platform in my organization and expected to take some sessions on them. This does require a great deal of commitment and hard work, to say the least.&lt;/p&gt;&lt;p&gt;Please do drop in some comments and suggestions on what kind of gadgets would interest you. I hope to put the gadget (a cricket score) i am working on for download once its in a working state and when i get a sign-off from my brother (who actually wrote the code!!! for me)&lt;/p&gt;&lt;p&gt;This bog has truly given me a lot of visibility (and appreciation) and helped me become more professional. My blog was voted as one of the &lt;a href="http://www.microsoft.com/india/blogstars/winners.aspx" title="Microsoft India Blogstars" target="_blank"&gt;BEST Developer Blog&lt;/a&gt; in India. Wow..So i am a &lt;font color="#0000ff"&gt;&lt;a href="http://www.microsoft.com/india/blogstars/" title="Microsoft India BlogStars" target="_blank"&gt;Microsoft BlogStar&lt;/a&gt;&lt;/font&gt;.&amp;nbsp;I never ever expected it to come my way. It&amp;#39;s my obligation to my blog to reciprocate the favor. So please feel free to send me your harsh comments in case you do not find the blog updated frequently&lt;/p&gt;&lt;p&gt;I believe one of the main reasons why the gadget stuff i am working on is taking more time than expected is because i am really not comfortable with Java Script. I am not trying to give any excuse here, but believe that these are the general views i found both online and off line.&lt;/p&gt;
&lt;div class = "shareblock"&gt;&lt;strong&gt;Share this post:&lt;/strong&gt; &lt;a href = "mailto:?body=Thought you might like this: http://vishnuprasad.com/archive/2006/12/31/Happy-New-Year.aspx&amp;amp;;subject=Happy+New+Year" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/12/31/Happy-New-Year.aspx"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://vishnuprasad.com/archive/2006/12/31/Happy-New-Year.aspx&amp;amp;;title=Happy+New+Year" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/12/31/Happy-New-Year.aspx"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://vishnuprasad.com/archive/2006/12/31/Happy-New-Year.aspx&amp;amp;;phase=2" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/12/31/Happy-New-Year.aspx"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://vishnuprasad.com/archive/2006/12/31/Happy-New-Year.aspx&amp;amp;title=Happy+New+Year" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/12/31/Happy-New-Year.aspx"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://vishnuprasad.com/archive/2006/12/31/Happy-New-Year.aspx&amp;amp;;title=Happy+New+Year" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/12/31/Happy-New-Year.aspx"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;;mkt=en-us&amp;amp;;url=http://vishnuprasad.com/archive/2006/12/31/Happy-New-Year.aspx&amp;amp;;title=Happy+New+Year&amp;amp;;top=1" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/12/31/Happy-New-Year.aspx"&gt;live it!&lt;/a&gt;&lt;/div&gt;&lt;img src="http://vishnuprasad.com/aggbug.aspx?PostID=38" width="1" height="1"&gt;</description></item><item><title>SQL Server is the most SECURE Database</title><link>http://vishnuprasad.com/archive/2006/11/19/SQL-Server-is-the-most-SECURE-Database.aspx</link><pubDate>Sun, 19 Nov 2006 15:38:00 GMT</pubDate><guid isPermaLink="false">bf6bce95-1e81-4ef7-965f-45bc55c1466c:37</guid><dc:creator>Vishnu</dc:creator><slash:comments>1274</slash:comments><comments>http://vishnuprasad.com/comments/37.aspx</comments><wfw:commentRss>http://vishnuprasad.com/commentrss.aspx?PostID=37</wfw:commentRss><wfw:comment>http://vishnuprasad.com/rsscomments.aspx?PostID=37</wfw:comment><description>&lt;p&gt;Yes.. Thats right...&lt;br /&gt;&lt;a href="http://www.enterprisestrategygroup.com/Default.asp?PAName=information" title="  Microsoft SQL Server Runs the Security Table" target="_blank"&gt;Study&lt;/a&gt; has shown that SQL Server is the &lt;font color="#ff0000"&gt;MOST SECURE&lt;/font&gt; Database. It outbeats Oracle, MySQL, Sybase and&amp;nbsp;DB2 in a study conducted by Enterprise Strategy Group in &lt;a href="http://en.wikipedia.org/wiki/Common_Vulnerabilities_and_Exposures" style="border-bottom-style:groove;" title="Wiki: Common Vulnerabilities and Exposures" target="_blank"&gt;Common Vulnerabilities and Exposures&lt;/a&gt; (CVE) data.&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;lt;Wiki&amp;gt;&lt;br /&gt;&lt;strong&gt;CVE&lt;/strong&gt;: The &lt;strong&gt;Common Vulnerabilities and Exposures&lt;/strong&gt; (CVE) list provides an index of standardized names for &lt;a href="http://en.wikipedia.org/wiki/Vulnerability_(computing)" style="border-bottom-style:groove;" title="Vulnerability (computing)"&gt;vulnerabilities&lt;/a&gt; and other &lt;a href="http://en.wikipedia.org/wiki/Information_security" style="border-bottom-style:groove;" title="Information security" target="_blank"&gt;information security&lt;/a&gt; exposures - CVE aims to standardize the names for all publicly known vulnerabilities and security exposures. The CVE database is operated by the &lt;a href="http://en.wikipedia.org/wiki/MITRE" style="border-bottom-style:groove;" title="MITRE"&gt;MITRE&lt;/a&gt; corporation, and is sponsored by the &lt;a href="http://en.wikipedia.org/wiki/Department_of_Homeland_Security" style="border-bottom-style:groove;" title="Department of Homeland Security"&gt;Department of Homeland Security&lt;/a&gt;&lt;br /&gt;&amp;lt;/Wiki&amp;gt;&lt;/p&gt;&lt;p&gt;The study goes on the record saying that &lt;font color="#0000ff"&gt;&amp;quot;&lt;em&gt;ESG considers Microsoft, with proper execution, to be years ahead of Oracle and MySQL in producing secure and reliable database products&lt;/em&gt;&amp;quot;&lt;/font&gt;...which is definetly a shot in the arm for Microsoft. Microsoft is currently facing severe criticsm from its &amp;quot;ally&amp;quot; Symantec and McAfee for locking down its kernal in Vista and not &amp;quot;allowing&amp;quot; third party software to run properly.&lt;/p&gt;&lt;p&gt;A &lt;a href="http://download.microsoft.com/download/d/0/e/d0ee6c0a-ffa8-4fa2-9397-0e237d46d728/SQL2005andOracle10gSecurity.doc" style="border-bottom-style:groove;" title="SQL2005 and Oracle10g Security" target="_blank"&gt;paper&lt;/a&gt; available at Microsoft &lt;a href="http://www.microsoft.com/sql/prodinfo/compare/oracle/ss2005oracle10gsecuritycompare.mspx" style="border-bottom-style:groove;" title="SQL Server 2005 and Oracle 10g Security Comparison" target="_blank"&gt;website&lt;/a&gt; which compares SQL Server 2005 and Oracle 10g on Security shows that with the same level of security features in both databases, SQL Server 2005 is significantly cheaper to purchase and own than Oracle 10g for the same functionality. The paper also talks about &lt;font color="#ff0000"&gt;&amp;quot;Which database is more secure?&amp;quot;&lt;/font&gt;. The interesting part is the way &amp;quot;secure&amp;quot; is defined. The paper says &lt;font color="#0000ff"&gt;&amp;quot;&lt;em&gt;Measures of how secure a database server is should include how many security bulletins, incidents, or advisories have been registered against the database. Security bulletins show the track record of the vendor regarding security&lt;/em&gt;&amp;quot;&lt;/font&gt;. &lt;/p&gt;&lt;p&gt;Going by the security bulletins, incidents, or advisories Oracle tops the list. I believe advisories, bulletins and incidents alone wouldn&amp;#39;t suffice. They are just couple of&amp;nbsp;parameters in the complex equation. Nevertheless.. it still doesn&amp;#39;t take away anything from Microsoft. &lt;/p&gt;
&lt;div class = "shareblock"&gt;&lt;strong&gt;Share this post:&lt;/strong&gt; &lt;a href = "mailto:?body=Thought you might like this: http://vishnuprasad.com/archive/2006/11/19/SQL-Server-is-the-most-SECURE-Database.aspx&amp;amp;;subject=SQL+Server+is+the+most+SECURE+Database" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/11/19/SQL-Server-is-the-most-SECURE-Database.aspx"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://vishnuprasad.com/archive/2006/11/19/SQL-Server-is-the-most-SECURE-Database.aspx&amp;amp;;title=SQL+Server+is+the+most+SECURE+Database" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/11/19/SQL-Server-is-the-most-SECURE-Database.aspx"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://vishnuprasad.com/archive/2006/11/19/SQL-Server-is-the-most-SECURE-Database.aspx&amp;amp;;phase=2" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/11/19/SQL-Server-is-the-most-SECURE-Database.aspx"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://vishnuprasad.com/archive/2006/11/19/SQL-Server-is-the-most-SECURE-Database.aspx&amp;amp;title=SQL+Server+is+the+most+SECURE+Database" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/11/19/SQL-Server-is-the-most-SECURE-Database.aspx"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://vishnuprasad.com/archive/2006/11/19/SQL-Server-is-the-most-SECURE-Database.aspx&amp;amp;;title=SQL+Server+is+the+most+SECURE+Database" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/11/19/SQL-Server-is-the-most-SECURE-Database.aspx"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;;mkt=en-us&amp;amp;;url=http://vishnuprasad.com/archive/2006/11/19/SQL-Server-is-the-most-SECURE-Database.aspx&amp;amp;;title=SQL+Server+is+the+most+SECURE+Database&amp;amp;;top=1" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/11/19/SQL-Server-is-the-most-SECURE-Database.aspx"&gt;live it!&lt;/a&gt;&lt;/div&gt;&lt;img src="http://vishnuprasad.com/aggbug.aspx?PostID=37" width="1" height="1"&gt;</description></item><item><title>Why on earth does the world need another search engine?</title><link>http://vishnuprasad.com/archive/2006/10/31/Why-on-earth-does-the-world-need-another-search-engine_3F00_.aspx</link><pubDate>Tue, 31 Oct 2006 16:36:00 GMT</pubDate><guid isPermaLink="false">bf6bce95-1e81-4ef7-965f-45bc55c1466c:34</guid><dc:creator>Vishnu</dc:creator><slash:comments>234</slash:comments><comments>http://vishnuprasad.com/comments/34.aspx</comments><wfw:commentRss>http://vishnuprasad.com/commentrss.aspx?PostID=34</wfw:commentRss><wfw:comment>http://vishnuprasad.com/rsscomments.aspx?PostID=34</wfw:comment><description>&lt;p&gt;This is exactly what Microsoft is asking? This part of their new campaign for &lt;a href="http://try.search.live.com/" title="Try Live Search" target="_blank"&gt;Live Search&lt;/a&gt;&amp;nbsp;hitting the news stands.&lt;/p&gt;&lt;p&gt;&lt;a href="http://try.search.live.com/" title="Live Search" target="_blank"&gt;Have a look at it&lt;/a&gt;, yourself&lt;/p&gt;
&lt;div class = "shareblock"&gt;&lt;strong&gt;Share this post:&lt;/strong&gt; &lt;a href = "mailto:?body=Thought you might like this: http://vishnuprasad.com/archive/2006/10/31/Why-on-earth-does-the-world-need-another-search-engine_3F00_.aspx&amp;amp;;subject=Why+on+earth+does+the+world+need+another+search+engine%3f" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/10/31/Why-on-earth-does-the-world-need-another-search-engine_3F00_.aspx"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://vishnuprasad.com/archive/2006/10/31/Why-on-earth-does-the-world-need-another-search-engine_3F00_.aspx&amp;amp;;title=Why+on+earth+does+the+world+need+another+search+engine%3f" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/10/31/Why-on-earth-does-the-world-need-another-search-engine_3F00_.aspx"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://vishnuprasad.com/archive/2006/10/31/Why-on-earth-does-the-world-need-another-search-engine_3F00_.aspx&amp;amp;;phase=2" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/10/31/Why-on-earth-does-the-world-need-another-search-engine_3F00_.aspx"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://vishnuprasad.com/archive/2006/10/31/Why-on-earth-does-the-world-need-another-search-engine_3F00_.aspx&amp;amp;title=Why+on+earth+does+the+world+need+another+search+engine%3f" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/10/31/Why-on-earth-does-the-world-need-another-search-engine_3F00_.aspx"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://vishnuprasad.com/archive/2006/10/31/Why-on-earth-does-the-world-need-another-search-engine_3F00_.aspx&amp;amp;;title=Why+on+earth+does+the+world+need+another+search+engine%3f" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/10/31/Why-on-earth-does-the-world-need-another-search-engine_3F00_.aspx"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;;mkt=en-us&amp;amp;;url=http://vishnuprasad.com/archive/2006/10/31/Why-on-earth-does-the-world-need-another-search-engine_3F00_.aspx&amp;amp;;title=Why+on+earth+does+the+world+need+another+search+engine%3f&amp;amp;;top=1" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/10/31/Why-on-earth-does-the-world-need-another-search-engine_3F00_.aspx"&gt;live it!&lt;/a&gt;&lt;/div&gt;&lt;img src="http://vishnuprasad.com/aggbug.aspx?PostID=34" width="1" height="1"&gt;</description></item><item><title>Trick or Treat!!!!</title><link>http://vishnuprasad.com/archive/2006/10/30/Trick-or-Treat.aspx</link><pubDate>Tue, 31 Oct 2006 08:38:00 GMT</pubDate><guid isPermaLink="false">bf6bce95-1e81-4ef7-965f-45bc55c1466c:33</guid><dc:creator>Vishnu</dc:creator><slash:comments>1327</slash:comments><comments>http://vishnuprasad.com/comments/33.aspx</comments><wfw:commentRss>http://vishnuprasad.com/commentrss.aspx?PostID=33</wfw:commentRss><wfw:comment>http://vishnuprasad.com/rsscomments.aspx?PostID=33</wfw:comment><description>&lt;p align="center"&gt;&lt;font color="#ff0000" size="6"&gt;&lt;a href="http://en.wikipedia.org/wiki/Halloween" title="Halloween in Wiki"&gt;Happy Halloween&lt;/a&gt;&lt;/font&gt;&lt;/p&gt;&lt;p align="center"&gt;&lt;img align="middle" alt="Halloween" height="211" src="http://vishnuprasad.com/mypics/Halloween.jpg" style="width:215px;height:211px;" title="Halloween" width="215" /&gt;&lt;/p&gt;&lt;p&gt;Got some time...then listen to &lt;a href="http://podcasts.yahoo.com/episode?s=1ce785c32ef6940d15dcfd50e3bdb9e5&amp;amp;e=108" title="Yahoo Podcast on Halloween" target="_blank"&gt;Yahoo Podcast&lt;/a&gt;&amp;nbsp;on the history behind Halloween.&lt;/p&gt;
&lt;div class = "shareblock"&gt;&lt;strong&gt;Share this post:&lt;/strong&gt; &lt;a href = "mailto:?body=Thought you might like this: http://vishnuprasad.com/archive/2006/10/30/Trick-or-Treat.aspx&amp;amp;;subject=Trick+or+Treat!!!!" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/10/30/Trick-or-Treat.aspx"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://vishnuprasad.com/archive/2006/10/30/Trick-or-Treat.aspx&amp;amp;;title=Trick+or+Treat!!!!" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/10/30/Trick-or-Treat.aspx"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://vishnuprasad.com/archive/2006/10/30/Trick-or-Treat.aspx&amp;amp;;phase=2" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/10/30/Trick-or-Treat.aspx"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://vishnuprasad.com/archive/2006/10/30/Trick-or-Treat.aspx&amp;amp;title=Trick+or+Treat!!!!" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/10/30/Trick-or-Treat.aspx"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://vishnuprasad.com/archive/2006/10/30/Trick-or-Treat.aspx&amp;amp;;title=Trick+or+Treat!!!!" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/10/30/Trick-or-Treat.aspx"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;;mkt=en-us&amp;amp;;url=http://vishnuprasad.com/archive/2006/10/30/Trick-or-Treat.aspx&amp;amp;;title=Trick+or+Treat!!!!&amp;amp;;top=1" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/10/30/Trick-or-Treat.aspx"&gt;live it!&lt;/a&gt;&lt;/div&gt;&lt;img src="http://vishnuprasad.com/aggbug.aspx?PostID=33" width="1" height="1"&gt;</description><category domain="http://vishnuprasad.com/archive/tags/Microsoft/default.aspx">Microsoft</category><category domain="http://vishnuprasad.com/archive/tags/Google/default.aspx">Google</category><category domain="http://vishnuprasad.com/archive/tags/Web+2.0/default.aspx">Web 2.0</category><category domain="http://vishnuprasad.com/archive/tags/GAYD/default.aspx">GAYD</category></item><item><title>View your website in 30+ browser's : www.BrowserShots.org</title><link>http://vishnuprasad.com/archive/2006/09/06/View-your-website-in-30_2B00_-browser_2700_s-_3A00_-www.BrowserShots.org.aspx</link><pubDate>Wed, 06 Sep 2006 23:44:00 GMT</pubDate><guid isPermaLink="false">bf6bce95-1e81-4ef7-965f-45bc55c1466c:30</guid><dc:creator>Vishnu</dc:creator><slash:comments>236</slash:comments><comments>http://vishnuprasad.com/comments/30.aspx</comments><wfw:commentRss>http://vishnuprasad.com/commentrss.aspx?PostID=30</wfw:commentRss><wfw:comment>http://vishnuprasad.com/rsscomments.aspx?PostID=30</wfw:comment><description>&lt;p&gt;This &lt;a href="http://browsershots.org/" title="Browser Shots" target="_blank"&gt;site &lt;/a&gt;is pretty cool.&lt;/p&gt;
&lt;p&gt;It allows you to see your, for that matter, any website of your choice in 30 browsers. It has support for Linux and Mac (oh.. do people sell them!!!!) . &lt;/p&gt;
&lt;p&gt;Just submit the website you want to view and the job is queued. You can even set the maximum wait time. Once the wait time elapses, the screenshots are displayed on your browser. You can also see your ticket in the queue.&lt;/p&gt;
&lt;p&gt;&lt;font color="blue"&gt;Happy Blogging&lt;/font&gt;&lt;/p&gt;
&lt;div class = "shareblock"&gt;&lt;strong&gt;Share this post:&lt;/strong&gt; &lt;a href = "mailto:?body=Thought you might like this: http://vishnuprasad.com/archive/2006/09/06/View-your-website-in-30_2B00_-browser_2700_s-_3A00_-www.BrowserShots.org.aspx&amp;amp;;subject=View+your+website+in+30%2b+browser%27s+%3a+www.BrowserShots.org" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/09/06/View-your-website-in-30_2B00_-browser_2700_s-_3A00_-www.BrowserShots.org.aspx"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://vishnuprasad.com/archive/2006/09/06/View-your-website-in-30_2B00_-browser_2700_s-_3A00_-www.BrowserShots.org.aspx&amp;amp;;title=View+your+website+in+30%2b+browser%27s+%3a+www.BrowserShots.org" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/09/06/View-your-website-in-30_2B00_-browser_2700_s-_3A00_-www.BrowserShots.org.aspx"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://vishnuprasad.com/archive/2006/09/06/View-your-website-in-30_2B00_-browser_2700_s-_3A00_-www.BrowserShots.org.aspx&amp;amp;;phase=2" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/09/06/View-your-website-in-30_2B00_-browser_2700_s-_3A00_-www.BrowserShots.org.aspx"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://vishnuprasad.com/archive/2006/09/06/View-your-website-in-30_2B00_-browser_2700_s-_3A00_-www.BrowserShots.org.aspx&amp;amp;title=View+your+website+in+30%2b+browser%27s+%3a+www.BrowserShots.org" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/09/06/View-your-website-in-30_2B00_-browser_2700_s-_3A00_-www.BrowserShots.org.aspx"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://vishnuprasad.com/archive/2006/09/06/View-your-website-in-30_2B00_-browser_2700_s-_3A00_-www.BrowserShots.org.aspx&amp;amp;;title=View+your+website+in+30%2b+browser%27s+%3a+www.BrowserShots.org" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/09/06/View-your-website-in-30_2B00_-browser_2700_s-_3A00_-www.BrowserShots.org.aspx"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;;mkt=en-us&amp;amp;;url=http://vishnuprasad.com/archive/2006/09/06/View-your-website-in-30_2B00_-browser_2700_s-_3A00_-www.BrowserShots.org.aspx&amp;amp;;title=View+your+website+in+30%2b+browser%27s+%3a+www.BrowserShots.org&amp;amp;;top=1" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/09/06/View-your-website-in-30_2B00_-browser_2700_s-_3A00_-www.BrowserShots.org.aspx"&gt;live it!&lt;/a&gt;&lt;/div&gt;&lt;img src="http://vishnuprasad.com/aggbug.aspx?PostID=30" width="1" height="1"&gt;</description><enclosure url="http://vishnuprasad.com/attachment/30.ashx" length="9210" type="application/octet-stream" /></item><item><title>First look at Google Applications for Your Domian (beta)</title><link>http://vishnuprasad.com/archive/2006/09/03/First-look-at-Google-Applications-for-Your-Domian-_2800_beta_2900_.aspx</link><pubDate>Sun, 03 Sep 2006 08:01:00 GMT</pubDate><guid isPermaLink="false">bf6bce95-1e81-4ef7-965f-45bc55c1466c:27</guid><dc:creator>Vishnu</dc:creator><slash:comments>0</slash:comments><comments>http://vishnuprasad.com/comments/27.aspx</comments><wfw:commentRss>http://vishnuprasad.com/commentrss.aspx?PostID=27</wfw:commentRss><wfw:comment>http://vishnuprasad.com/rsscomments.aspx?PostID=27</wfw:comment><description>&lt;p&gt;I got a beta invitation for GAYD, Google Applications for Your Domian, from google last night and quickly got down to work. GAYD consists of Email, Chat, Calendar and Domain web pages.&lt;/p&gt;&lt;p&gt;Before you can get started with GAYD, you need to &amp;#39;claim&amp;#39; that site you registered for the beta testing is actually your&amp;#39;s. For this, you just need to upload a html file with verification code to your website.&lt;/p&gt;&lt;p&gt;When you sign into GAYD, you are presented with a sleek dashboard with all the bundled services&lt;/p&gt;&lt;p&gt;&lt;img alt="GAYD Dash Board" height="477" src="http://vishnuprasad.com/mypics/dashboard.gif" title="GAYD Dash Board" width="638" /&gt;&lt;/p&gt;&lt;p&gt;&lt;u&gt;&lt;strong&gt;User Accounts&lt;/strong&gt;&lt;/u&gt;:&lt;/p&gt;&lt;p&gt;You are allowed to create upto 25 user accounts for your domain. You can either type all or some of the 25 user accounts &lt;/p&gt;&lt;p&gt;&lt;img align="middle" alt="User creation" height="263" src="http://vishnuprasad.com/mypics/UserCreation.gif" style="width:424px;height:263px;" title="User creation" width="424" /&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;or you can save them in a .csv file and upload them. There is a specific format for the csv file. The account with which you have signed in wil be the admin account and rest are limited account(s).&lt;/p&gt;&lt;p&gt;&lt;img align="middle" alt="User Bulk upload" height="567" src="http://vishnuprasad.com/mypics/BulkUserUpload.gif" style="width:811px;height:567px;" title="User Bulk upload" width="811" /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&amp;nbsp;&lt;br /&gt;&lt;strong&gt;&lt;u&gt;Email&lt;/u&gt;&lt;/strong&gt;: The flagship of google, Gmail, is perhaps the only reason you might want to consider GAYD. To get started with Email you need to change the &lt;a href="http://en.wikipedia.org/wiki/MX_record" title="Mail Exchange" target="_blank"&gt;MX (Mail Exchange)&lt;/a&gt; record in the DNS. Its advised to delete the existing MX record and then add any new entries. You can contact your Web Hoster for the specific steps. Its normally found under the DNS tab.&lt;/p&gt;&lt;p&gt;&lt;img alt="GAYD Gmail Interface" height="616" src="http://vishnuprasad.com/mypics/gmailInterface.gif" title="GAYD Gmail Interface" width="946" /&gt;&lt;/p&gt;&lt;p&gt;The Gmail Inteface provided under GAYD is same as the one found in the Gmail. Absolutely no change. The only change perhaps is&lt;strong&gt; Powered by Google&lt;/strong&gt; image at the bottom of the page instead of (C) Google found in tradiotinal Gmail. The Email interface also supports the built in messenger service as found in Gmail. Yes...You also have the flexibility replace the Gmail logo at the top left hand corner with any custom image. Each mail account has 2GB capacity. When you log into your mailbox you are not left with an empty mailbox!!!! As a bonus you get 2 mail messages. Both are from Gmail team promoting their products like Google Desktop and Picasa. Yes. Everything is the same including the contextual advertisements on the right side of your mail.&lt;/p&gt;&lt;p&gt;&lt;img height="404" src="http://vishnuprasad.com/mypics/gmail.gif" width="845" /&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;u&gt;Chat:&lt;br /&gt;&lt;/u&gt;&lt;/strong&gt;To get the Chat working you dont have to do anything. That is the best part!!! 30 mins from the time you log in to your Dashboard, the chat would be available. You just need to download the client and sign in. All the features available in Gtalk are present. You can call people, leave voicemail and pretty much do everything you did in Gtalk. &lt;/p&gt;&lt;p&gt;You are also adviced to setup &lt;strong&gt;&lt;a href="http://en.wikipedia.org/wiki/Extensible_Messaging_and_Presence_Protocol" title="Wikipedia about XMPP" target="_blank"&gt;XMPP&lt;/a&gt;&lt;/strong&gt; for the chat. XMPP (Extensible Messaging and Presence Protocol) is an open, XML based instant mesaging protocol. The help link suggest that you edit the Service Record (SRV) and suggests the values you need to provide. You are better off not worrying about this. The main reason being you will never be able to find the SRV settings in your Domain Control Panel. &lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;u&gt;Calendar:&lt;/u&gt;&lt;/strong&gt;&lt;br /&gt;There is again no difference between the Google Calendar and the one given away as part of the GAYD. How can there be any difference, both are powered by the same codebase. You can also find the calendar link on the top left corner above the logo in your dashboard and mail interface.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;u&gt;Domain web pages:&lt;/u&gt;&lt;/strong&gt;&lt;br /&gt;You need to change the &lt;strong&gt;&lt;a href="http://en.wikipedia.org/wiki/Canonical_name" title="CNAME" target="_blank"&gt;CNAME&lt;/a&gt;&lt;/strong&gt; record in your domain setting for publishing the web pages. A CNAME record or Canonical Name record makes one domain name an alias of another. &lt;/p&gt;&lt;p&gt;This is a 3 step process. In the 1 step you are asked pick up the address for your website&lt;br /&gt;&lt;img alt="Step 1" height="319" src="http://vishnuprasad.com/mypics/step1.gif" style="width:713px;height:319px;" title="Step 1" width="713" /&gt;&lt;br /&gt;In the 2 step: you need to confirm the same. &lt;strong&gt;Caution&lt;/strong&gt;: Once you confirm this step you will not allowed to change the address after this step. &lt;br /&gt;&lt;img alt="Step 2" height="276" src="http://vishnuprasad.com/mypics/step2.gif" style="width:608px;height:276px;" title="Step 2" width="608" /&gt;&lt;/p&gt;&lt;p&gt;Since my site is already hosted, i didnt proceed to the third step. I presume you wil be asked to edit the CNAME with the values provided by Google. You can change the CNAME settings in the DNS section of your sites&amp;#39;s control panel. If you skip this step you still be able to create web pages but you will not be able to publish them to your site. &lt;/p&gt;&lt;p&gt;&lt;strong&gt;Highlights:&lt;/strong&gt;&lt;/p&gt;&lt;ol&gt;&lt;li&gt;You can check both gmail and GAYD mailboxes at the same time. ;-)&lt;/li&gt;&lt;li&gt;9/10 people would not be able to say if u r using GAYD or Gmail. And if you dont happen to change to your custom logo, then make it 10/10&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;&lt;strong&gt;Lowlights:&lt;/strong&gt;&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Looks like google was late by few months on releasing GAYD. Microsoft has gone live recently with &lt;a href="http://get.live.com/domains/overview" title="Live domains" target="_blank"&gt;Live Domain &lt;/a&gt;which was in beta for nearly 6 months or more. &lt;a href="http://get.live.com/domains/overview" title="Live custom domains" target="_blank"&gt;Live custom domain&lt;/a&gt; also offer similar package. Except that the Messenger was not part of the package. &lt;/li&gt;&lt;li&gt;Of the 4 packages rolled out so far, only Gmail and Gtalk (if you consider Gatlk as an IM client)&amp;nbsp;would be their selling points. Look at my previous post on &lt;a href="http://vishnuprasad.com/archive/2006/08/17/Google-Talk-supports-Voice-Mail.aspx" title="Gtalk IM market share" target="_blank"&gt;Google Talk&lt;/a&gt; on analysis and market share of Gatlk. Google Calendar and Google Web page creation are just for increasing the package count. Web page creation tool is still a very primitive product by any standard and it never really took off. Google Calendar is still used by the Anything But Microsoft, ABM, group and again in that by the very small subset of die-hard googler&amp;#39;s.&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;&lt;strong&gt;Strategy:&amp;nbsp;&lt;/strong&gt;&lt;br /&gt;Microsoft does provide all these features and more under their &lt;a href="http://ideas.live.com/" title="Microsoft Live Products" target="_blank"&gt;Live umbrella&lt;/a&gt;. Microsoft still has a headstart of more than 6 months when compared to google. We still believe that Google has rolled out a half backed product. Google should have added few more of their goodies into the GAYD. It could have integrated the Google Video, Earth and the ability to post to blogger from a single interface or from gmail. If only someone would have bothered to lookup in their impressive &lt;a href="http://www.google.com/intl/en/options/" title="Google Products List" target="_blank"&gt;product list&lt;/a&gt;&lt;/p&gt;&lt;p&gt;One thing is proved for sure. &lt;a href="http://en.wikipedia.org/wiki/Software_as_a_Service" title="Software As A Service" target="_blank"&gt;Software as a Service&lt;/a&gt; is here to stay. Its not just a mere marketing ploy like &lt;a href="http://en.wikipedia.org/wiki/Web_2" title="Web 2.0" target="_blank"&gt;Web 2.0&lt;/a&gt;. This reminds me of my fellow blogger &lt;a href="http://jayadev.blogsome.com/" title="Jayadev Blog" target="_blank"&gt;JayaDev&amp;#39;s&lt;/a&gt; favourite quote.&lt;br /&gt;&amp;quot;What&amp;#39;s web 2.0 ?&amp;quot;&lt;br /&gt;&amp;quot;Something which produces more RSS than Revenue&amp;quot; ;) [If you know what he mean]&lt;/p&gt;&lt;p&gt;&lt;font color="#0000ff"&gt;Happy Blogging&lt;/font&gt;&lt;/p&gt;
&lt;div class = "shareblock"&gt;&lt;strong&gt;Share this post:&lt;/strong&gt; &lt;a href = "mailto:?body=Thought you might like this: http://vishnuprasad.com/archive/2006/09/03/First-look-at-Google-Applications-for-Your-Domian-_2800_beta_2900_.aspx&amp;amp;;subject=First+look+at+Google+Applications+for+Your+Domian+(beta)" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/09/03/First-look-at-Google-Applications-for-Your-Domian-_2800_beta_2900_.aspx"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://vishnuprasad.com/archive/2006/09/03/First-look-at-Google-Applications-for-Your-Domian-_2800_beta_2900_.aspx&amp;amp;;title=First+look+at+Google+Applications+for+Your+Domian+(beta)" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/09/03/First-look-at-Google-Applications-for-Your-Domian-_2800_beta_2900_.aspx"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://vishnuprasad.com/archive/2006/09/03/First-look-at-Google-Applications-for-Your-Domian-_2800_beta_2900_.aspx&amp;amp;;phase=2" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/09/03/First-look-at-Google-Applications-for-Your-Domian-_2800_beta_2900_.aspx"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://vishnuprasad.com/archive/2006/09/03/First-look-at-Google-Applications-for-Your-Domian-_2800_beta_2900_.aspx&amp;amp;title=First+look+at+Google+Applications+for+Your+Domian+(beta)" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/09/03/First-look-at-Google-Applications-for-Your-Domian-_2800_beta_2900_.aspx"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://vishnuprasad.com/archive/2006/09/03/First-look-at-Google-Applications-for-Your-Domian-_2800_beta_2900_.aspx&amp;amp;;title=First+look+at+Google+Applications+for+Your+Domian+(beta)" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/09/03/First-look-at-Google-Applications-for-Your-Domian-_2800_beta_2900_.aspx"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;;mkt=en-us&amp;amp;;url=http://vishnuprasad.com/archive/2006/09/03/First-look-at-Google-Applications-for-Your-Domian-_2800_beta_2900_.aspx&amp;amp;;title=First+look+at+Google+Applications+for+Your+Domian+(beta)&amp;amp;;top=1" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/09/03/First-look-at-Google-Applications-for-Your-Domian-_2800_beta_2900_.aspx"&gt;live it!&lt;/a&gt;&lt;/div&gt;&lt;img src="http://vishnuprasad.com/aggbug.aspx?PostID=27" width="1" height="1"&gt;</description></item><item><title>Microsoft investigates leak of &quot;Office&quot; videos</title><link>http://vishnuprasad.com/archive/2006/08/29/Microsoft-investigates-leak-of-_2200_Office_2200_-videos.aspx</link><pubDate>Wed, 30 Aug 2006 02:45:00 GMT</pubDate><guid isPermaLink="false">bf6bce95-1e81-4ef7-965f-45bc55c1466c:23</guid><dc:creator>Vishnu</dc:creator><slash:comments>1</slash:comments><comments>http://vishnuprasad.com/comments/23.aspx</comments><wfw:commentRss>http://vishnuprasad.com/commentrss.aspx?PostID=23</wfw:commentRss><wfw:comment>http://vishnuprasad.com/rsscomments.aspx?PostID=23</wfw:comment><description>&lt;p&gt;Microsoft said on Tuesday it was investigating how two in-house training videos made by British comedian Ricky Gervais , creator of &amp;quot;The Office&amp;quot; television series, appeared on Web sites. It appeared on YouTube and Google Video, Altough it was pulled off from YouTube, its still available in Google Video. &lt;span class="yqlink"&gt;       &lt;span class="yqimgins"&gt;&lt;/span&gt;&lt;/span&gt;The Office is a mock documentary set in a company whose politically incorrect manager, David Brent, believes, wrongly, he is amusing and popular. &amp;quot;These videos were produced for internal use and were never intended to be viewed by the public,&amp;quot; said the company&amp;#39;s spokeswoman.&lt;/p&gt;&lt;p&gt;&amp;nbsp;You can watch the Videos &lt;a href="http://video.google.com/videoplay?docid=9076288729387457440&amp;amp;q=Microsoft+Office+videos&amp;amp;hl=en" title="Microsoft Office Spoof 1 "&gt;Here &lt;/a&gt;and &lt;a href="http://video.google.com/videoplay?docid=959125392868390030&amp;amp;q=Microsoft+Office+videos&amp;amp;hl=en" title="Microsoft Office Spoof 2"&gt;Here &lt;/a&gt;&lt;/p&gt;&lt;p&gt;Happy Blogging&lt;br /&gt;&lt;strong&gt;:B&lt;/strong&gt;&amp;nbsp;&lt;/p&gt;
&lt;div class = "shareblock"&gt;&lt;strong&gt;Share this post:&lt;/strong&gt; &lt;a href = "mailto:?body=Thought you might like this: http://vishnuprasad.com/archive/2006/08/29/Microsoft-investigates-leak-of-_2200_Office_2200_-videos.aspx&amp;amp;;subject=Microsoft+investigates+leak+of+%26quot%3bOffice%26quot%3b+videos" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/08/29/Microsoft-investigates-leak-of-_2200_Office_2200_-videos.aspx"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://vishnuprasad.com/archive/2006/08/29/Microsoft-investigates-leak-of-_2200_Office_2200_-videos.aspx&amp;amp;;title=Microsoft+investigates+leak+of+%26quot%3bOffice%26quot%3b+videos" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/08/29/Microsoft-investigates-leak-of-_2200_Office_2200_-videos.aspx"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://vishnuprasad.com/archive/2006/08/29/Microsoft-investigates-leak-of-_2200_Office_2200_-videos.aspx&amp;amp;;phase=2" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/08/29/Microsoft-investigates-leak-of-_2200_Office_2200_-videos.aspx"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://vishnuprasad.com/archive/2006/08/29/Microsoft-investigates-leak-of-_2200_Office_2200_-videos.aspx&amp;amp;title=Microsoft+investigates+leak+of+%26quot%3bOffice%26quot%3b+videos" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/08/29/Microsoft-investigates-leak-of-_2200_Office_2200_-videos.aspx"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://vishnuprasad.com/archive/2006/08/29/Microsoft-investigates-leak-of-_2200_Office_2200_-videos.aspx&amp;amp;;title=Microsoft+investigates+leak+of+%26quot%3bOffice%26quot%3b+videos" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/08/29/Microsoft-investigates-leak-of-_2200_Office_2200_-videos.aspx"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;;mkt=en-us&amp;amp;;url=http://vishnuprasad.com/archive/2006/08/29/Microsoft-investigates-leak-of-_2200_Office_2200_-videos.aspx&amp;amp;;title=Microsoft+investigates+leak+of+%26quot%3bOffice%26quot%3b+videos&amp;amp;;top=1" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/08/29/Microsoft-investigates-leak-of-_2200_Office_2200_-videos.aspx"&gt;live it!&lt;/a&gt;&lt;/div&gt;&lt;img src="http://vishnuprasad.com/aggbug.aspx?PostID=23" width="1" height="1"&gt;</description></item><item><title>Google Adsense installed on my site</title><link>http://vishnuprasad.com/archive/2006/08/27/Google-Adsense-installed-on-my-site.aspx</link><pubDate>Sun, 27 Aug 2006 16:28:00 GMT</pubDate><guid isPermaLink="false">bf6bce95-1e81-4ef7-965f-45bc55c1466c:20</guid><dc:creator>Vishnu</dc:creator><slash:comments>12350</slash:comments><comments>http://vishnuprasad.com/comments/20.aspx</comments><wfw:commentRss>http://vishnuprasad.com/commentrss.aspx?PostID=20</wfw:commentRss><wfw:comment>http://vishnuprasad.com/rsscomments.aspx?PostID=20</wfw:comment><description>&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; Finally got&lt;a href="https://www.google.com/adsense/" title="Google Adsense" target="_blank"&gt; Goolge AdSense&lt;/a&gt; to add some advertisement on my site. &lt;a href="https://www.google.com/webmasters/sitemaps/siteoverview" title="Google Site Index" target="_blank"&gt;Google SiteIndex&lt;/a&gt; added to my site too. Its almost like a kid&amp;#39;s stuff.
Here, i would like to talk about this amazing product called &lt;a href="http://communityserver.org" title="communityserver.org/" target="_blank"&gt;Community
Server&lt;/a&gt;. Our University Science batchmates are planning to build our own
website (finally!!!). Some of us are working on web technologies and
most of them are not. So we are having some hugh chain mails running in
our google group. I proposed to use Community Server to power our site.
But we have a difference of opinion here. Some of them want to host it
on some LAMP thing.... (Dont know exactly what it is....) So we are in
the process of finalizing in coming week (hopefully). This being the
main reason why i want to use all the &lt;em&gt;happening things&lt;/em&gt; on my site. And&lt;a href="https://www.google.com/adsense/" target="_blank"&gt; Google Ads &lt;/a&gt;are the &lt;em&gt;in thing &lt;/em&gt;now.
So got my site to display the first batch of google ads with just few
lines of code. Also letting the Google Spiders to crawl on my site. As
of now, the website, tentatively is to be called &lt;a href="http://platform9.net" title="Our Univeristy batch web site" target="_blank"&gt;http://platform9.net. &lt;/a&gt;I
hope to use this blog site as a Proof Of Concept (POC) to demonstrate
the RAW power which Community Server Provides. And not to forget the
innovative, stunning support of the community. Mind blowing. The moment
any new thing comes up, people get started on writting mods/add
on&amp;#39;s/plugin&amp;#39;s for it. The latest being the &lt;a href="http://vishnuprasad.com/archive/2006/08/16/Windows-Live-Writer-is-available.aspx" title="Windows Live Writer" target="_blank"&gt;Windows Live Writter&lt;/a&gt;
about which i blogged. I thought i was the first from our community to
get a post out from it. But i was pleasently surprised when i saw more
than 10 to 12 post before me. And couple of our active members are even
started writting gadgets for it. Phew...&lt;br /&gt;

&lt;p&gt;The bare minimum which i can do is to pass on the knowledge to the
newbee&amp;#39;s. I am writting an article on adding Google Sitemap and Google
Adsense to the site. I hope it sees the light of the day very soon. I
also have some Knowledge Sharing stuff on SQL Server 2005, SSIS
packages. I hope to complete them soon.&lt;/p&gt;
&lt;p&gt;Do click on the &lt;a href="https://www.google.com/adsense/" target="_blank"&gt;Goolge &lt;/a&gt;&lt;a href="https://www.google.com/adsense/" target="_blank"&gt;ad banner &lt;/a&gt;on the top of the page, atleast just for fun!!!!!&lt;/p&gt;

&lt;p&gt;Happy Blogging&lt;br /&gt;
&lt;strong&gt;&lt;font color="blue"&gt;:B&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;div class = "shareblock"&gt;&lt;strong&gt;Share this post:&lt;/strong&gt; &lt;a href = "mailto:?body=Thought you might like this: http://vishnuprasad.com/archive/2006/08/27/Google-Adsense-installed-on-my-site.aspx&amp;amp;;subject=Google+Adsense+installed+on+my+site" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/08/27/Google-Adsense-installed-on-my-site.aspx"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://vishnuprasad.com/archive/2006/08/27/Google-Adsense-installed-on-my-site.aspx&amp;amp;;title=Google+Adsense+installed+on+my+site" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/08/27/Google-Adsense-installed-on-my-site.aspx"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://vishnuprasad.com/archive/2006/08/27/Google-Adsense-installed-on-my-site.aspx&amp;amp;;phase=2" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/08/27/Google-Adsense-installed-on-my-site.aspx"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://vishnuprasad.com/archive/2006/08/27/Google-Adsense-installed-on-my-site.aspx&amp;amp;title=Google+Adsense+installed+on+my+site" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/08/27/Google-Adsense-installed-on-my-site.aspx"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://vishnuprasad.com/archive/2006/08/27/Google-Adsense-installed-on-my-site.aspx&amp;amp;;title=Google+Adsense+installed+on+my+site" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/08/27/Google-Adsense-installed-on-my-site.aspx"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;;mkt=en-us&amp;amp;;url=http://vishnuprasad.com/archive/2006/08/27/Google-Adsense-installed-on-my-site.aspx&amp;amp;;title=Google+Adsense+installed+on+my+site&amp;amp;;top=1" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/08/27/Google-Adsense-installed-on-my-site.aspx"&gt;live it!&lt;/a&gt;&lt;/div&gt;&lt;img src="http://vishnuprasad.com/aggbug.aspx?PostID=20" width="1" height="1"&gt;</description></item><item><title>IE 7 RC1 available</title><link>http://vishnuprasad.com/archive/2006/08/24/IE-7-RC1-available.aspx</link><pubDate>Fri, 25 Aug 2006 04:22:00 GMT</pubDate><guid isPermaLink="false">bf6bce95-1e81-4ef7-965f-45bc55c1466c:19</guid><dc:creator>Vishnu</dc:creator><slash:comments>8133</slash:comments><comments>http://vishnuprasad.com/comments/19.aspx</comments><wfw:commentRss>http://vishnuprasad.com/commentrss.aspx?PostID=19</wfw:commentRss><wfw:comment>http://vishnuprasad.com/rsscomments.aspx?PostID=19</wfw:comment><description>&lt;p&gt;Good news, IE7 is out of beta now. Bad news, it requires Genuine Windows OS to run. In case you happen to use Genuine Windows, you download IE7 &lt;a href="http://www.microsoft.com/downloads/details.aspx?familyid=94E5BF41-2907-4415-8F72-DA7C2C2ACE09&amp;amp;displaylang=en" title="IE7 RC1 download" target="_blank"&gt;here.&lt;/a&gt;&lt;/p&gt;&lt;p&gt;On a different note, here is more evidence of the well know &lt;a href="http://www.flickr.com/photos/josh_charles/223825664/" title="Memory leak in Firefox" target="_blank"&gt;Memory leak in Firefox&lt;/a&gt;. I have noticed this more often now-a-days. I use IE 6 and Firefox @ home. Firefox a.k.a FF has lot of known issues. For apparently no sane reason, FF hangs. This is noticible when my system does not recieve data from broadband connection. The number of tabs opened are less then 4. Also, there are no extensions installed. &lt;/p&gt;&lt;p&gt;Worst, when FF dies and i try to resurrect it again by opening it again, it does not show up. It stays in memory and keep hogging memeory. I think, it is time &lt;strong&gt;G&lt;/strong&gt;oogle stop promoting FF for personal gains and look at Opera or Safari.&amp;nbsp; Wonder if there is any hidden conspiracy by google here. Its trying to sabotage FF and come up with its own Browser. Its no secret that &lt;strong&gt;G&lt;/strong&gt; funds Mozilla. Its time Mozilla start thinking on its own. End of the day its business and Google knows how to be in business..&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;
&lt;div class = "shareblock"&gt;&lt;strong&gt;Share this post:&lt;/strong&gt; &lt;a href = "mailto:?body=Thought you might like this: http://vishnuprasad.com/archive/2006/08/24/IE-7-RC1-available.aspx&amp;amp;;subject=IE+7+RC1+available" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/08/24/IE-7-RC1-available.aspx"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://vishnuprasad.com/archive/2006/08/24/IE-7-RC1-available.aspx&amp;amp;;title=IE+7+RC1+available" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/08/24/IE-7-RC1-available.aspx"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://vishnuprasad.com/archive/2006/08/24/IE-7-RC1-available.aspx&amp;amp;;phase=2" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/08/24/IE-7-RC1-available.aspx"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://vishnuprasad.com/archive/2006/08/24/IE-7-RC1-available.aspx&amp;amp;title=IE+7+RC1+available" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/08/24/IE-7-RC1-available.aspx"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://vishnuprasad.com/archive/2006/08/24/IE-7-RC1-available.aspx&amp;amp;;title=IE+7+RC1+available" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/08/24/IE-7-RC1-available.aspx"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;;mkt=en-us&amp;amp;;url=http://vishnuprasad.com/archive/2006/08/24/IE-7-RC1-available.aspx&amp;amp;;title=IE+7+RC1+available&amp;amp;;top=1" target="_blank" title = "Post http://vishnuprasad.com/archive/2006/08/24/IE-7-RC1-available.aspx"&gt;live it!&lt;/a&gt;&lt;/div&gt;&lt;img src="http://vishnuprasad.com/aggbug.aspx?PostID=19" width="1" height="1"&gt;</description><category domain="http://vishnuprasad.com/archive/tags/Microsoft/default.aspx">Microsoft</category></item></channel></rss>