<?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>TechBubble &#187; Internet</title>
	<atom:link href="http://www.kalyani.com/category/internet/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kalyani.com</link>
	<description>Nik Kalyani&#039;s Irrationally Exuberant Musings on Technology</description>
	<lastBuildDate>Sat, 21 Aug 2010 13:58:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Redirecting to Canonical URL in IIS7</title>
		<link>http://www.kalyani.com/2010/01/redirecting-to-canonical-url-in-iis7/</link>
		<comments>http://www.kalyani.com/2010/01/redirecting-to-canonical-url-in-iis7/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 04:42:50 +0000</pubDate>
		<dc:creator>nik</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[ASP.NET]]></category>

		<guid isPermaLink="false">http://kalyani.com/?p=1072</guid>
		<description><![CDATA[If you are using IIS7, it&#8217;s very easy to ensure that all requests always go to your preferred canonical URL. It&#8217;s a two step process: Step 1: Install the UrlRewrite module for IIS: http://www.iis.net/expand/URLRewrite Step 2: Add the following rule to your applications web.config file: &#60;configuration&#62; &#60;system.webServer&#62; &#60;rewrite&#62; &#60;rules&#62; &#60;clear /&#62; &#60;rule name=&#34;Redirect from www&#34; [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">If you are using IIS7, it&#8217;s very easy to ensure that all requests always go to your preferred canonical URL. It&#8217;s a two step process:</p>
<p style="text-align: left;"><strong>Step 1:</strong> Install the UrlRewrite module for IIS: <a href="http://www.iis.net/expand/URLRewrite" target="_blank">http://www.iis.net/expand/URLRewrite</a><a href="http://www.iis.net/expand/URLRewrite"><img class="size-full wp-image-1074 aligncenter" style="border: 0pt none; margin-top: 10px; margin-bottom: 10px;" title="IIS Rewrite" src="http://kalyani.com/wp-content/uploads/2010/01/iisrewrite.png" alt="IIS Rewrite" width="335" height="251" /></a></p>
<p><strong>Step 2:</strong> Add the following rule to your applications web.config file:</p>
<pre class="brush: xml;">&lt;configuration&gt;
 &lt;system.webServer&gt;
    &lt;rewrite&gt;
      &lt;rules&gt;
        &lt;clear /&gt;
        &lt;rule name=&quot;Redirect from www&quot; stopProcessing=&quot;true&quot;&gt;
           &lt;match url=&quot;.*&quot; /&gt;
           &lt;conditions&gt;
              &lt;add input=&quot;{HTTP_HOST}&quot; pattern=&quot;^www.yoursite.com$&quot; /&gt;
           &lt;/conditions&gt;
           &lt;action type=&quot;Redirect&quot; url=&quot;http://yoursite.com/{R:0}&quot; redirectType=&quot;Permanent&quot; /&gt;
        &lt;/rule&gt;
     &lt;/rules&gt;
   &lt;/rewrite&gt;
 &lt;/system.webServer&gt;
&lt;/configuration&gt;</pre>
<p><strong>IMPORTANT: </strong>When using the above code, take care to merge it with your existing web.config without duplicating any existing elements.</p>
<p>I like my URL&#8217;s to be in the format http://mysite.com. If you prefer http://www.mysite.com, simply remove &#8220;www.&#8221; from the &lt;add&gt; element and add it to the &lt;action&gt; element&#8217;s &#8220;url&#8221; attribute.</p>


<div class="shr-bookmarks shr-bookmarks-expand">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.kalyani.com/2010/01/redirecting-to-canonical-url-in-iis7/&amp;title=Redirecting+to+Canonical+URL+in+IIS7" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.kalyani.com/2010/01/redirecting-to-canonical-url-in-iis7/&amp;title=Redirecting+to+Canonical+URL+in+IIS7" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.kalyani.com/2010/01/redirecting-to-canonical-url-in-iis7/&amp;t=Redirecting+to+Canonical+URL+in+IIS7" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.kalyani.com/2010/01/redirecting-to-canonical-url-in-iis7/&amp;title=Redirecting+to+Canonical+URL+in+IIS7" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.kalyani.com/2010/01/redirecting-to-canonical-url-in-iis7/&amp;title=Redirecting+to+Canonical+URL+in+IIS7&amp;srcUrl=http://www.kalyani.com/2010/01/redirecting-to-canonical-url-in-iis7/&amp;srcTitle=Redirecting+to+Canonical+URL+in+IIS7&amp;snippet=If%20you%20are%20using%20IIS7%2C%20it%27s%20very%20easy%20to%20ensure%20that%20all%20requests%20always%20go%20to%20your%20preferred%20canonical%20URL.%20It%27s%20a%20two%20step%20process%3A%0D%0AStep%201%3A%20Install%20the%20UrlRewrite%20module%20for%20IIS%3A%20http%3A%2F%2Fwww.iis.net%2Fexpand%2FURLRewrite%0D%0AStep%202%3A%20Add%20the%20following%20rule%20to%20your%20applications%20web.config%20file%3A%0D%0A%0D%0A%5Bxml%5D%26lt" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.kalyani.com/2010/01/redirecting-to-canonical-url-in-iis7/&amp;title=Redirecting+to+Canonical+URL+in+IIS7&amp;summary=If%20you%20are%20using%20IIS7%2C%20it%27s%20very%20easy%20to%20ensure%20that%20all%20requests%20always%20go%20to%20your%20preferred%20canonical%20URL.%20It%27s%20a%20two%20step%20process%3A%0D%0AStep%201%3A%20Install%20the%20UrlRewrite%20module%20for%20IIS%3A%20http%3A%2F%2Fwww.iis.net%2Fexpand%2FURLRewrite%0D%0AStep%202%3A%20Add%20the%20following%20rule%20to%20your%20applications%20web.config%20file%3A%0D%0A%0D%0A%5Bxml%5D%26lt&amp;source=TechBubble" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.kalyani.com/2010/01/redirecting-to-canonical-url-in-iis7/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>NSF Website on Birth of Internet</title>
		<link>http://www.kalyani.com/2008/08/nsf-website-on-birth-of-internet/</link>
		<comments>http://www.kalyani.com/2008/08/nsf-website-on-birth-of-internet/#comments</comments>
		<pubDate>Mon, 18 Aug 2008 08:00:00 +0000</pubDate>
		<dc:creator>nik</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.techbubble.net/Blog/tabid/57/EntryId/209/NSF-Website-on-Birth-of-Internet.aspx</guid>
		<description><![CDATA[Om Malik posted about the NSF website chronicling the birth of the Internet. What a cool site. I skimmed it briefly and found this entry for 1980s: In the mid-1980s, NSF decided the time was right to try to link its regional university networks and its supercomputer centers together. This initial effort was called NSFNET. [...]]]></description>
			<content:encoded><![CDATA[<p>Om Malik <a href="http://gigaom.com/2008/08/18/nsf-tells-the-story-of-the-birth-of-the-internet/">posted</a> about the <a href="http://www.nsf.gov/news/special_reports/nsf-net/">NSF website chronicling the birth of the Internet</a>. What a cool site. I skimmed it briefly and found this entry for 1980s:</p>
<p><i>In the mid-1980s, NSF decided the time was right to try to link its regional university networks and its supercomputer centers together. This initial effort was called NSFNET. By 1987, participation in the new NSFNET project grew so rapidly that NSF knew it had to expand the capacity of this new network. In November of that year, it awarded a grant to a consortium of IBM, MCI, and a center at the University of Michigan called <b>Merit to create a network or networks&#8211;or internet&#8211;</b>capable of carrying data at speeds up to 56 kilobits a second. By July 1987, this new system was up and running. The modern Internet was born.</p>
<p></i>I came to the U.S. on Sept. 3, 1987 from India to begin my Bachelor&#8217;s degree at <a href="http://www.wmich.edu/">Western Michigan University</a>. I remember logging on to the <b>Merit</b> network that same month from the campus computer lab. Since, at the time, everything about computers was totally new to me (other than the Sinclair ZX Spectrum+, my home computer), I had no idea until today that this was a brand new network and more importantly, the first &#8220;network of networks.&#8221;</p>
<p></p>


<div class="shr-bookmarks shr-bookmarks-expand">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.kalyani.com/2008/08/nsf-website-on-birth-of-internet/&amp;title=NSF+Website+on+Birth+of+Internet" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.kalyani.com/2008/08/nsf-website-on-birth-of-internet/&amp;title=NSF+Website+on+Birth+of+Internet" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.kalyani.com/2008/08/nsf-website-on-birth-of-internet/&amp;t=NSF+Website+on+Birth+of+Internet" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.kalyani.com/2008/08/nsf-website-on-birth-of-internet/&amp;title=NSF+Website+on+Birth+of+Internet" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.kalyani.com/2008/08/nsf-website-on-birth-of-internet/&amp;title=NSF+Website+on+Birth+of+Internet&amp;srcUrl=http://www.kalyani.com/2008/08/nsf-website-on-birth-of-internet/&amp;srcTitle=NSF+Website+on+Birth+of+Internet&amp;snippet=Om%20Malik%20posted%20about%20the%20NSF%20website%20chronicling%20the%20birth%20of%20the%20Internet.%20What%20a%20cool%20site.%20I%20skimmed%20it%20briefly%20and%20found%20this%20entry%20for%201980s%3AIn%20the%20mid-1980s%2C%20NSF%20decided%20the%20time%20was%20right%20to%20try%20to%20link%20its%20regional%20university%20networks%20and%20its%20supercomputer%20centers%20together.%20This%20initial%20eff" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.kalyani.com/2008/08/nsf-website-on-birth-of-internet/&amp;title=NSF+Website+on+Birth+of+Internet&amp;summary=Om%20Malik%20posted%20about%20the%20NSF%20website%20chronicling%20the%20birth%20of%20the%20Internet.%20What%20a%20cool%20site.%20I%20skimmed%20it%20briefly%20and%20found%20this%20entry%20for%201980s%3AIn%20the%20mid-1980s%2C%20NSF%20decided%20the%20time%20was%20right%20to%20try%20to%20link%20its%20regional%20university%20networks%20and%20its%20supercomputer%20centers%20together.%20This%20initial%20eff&amp;source=TechBubble" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.kalyani.com/2008/08/nsf-website-on-birth-of-internet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some Thoughts on Posterous</title>
		<link>http://www.kalyani.com/2008/08/some-thoughts-on-posterous/</link>
		<comments>http://www.kalyani.com/2008/08/some-thoughts-on-posterous/#comments</comments>
		<pubDate>Sun, 17 Aug 2008 08:00:00 +0000</pubDate>
		<dc:creator>nik</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://www.techbubble.net/Blog/tabid/57/EntryId/210/Some-Thoughts-on-Posterous.aspx</guid>
		<description><![CDATA[I have been thinking on and off about Posterous since I first used it and decided to put my thoughts down in a post. Nischal asked the question &#8220;Would you stick to Posterous?&#8221; My answer today is &#8220;No&#8221; for the simple reason that it&#8217;s difficult to make the commitment to use Posterous as my primary [...]]]></description>
			<content:encoded><![CDATA[<p>I have been thinking on and off about Posterous since I <a mce_href="http://techbubble.posterous.com/10-mins-and-hooked-on-posterou" href="http://techbubble.posterous.com/10-mins-and-hooked-on-posterou">first used it</a> and decided to put my thoughts down in a post. <a mce_href="http://www.techbubble.net../people/10Ef4kI08Qp" href="http://www.techbubble.net../people/10Ef4kI08Qp">Nischal</a> asked the question &#8220;<a mce_href="http://nischal.posterous.com/would-you-stick-to-posterousco" href="http://nischal.posterous.com/would-you-stick-to-posterousco">Would you stick to Posterous?</a>&#8221;<br />
My answer today is &#8220;No&#8221; for the simple reason that it&#8217;s difficult to<br />
make the commitment to use Posterous as my primary blog until custom<br />
domains are supported. Redirects just don&#8217;t cut it.</p>
<p>Also, the brutally honest truth is that Posterous is on borrowed time.<br />
If the service does not start innovating rapidly, get huge user<br />
adoption and then create a significant reason for users to stay, it<br />
will soon become irrelevant. Its primary feature &#8212; email to blog &#8212; is<br />
not enough of a differentiator because technically it is not very<br />
difficult to implement and other blog engines will be quick to offer it<br />
to their users (some already do).</p>
<p>I think Posterous should be thinking about ways in which they can<br />
continue to stay relevant and even attractive to bloggers by doing the<br />
exact opposite of what they are doing right now. Instead of trying to<br />
be a blogging platform, they ought to focus on being an email<br />
publishing utility very much like FaceBook is positioned as a social<br />
utility. The <a mce_href="http://www.techbubble.net../autopost" href="http://www.techbubble.net../autopost">AutoPosting</a><br />
capabilities available on the service are a great way to start, but<br />
they could be so much more. Instead of just supporting vanilla posts<br />
with title and body and hosting the photos/media here, they should go<br />
all out and implement email to MetaWebLog and other API&#8217;s. Being able<br />
to use email to make a complete, detailed post to WordPress, DasBlog<br />
and other blogging engines would be great. Add template, tagging and<br />
categorization and it starts to get really interesting. </p>
<p>And while they are at it, they should do it for not just 10, but 100&#8242;s of other services. Basically, email enable every <a mce_href="http://www.programmableweb.com/apis" href="http://www.programmableweb.com/apis">ProgrammableWeb.com API</a><br />
for which email posting makes sense and that has any kind of traction.<br />
That would be killer and greatly increase the barriers for competition<br />
as users don&#8217;t like changing habits unless there is a very good reason.<br />
Imagine &#8220;posterous&#8221; becoming a verb for &#8220;posting something to any web<br />
service using email.&#8221; I think this would be a bigger opportunity for<br />
the company and allow it to become truly indispensable compared to<br />
where it is now &#8212; a &#8220;me too&#8221; blogging platform which re-posts to other<br />
services.</p>
<p>Bottom line, forget the blogging and focus on the email. <br mce_bogus="1"></p></p>


<div class="shr-bookmarks shr-bookmarks-expand">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.kalyani.com/2008/08/some-thoughts-on-posterous/&amp;title=Some+Thoughts+on+Posterous" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.kalyani.com/2008/08/some-thoughts-on-posterous/&amp;title=Some+Thoughts+on+Posterous" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.kalyani.com/2008/08/some-thoughts-on-posterous/&amp;t=Some+Thoughts+on+Posterous" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.kalyani.com/2008/08/some-thoughts-on-posterous/&amp;title=Some+Thoughts+on+Posterous" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.kalyani.com/2008/08/some-thoughts-on-posterous/&amp;title=Some+Thoughts+on+Posterous&amp;srcUrl=http://www.kalyani.com/2008/08/some-thoughts-on-posterous/&amp;srcTitle=Some+Thoughts+on+Posterous&amp;snippet=I%20have%20been%20thinking%20on%20and%20off%20about%20Posterous%20since%20I%20first%20used%20it%20and%20decided%20to%20put%20my%20thoughts%20down%20in%20a%20post.%20Nischal%20asked%20the%20question%20%22Would%20you%20stick%20to%20Posterous%3F%22%0D%0AMy%20answer%20today%20is%20%22No%22%20for%20the%20simple%20reason%20that%20it%27s%20difficult%20to%0D%0Amake%20the%20commitment%20to%20use%20Posterous%20as%20my%20primary%20bl" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.kalyani.com/2008/08/some-thoughts-on-posterous/&amp;title=Some+Thoughts+on+Posterous&amp;summary=I%20have%20been%20thinking%20on%20and%20off%20about%20Posterous%20since%20I%20first%20used%20it%20and%20decided%20to%20put%20my%20thoughts%20down%20in%20a%20post.%20Nischal%20asked%20the%20question%20%22Would%20you%20stick%20to%20Posterous%3F%22%0D%0AMy%20answer%20today%20is%20%22No%22%20for%20the%20simple%20reason%20that%20it%27s%20difficult%20to%0D%0Amake%20the%20commitment%20to%20use%20Posterous%20as%20my%20primary%20bl&amp;source=TechBubble" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.kalyani.com/2008/08/some-thoughts-on-posterous/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iWidgets déjà vu</title>
		<link>http://www.kalyani.com/2008/07/iwidgets-deja-vu/</link>
		<comments>http://www.kalyani.com/2008/07/iwidgets-deja-vu/#comments</comments>
		<pubDate>Tue, 01 Jul 2008 08:00:00 +0000</pubDate>
		<dc:creator>nik</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Widgets]]></category>

		<guid isPermaLink="false">http://www.techbubble.net/Blog/tabid/57/EntryId/206/iWidgets-deja-vu.aspx</guid>
		<description><![CDATA[At the height of the dot-com boom, I founded a venture-funded startup called iWidgets.com. My vision was to have mini-apps called &#8220;widgets&#8221; that you could plug into web portals that were all the rage at the time. Unfortunately, the market was not ready for widgets back in 1999, and when the stock market took a [...]]]></description>
			<content:encoded><![CDATA[<p>At the height of the dot-com boom, I founded a venture-funded startup<br />
called iWidgets.com. My vision was to have mini-apps called &#8220;widgets&#8221;<br />
that you could plug into web portals that were all the rage at the<br />
time. Unfortunately, the market was not ready for widgets back in 1999,<br />
and when the stock market took a dive a couple of years later, so did my<br />
company.</p>
<p>Fast-forward to present day and there is a new <a href="http://www.iwidgets.com/">iWidgets.com</a> site created by someone else. Here&#8217;s how eHub describes it:</p>
<p><span style="font-style: italic;">Create custom widgets for your website or your brand with iWidget.<br />
Using their online wizard, you can easily create widgets that your<br />
website visitors or customers can add to their i<cite>Google</cite> start page,<br />
Facebook profile, or their own blog. Your widget is customizable by<br />
your users so that it fits right in with their design.</span><br style="font-style: italic;" /><br />
It<br />
felt very strange seeing the site&#8230;sort of like seeing someone else<br />
wearing your favorite shirt. I spent some time on the site playing with<br />
their tools and was very, very impressed. Great job iWidgets.com team,<br />
wish you much success.</p>


<div class="shr-bookmarks shr-bookmarks-expand">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.kalyani.com/2008/07/iwidgets-deja-vu/&amp;title=iWidgets+d%C3%A9j%C3%A0+vu" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.kalyani.com/2008/07/iwidgets-deja-vu/&amp;title=iWidgets+d%C3%A9j%C3%A0+vu" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.kalyani.com/2008/07/iwidgets-deja-vu/&amp;t=iWidgets+d%C3%A9j%C3%A0+vu" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.kalyani.com/2008/07/iwidgets-deja-vu/&amp;title=iWidgets+d%C3%A9j%C3%A0+vu" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.kalyani.com/2008/07/iwidgets-deja-vu/&amp;title=iWidgets+d%C3%A9j%C3%A0+vu&amp;srcUrl=http://www.kalyani.com/2008/07/iwidgets-deja-vu/&amp;srcTitle=iWidgets+d%C3%A9j%C3%A0+vu&amp;snippet=At%20the%20height%20of%20the%20dot-com%20boom%2C%20I%20founded%20a%20venture-funded%20startup%0D%0Acalled%20iWidgets.com.%20My%20vision%20was%20to%20have%20mini-apps%20called%20%22widgets%22%0D%0Athat%20you%20could%20plug%20into%20web%20portals%20that%20were%20all%20the%20rage%20at%20the%0D%0Atime.%20Unfortunately%2C%20the%20market%20was%20not%20ready%20for%20widgets%20back%20in%201999%2C%0D%0Aand%20when%20the%20stoc" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.kalyani.com/2008/07/iwidgets-deja-vu/&amp;title=iWidgets+d%C3%A9j%C3%A0+vu&amp;summary=At%20the%20height%20of%20the%20dot-com%20boom%2C%20I%20founded%20a%20venture-funded%20startup%0D%0Acalled%20iWidgets.com.%20My%20vision%20was%20to%20have%20mini-apps%20called%20%22widgets%22%0D%0Athat%20you%20could%20plug%20into%20web%20portals%20that%20were%20all%20the%20rage%20at%20the%0D%0Atime.%20Unfortunately%2C%20the%20market%20was%20not%20ready%20for%20widgets%20back%20in%201999%2C%0D%0Aand%20when%20the%20stoc&amp;source=TechBubble" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.kalyani.com/2008/07/iwidgets-deja-vu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>8 Things You Didn&#8217;t Know About Me</title>
		<link>http://www.kalyani.com/2008/01/8-things-you-didnt-know-about-me/</link>
		<comments>http://www.kalyani.com/2008/01/8-things-you-didnt-know-about-me/#comments</comments>
		<pubDate>Fri, 04 Jan 2008 08:00:00 +0000</pubDate>
		<dc:creator>nik</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.techbubble.net/Blog/tabid/57/EntryId/190/8-Things-You-Didnt-Know-About-Me.aspx</guid>
		<description><![CDATA[Dennis McDonald tagged me in the &#8220;8 Things You Didn’t Know About Me&#8221; game so here goes: I love Chai and drink a lot of it (not the Starbucks kind&#8230;the regular Indian kind which is way better). I am a digitalmediaholic. I have over 6 terabytes of ripped movies and 100 GB of music. I [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ddmcd.com/living-with-technology/8-things-you-didnt-know-about-me.html">Dennis McDonald</a> tagged me in the &#8220;8 Things You Didn’t Know About Me&#8221; game so here goes:</p>
<ol>
<li>I love Chai and drink a lot of it (not the Starbucks kind&#8230;the regular Indian kind which is way better).</p>
</li>
<li>I am a digitalmediaholic. I have over 6 terabytes of ripped movies and 100 GB of music.
</li>
<li>I am a dot com bubble survivor. I founded a venture-funded startup called iWidgets.com that created widgets for web pages. Unfortunately, the technology was six years ahead of its time.
</li>
<li>My un-Americanized name is <i>Nikunj</i>, pronounced <i>nick-ooonj</i>.
</li>
<li>I have never had any alcoholic beverage&#8230;none.
</li>
<li>I became a vegetarian in 2001&#8230;did it cold turkey (pun intended).
</li>
<li>I grew up in <a href="http://en.wikipedia.org/wiki/Bombay">Bombay</a> and came to the U.S. in 1987 for my undergrad education. Never went back, and became a U.S. citizen a few years ago.
</li>
<li>I enjoy the creative aspects of brand development, especially logo development, tag line creation and messaging.</li>
</ol>


<div class="shr-bookmarks shr-bookmarks-expand">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.kalyani.com/2008/01/8-things-you-didnt-know-about-me/&amp;title=8+Things+You+Didn%27t+Know+About+Me" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.kalyani.com/2008/01/8-things-you-didnt-know-about-me/&amp;title=8+Things+You+Didn%27t+Know+About+Me" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.kalyani.com/2008/01/8-things-you-didnt-know-about-me/&amp;t=8+Things+You+Didn%27t+Know+About+Me" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.kalyani.com/2008/01/8-things-you-didnt-know-about-me/&amp;title=8+Things+You+Didn%27t+Know+About+Me" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.kalyani.com/2008/01/8-things-you-didnt-know-about-me/&amp;title=8+Things+You+Didn%27t+Know+About+Me&amp;srcUrl=http://www.kalyani.com/2008/01/8-things-you-didnt-know-about-me/&amp;srcTitle=8+Things+You+Didn%27t+Know+About+Me&amp;snippet=Dennis%20McDonald%20tagged%20me%20in%20the%20%228%20Things%20You%20Didn%E2%80%99t%20Know%20About%20Me%22%20game%20so%20here%20goes%3AI%20love%20Chai%20and%20drink%20a%20lot%20of%20it%20%28not%20the%20Starbucks%20kind...the%20regular%20Indian%20kind%20which%20is%20way%20better%29.I%20am%20a%20digitalmediaholic.%20I%20have%20over%206%20terabytes%20of%20ripped%20movies%20and%20100%20GB%20of%20music.I%20am%20a%20dot%20com%20bubb" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.kalyani.com/2008/01/8-things-you-didnt-know-about-me/&amp;title=8+Things+You+Didn%27t+Know+About+Me&amp;summary=Dennis%20McDonald%20tagged%20me%20in%20the%20%228%20Things%20You%20Didn%E2%80%99t%20Know%20About%20Me%22%20game%20so%20here%20goes%3AI%20love%20Chai%20and%20drink%20a%20lot%20of%20it%20%28not%20the%20Starbucks%20kind...the%20regular%20Indian%20kind%20which%20is%20way%20better%29.I%20am%20a%20digitalmediaholic.%20I%20have%20over%206%20terabytes%20of%20ripped%20movies%20and%20100%20GB%20of%20music.I%20am%20a%20dot%20com%20bubb&amp;source=TechBubble" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.kalyani.com/2008/01/8-things-you-didnt-know-about-me/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A world of widgets</title>
		<link>http://www.kalyani.com/2005/08/a-world-of-widgets/</link>
		<comments>http://www.kalyani.com/2005/08/a-world-of-widgets/#comments</comments>
		<pubDate>Mon, 08 Aug 2005 08:00:00 +0000</pubDate>
		<dc:creator>nik</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Widgets]]></category>

		<guid isPermaLink="false">http://www.techbubble.net/Blog/tabid/57/EntryId/90/A-world-of-widgets.aspx</guid>
		<description><![CDATA[It seems like there are widgets everywhere. Apple added widgets to Tiger through the cool Dashboard feature. Yahoo has a whole section of its site devoted to widgets. I greet widgets with a mixture of emotions. In 1999, when I created my venture-funded startup, my world-changing idea was to bring the web to people in [...]]]></description>
			<content:encoded><![CDATA[<p>It seems like there are widgets everywhere. Apple added <a href="http://www.apple.com/downloads/dashboard/" target="_blank">widgets</a> to Tiger through the cool Dashboard feature. <cite>Yahoo</cite> has a whole section of its site devoted to <a href="http://widgets.yahoo.com/" target="_blank">widgets</a>.</p>
<p>I greet widgets with a mixture of emotions. In 1999, when I created my venture-funded startup, my world-changing idea was to bring the web to people in the form of mini-applications that provided identical functionality with a web browser, a mobile device or a telephone. Not only that, the mini-apps had collaboration built-in so you could decide who could view/edit your data etc.</p>
<p>Yes, the mini-applications were called &#8220;widgets&#8221; and my startup was iWidgets, Inc. Unfortunately, the world wasn&#8217;t ready for widgets at the time and I didn&#8217;t know as much about running a startup then as I do today, and so iWidgets joined thousands of other dot bombs when I turned the lights out in early 2001.</p>
<p>But seeing all the buzz about widgets today gives me a good feeling &#8212; I had the right world-changing idea, just at the wrong time and perhaps a little flawed in the execution. I felt nostalgic enough to go digging through the archive DVD&#8217;s to pull up some promos we had created. Here are four of them, each focused a specific target market.</p>
<p><a href="http://www.iwidgets.com/janet.htm" target="_new">Janet</a> |  <a href="http://www.iwidgets.com/hannah.htm" target="_new">Hannah</a> |  <a href="http://www.iwidgets.com/johnsons.htm" target="_new">Johnsons</a> |  <a href="http://www.iwidgets.com/rob.htm" target="_new">Rob</a></p>


<div class="shr-bookmarks shr-bookmarks-expand">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.kalyani.com/2005/08/a-world-of-widgets/&amp;title=A+world+of+widgets" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.kalyani.com/2005/08/a-world-of-widgets/&amp;title=A+world+of+widgets" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.kalyani.com/2005/08/a-world-of-widgets/&amp;t=A+world+of+widgets" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.kalyani.com/2005/08/a-world-of-widgets/&amp;title=A+world+of+widgets" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.kalyani.com/2005/08/a-world-of-widgets/&amp;title=A+world+of+widgets&amp;srcUrl=http://www.kalyani.com/2005/08/a-world-of-widgets/&amp;srcTitle=A+world+of+widgets&amp;snippet=It%20seems%20like%20there%20are%20widgets%20everywhere.%20Apple%20added%20widgets%20to%20Tiger%20through%20the%20cool%20Dashboard%20feature.%20Yahoo%20has%20a%20whole%20section%20of%20its%20site%20devoted%20to%20widgets.%0D%0A%0D%0AI%20greet%20widgets%20with%20a%20mixture%20of%20emotions.%20In%201999%2C%20when%20I%20created%20my%20venture-funded%20startup%2C%20my%20world-changing%20idea%20was%20to%20bring" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.kalyani.com/2005/08/a-world-of-widgets/&amp;title=A+world+of+widgets&amp;summary=It%20seems%20like%20there%20are%20widgets%20everywhere.%20Apple%20added%20widgets%20to%20Tiger%20through%20the%20cool%20Dashboard%20feature.%20Yahoo%20has%20a%20whole%20section%20of%20its%20site%20devoted%20to%20widgets.%0D%0A%0D%0AI%20greet%20widgets%20with%20a%20mixture%20of%20emotions.%20In%201999%2C%20when%20I%20created%20my%20venture-funded%20startup%2C%20my%20world-changing%20idea%20was%20to%20bring&amp;source=TechBubble" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.kalyani.com/2005/08/a-world-of-widgets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
