<?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>Floating Sun &#187; Research</title>
	<atom:link href="http://floatingsun.net/tag/research/feed/" rel="self" type="application/rss+xml" />
	<link>http://floatingsun.net</link>
	<description></description>
	<lastBuildDate>Sun, 22 Aug 2010 04:28:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>reCAPTCHA: Stop Spam, Read Books</title>
		<link>http://floatingsun.net/2008/01/07/recaptcha-stop-spam-read-books/</link>
		<comments>http://floatingsun.net/2008/01/07/recaptcha-stop-spam-read-books/#comments</comments>
		<pubDate>Tue, 08 Jan 2008 03:09:54 +0000</pubDate>
		<dc:creator>Diwaker Gupta</dc:creator>
				<category><![CDATA[Asides]]></category>
		<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://floatingsun.net/2008/01/07/recaptcha-stop-spam-read-books</guid>
		<description><![CDATA[A brilliant idea, and well executed too. The kind of thing that makes me wonder, I wish I had thought of that! The best part? CMU is behind it. reCAPTCHA: Stop Spam, Read Books Related posts:Books I read this year Stop AOL&#8217;s &#8220;email tax&#8221; Google and U.C. sign contract to digitize books


Related posts:<ol><li><a href='http://floatingsun.net/2005/12/30/books-i-read-this-year/' rel='bookmark' title='Permanent Link: Books I read this year'>Books I read this year</a></li>
<li><a href='http://floatingsun.net/2006/03/02/stop-aols-email-tax/' rel='bookmark' title='Permanent Link: Stop AOL&#8217;s &#8220;email tax&#8221;'>Stop AOL&#8217;s &#8220;email tax&#8221;</a></li>
<li><a href='http://floatingsun.net/2006/08/08/google-and-uc-sign-contract-to-digitize-books/' rel='bookmark' title='Permanent Link: Google and U.C. sign contract to digitize books'>Google and U.C. sign contract to digitize books</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>A brilliant idea, and well executed too. The kind of thing that makes me wonder, I wish I had thought of that! The best part? CMU is behind it. <a href="http://recaptcha.net/">reCAPTCHA: Stop Spam, Read Books</a></p>


<p>Related posts:<ol><li><a href='http://floatingsun.net/2005/12/30/books-i-read-this-year/' rel='bookmark' title='Permanent Link: Books I read this year'>Books I read this year</a></li>
<li><a href='http://floatingsun.net/2006/03/02/stop-aols-email-tax/' rel='bookmark' title='Permanent Link: Stop AOL&#8217;s &#8220;email tax&#8221;'>Stop AOL&#8217;s &#8220;email tax&#8221;</a></li>
<li><a href='http://floatingsun.net/2006/08/08/google-and-uc-sign-contract-to-digitize-books/' rel='bookmark' title='Permanent Link: Google and U.C. sign contract to digitize books'>Google and U.C. sign contract to digitize books</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://floatingsun.net/2008/01/07/recaptcha-stop-spam-read-books/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>STL is Slow Template Library</title>
		<link>http://floatingsun.net/2006/10/19/stl-is-slow-template-library/</link>
		<comments>http://floatingsun.net/2006/10/19/stl-is-slow-template-library/#comments</comments>
		<pubDate>Thu, 19 Oct 2006 17:33:01 +0000</pubDate>
		<dc:creator>Diwaker Gupta</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[c++]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[stl]]></category>

		<guid isPermaLink="false">http://floatingsun.net/blog/2006/10/19/760/</guid>
		<description><![CDATA[The C++ Standard Template Library (STL) can be pretty intimidating. I used to think that there&#039;s a lot of magic under the covers to make things go really fast. It turns out that while using the STL is convinient for prototype, its not really built for performance. A few days back, we needed to do [...]


Related posts:<ol><li><a href='http://floatingsun.net/2005/07/23/slow-nooooo/' rel='bookmark' title='Permanent Link: Slow nooooo!'>Slow nooooo!</a></li>
<li><a href='http://floatingsun.net/2005/02/06/textile-2/' rel='bookmark' title='Permanent Link: Textile 2'>Textile 2</a></li>
<li><a href='http://floatingsun.net/2008/02/27/the-acm-digital-library-badly-needs-an-overhaul/' rel='bookmark' title='Permanent Link: The ACM Digital Library badly needs an overhaul'>The ACM Digital Library badly needs an overhaul</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><!-- begin Dokuwiki generated code--></p>
<div class="dokuwiki">
<p>The C++ Standard Template Library (STL) can be pretty intimidating. I used to think that there&#039;s a lot of magic under the covers to make things go really fast. It turns out that while using the STL is convinient for prototype, its not really built for performance.
</p>
<p>
A few days back, we needed to do some <em>compare-by-hash</em> operations on two files. In all we were doing around 32 million hash table lookups (plus of course the overhead of computing the hash values themselves). On a reasonably fast machine, one would expect that 32 million operations shouldn&#039;t take very  long. However, this particular program ran for one <strong>whole day</strong>.
</p>
<p>
Then Amin suggested that we rip out the STL stuff and just work with a statically allocated hash table since we weren&#039;t really concerned about memory management at this stage. And guess what, the runtime fell to around <strong>10 minutes</strong>. Thats <em>two orders of magnitude</em> performance improvement!! I had never imagined that the STL could be <em>soo</em> slow.
</p>
</div>
<p><!-- end Dokuwiki generated code--></p>


<p>Related posts:<ol><li><a href='http://floatingsun.net/2005/07/23/slow-nooooo/' rel='bookmark' title='Permanent Link: Slow nooooo!'>Slow nooooo!</a></li>
<li><a href='http://floatingsun.net/2005/02/06/textile-2/' rel='bookmark' title='Permanent Link: Textile 2'>Textile 2</a></li>
<li><a href='http://floatingsun.net/2008/02/27/the-acm-digital-library-badly-needs-an-overhaul/' rel='bookmark' title='Permanent Link: The ACM Digital Library badly needs an overhaul'>The ACM Digital Library badly needs an overhaul</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://floatingsun.net/2006/10/19/stl-is-slow-template-library/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>The essential workspace</title>
		<link>http://floatingsun.net/2006/07/06/the-essential-workspace/</link>
		<comments>http://floatingsun.net/2006/07/06/the-essential-workspace/#comments</comments>
		<pubDate>Fri, 07 Jul 2006 00:31:21 +0000</pubDate>
		<dc:creator>Diwaker Gupta</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[workspace]]></category>

		<guid isPermaLink="false">http://floatingsun.net/blog/2006/07/06/673/</guid>
		<description><![CDATA[Whenever I switch work spaces – which, thankfully, is not often – I spend a huge amount of time just setting up my working environment, typically 1-2 days. Its critical for your productivity, efficiency and general well being at your work place that you are familar and comfortable with your workspace. In my context, workspace [...]


Related posts:<ol><li><a href='http://floatingsun.net/2006/06/15/flock-to-flock/' rel='bookmark' title='Permanent Link: Flock to Flock'>Flock to Flock</a></li>
<li><a href='http://floatingsun.net/2005/09/15/finally-a-real-web-im/' rel='bookmark' title='Permanent Link: Finally, a real web IM'>Finally, a real web IM</a></li>
<li><a href='http://floatingsun.net/2005/03/09/ipod-shuffle-sucks/' rel='bookmark' title='Permanent Link: iPod Shuffle sucks'>iPod Shuffle sucks</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><!-- begin Dokuwiki generated code--></p>
<div class="dokuwiki">
<p>Whenever I switch work spaces – which, thankfully, is not often – I spend a huge amount of time just setting up my working environment, typically 1-2 days. Its critical for your productivity, efficiency and general well being at your work place that you are familar and comfortable with your workspace. In my context, workspace typically means your computer/laptop, your desk, keyboard and pointing devices, and your chair. For people in different industries, workspaces may be different.
</p>
<p>
Anyways, so I was saying that it takes me quite some effort to setup the workspace just the way I like it. Often times its impossible to get it <em>exactly</em> the way I want it (if, for instance, my employer “recommends” that I use Windows only). I&#039;m so used to running cutting edge stuff that even when I&#039;m using Linux systems in a corporate environment, I usually don&#039;t immediately feel at home. I mean, msot of these systems are running really old “stable” software (like RHEL 4WS, or Debian 3 etc).
</p>
<p>
Some of the things I go after right away are:</p>
<ul>
<li class="level1">
<div class="li"> browser (Flock)</div>
</li>
<li class="level1">
<div class="li"> editor (Vim 7)</div>
</li>
<li class="level1">
<div class="li"> email (kmail or gmail)</div>
</li>
<li class="level1">
<div class="li"> scripting language (Python)</div>
</li>
<li class="level1">
<div class="li"> version control (Mercurial)</div>
</li>
</ul>
<p>That pretty much covers the basic necessities. I avoid instant messengers except from my laptop or my lab machine at UCSD, so thats not a big concern. Although I did give Meebo a shot, and its pretty cool. Infact, these days it can even store your chat logs (across all messengers, of course). The only problem was that running Meebo in Flock pretty much killed my system&#039;s memory, so thats a no go for now.
</p>
<p>
But the point of this post is that it is <em>still</em> incredibly hard to <em>quickly</em> setup your workspace to your liking. A solution that immediately jumps out is to use VMs: each user could carry his/her customized profiles in a USB key, plug it in the base station, and voila, you&#039;re ready to go. Microsoft already has a <a href="http://research.microsoft.com/research/sv/keychain/" class="urlextern" title="http://research.microsoft.com/research/sv/keychain/"  rel="nofollow">prototype for the desktop on a keychain</a>, but several kinks need to be worked out for this to fly. The most important one is security. What is the threat model here? Do I trust the base station? Does the base station trust my VM image? What if the organization wants to impose some restrictions on the things VMs can do? Sounds like we need a policy based architecture for this <img src="http://floatingsun.net/wordpress/wp-content/plugins/wp-dokuwiki/lib/images/smileys/icon_biggrin.gif" class="middle" alt=":-D" />
</p>
<p>
So, how long do you take to set up your workspace?
</p>
</div>
<p><!-- end Dokuwiki generated code--></p>


<p>Related posts:<ol><li><a href='http://floatingsun.net/2006/06/15/flock-to-flock/' rel='bookmark' title='Permanent Link: Flock to Flock'>Flock to Flock</a></li>
<li><a href='http://floatingsun.net/2005/09/15/finally-a-real-web-im/' rel='bookmark' title='Permanent Link: Finally, a real web IM'>Finally, a real web IM</a></li>
<li><a href='http://floatingsun.net/2005/03/09/ipod-shuffle-sucks/' rel='bookmark' title='Permanent Link: iPod Shuffle sucks'>iPod Shuffle sucks</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://floatingsun.net/2006/07/06/the-essential-workspace/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On blind reviews</title>
		<link>http://floatingsun.net/2006/06/22/on-blind-reviews/</link>
		<comments>http://floatingsun.net/2006/06/22/on-blind-reviews/#comments</comments>
		<pubDate>Fri, 23 Jun 2006 06:34:40 +0000</pubDate>
		<dc:creator>Diwaker Gupta</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://floatingsun.net/blog/2006/06/22/640/</guid>
		<description><![CDATA[This probably won&#039;t make much sense to people out of academia. But anyways. As you are probably aware, peer reviewed publications go through an elaborate reviewing process. In Computer Science (and perhaps in other fields as well), typically conferences follow some kind of anonymization on the review process. These are called blind reviews. Depending on [...]


Related posts:<ol><li><a href='http://floatingsun.net/2010/07/13/sigcomm-goes-to-delhi/' rel='bookmark' title='Permanent Link: SIGCOMM goes to Delhi'>SIGCOMM goes to Delhi</a></li>
<li><a href='http://floatingsun.net/2005/01/21/women-for-geeks/' rel='bookmark' title='Permanent Link: Women for Geeks'>Women for Geeks</a></li>
<li><a href='http://floatingsun.net/2005/10/30/how-to-attend-a-conference/' rel='bookmark' title='Permanent Link: How to attend a conference?'>How to attend a conference?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><!-- begin Dokuwiki generated code--></p>
<div class="dokuwiki">
<p>This probably won&#039;t make much sense to people out of academia. But anyways.
</p>
<p>
As you are probably aware, peer reviewed publications go through an elaborate reviewing process. In Computer Science (and perhaps in other fields as well), typically conferences follow some kind of anonymization on the review process. These are called blind reviews. Depending on the degree of anonymity, one has the following three kinds of review processes:</p>
<ul>
<li class="level1">
<div class="li"> Zero blind: the reviewers know who the authors are; the authors know who wrote their reviews.</div>
</li>
<li class="level1">
<div class="li"> Single blind: the reviewers know who the authors are; the authors don&#039;t know the reviewers.</div>
</li>
<li class="level1">
<div class="li"> Double blind: neither the authors nor the reviewers know each others&#039; identities.</div>
</li>
</ul>
<p>I don&#039;t really know of any (good) conference that is zero blind, but there are several under the single and double blind categories. Now time and again, people get into debates on which system is the best. The debate, naturally, is about the anonymity of the authors – there seems to be consensus on the anonymity of the reviewers.
</p>
<p>
Advocates of the single blind process argue that sometimes a weak paper (such as one with a good idea but backed by and not-so-good implementation/evaluation) might get accepted if the reviewers knew the authors and were convinced (from their reputation/past record/whatever) that they will do a good job by the camera ready deadline. On the flip side, of course, there is the danger that “well known” authors may get an unfair advantage and the under-dogs and small-fish&#039;s potential will be undermined.
</p>
<p>
Meanwhile, proponents of the double-blind process claim that not knowing authors&#039; identities makes the reviewing process more fair. Critics, however, argue (sometimes correctly) that usually these research communities are so tightly knit that practically everyone knows the authors anyways. So the whole double blind thing doesn&#039;t really work; besides it unnecessarily inconviniences the authors since they have to put in some extra effort to anonymize their submissions.
</p>
<p>
For some conferences (such as SIGCOMM), double blind seems to work fairly well – every year there&#039;s atleast one “surprise” paper. While for SOSP, it just seems to be a pain – there are far fewer submission submissions than SIGCOMM and pretty much everyone knows who has written which papers. I guess in the end its up to the community to figure out what works best for them. But what really pisses me off is people&#039;s carelessness – if you are submitting to a double-blind conference, you <em>must</em> honor the guidelines. Some of the papers I&#039;ve reviewed have been just unbelievably callous.
</p>
<p>
So how is it with other fields?
</p>
</div>
<p><!-- end Dokuwiki generated code--></p>


<p>Related posts:<ol><li><a href='http://floatingsun.net/2010/07/13/sigcomm-goes-to-delhi/' rel='bookmark' title='Permanent Link: SIGCOMM goes to Delhi'>SIGCOMM goes to Delhi</a></li>
<li><a href='http://floatingsun.net/2005/01/21/women-for-geeks/' rel='bookmark' title='Permanent Link: Women for Geeks'>Women for Geeks</a></li>
<li><a href='http://floatingsun.net/2005/10/30/how-to-attend-a-conference/' rel='bookmark' title='Permanent Link: How to attend a conference?'>How to attend a conference?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://floatingsun.net/2006/06/22/on-blind-reviews/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Women in Science</title>
		<link>http://floatingsun.net/2006/03/03/women-in-science/</link>
		<comments>http://floatingsun.net/2006/03/03/women-in-science/#comments</comments>
		<pubDate>Fri, 03 Mar 2006 08:13:17 +0000</pubDate>
		<dc:creator>Diwaker Gupta</dc:creator>
				<category><![CDATA[Asides]]></category>
		<category><![CDATA[Humor]]></category>
		<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://floatingsun.net/blog/2006/03/03/596/</guid>
		<description><![CDATA[Funny essay. WARNING: if you&#8217;re a graduate student pursuing a PhD in science/engineering, this might be depressing. Also, the essay isn&#8217;t really about women. Women in Science Related posts:Men are from mars and women are just idiots? UCSD Graduate Student FAQ Writing


Related posts:<ol><li><a href='http://floatingsun.net/2005/08/26/men-are-from-mars-and-women-are-just-idiots/' rel='bookmark' title='Permanent Link: Men are from mars and women are just idiots?'>Men are from mars and women are just idiots?</a></li>
<li><a href='http://floatingsun.net/2006/02/05/ucsd-graduate-student-faq/' rel='bookmark' title='Permanent Link: UCSD Graduate Student FAQ'>UCSD Graduate Student FAQ</a></li>
<li><a href='http://floatingsun.net/articles/' rel='bookmark' title='Permanent Link: Writing'>Writing</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Funny essay. WARNING: if you&#8217;re a graduate student pursuing a PhD in science/engineering, this might be depressing. Also, the essay isn&#8217;t really about women. <a href="http://philip.greenspun.com/careers/women-in-science">Women in Science</a></p>


<p>Related posts:<ol><li><a href='http://floatingsun.net/2005/08/26/men-are-from-mars-and-women-are-just-idiots/' rel='bookmark' title='Permanent Link: Men are from mars and women are just idiots?'>Men are from mars and women are just idiots?</a></li>
<li><a href='http://floatingsun.net/2006/02/05/ucsd-graduate-student-faq/' rel='bookmark' title='Permanent Link: UCSD Graduate Student FAQ'>UCSD Graduate Student FAQ</a></li>
<li><a href='http://floatingsun.net/articles/' rel='bookmark' title='Permanent Link: Writing'>Writing</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://floatingsun.net/2006/03/03/women-in-science/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FeedTree: collaborative RSS and Atom delivery</title>
		<link>http://floatingsun.net/2006/02/20/feedtree-collaborative-rss-and-atom-delivery/</link>
		<comments>http://floatingsun.net/2006/02/20/feedtree-collaborative-rss-and-atom-delivery/#comments</comments>
		<pubDate>Mon, 20 Feb 2006 22:59:31 +0000</pubDate>
		<dc:creator>Diwaker Gupta</dc:creator>
				<category><![CDATA[Asides]]></category>
		<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://floatingsun.net/blog/2006/02/20/570/</guid>
		<description><![CDATA[Dan Sandler, a CS grad student at Rice, gives me another one of those &#8220;why didn&#8217;t I think of this&#8221; moments! FeedTree: collaborative RSS and Atom delivery Related posts:FeedTree is half the solution UCSD Graduate Student FAQ Slashdot &#124; UCSD Biometric Vending Machine


Related posts:<ol><li><a href='http://floatingsun.net/2006/02/21/feedtree-is-half-the-solution/' rel='bookmark' title='Permanent Link: FeedTree is half the solution'>FeedTree is half the solution</a></li>
<li><a href='http://floatingsun.net/2006/02/05/ucsd-graduate-student-faq/' rel='bookmark' title='Permanent Link: UCSD Graduate Student FAQ'>UCSD Graduate Student FAQ</a></li>
<li><a href='http://floatingsun.net/2006/08/01/slashdot-ucsd-biometric-vending-machine/' rel='bookmark' title='Permanent Link: Slashdot | UCSD Biometric Vending Machine'>Slashdot | UCSD Biometric Vending Machine</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://dsandler.org">Dan Sandler</a>, a CS grad student at Rice, gives me another one of those &#8220;why didn&#8217;t I think of this&#8221; moments! <a href="http://feedtree.net/">FeedTree: collaborative RSS and Atom delivery</a></p>


<p>Related posts:<ol><li><a href='http://floatingsun.net/2006/02/21/feedtree-is-half-the-solution/' rel='bookmark' title='Permanent Link: FeedTree is half the solution'>FeedTree is half the solution</a></li>
<li><a href='http://floatingsun.net/2006/02/05/ucsd-graduate-student-faq/' rel='bookmark' title='Permanent Link: UCSD Graduate Student FAQ'>UCSD Graduate Student FAQ</a></li>
<li><a href='http://floatingsun.net/2006/08/01/slashdot-ucsd-biometric-vending-machine/' rel='bookmark' title='Permanent Link: Slashdot | UCSD Biometric Vending Machine'>Slashdot | UCSD Biometric Vending Machine</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://floatingsun.net/2006/02/20/feedtree-collaborative-rss-and-atom-delivery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NSDI</title>
		<link>http://floatingsun.net/2006/01/14/nsdi/</link>
		<comments>http://floatingsun.net/2006/01/14/nsdi/#comments</comments>
		<pubDate>Sat, 14 Jan 2006 20:11:23 +0000</pubDate>
		<dc:creator>Diwaker Gupta</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[gradlife]]></category>
		<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://floatingsun.net/blog/2006/01/14/460/</guid>
		<description><![CDATA[I got the official confirmation yesterday – my paper on the time dilation stuff has been accepted for NSDI &#039;06! I&#039;m happy, because its my first, first-authored paper in a respected systems conference Sadly though the conference is in San Jose (unlike the last two conferences I attended, which were in Europe!). Related posts:Publications On [...]


Related posts:<ol><li><a href='http://floatingsun.net/research/publications/' rel='bookmark' title='Permanent Link: Publications'>Publications</a></li>
<li><a href='http://floatingsun.net/2006/06/22/on-blind-reviews/' rel='bookmark' title='Permanent Link: On blind reviews'>On blind reviews</a></li>
<li><a href='http://floatingsun.net/2005/10/30/how-to-attend-a-conference/' rel='bookmark' title='Permanent Link: How to attend a conference?'>How to attend a conference?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><!-- begin Dokuwiki generated code--></p>
<div class="dokuwiki">
<p>I got the official confirmation yesterday – my paper on the time dilation stuff has been accepted for NSDI &#039;06! I&#039;m happy, because its my first, first-authored paper in a respected systems conference <img src="http://floatingsun.net/wordpress/wp-content/plugins/wp-dokuwiki/lib/images/smileys/icon_smile.gif" class="middle" alt=":-)" /> Sadly though the conference is in San Jose (unlike the last two conferences I attended, which were in Europe!).
</p>
</div>
<p><!-- end Dokuwiki generated code--></p>


<p>Related posts:<ol><li><a href='http://floatingsun.net/research/publications/' rel='bookmark' title='Permanent Link: Publications'>Publications</a></li>
<li><a href='http://floatingsun.net/2006/06/22/on-blind-reviews/' rel='bookmark' title='Permanent Link: On blind reviews'>On blind reviews</a></li>
<li><a href='http://floatingsun.net/2005/10/30/how-to-attend-a-conference/' rel='bookmark' title='Permanent Link: How to attend a conference?'>How to attend a conference?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://floatingsun.net/2006/01/14/nsdi/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>New tag: research</title>
		<link>http://floatingsun.net/2005/10/10/new-tag-research/</link>
		<comments>http://floatingsun.net/2005/10/10/new-tag-research/#comments</comments>
		<pubDate>Tue, 11 Oct 2005 07:20:30 +0000</pubDate>
		<dc:creator>Diwaker Gupta</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://floatingsun.net/blog/2005/10/10/242/</guid>
		<description><![CDATA[I&#039;ve realized that if I spend as much time reading “research news” as I do reading “tech news”, I&#039;d probably be doing much better in research (in terms of having new ideas, getting inspired with creative thoughts, and just generally to know whats going on elsewhere). So I&#039;ve decided to add a new tag “research” [...]


Related posts:<ol><li><a href='http://floatingsun.net/2006/02/08/the-power-of-procrastrination/' rel='bookmark' title='Permanent Link: The Power of Procrastrination'>The Power of Procrastrination</a></li>
<li><a href='http://floatingsun.net/2005/02/01/research-blog/' rel='bookmark' title='Permanent Link: Research blog'>Research blog</a></li>
<li><a href='http://floatingsun.net/2006/05/12/tips-on-preparing-a-good-talk/' rel='bookmark' title='Permanent Link: Tips on preparing a good talk'>Tips on preparing a good talk</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><!-- begin Dokuwiki generated code--></p>
<div class="dokuwiki">
<p>I&#039;ve realized that if I spend as much time reading “research news” as I do reading “tech news”, I&#039;d probably be doing much better in research (in terms of having new ideas, getting inspired with creative thoughts, and just generally to know whats going on elsewhere). So I&#039;ve decided to add a new tag “research” and try and regular post items that are relevant to my research (or just interesting from a research point of view).
</p>
<p>
So to start off this tag, let me just mention today&#039;s faculty recruit talk. This was a talk by <a href="http://www-math.mit.edu/~vempala/" class="urlextern" title="http://www-math.mit.edu/~vempala/"  rel="nofollow">Santosh Vempala</a>. He&#039;s a faculty in the Math department at <acronym title="Massachusetts Institute of Technology">MIT</acronym>, and is now interviewing at some schools for a Computer Science position.
</p>
<p>
His talk was interesting and impressive in a number of aspects. For one, he did not use powerpoint. Infact, he did not use a computer at all! He did it the old fashioned way – using transparencies and a overhead projector. However, that doesn&#039;t mean his presentation was not good. Quite the opposite – the quality of his slides was exception. Each slide was extremely well thought out, colorful (imagine all the hard work! all slides were done manually) and brought out the relevant points without going into too much detail.
</p>
<p>
He had a diverse audience, so it was also very nice that he was able to reach out to almost everyone in the audience without losing people in technical details. The talk was on spectral methods and their applications in clustering. The idea was simple, the applications far reaching. To top it all off, he had a <a href="http://eigencluster.csail.mit.edu/" class="urlextern" title="http://eigencluster.csail.mit.edu/"  rel="nofollow">cool demo</a> (try the query &#039;jaguar&#039;) and data from some real applications. Works that are based in theory and have some real, pratical applications are the most attractive to me.
</p>
</div>
<p><!-- end Dokuwiki generated code--></p>


<p>Related posts:<ol><li><a href='http://floatingsun.net/2006/02/08/the-power-of-procrastrination/' rel='bookmark' title='Permanent Link: The Power of Procrastrination'>The Power of Procrastrination</a></li>
<li><a href='http://floatingsun.net/2005/02/01/research-blog/' rel='bookmark' title='Permanent Link: Research blog'>Research blog</a></li>
<li><a href='http://floatingsun.net/2006/05/12/tips-on-preparing-a-good-talk/' rel='bookmark' title='Permanent Link: Tips on preparing a good talk'>Tips on preparing a good talk</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://floatingsun.net/2005/10/10/new-tag-research/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Forrest</title>
		<link>http://floatingsun.net/2005/06/05/forrest/</link>
		<comments>http://floatingsun.net/2005/06/05/forrest/#comments</comments>
		<pubDate>Sun, 05 Jun 2005 07:26:24 +0000</pubDate>
		<dc:creator>Diwaker Gupta</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[daily]]></category>
		<category><![CDATA[forrest]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[Virtualization]]></category>

		<guid isPermaLink="false">http://floatingsun.net/blog/?p=18</guid>
		<description><![CDATA[Last 2 days I&#039;ve been pretty active with Apache Forrest. Primarily with the development and enhancement of the new theme mechanism (skins or views). Just today I have updated my website with a completely redesigned theme using the new views mechanism. I also wrote the entire CSS from scratch, using the colors from the publicly [...]


Related posts:<ol><li><a href='http://floatingsun.net/2005/09/06/forrest-tuesday/' rel='bookmark' title='Permanent Link: Forrest Tuesday'>Forrest Tuesday</a></li>
<li><a href='http://floatingsun.net/2005/10/06/forrest-tuesday-2/' rel='bookmark' title='Permanent Link: Forrest Tuesday'>Forrest Tuesday</a></li>
<li><a href='http://floatingsun.net/2005/08/16/forrest-roundup-2005-08-16/' rel='bookmark' title='Permanent Link: Forrest roundup: 2005-08-16'>Forrest roundup: 2005-08-16</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><!-- begin Dokuwiki generated code--></p>
<div class="dokuwiki">
<p>Last 2 days I&#039;ve been pretty active with <a href="http://forrest.apache.org" class="urlextern" title="http://forrest.apache.org"  rel="nofollow"> Apache Forrest</a>. Primarily with the development and enhancement of the new theme mechanism (skins or views).
</p>
<p>
Just today I have updated my website with a completely redesigned theme using the new views mechanism. I also wrote the entire <acronym title="Cascading Style Sheets">CSS</acronym> from scratch, using the colors from the publicly available KDE, GNOME and Ubuntu color palettes. So far the feedback has been nice, and this theme might actually make its way to the default Forrest theme for the next version!
</p>
<p>
I&#039;m still tweaking the theme so things might break unexpectedly. If you find something, do drop me a note!
</p>
<p>
On the academic front, I have read some more papers on virtualization and its kind of disappointing that a lot of the challenges had been very clearly identified and laid out almost 3 decades back, and the worst part is that we are <strong>still</strong> fighting those very same issues today. I have written up some more stuff that I have to go over with Amin tomorrow.
</p>
<p>
The house hunt for Palo Alto is coming along pathetically, I just have the worst luck ever. [sigh] <img src="http://floatingsun.net/wordpress/wp-content/plugins/wp-dokuwiki/lib/images/smileys/icon_sad.gif" class="middle" alt=":-(" />
</p>
</div>
<p><!-- end Dokuwiki generated code--></p>


<p>Related posts:<ol><li><a href='http://floatingsun.net/2005/09/06/forrest-tuesday/' rel='bookmark' title='Permanent Link: Forrest Tuesday'>Forrest Tuesday</a></li>
<li><a href='http://floatingsun.net/2005/10/06/forrest-tuesday-2/' rel='bookmark' title='Permanent Link: Forrest Tuesday'>Forrest Tuesday</a></li>
<li><a href='http://floatingsun.net/2005/08/16/forrest-roundup-2005-08-16/' rel='bookmark' title='Permanent Link: Forrest roundup: 2005-08-16'>Forrest roundup: 2005-08-16</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://floatingsun.net/2005/06/05/forrest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yearly PhD evaluation</title>
		<link>http://floatingsun.net/2005/05/10/yearly-phd-evaluation/</link>
		<comments>http://floatingsun.net/2005/05/10/yearly-phd-evaluation/#comments</comments>
		<pubDate>Tue, 10 May 2005 21:48:11 +0000</pubDate>
		<dc:creator>Diwaker Gupta</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[school]]></category>

		<guid isPermaLink="false">http://floatingsun.net/blog/?p=20</guid>
		<description><![CDATA[I had my yearly PhD evaluation on Thursday. My first, so I was kind of nervous. Fortunately and unfortunately, Amin takes the evaluation seriously. Unfortunately because he focused mainly on my weaknesses (since he said strengths are goody goody anyways). Fortunately because I found the discussion very valuable, and he gave some very constructive comments. [...]


Related posts:<ol><li><a href='http://floatingsun.net/2005/06/05/forrest/' rel='bookmark' title='Permanent Link: Forrest'>Forrest</a></li>
<li><a href='http://floatingsun.net/2006/02/01/paritrana-update/' rel='bookmark' title='Permanent Link: Paritrana Update'>Paritrana Update</a></li>
<li><a href='http://floatingsun.net/2005/01/07/confused-2/' rel='bookmark' title='Permanent Link: Confused'>Confused</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><!-- begin Dokuwiki generated code--></p>
<div class="dokuwiki">
<p>I had my yearly PhD evaluation on Thursday. My first, so I was kind of nervous. Fortunately and unfortunately, Amin takes the evaluation seriously. Unfortunately because he focused mainly on my weaknesses (since he said strengths are goody goody anyways). Fortunately because I found the discussion very valuable, and he gave some very constructive comments. I mean Ragesh&#039;s advisor just left his evaluation blank! Now what help is that to anyone?!
</p>
<p>
I just hope that I&#039;m able to address some, if not all, of the issues that Amin pointed out that day. And next time, I&#039;ll be prepared with some feedback of my own <img src="http://floatingsun.net/wordpress/wp-content/plugins/wp-dokuwiki/lib/images/smileys/icon_biggrin.gif" class="middle" alt=":-D" /> This time I didn&#039;t even know students were allowed to give feedback on their advisors :) The only awkward thing is that the whole thing has to be done face-to-face, with consent. So if I disagree with what he says, or he disagrees with what I say, then it can&#039;t be put down.
</p>
</div>
<p><!-- end Dokuwiki generated code--></p>


<p>Related posts:<ol><li><a href='http://floatingsun.net/2005/06/05/forrest/' rel='bookmark' title='Permanent Link: Forrest'>Forrest</a></li>
<li><a href='http://floatingsun.net/2006/02/01/paritrana-update/' rel='bookmark' title='Permanent Link: Paritrana Update'>Paritrana Update</a></li>
<li><a href='http://floatingsun.net/2005/01/07/confused-2/' rel='bookmark' title='Permanent Link: Confused'>Confused</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://floatingsun.net/2005/05/10/yearly-phd-evaluation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>You and Your Research</title>
		<link>http://floatingsun.net/2005/04/28/you-and-your-research/</link>
		<comments>http://floatingsun.net/2005/04/28/you-and-your-research/#comments</comments>
		<pubDate>Thu, 28 Apr 2005 01:41:47 +0000</pubDate>
		<dc:creator>Diwaker Gupta</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Research]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Amazing read! Here&#8217;s my favorite quote so far (reinforcing somewhat my theory on greatness and happiness, but thats debatable) You have to neglect things if you intend to get what you want done. There&#8217;s no question about this. Related posts:Happyness and Greatness New tag: research Missed 14th too!


Related posts:<ol><li><a href='http://floatingsun.net/2004/05/23/happyness-and-greatness/' rel='bookmark' title='Permanent Link: Happyness and Greatness'>Happyness and Greatness</a></li>
<li><a href='http://floatingsun.net/2005/10/10/new-tag-research/' rel='bookmark' title='Permanent Link: New tag: research'>New tag: research</a></li>
<li><a href='http://floatingsun.net/2005/01/15/missed-14th-too/' rel='bookmark' title='Permanent Link: Missed 14th too!'>Missed 14th too!</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.cs.virginia.edu/~robins/YouAndYourResearch.html">Amazing read!</a></p>
<p>Here&#8217;s my favorite quote so far (reinforcing somewhat my theory on greatness and happiness, but thats debatable)</p>
<blockquote><p>You have to neglect things if you intend to get what you want done. There&#8217;s no question about this.</p></blockquote>


<p>Related posts:<ol><li><a href='http://floatingsun.net/2004/05/23/happyness-and-greatness/' rel='bookmark' title='Permanent Link: Happyness and Greatness'>Happyness and Greatness</a></li>
<li><a href='http://floatingsun.net/2005/10/10/new-tag-research/' rel='bookmark' title='Permanent Link: New tag: research'>New tag: research</a></li>
<li><a href='http://floatingsun.net/2005/01/15/missed-14th-too/' rel='bookmark' title='Permanent Link: Missed 14th too!'>Missed 14th too!</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://floatingsun.net/2005/04/28/you-and-your-research/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple&#8217;s new toys</title>
		<link>http://floatingsun.net/2005/01/12/apples-new-toys/</link>
		<comments>http://floatingsun.net/2005/01/12/apples-new-toys/#comments</comments>
		<pubDate>Wed, 12 Jan 2005 05:53:04 +0000</pubDate>
		<dc:creator>Diwaker Gupta</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[daily]]></category>
		<category><![CDATA[random]]></category>
		<category><![CDATA[Research]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Everyone&#8217;s raving about Apple&#8217;s new toys &#8212; the [[http://www.apple.com/ipodshuffle&#124;Apple iPod-Flash]] and the [[http://www.apple.com/macmini/&#124;Apple Mac-Mini]]. My reaction? Big deal. The mini is probably a good idea &#8212; atleast now people can plug in their own monitors and keyboards and save up a lot on the crappy keyboards that Apple ships (the monitors are great, but still [...]


Related posts:<ol><li><a href='http://floatingsun.net/2006/03/28/apple-converts-australian-mine-into-ipod/' rel='bookmark' title='Permanent Link: Apple converts Australian mine into iPod'>Apple converts Australian mine into iPod</a></li>
<li><a href='http://floatingsun.net/2008/07/18/big-brother-apple/' rel='bookmark' title='Permanent Link: Big Brother Apple'>Big Brother Apple</a></li>
<li><a href='http://floatingsun.net/2004/11/18/to-apple-or-not-to-apple/' rel='bookmark' title='Permanent Link: To Apple or not to Apple'>To Apple or not to Apple</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><wiki><br />
Everyone&#8217;s raving about Apple&#8217;s new toys &#8212; the [[http://www.apple.com/ipodshuffle|Apple iPod-Flash]] and the [[http://www.apple.com/macmini/|Apple Mac-Mini]]. My reaction? Big deal. </p>
<p>The mini is probably a good idea &#8212; atleast now people can plug in their own monitors and keyboards and save up a lot on the crappy keyboards that Apple ships (the monitors are great, but still expensive IMHO). </p>
<p>The iPod shuffle is reasonably priced and stylish, but if I&#8217;m getting 20Gig upwards for 100-200 bucks more, why wouldn&#8217;t I got for it? Also, I don&#8217;t think its a good idea to tie the iPod flash so closely to the iTunes software&#8230; I mean, I should always be able to use it as a USB key right?</p>
<p>Work was slow today (read no new progress). Our machine room A/C crashed so a lot of my machines had to be taken down and so I&#8217;m stuck without any machines to run my stuff on. Besides, I don&#8217;t have any new leads on how to solve my current problem either. Its highly unlikely that we&#8217;ll have the requisite work done before the paper deadline, but still there&#8217;s no harm in trying. </p>
<p>I also spent some time thinking about designing my own wordpress theme. Played around with Inkscape and Scribus a bit. Also installed Drupal and playing around with it. I think there&#8217;s a niche for a personal website management system &#8212; which would combine a blog, a photo gallery and static content creation all rolled into one.<br />
<wiki></p>


<p>Related posts:<ol><li><a href='http://floatingsun.net/2006/03/28/apple-converts-australian-mine-into-ipod/' rel='bookmark' title='Permanent Link: Apple converts Australian mine into iPod'>Apple converts Australian mine into iPod</a></li>
<li><a href='http://floatingsun.net/2008/07/18/big-brother-apple/' rel='bookmark' title='Permanent Link: Big Brother Apple'>Big Brother Apple</a></li>
<li><a href='http://floatingsun.net/2004/11/18/to-apple-or-not-to-apple/' rel='bookmark' title='Permanent Link: To Apple or not to Apple'>To Apple or not to Apple</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://floatingsun.net/2005/01/12/apples-new-toys/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
