<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: Experiments with publishing application activity</title>
	<link>http://sameerahuja.com/2008/02/experiments-with-publishing-application-activity/</link>
	<description></description>
	<pubDate>Wed, 20 Aug 2008 09:01:06 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.1</generator>
		<item>
		<title>By: Wakoopa blog &#187; Blog Archive &#187; Get your JS-ON</title>
		<link>http://sameerahuja.com/2008/02/experiments-with-publishing-application-activity/#comment-552</link>
		<dc:creator>Wakoopa blog &#187; Blog Archive &#187; Get your JS-ON</dc:creator>
		<pubDate>Thu, 21 Feb 2008 14:35:22 +0000</pubDate>
		<guid>http://sameerahuja.com/2008/02/experiments-with-publishing-application-activity/#comment-552</guid>
		<description>&lt;p&gt;[...] For example, Olivier Duprez publishes his data on his Life 2 Front project and recently Sameer Huja experimented with connecting the Google Chart API to our XML to make some nice custom [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[&#8230;] For example, Olivier Duprez publishes his data on his Life 2 Front project and recently Sameer Huja experimented with connecting the Google Chart API to our XML to make some nice custom [&#8230;]</p>]]></content:encoded>
	</item>
	<item>
		<title>By: sameer</title>
		<link>http://sameerahuja.com/2008/02/experiments-with-publishing-application-activity/#comment-551</link>
		<dc:creator>sameer</dc:creator>
		<pubDate>Thu, 14 Feb 2008 01:25:31 +0000</pubDate>
		<guid>http://sameerahuja.com/2008/02/experiments-with-publishing-application-activity/#comment-551</guid>
		<description>&lt;p&gt;Google search sort-of does that if you have web history enabled. It tells you how many times you've visited the page and when was the last time, right there in the search results.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Google search sort-of does that if you have web history enabled. It tells you how many times you&#8217;ve visited the page and when was the last time, right there in the search results.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Ankit</title>
		<link>http://sameerahuja.com/2008/02/experiments-with-publishing-application-activity/#comment-550</link>
		<dc:creator>Ankit</dc:creator>
		<pubDate>Wed, 13 Feb 2008 13:39:55 +0000</pubDate>
		<guid>http://sameerahuja.com/2008/02/experiments-with-publishing-application-activity/#comment-550</guid>
		<description>&lt;p&gt;Nice post. However, I was getting lost in the comments when i suddenly came across the parts where you talk of searching as in traversing a tree. Now I had data structures last semester, so that sort of kept me going to the end of it:)
I believe annotation is not of much use, since if we are anyways going to remember that we will need it often, we would bookmark it anyways. 
I like to think of a firefox extension that would display in the search page itself the no. of times ( if ever ) you have visited a particular link. And based on that, somehow highlight the ones one has visited more often :)&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Nice post. However, I was getting lost in the comments when i suddenly came across the parts where you talk of searching as in traversing a tree. Now I had data structures last semester, so that sort of kept me going to the end of it:)
I believe annotation is not of much use, since if we are anyways going to remember that we will need it often, we would bookmark it anyways. 
I like to think of a firefox extension that would display in the search page itself the no. of times ( if ever ) you have visited a particular link. And based on that, somehow highlight the ones one has visited more often <img src='http://sameerahuja.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>]]></content:encoded>
	</item>
	<item>
		<title>By: AJ</title>
		<link>http://sameerahuja.com/2008/02/experiments-with-publishing-application-activity/#comment-549</link>
		<dc:creator>AJ</dc:creator>
		<pubDate>Wed, 13 Feb 2008 00:54:39 +0000</pubDate>
		<guid>http://sameerahuja.com/2008/02/experiments-with-publishing-application-activity/#comment-549</guid>
		<description>&lt;p&gt;That is ingenious and tiring.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>That is ingenious and tiring.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: sameer</title>
		<link>http://sameerahuja.com/2008/02/experiments-with-publishing-application-activity/#comment-548</link>
		<dc:creator>sameer</dc:creator>
		<pubDate>Wed, 13 Feb 2008 00:47:42 +0000</pubDate>
		<guid>http://sameerahuja.com/2008/02/experiments-with-publishing-application-activity/#comment-548</guid>
		<description>&lt;p&gt;That's the interesting bit, so generally these search paths go like a tree originating from the search page going into, let's say, some 3-4 levels deep across 3-4 different paths. The first question is can you find the leaf nodes, which I think you can on the client based on referral information. So you keep building the tree till the new page loaded has any of the current pages in the tree as its referrer. &lt;/p&gt;

&lt;p&gt;You'd probably want such a system to prefer deeper nodes (Just because they might have a higher probability of being 'the node' that the user found his information at. It could also be optimized to give lower rankings to pages you frequently visit, just to get rid of the noise. &lt;/p&gt;

&lt;p&gt;The other way, that you mention, is to ask the user to manually "star" the page or annotate a part of it to show the information he was looking for. It works great if the user knows that he'll need the page again, and if he remembers to do the annotation, both hard things for lazy people like me to do.&lt;/p&gt;

&lt;p&gt;I think that a hybrid approach would be the ideal solution, wherein you have this underlying system that would do its tracking behind the scenes, and have a 'pseudo' ranker, such that if you bookmark a page while navigating, its rankings shoot up for that and related 'search paths'.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>That&#8217;s the interesting bit, so generally these search paths go like a tree originating from the search page going into, let&#8217;s say, some 3-4 levels deep across 3-4 different paths. The first question is can you find the leaf nodes, which I think you can on the client based on referral information. So you keep building the tree till the new page loaded has any of the current pages in the tree as its referrer. </p>

