<?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 Insights</title>
	<atom:link href="http://www.pranavsharma.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pranavsharma.com/blog</link>
	<description>A fresh perspective on the world of technology</description>
	<lastBuildDate>Sat, 27 Feb 2010 01:25:04 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>MOSS &#8211; Site Local Search incompatible with Server Name Mappings</title>
		<link>http://www.pranavsharma.com/blog/2010/02/26/moss-site-local-search-incompatible-with-server-name-mappings/</link>
		<comments>http://www.pranavsharma.com/blog/2010/02/26/moss-site-local-search-incompatible-with-server-name-mappings/#comments</comments>
		<pubDate>Sat, 27 Feb 2010 01:25:04 +0000</pubDate>
		<dc:creator>Pranav Sharma</dc:creator>
				<category><![CDATA[Sharepoint 2007 ( MOSS / WSS )]]></category>

		<guid isPermaLink="false">http://www.pranavsharma.com/blog/2010/02/26/moss-site-local-search-incompatible-with-server-name-mappings/</guid>
		<description><![CDATA[In order to do site specific search (a.k.a. “This Site” scope) you can append a query string parameter as follows-
http://server/results.aspx?k=sharepoint&#38;u=http%3A%2F%2Fserver%2Flists
Problem       The above will return zero results if you have a server name mapping configured in your search settings-
 
Solution    Removing the server name mapping will resolve [...]]]></description>
			<content:encoded><![CDATA[<p>In order to do site specific search (a.k.a. “This Site” scope) you can append a query string parameter as follows-</p>
<p><a href="http://server/results.aspx?k=sharepoint&amp;u=http%3A%2F%2Fserver%2Flists">http://server/results.aspx?k=sharepoint&amp;<strong>u=http%3A%2F%2Fserver%2Flists</strong></a></p>
<p><strong><u>Problem       <br /></u></strong>The above will return zero results if you have a server name mapping configured in your search settings-</p>
<p><a href="http://www.pranavsharma.com/blog/wp-content/uploads/2010/02/image.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.pranavsharma.com/blog/wp-content/uploads/2010/02/image_thumb.png" width="459" height="183" /></a> </p>
<p><strong><u>Solution</u></strong>    <br />Removing the server name mapping will resolve this issue and site specific search works as expected</p>
<p>&#160;</p>
<p>Tip: Adding a query string url restriction is equivalent to the following-   <br />&#160;<a href="http://www.pranavsharma.com/blog/wp-content/uploads/2010/02/image1.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.pranavsharma.com/blog/wp-content/uploads/2010/02/image_thumb1.png" width="322" height="70" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.pranavsharma.com/blog/2010/02/26/moss-site-local-search-incompatible-with-server-name-mappings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Text selection disabled w/ Kwizcom Calendar Plus</title>
		<link>http://www.pranavsharma.com/blog/2010/01/26/text-selection-disabled-w-kwizcom-calendar-plus/</link>
		<comments>http://www.pranavsharma.com/blog/2010/01/26/text-selection-disabled-w-kwizcom-calendar-plus/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 15:52:37 +0000</pubDate>
		<dc:creator>Pranav Sharma</dc:creator>
				<category><![CDATA[Kwizcom]]></category>
		<category><![CDATA[Sharepoint 2007 ( MOSS / WSS )]]></category>

		<guid isPermaLink="false">http://www.pranavsharma.com/blog/2010/01/26/text-selection-disabled-w-kwizcom-calendar-plus/</guid>
		<description><![CDATA[Problem        After installing Kwizcom Calendar 3.2.90, text selection is disabled on your sharepoint site on pages that have the calendar webpart. This was a huge issue for us since we had the minicalendar in the page header.
Workaround     Modify one of the Kwizcom javascript files [...]]]></description>
			<content:encoded><![CDATA[<p><strong><u>Problem        <br /></u></strong>After installing Kwizcom Calendar 3.2.90, text selection is disabled on your sharepoint site on pages that have the calendar webpart. This was a huge issue for us since we had the minicalendar in the page header.</p>
<p><strong><u>Workaround </u></strong>    <br />Modify one of the Kwizcom javascript files (“12\TEMPLATE\LAYOUTS\KWizCom_KSCP\KSCP.js”) to comment out the drag drop functionality (See lines 13, 21 &amp; 22) -</p>
<div class="csharpcode">
<div class="csharpcode">
<pre><span class="lnum">   1:  </span><span class="kwrd">function</span> kwiz_cal_DragDropOnLoad(q)</pre>
<pre><span class="lnum">   2:  </span>{</pre>
<pre><span class="lnum">   3:  </span>    g_WPQ = q;</pre>
<pre><span class="lnum">   4:  </span>&#160;</pre>
<pre><span class="lnum">   5:  </span>    <span class="rem">// attach onscroll event (needed for recalculating table cells positions)</span></pre>
<pre><span class="lnum">   6:  </span>    window.onscroll = kwiz_cal_Scroll;</pre>
<pre><span class="lnum">   7:  </span>    </pre>
<pre><span class="lnum">   8:  </span>    <span class="kwrd">if</span>(browseris.ie || browseris.safari)</pre>
<pre><span class="lnum">   9:  </span>    {</pre>
<pre><span class="lnum">  10:  </span>        kwiz_cal_Calculate_Cells();</pre>
<pre><span class="lnum">  11:  </span>        </pre>
<pre><span class="lnum">  12:  </span>        <span class="rem">// disable text selection for ie, safari</span></pre>
<pre><span class="lnum">  13:  </span>        <span class="rem">//document.onselectstart = function(event) {return false};</span></pre>
<pre><span class="lnum">  14:  </span>    }</pre>
<pre><span class="lnum">  15:  </span>    <span class="kwrd">else</span></pre>
<pre><span class="lnum">  16:  </span>    {</pre>
<pre><span class="lnum">  17:  </span>        <span class="rem">// firefox does not execute this function when assigning to onscroll event, but IE &amp; Chrome do</span></pre>
<pre><span class="lnum">  18:  </span>        kwiz_cal_Scroll(); </pre>
<pre><span class="lnum">  19:  </span>        </pre>
<pre><span class="lnum">  20:  </span>        <span class="rem">// disable text selection for firefox</span></pre>
<pre><span class="lnum">  21:  </span>        <span class="rem">//if (typeof document.body.style.MozUserSelect != &quot;undefined&quot;) </span></pre>
<pre><span class="lnum">  22:  </span>        <span class="rem">//    document.body.style.MozUserSelect = &quot;none&quot;;</span></pre>
<pre><span class="lnum">  23:  </span>    }</pre>
<pre><span class="lnum">  24:  </span>}</pre>
</p></div>
<style type="text/css">
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
</div>
<style type="text/css">
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
<style type="text/css">
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
</p>
<p><strong><u>More Info</u></strong></p>
<p>The official word from Kwizcom Support on this issue is as follows: </p>
<p><em>“The issue is caused by dragdrop functionality. The new release version 3.3.00 will allow the users to disable drag drop through settings.&#160; Currently there is no exact timeline for release.”</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.pranavsharma.com/blog/2010/01/26/text-selection-disabled-w-kwizcom-calendar-plus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chromium OS &#8211; First Look</title>
		<link>http://www.pranavsharma.com/blog/2009/11/20/chromium-os-first-look/</link>
		<comments>http://www.pranavsharma.com/blog/2009/11/20/chromium-os-first-look/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 09:07:09 +0000</pubDate>
		<dc:creator>Pranav Sharma</dc:creator>
				<category><![CDATA[Chromium OS]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[Chromium]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Operating System]]></category>
		<category><![CDATA[OS]]></category>

		<guid isPermaLink="false">http://www.pranavsharma.com/blog/2009/11/20/chromium-os-first-look/</guid>
		<description><![CDATA[1) Boot up &#38; Login    You can login using either your regular Gmail account or your Google apps account. You can even sign in when there is no network connection. Presumably you would have had to sign in once with the network on but from there on outwards the OS seems to [...]]]></description>
			<content:encoded><![CDATA[<p><strong>1) Boot up &amp; Login</strong>    <br />You can login using either your regular Gmail account or your Google apps account. You can even sign in when there is no network connection. Presumably you would have had to sign in once with the network on but from there on outwards the OS seems to cache your credentials.</p>
<p>Boot up was under 15 seconds on all attempts with a VMware configured with 256MB RAM and 1 Processor at 2.4 GHz. From login screen to home screen took under 5 seconds on all attempts.</p>
<p><a href="http://www.pranavsharma.com/blog/wp-content/uploads/2009/11/image19.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Login" border="0" alt="Login" src="http://www.pranavsharma.com/blog/wp-content/uploads/2009/11/image_thumb19.png" width="454" height="342" /></a> </p>
<p><a href="http://www.pranavsharma.com/blog/wp-content/uploads/2009/11/image20.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Signing In" border="0" alt="Signing In" src="http://www.pranavsharma.com/blog/wp-content/uploads/2009/11/image_thumb20.png" width="454" height="342" /></a> </p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong>2) Inside the OS     <br /></strong>Upon the first login, Chrome OS opens up 2 tabs that would be most commonly used: Mail &amp; Calendar. However after resetting the machine chromium only displayed the Google home screen. The homepages are configurable (See configuration options below)</p>
<p>There is a button on the top left that seems to be the equivalent of a “Start” button in windows. However you need a “@google.com” account to access any “Google Short Links” here. Neither my Gmail account nor my Google Apps account worked here.</p>
</p>
<p><a href="http://www.pranavsharma.com/blog/wp-content/uploads/2009/11/image21.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Homepage" border="0" alt="Homepage" src="http://www.pranavsharma.com/blog/wp-content/uploads/2009/11/image_thumb21.png" width="454" height="342" /></a> </p>
</p>
<p><a href="http://www.pranavsharma.com/blog/wp-content/uploads/2009/11/image22.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Chrome Button" border="0" alt="Chrome Button" src="http://www.pranavsharma.com/blog/wp-content/uploads/2009/11/image_thumb22.png" width="454" height="342" /></a> </p>
</p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong>3) Configuration Options</strong>    <br />Configuration options can be accessed from the top right drop down menu. Looks like Google is planning on supporting other browsers besides just chrome based upon the second configuration screen.</p>
<p><a href="http://www.pranavsharma.com/blog/wp-content/uploads/2009/11/image23.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Options" border="0" alt="Options" src="http://www.pranavsharma.com/blog/wp-content/uploads/2009/11/image_thumb23.png" width="454" height="342" /></a> </p>
<p><a href="http://www.pranavsharma.com/blog/wp-content/uploads/2009/11/image24.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Chromium OS" border="0" alt="Chromium OS" src="http://www.pranavsharma.com/blog/wp-content/uploads/2009/11/image_thumb24.png" width="454" height="342" /></a> </p>
<p><a href="http://www.pranavsharma.com/blog/wp-content/uploads/2009/11/image25.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Basics" border="0" alt="Basics" src="http://www.pranavsharma.com/blog/wp-content/uploads/2009/11/image_thumb25.png" width="454" height="342" /></a> </p>
<p><a href="http://www.pranavsharma.com/blog/wp-content/uploads/2009/11/image26.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Personal Stuff" border="0" alt="Personal Stuff" src="http://www.pranavsharma.com/blog/wp-content/uploads/2009/11/image_thumb26.png" width="454" height="342" /></a> </p>
<p><a href="http://www.pranavsharma.com/blog/wp-content/uploads/2009/11/image27.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Under the Hood" border="0" alt="Under the Hood" src="http://www.pranavsharma.com/blog/wp-content/uploads/2009/11/image_thumb27.png" width="454" height="342" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.pranavsharma.com/blog/2009/11/20/chromium-os-first-look/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Custom Alert Template</title>
		<link>http://www.pranavsharma.com/blog/2009/11/10/custom-alert-template/</link>
		<comments>http://www.pranavsharma.com/blog/2009/11/10/custom-alert-template/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 04:14:26 +0000</pubDate>
		<dc:creator>Pranav Sharma</dc:creator>
				<category><![CDATA[Sharepoint 2007 ( MOSS / WSS )]]></category>

		<guid isPermaLink="false">http://www.pranavsharma.com/blog/2009/11/10/custom-alert-template/</guid>
		<description><![CDATA[Are your alert emails defaulting to the generic template (SPAlertTemplateType.GenericList) even after you’ve specifically updated the list to use a custom alert email template (using myList.AlertTemplate)?
 
Turns out that if you already have an existing alert setup on the list then even if you switch the list to use a different alert template, sharepoint sends [...]]]></description>
			<content:encoded><![CDATA[<p>Are your alert emails defaulting to the generic template (<em>SPAlertTemplateType.GenericList</em>) even after you’ve specifically updated the list to use a custom alert email template (<em>using myList.AlertTemplate</em>)?</p>
<p><a href="http://www.pranavsharma.com/blog/wp-content/uploads/2009/11/image.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="SPAlertTemplateType.GenericList" border="0" alt="SPAlertTemplateType.GenericList" src="http://www.pranavsharma.com/blog/wp-content/uploads/2009/11/image_thumb.png" width="642" height="234" /></a> </p>
<p>Turns out that if you already have an existing alert setup on the list then even if you switch the list to use a different alert template, sharepoint sends you alert emails using the template that was assigned to the list when you ORIGINALLY setup the alert.</p>
<p>So the <strong><u>SOLUTION</u></strong> is to delete your existing alert and re-subscribe to the list.</p>
<p>If you would like to know more on how to customize the alert email templates in sharepoint then this is a great resource: <a href="http://blogs.msdn.com/sharepointdeveloperdocs/archive/2007/12/07/customizing-alert-notifications-and-alert-templates-in-windows-sharepoint-services-3-0.aspx">Customizing Alert Notifications and Alert Templates in Windows SharePoint Services 3.0</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.pranavsharma.com/blog/2009/11/10/custom-alert-template/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMWARE Host IP Change</title>
		<link>http://www.pranavsharma.com/blog/2009/03/23/vmware-host-ip-change/</link>
		<comments>http://www.pranavsharma.com/blog/2009/03/23/vmware-host-ip-change/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 05:58:08 +0000</pubDate>
		<dc:creator>Pranav Sharma</dc:creator>
				<category><![CDATA[VMWARE]]></category>
		<category><![CDATA[VMWARE Server 2.0]]></category>

		<guid isPermaLink="false">http://www.pranavsharma.com/blog/2009/03/23/vmware-host-ip-change/</guid>
		<description><![CDATA[Did you recently change the IP address of your physical VMWARE host server? Are you having trouble getting into the web-based vmware console to manage your virtual machines? This post will help you solve a “503 Service Unavailable” error message.
 
I recently ran into this problem and soon realized that the “VMWARE Server Web Access” [...]]]></description>
			<content:encoded><![CDATA[<p>Did you recently change the IP address of your physical VMWARE host server? Are you having trouble getting into the web-based vmware console to manage your virtual machines? This post will help you solve a “503 Service Unavailable” error message.</p>
<p><a href="http://www.pranavsharma.com/blog/wp-content/uploads/2009/03/image.png"><img title="503 service unavailable" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="177" alt="503 service unavailable" src="http://www.pranavsharma.com/blog/wp-content/uploads/2009/03/image-thumb.png" width="402" border="0" /></a> </p>
<p>I recently ran into this problem and soon realized that the “VMWARE Server Web Access” service had stopped due to the IP Change.</p>
<p><a href="http://www.pranavsharma.com/blog/wp-content/uploads/2009/03/image1.png"><img title="VMware Server Web Access" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="181" alt="VMware Server Web Access" src="http://www.pranavsharma.com/blog/wp-content/uploads/2009/03/image-thumb1.png" width="420" border="0" /></a> </p>
<p>The solution is to simply start this service! You may notice a console window pops up and starts a tomcat process. Let this window run in the background. If you close it, then your service will stop again.</p>
<p><a href="http://www.pranavsharma.com/blog/wp-content/uploads/2009/03/image2.png"><img title="tomcat console window" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="317" alt="tomcat console window" src="http://www.pranavsharma.com/blog/wp-content/uploads/2009/03/image-thumb2.png" width="640" border="0" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.pranavsharma.com/blog/2009/03/23/vmware-host-ip-change/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>VMWARE Server and Windows 2003 SP2</title>
		<link>http://www.pranavsharma.com/blog/2009/01/06/vmware-server-and-windows-2003-sp2/</link>
		<comments>http://www.pranavsharma.com/blog/2009/01/06/vmware-server-and-windows-2003-sp2/#comments</comments>
		<pubDate>Tue, 06 Jan 2009 21:12:02 +0000</pubDate>
		<dc:creator>Pranav Sharma</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[AMD]]></category>
		<category><![CDATA[Network Adapter]]></category>
		<category><![CDATA[SP1]]></category>
		<category><![CDATA[SP2]]></category>
		<category><![CDATA[VMWARE Server]]></category>
		<category><![CDATA[Windows Server 2003 Enterprise R2]]></category>

		<guid isPermaLink="false">http://www.pranavsharma.com/blog/2009/01/06/vmware-server-and-windows-2003-sp2/</guid>
		<description><![CDATA[Did you upgrade your virtual machine to Windows Server 2003 SP 2 and found that the network adapter no longer works? This is a common problem on VMWARE server (2.0 in my case). 
To fix this, install Vmware tools on the virtual machine. You can kick-off the installation using the Vmware Server homepage on the [...]]]></description>
			<content:encoded><![CDATA[<p>Did you upgrade your virtual machine to Windows Server 2003 SP 2 and found that the network adapter no longer works? This is a common problem on VMWARE server (2.0 in my case). </p>
<p>To fix this, install Vmware tools on the virtual machine. You can kick-off the installation using the Vmware Server homepage on the physical host. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.pranavsharma.com/blog/2009/01/06/vmware-server-and-windows-2003-sp2/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>New metro buses</title>
		<link>http://www.pranavsharma.com/blog/2009/01/05/new-metro-buses/</link>
		<comments>http://www.pranavsharma.com/blog/2009/01/05/new-metro-buses/#comments</comments>
		<pubDate>Tue, 06 Jan 2009 02:14:22 +0000</pubDate>
		<dc:creator>Pranav Sharma</dc:creator>
				<category><![CDATA[Cars]]></category>
		<category><![CDATA[Driving/Traffic]]></category>

		<guid isPermaLink="false">http://www.pranavsharma.com/blog/2009/01/05/new-metro-buses/</guid>
		<description><![CDATA[I saw this bus in DC today-



]]></description>
			<content:encoded><![CDATA[<p>I saw this bus in DC today-</p>
<p><a href="http://www.pranavsharma.com/blog/wp-content/uploads/2009/01/p-640-480-04c127fd-4279-4d8a-a44d-ede8c448b228.jpeg"><img src="http://www.pranavsharma.com/blog/wp-content/uploads/2009/01/p-640-480-04c127fd-4279-4d8a-a44d-ede8c448b228.jpeg" alt="" width="225" height="300" class="alignnone size-full wp-image-364" /></a></p>
<p><a href="http://www.pranavsharma.com/blog/wp-content/uploads/2009/01/p-640-480-cfd9e18c-da9e-427f-a574-89d5733de625.jpeg"><img src="http://www.pranavsharma.com/blog/wp-content/uploads/2009/01/p-640-480-cfd9e18c-da9e-427f-a574-89d5733de625.jpeg" alt="" width="225" height="300" class="alignnone size-full wp-image-364" /></a></p>
<p><a href="http://www.pranavsharma.com/blog/wp-content/uploads/2009/01/p-640-480-c6512a29-ce23-44aa-9923-c1261f28d227.jpeg"><img src="http://www.pranavsharma.com/blog/wp-content/uploads/2009/01/p-640-480-c6512a29-ce23-44aa-9923-c1261f28d227.jpeg" alt="" width="225" height="300" class="alignnone size-full wp-image-364" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.pranavsharma.com/blog/2009/01/05/new-metro-buses/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Help &#8211; What utility is this?</title>
		<link>http://www.pranavsharma.com/blog/2008/04/01/help-what-utility-is-this/</link>
		<comments>http://www.pranavsharma.com/blog/2008/04/01/help-what-utility-is-this/#comments</comments>
		<pubDate>Tue, 01 Apr 2008 15:14:58 +0000</pubDate>
		<dc:creator>Pranav Sharma</dc:creator>
				<category><![CDATA[XP]]></category>

		<guid isPermaLink="false">http://www.pranavsharma.com/blog/2008/04/01/help-what-utility-is-this/</guid>
		<description><![CDATA[I just discovered a &#8216;feature&#8217; on my computer. When I press a button on my Microsoft Mouse which (Labeled &#8216;Instant Viewer&#8217; in control panel), I get the following-
 
This is basically a window switching utility. Trouble is, I NEVER INSTALLED ANY SUCH UTILITY! I can&#8217;t complain &#8211; I actually like this. However, I would still [...]]]></description>
			<content:encoded><![CDATA[<p>I just discovered a &#8216;feature&#8217; on my computer. When I press a button on my Microsoft Mouse which (Labeled &#8216;Instant Viewer&#8217; in control panel), I get the following-</p>
<p><a href="http://www.pranavsharma.com/blog/wp-content/uploads/2009/11/image28.png"><img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="Screenshot of Desktop" src="http://www.pranavsharma.com/blog/wp-content/uploads/2009/11/image_thumb28.png" width="454" height="306" /></a> </p>
<p>This is basically a window switching utility. Trouble is, I NEVER INSTALLED ANY SUCH UTILITY! I can&#8217;t complain &#8211; I actually like this. However, I would still like to figure out how I got to benefit this little feature. And just so we are clear, I don&#8217;t believe in a guardian angel.</p>
<p>Here is a list of software that I recently installed-</p>
<ol>
<li>Safari </li>
<li>FolderShare </li>
<li>Digsby </li>
<li>Google Desktop </li>
</ol>
<p>&#160;</p>
<p>&#160;</p>
<p>Please leave a comment with your guess!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pranavsharma.com/blog/2008/04/01/help-what-utility-is-this/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Luna Elements XP Theme Screenshots</title>
		<link>http://www.pranavsharma.com/blog/2008/04/01/luna-elements-xp-theme-screenshots/</link>
		<comments>http://www.pranavsharma.com/blog/2008/04/01/luna-elements-xp-theme-screenshots/#comments</comments>
		<pubDate>Tue, 01 Apr 2008 15:07:59 +0000</pubDate>
		<dc:creator>Pranav Sharma</dc:creator>
				<category><![CDATA[XP]]></category>

		<guid isPermaLink="false">http://www.pranavsharma.com/blog/2008/04/01/luna-elements-xp-theme-screenshots/</guid>
		<description><![CDATA[I recently installed a windows theme on my XP machine. It is fairly simple &#8211; you simply have to replace uxthemes.dll with a patched version that allows you to use non-microsoft signed themes in xp. No Bloatware.
Instructions &#38; Download
Now for the screenshots of my machine. Some details have been obfuscated.
 


]]></description>
			<content:encoded><![CDATA[<p>I recently installed a windows theme on my XP machine. It is fairly simple &#8211; you simply have to replace uxthemes.dll with a patched version that allows you to use non-microsoft signed themes in xp. No Bloatware.</p>
<p><a href="http://www.neowin.net/forum/index.php?showtopic=425759" target="_blank">Instructions &amp; Download</a></p>
<p>Now for the screenshots of my machine. Some details have been obfuscated.</p>
<p><a href="http://www.pranavsharma.com/blog/wp-content/uploads/2008/04/image1.png"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="642" alt="Desktop" src="http://www.pranavsharma.com/blog/wp-content/uploads/2008/04/image-thumb4.png" width="1028" border="0" /></a> </p>
<p><a href="http://www.pranavsharma.com/blog/wp-content/uploads/2008/04/image2.png"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="646" alt="Window Colors" src="http://www.pranavsharma.com/blog/wp-content/uploads/2008/04/image-thumb5.png" width="1028" border="0" /></a></p>
<p><a href="http://www.pranavsharma.com/blog/wp-content/uploads/2008/04/image3.png"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="730" alt="Start Menu" src="http://www.pranavsharma.com/blog/wp-content/uploads/2008/04/image-thumb6.png" width="502" border="0" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.pranavsharma.com/blog/2008/04/01/luna-elements-xp-theme-screenshots/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TwitterSync</title>
		<link>http://www.pranavsharma.com/blog/2008/04/01/twittersync/</link>
		<comments>http://www.pranavsharma.com/blog/2008/04/01/twittersync/#comments</comments>
		<pubDate>Tue, 01 Apr 2008 12:29:01 +0000</pubDate>
		<dc:creator>Pranav Sharma</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.pranavsharma.com/blog/2008/04/01/twittersync/</guid>
		<description><![CDATA[Do you twitter? Do you use the twitter Facebook application to update your Facebook status? If so, then this is for you.
The original Twitter Facebook application puts an annoying &#34;is twittering&#34; at the beginning of the status message in Facebook. The developer of the Twitter app said that this would be removed once Facebook removes [...]]]></description>
			<content:encoded><![CDATA[<p>Do you twitter? Do you use the twitter Facebook application to update your Facebook status? If so, then this is for you.</p>
<p>The original Twitter Facebook application puts an annoying &quot;is twittering&quot; at the beginning of the status message in Facebook. The developer of the Twitter app said that <a href="http://www.facebook.com/topic.php?uid=2231777543&amp;topic=3755" target="_blank">this would be removed once Facebook removes the &quot;is&quot; from their status messages</a>. To make a long story short, Facebook removed the &quot;is&quot; but the twitter application still puts in &quot;is twittering&quot;.</p>
<p>The solution is to use <a href="http://www.facebook.com/apps/application.php?id=6009973148&amp;ref=s" target="_blank">TwitterSync</a>. Twitter Sync is another Facebook application that not only removes the &quot;is twittering&quot; from your status updates but goes a step further to let you use customized verbs. It also lets you create filters on your twitters.</p>
<p><a href="http://www.facebook.com/apps/application.php?id=6009973148&amp;ref=s" target="_blank">TwitterSync</a> is worth checking out. [<a href="http://www.facebook.com/apps/application.php?id=6009973148&amp;ref=s" target="_blank">Link</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pranavsharma.com/blog/2008/04/01/twittersync/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