<p>You&#8217;d probably want such a system to prefer deeper nodes (Just because they might have a higher probability of being &#8216;the node&#8217; that the user found his information at. It could also be optimized to give lower rankings to pages you frequently visit, just to get rid of the noise. </p>

<p>The other way, that you mention, is to ask the user to manually &#8220;star&#8221; the page or annotate a part of it to show the information he was looking for. It works great if the user knows that he&#8217;ll need the page again, and if he remembers to do the annotation, both hard things for lazy people like me to do.</p>

<p>I think that a hybrid approach would be the ideal solution, wherein you have this underlying system that would do its tracking behind the scenes, and have a &#8216;pseudo&#8217; ranker, such that if you bookmark a page while navigating, its rankings shoot up for that and related &#8217;search paths&#8217;.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: AJ</title>
		<link>http://sameerahuja.com/2008/02/experiments-with-publishing-application-activity/#comment-547</link>
		<dc:creator>AJ</dc:creator>
		<pubDate>Wed, 13 Feb 2008 00:25:56 +0000</pubDate>
		<guid>http://sameerahuja.com/2008/02/experiments-with-publishing-application-activity/#comment-547</guid>
		<description>&lt;p&gt;:) Yes, they do use such a thing. &lt;/p&gt;

&lt;p&gt;Wow, you have quite a good thought on that building the recommendation engine. I remember that you had mentioned this long time back (I believe in Bangalore). My question is that would the users have to manually register the "final URL" that they think is worth it? &lt;/p&gt;

&lt;p&gt;Because I personally search something and visit at least 3-4 links on the results page unless I know before hand that my search will return the most desired link at the most desired place.&lt;/p&gt;

&lt;p&gt;P.S. - Example of "Hard Boiled Recipe" was awesome. :)&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p> <img src='http://sameerahuja.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> Yes, they do use such a thing. </p>

<p>Wow, you have quite a good thought on that building the recommendation engine. I remember that you had mentioned this long time back (I believe in Bangalore). My question is that would the users have to manually register the &#8220;final URL&#8221; that they think is worth it? </p>

<p>Because I personally search something and visit at least 3-4 links on the results page unless I know before hand that my search will return the most desired link at the most desired place.</p>

<p>P.S. - Example of &#8220;Hard Boiled Recipe&#8221; was awesome. <img src='http://sameerahuja.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>]]></content:encoded>
	</item>
	<item>
		<title>By: sameer</title>
		<link>http://sameerahuja.com/2008/02/experiments-with-publishing-application-activity/#comment-546</link>
		<dc:creator>sameer</dc:creator>
		<pubDate>Wed, 13 Feb 2008 00:16:31 +0000</pubDate>
		<guid>http://sameerahuja.com/2008/02/experiments-with-publishing-application-activity/#comment-546</guid>
		<description>&lt;p&gt;Heheh, what makes you think that the corporates don't already do that? &lt;/p&gt;

&lt;p&gt;Well, Wakoopa provides the user analytics on their website dashboard, so one could view personal stats there. I am interested in building a firefox extension to track web browsing, but that's for a different reason: Building a recommendations engine over it. I had planned to use &lt;a href="http://attentiontrust.org/toolkit" rel="nofollow"&gt;AttensionTrust's toolkit&lt;/a&gt; to build a basic recommender engine (Eg, a search for "hard boiled eggs recipe" could pop a 'recommendation' in the browser saying something like "You searched for these terms a month back, and this is the site you ended up visiting: URL", but both my courses are taking 50% of life, assuming that as a graduate student, I have any :)&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Heheh, what makes you think that the corporates don&#8217;t already do that? </p>

<p>Well, Wakoopa provides the user analytics on their website dashboard, so one could view personal stats there. I am interested in building a firefox extension to track web browsing, but that&#8217;s for a different reason: Building a recommendations engine over it. I had planned to use <a href="http://attentiontrust.org/toolkit" rel="nofollow">AttensionTrust&#8217;s toolkit</a> to build a basic recommender engine (Eg, a search for &#8220;hard boiled eggs recipe&#8221; could pop a &#8216;recommendation&#8217; in the browser saying something like &#8220;You searched for these terms a month back, and this is the site you ended up visiting: URL&#8221;, but both my courses are taking 50% of life, assuming that as a graduate student, I have any <img src='http://sameerahuja.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>]]></content:encoded>
	</item>
	<item>
		<title>By: AJ</title>
		<link>http://sameerahuja.com/2008/02/experiments-with-publishing-application-activity/#comment-545</link>
		<dc:creator>AJ</dc:creator>
		<pubDate>Tue, 12 Feb 2008 19:01:41 +0000</pubDate>
		<guid>http://sameerahuja.com/2008/02/experiments-with-publishing-application-activity/#comment-545</guid>
		<description>&lt;p&gt;Cool! &lt;/p&gt;

&lt;p&gt;I was wondering if we can view a whole bunch of such graphs using Wakoopa or ResuceTime so as to create a high-level corporate research analysis tool (say, of company resources).&lt;/p&gt;

&lt;p&gt;Can we have a small application or may be an FF extension to support this?&lt;/p&gt;

&lt;p&gt;It was nice to see a new post again. Looking forward to read more such interesting stuff. Subscribed already. :)&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Cool! </p>

<p>I was wondering if we can view a whole bunch of such graphs using Wakoopa or ResuceTime so as to create a high-level corporate research analysis tool (say, of company resources).</p>

<p>Can we have a small application or may be an FF extension to support this?</p>

<p>It was nice to see a new post again. Looking forward to read more such interesting stuff. Subscribed already. <img src='http://sameerahuja.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>]]></content:encoded>
	</item>
</channel>
</rss>
