<?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>Sumit Chachra&#039;s Blog &#187; Technology</title> <atom:link href="http://blog.chachra.us/category/technology/feed/" rel="self" type="application/rss+xml" /><link>http://blog.chachra.us</link> <description>Tivix, Technology, Django, Startups, Social Media</description> <lastBuildDate>Sun, 11 Jul 2010 05:31:45 +0000</lastBuildDate> <generator>http://wordpress.org/?v=2.9.2</generator> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <item><title>Sandboxing emails in Django</title><link>http://blog.chachra.us/2010/07/10/sandboxing-emails-in-django/</link> <comments>http://blog.chachra.us/2010/07/10/sandboxing-emails-in-django/#comments</comments> <pubDate>Sun, 11 Jul 2010 05:14:42 +0000</pubDate> <dc:creator>Sumit Chachra</dc:creator> <category><![CDATA[Coding]]></category> <category><![CDATA[Django]]></category> <category><![CDATA[Technology]]></category><guid
isPermaLink="false">http://chachra.tivixsites.com/?p=99</guid> <description><![CDATA[Its usually good to sandbox your QA / staging environments so that they don&#8217;t shoot out emails to real email addresses (say you&#8217;ve made a copy of your production database). Django 1.2 and their email backends make it really easy to do so.Here&#8217;s a testing email backend I wrote. Simply drop in a email address [...]]]></description> <content:encoded><![CDATA[<p></p><div>Its usually good to sandbox your QA / staging environments so that they don&#8217;t shoot out emails to real email addresses (say you&#8217;ve made a copy of your production database). Django 1.2 and their email backends make it really easy to do so.</div><p><br/></p><div>Here&#8217;s a testing email backend I wrote. Simply drop in a email address associated with the DEFAULT_TO_EMAIL setting in your settings.py. Also set the EMAIL_BACKEND in settings.py to the class below.</div><p><br/></p><div>This also takes care of cases where in your code you&#8217;re sending a &#8220;mass mail&#8221; (using send_mass_mail), it&#8217;ll only send one out.</div><pre class="brush:python">from django.core.mail.backends.smtp import EmailBackend
class TestingEmailBackend(EmailBackend):
    """
    Used in dev and qa
    """
    def send_messages(self, email_messages):
        """
        Overrides the to email address. Also if there are tons of messages being sent out then it reduces them to
        1 message.
        """
        if len(email_messages) &gt; 1:
            email_messages = (email_messages[0],)
        email_messages[0].to = [django_settings.DEFAULT_TO_EMAIL,]
        super(TestingEmailBackend, self).send_messages(email_messages)</pre>]]></content:encoded> <wfw:commentRss>http://blog.chachra.us/2010/07/10/sandboxing-emails-in-django/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Moving Wordpress mu to a different domain</title><link>http://blog.chachra.us/2010/03/04/moving-wordpress-mu-to-a-different-domain/</link> <comments>http://blog.chachra.us/2010/03/04/moving-wordpress-mu-to-a-different-domain/#comments</comments> <pubDate>Thu, 04 Mar 2010 21:46:12 +0000</pubDate> <dc:creator>Sumit Chachra</dc:creator> <category><![CDATA[Technology]]></category> <category><![CDATA[blogging]]></category> <category><![CDATA[blogs]]></category> <category><![CDATA[Django]]></category> <category><![CDATA[WordPress]]></category><guid
isPermaLink="false">http://chachra.tivixsites.com/?p=92</guid> <description><![CDATA[So I have a Wordpress MU setup where we&#8217;re hosting a bunch of sites/blogs (email me at sumit AT tivixlabs.com if you&#8217;re interested in one).
As with all my Django webapps I wanted to replicate all the sites on qa for testing purposes (so that we&#8217;re not messing production sites with plugin / wordpress upgrades etc.). [...]]]></description> <content:encoded><![CDATA[<p></p><p>So I have a <a
class="zem_slink" title="WordPress" rel="homepage" href="http://wordpress.org">Wordpress</a> MU setup where we&#8217;re hosting a bunch of sites/blogs (email me at sumit AT tivixlabs.com if you&#8217;re interested in one).</p><p>As with all my <a
class="zem_slink" title="Django (web framework)" rel="homepage" href="http://www.djangoproject.com">Django</a> webapps I wanted to replicate all the sites on qa for testing purposes (so that we&#8217;re not messing production sites with plugin / wordpress upgrades etc.). The problem is the qa site runs on a different domain (say domain2.com) than the production MU install (say domain1.com).</p><p>Since my stores the domain in 1 file (easy to fix) and a bunch of db tables, the easy solution is to:</p><ul><li>Make a copy of entire wordpress directory and put the correct domain in wp-config.php in this line: <span
style="color: #ff6600;">define(&#8216;DOMAIN_CURRENT_SITE&#8217;, &#8216;domain2.com&#8217; );<br
/> </span></li><li>Take a dump of your existing MU installs database. Open that dump file and do a replace of all &#8220;domain1.com&#8221; strings with &#8220;domain2.com&#8221;. Next do a replace of &#8220;domain1&#8243; with &#8220;domain2&#8243;. Source this new dump into the new database for the new MU instance.</li></ul><p>Thats it. These 2 steps should be it. Your MU site should now run like your old one, but at domain2.com and all existing sites/blogs will run at old-sub-domain.domain2.com too!</p> ]]></content:encoded> <wfw:commentRss>http://blog.chachra.us/2010/03/04/moving-wordpress-mu-to-a-different-domain/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Fanning/Following is the new SEO?</title><link>http://blog.chachra.us/2009/09/06/fanningfollowing-is-the-new-seo/</link> <comments>http://blog.chachra.us/2009/09/06/fanningfollowing-is-the-new-seo/#comments</comments> <pubDate>Sun, 06 Sep 2009 06:50:09 +0000</pubDate> <dc:creator>Sumit Chachra</dc:creator> <category><![CDATA[Business]]></category> <category><![CDATA[Online Advertising]]></category> <category><![CDATA[Technology]]></category> <category><![CDATA[web 2.0]]></category> <category><![CDATA[connect]]></category> <category><![CDATA[ecommerce]]></category> <category><![CDATA[facebook]]></category> <category><![CDATA[pages]]></category><guid
isPermaLink="false">http://blog.chachra.us/?p=82</guid> <description><![CDATA[So lots of friends have been messaging and emailing me about my bizarre Fanning behavior on Facebook. Weirdly none complain when I fan someone/some brand on Twitter. I guess cause that affects my feed, not theirs (Facebook apparently informs them about my fanning?).
In any case, I thought I&#8217;ll fire up a blog post about it, [...]]]></description> <content:encoded><![CDATA[<p></p><p>So lots of friends have been messaging and emailing me about my bizarre Fanning behavior on Facebook. Weirdly none complain when I fan someone/some brand on Twitter. I guess cause that affects my feed, not theirs (Facebook apparently informs them about my fanning?).</p><p>In any case, I thought I&#8217;ll fire up a blog post about it, and guess where a few of these things are headed, and why its important that people fan brands, things/people they like etc.</p><p>Firstly irrespective of how many friends you have (I have around 250) on Facebook, there is no way your stream has new things to show every time. It simply doesn&#8217;t happen. For most people who check their Facebook 1-2 times a day its fine, but mostly people probably are spending north of 1 hour on Facebook (site/mobile etc.).</p><p>For the latter, fresh content is important, otherwise they are simply wasting time. Many people are getting their news, thoughtful articles etc. simply based on this feed. I can imagine 15-18 year olds not caring much of Yahoo! news, Google news etc.</p><p>Now back to the fanning behavior, the more things you fan, the more realtime your feed can be. Now if a brand spams my feed, I simply remove them. But most brands are being creative, they don&#8217;t talk about themselves all the time. In fact they provide thoughtful notes, links and commentary on things that have absolutely nothing to do with their brand.</p><p>Facebook Pages is going to evolve, and my money is on the fact that its going to really make Social (e)Commerce skyrocket. With the pending launch of Facebook Payments, its going to make for one heady mix! Imagine Brand X launches a product Y. They inform all their followers (say10k+). These followers with a few clicks can buy product Y off Brand X&#8217;s facebook page, without leaving Facebook, without entering their address/credit card # etc. cause Facebook already knows those details. Whats more these people get to share their purchase with their friends etc.</p><p>Now all this can be done on www.brandX.com also, and they can possibly (and most probably will) use Facebook Connect on their site, and make it social. But the idea of going to one place (Facebook) and being able to get all your news, catch up on friends, order product Y (maybe some flowers for your Mom) etc. etc. is pretty nice!</p><p>So there you go, I don&#8217;t really love each of the brands I fan on Facebook, but thats a cost I am willing to pay for a realtime stream, interesting links/discussions and getting to know more than I will from just my friends (who are awesome too!)</p> ]]></content:encoded> <wfw:commentRss>http://blog.chachra.us/2009/09/06/fanningfollowing-is-the-new-seo/feed/</wfw:commentRss> <slash:comments>13</slash:comments> </item> <item><title>My thoughts on Yahoo!</title><link>http://blog.chachra.us/2009/02/22/my-thoughts-on-yahoo/</link> <comments>http://blog.chachra.us/2009/02/22/my-thoughts-on-yahoo/#comments</comments> <pubDate>Sun, 22 Feb 2009 06:03:37 +0000</pubDate> <dc:creator>Sumit Chachra</dc:creator> <category><![CDATA[Google]]></category> <category><![CDATA[Technology]]></category> <category><![CDATA[Yahoo!]]></category> <category><![CDATA[search]]></category> <category><![CDATA[web 2.0]]></category> <category><![CDATA[arizona]]></category> <category><![CDATA[la]]></category> <category><![CDATA[los angeles]]></category><guid
isPermaLink="false">http://blog.chachra.us/?p=80</guid> <description><![CDATA[I&#8217;ve been thinking of blogging about my employment with Yahoo! for a while, but never got around to it. Reading today, about yet another impending Yahoo! reorg, I decided to write about what I felt like while I was there, what worked, what didn&#8217;t, and how Yahoo! can get out of the rut it finds [...]]]></description> <content:encoded><![CDATA[<p></p><p>I&#8217;ve been thinking of blogging about my employment with Yahoo! for a while, but never got around to it. Reading today, about yet <a
href="http://www.pcworld.com/businesscenter/article/159998/yahoo_may_overhaul_top_management_next_week_report_says.html" target="_new">another impending Yahoo! reorg</a>, I decided to write about what I felt like while I was there, what worked, what didn&#8217;t, and how Yahoo! can get out of the rut it finds itself in.</p><p>I was employed by Yahoo! from Oct. 2005 &#8211; Nov. 2006. It was my first job out of school, my first full-time job indeed. I had only done a couple of internships (in Singapore &amp; Santa Fe, NM) before it.</p><p>It started out great. I got the offer an hour after I interviewed with Yahoo! (Burbank/Pasadena office), which was a welcome change since I was going back-and-forth with Google at that point. Google had flown me from Tucson, AZ (where I was finishing up grad school) 3 times to their Mountain View headquarters, and after having talked with 22 people (yes twenty-two, I kept a count!) on phone and in-person they still couldn&#8217;t make up their mind. But I digress&#8230;</p><p>I joined Yahoo! in the <a
href="http://publisher.yahoo.com/" target="_new">YPN</a> team, which was going to be the adsense competitor. I was excited for multiple reasons</p><ul><li>Somewhere around that time I had started reading blogs, and was totally hooked onto the online &#8220;thing&#8221;. I was graduating with my thesis in AI/Multi-agent systems and was excited about applying what I had learned to a new Yahoo! product.</li><li>I was going to live in LA, and get to live a fast-paced life</li><li>I knew ad-serving had lots of computational challenges, from scalability to being able to process large data-sets, relevancy of ads, personalization etc. etc.</li></ul><p>My team was great, and I made some very good friends. Then in my first week at Yahoo!, <a
href="http://www.businessweek.com/technology/content/dec2006/tc20061226_633699.htm" target="_new">Panama</a> happened! Panama was going to be an overhaul of the Yahoo! advertiser product and almost everyone at Yahoo! Burbank was going to be working on it. Except for my team, since we were publisher focused.</p><p>That was a bummer, since that meant our team was not going to get the attention/resources it needed. There were other bummers, like every team at Yahoo! &#8220;pushed back&#8221;. I didn&#8217;t know if it was territorial or not but people just didn&#8217;t want to take &#8220;risks&#8221;. There were lots of meeting, but usually nothing came out of them.</p><p>I also realized that the team I had joined was going to be managing the front-end interface which publishers were going to be logging into etc. I wasn&#8217;t going to be designing algorithms, writing pieces of ad-server code or facing any scalability challenges at all <img
src='http://blog.chachra.us/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> That all was being done by another team, which seemed to not like us at best, hate our team at worst.</p><p>There were other problems with Engineering @ Yahoo!, which I didn&#8217;t realize back then, since I didn&#8217;t know any better. There were virtually no spec/design meetings, no code reviews (not including paper code reviews once it had already been written!!), we were using CVS (seriously?) to manage our code. There were motivational issues too as I saw it. The VP (Engineering) to which my team reported to barely knew me. Now not that its a big problem, but in my 1 year there, he did not get the entire team in a room and talk to us, our problems, motivate us etc.</p><p>Now there were exceptions. A star employee Qi Lu. Even though he was a SVP, within a month of moving to Burbank, he called my entire team for a meeting, wanted to know each of us, was just an all round great manager. Most stars like these have left Yahoo! (Qi Lu is now with Microsoft &#8211; <a
href="http://www.microsoft.com/presspass/press/2008/dec08/12-04CorpDec4PR.mspx" target="_new">announcement</a>). Most of the product managers I worked with were rockstars too, so it wasn&#8217;t the foots on the ground that was the problem, it was more the VP and above employees that have failed Yahoo! They had the talent, they had the resources, they just weren&#8217;t able to execute.</p><p>In short my advise to Yahoo! is:<br
/> + Develop common engineering infrastructure so that every group does not re-invent the wheel in terms of server technologies, persistent storage/caching etc. Ala <a
href="http://code.google.com/appengine/" target="_new">Google app engine</a>.<br
/> + Keep closing properties that suck, or merging them with pre-existing ones<br
/> + Stop trying to beat Google at search. Come up with innovative advertising related products, that are not simply search. Maybe focus on more on product search, or travel etc.<br
/> + Small teams, trim down and promote the good guys/gals!<br
/> + Focus on the enterprise space also, its huge!<br
/> + Hire senior execs who truly &#8220;get it&#8221; (case in point, <a
href="http://www.crunchbase.com/person/jeff-weiner" target="_new">Jeff Weiner</a> who is now COO of LinkedIn) and care about the people who report to them, directly or indirectly.</p><p>This isn&#8217;t meant to be a rant, or anti-Yahoo! commentary. I think the company always had potential and I&#8217;d like it to do well and innovate (case in point <a
href="http://developer.yahoo.com/yos/intro/" target="_new">YOS</a>). Hoping for the very best, and wishing <a
href="http://yhoo.client.shareholder.com/press/management.cfm" target="_new">Carol Bartz</a> Best of Luck!</p> ]]></content:encoded> <wfw:commentRss>http://blog.chachra.us/2009/02/22/my-thoughts-on-yahoo/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Givix.org &#8211; Giving while shopping!</title><link>http://blog.chachra.us/2008/11/28/givixorg-giving-while-shopping/</link> <comments>http://blog.chachra.us/2008/11/28/givixorg-giving-while-shopping/#comments</comments> <pubDate>Fri, 28 Nov 2008 07:26:42 +0000</pubDate> <dc:creator>Sumit Chachra</dc:creator> <category><![CDATA[Advertising]]></category> <category><![CDATA[Business]]></category> <category><![CDATA[Google]]></category> <category><![CDATA[Online Advertising]]></category> <category><![CDATA[charity]]></category> <category><![CDATA[fundraising]]></category> <category><![CDATA[nonprofits]]></category><guid
isPermaLink="false">http://blog.chachra.us/?p=76</guid> <description><![CDATA[As many of you know I recently started working at Tivix. Working to solve problems faced by social entrepreneurs and Non-Profits is a good feeling. I came up with an idea similar to igive (there are others out there too), but wanted to make it simpler and easier to use (without forcing people to login [...]]]></description> <content:encoded><![CDATA[<p></p><p>As many of you know I recently started working at <a
href="http://tivix.com">Tivix</a>. Working to solve problems faced by social entrepreneurs and Non-Profits is a good feeling. I came up with an idea similar to <a
href="http://igive.com/">igive</a> (there are others out there too), but wanted to make it simpler and easier to use (without forcing people to login for example)</p><p>I came up with a rhyming name for this concept, <a
href="http://www.givix.org/">Givix: Giving while shopping</a>! Thanks to <a
href="http://associates.amazon.com/">Amazon Associates</a>, <a
href="http://cj.com/">commission junction</a> and <a
href="http://www.linkshare.com/">linkshare</a> it was made possible!</p><p>Also thanks to the simplicity and free scale of <a
href="http://code.google.com/appengine">Google App Engine</a> I am able to write the code, test and launch Givix (on another note I think the <a
href="http://djangoproject.org/">Django</a> model interfaces are easier to use, or maybe I&#8217;ve simply become used to them. I do like App Engine&#8217;s online dashboard, ease with which I can edit model instances, see logs/performance etc.)</p><p>I enjoyed writing this simple app, I hope to enhance it more next year. Hopefully Givix will be able to raise some (however small) money for a few causes this year. Given the looming recession I don&#8217;t have high hopes, but if you&#8217;re reading this and are going to be shopping at Amazon.com, buy.com, sketchers, macys.com, cafepress.com or others, then do consider clicking through Givix before making the purchase. Every cent counts!</p> ]]></content:encoded> <wfw:commentRss>http://blog.chachra.us/2008/11/28/givixorg-giving-while-shopping/feed/</wfw:commentRss> <slash:comments>74</slash:comments> </item> <item><title>Google app engine feature request!</title><link>http://blog.chachra.us/2008/06/24/google-app-engine-feature-request/</link> <comments>http://blog.chachra.us/2008/06/24/google-app-engine-feature-request/#comments</comments> <pubDate>Tue, 24 Jun 2008 22:11:25 +0000</pubDate> <dc:creator>Sumit Chachra</dc:creator> <category><![CDATA[Google]]></category> <category><![CDATA[Software Industry]]></category> <category><![CDATA[Technology]]></category><guid
isPermaLink="false">http://blog.chachra.us/2008/06/24/google-app-engine-feature-request/</guid> <description><![CDATA[New API&#8217;s that would be awesome:
+ Friend list API to get list of friends (users) of currently logged in user. This will enable sharing applications.
+ Jabber messaging api (for currently logged in user and/or any of his/her friend(s)). Real-time messaging anyone?
+ API to schedule execution of arbitrary code at regular time intervals, which can span [...]]]></description> <content:encoded><![CDATA[<p></p><p>New API&#8217;s that would be awesome:</p><p>+ Friend list API to get list of friends (users) of currently logged in user. This will enable sharing applications.<br
/> + Jabber messaging api (for currently logged in user and/or any of his/her friend(s)). Real-time messaging anyone?<br
/> + API to schedule execution of arbitrary code at regular time intervals, which can span &gt; 2 second request time limit currently imposed (hopefully)</p><p>More feature requests:<br
/> + Be able to set how long the user session lasts</p><p>UPDATE:</p><p>+ How about more than 3 apps per developer?<br
/> + Also would be neat to be able to take *1* app and have it run in several Google Apps domains?</p> ]]></content:encoded> <wfw:commentRss>http://blog.chachra.us/2008/06/24/google-app-engine-feature-request/feed/</wfw:commentRss> <slash:comments>5</slash:comments> </item> <item><title>Feature requests for Amazon.com</title><link>http://blog.chachra.us/2008/03/10/feature-requests-for-amazoncom/</link> <comments>http://blog.chachra.us/2008/03/10/feature-requests-for-amazoncom/#comments</comments> <pubDate>Mon, 10 Mar 2008 05:37:23 +0000</pubDate> <dc:creator>Sumit Chachra</dc:creator> <category><![CDATA[Amazon]]></category> <category><![CDATA[annoying]]></category> <category><![CDATA[product management]]></category><guid
isPermaLink="false">http://blog.chachra.us/2008/03/10/feature-requests-for-amazoncom/</guid> <description><![CDATA[Although the Amazon UI has had a reasonably good overhaul, its been pretty much cosmetic. I like the fact that they have more intuitive dropdowns, a large cart icon and a navigation panel on the left. Sadly the number of clicks I require to accomplish a few tasks and few of the under-performing features leave [...]]]></description> <content:encoded><![CDATA[<p></p><p>Although the Amazon UI has had a reasonably good overhaul, its been pretty much cosmetic. I like the fact that they have more intuitive dropdowns, a large cart icon and a navigation panel on the left. Sadly the number of clicks I require to accomplish a few tasks and few of the under-performing features leave much to my imagination.</p><p>I think Amazon has done an amazing job in terms of site uptime, customer service and on-time delivery/handling of orders. A few changes would go a long way!</p><p>So here&#8217;s my ramblings on a few:</p><p><strong>Search</strong><br
/> - Make everything searchable. I mean EVERYTHING! Make all past items (for the last 5 years in my case) I have purchased on Amazon searchable. Its a big big pain trying to find that one thing I had ordered once and I want one more of it or want to gift to my friend. Make it easy and straightforward.</p><p>- Make my wish list searchable. How am I supposed to manage/find items in the 200+ items in my wish list (or shopping list or any list for that matter).</p><p>- In addition to the above, if I search for a keyword that matches against things I have bought in the past and/or have in my wish/shopping lists then why not show them in small boxes on the sides on the search results page?</p><p>- Please make search fast! Always helpful. Since right now I happen to be using Google to search amazon. Looking for that Objective-C book on Amazon. My search is &#8220;<a
href="http://www.google.com/search?q=Amazon%20objective-c&amp;sourceid=mozilla2&amp;ie=utf-8&amp;oe=utf-8">Amazon objective-c</a>&#8221; and off I go! Also, how about auto-complete as soon as I start typing anything. Maybe the name of a book or author or product etc.?</p><p><strong>Shopping Cart</strong><br
/> - Why does deleting an item require a page refresh (AJAX anyone?)? Moreover why do I have to go one by one on each item to delete them? How about a &#8220;delete all&#8221; button with a warning popup? I know they all sound like revenue losing propositions, but offer an awesome customer experience. Believe me, if I don&#8217;t want to purchase something then a bad delete implementation is not going to make me!</p><p>- I as a regular user of Amazon  am always shopping or looking for a few things. Gifts, something for the house, books, what have you. I may or not buy them at the same time and hence am forced to use the &#8220;save for later feature&#8221;. Moreover lets say I am trying to buy a few small things for my parents anniversary. Why can&#8217;t I make a separate cart for them which once filled with the items I so desire, can be purchased with 1 click? Basically I should be able to create custom carts on the fly.</p><p><strong>Lists</strong><br
/> - Although a few changes have been made in lists they are still not manageable. Apart from the fact that I can&#8217;t search them, there is no capability to subscribe to or get updated when things get added to my friends wish lists. There is no easy way to share my wish list on my blog (as a widget) or on Facebook etc. If fixed I think lists can be a big winner and revenue driver for Amazon</p><p>- If I visit a product which is already in my wish list, instead of informing me of that fact, Amazon keeps showing me the &#8220;Add to Wishlist&#8221; button. Would be really cool if Amazon fixed that and went a few steps ahead. How about knowing who my friends are (social network here we come!!) and showing me which of my friends have that item on their public lists.</p><p><strong>Account/Orders</strong><br
/> - Usually when I&#8217;ve placed a few orders on Amazon and they have been shipped I sometimes come to Amazon to track those orders. This tracking requires me to make 3 clicks before I even land on the page where my orders are:</p><p>Account (click) -&gt; Recent Orders:Go (click) -&gt; Username/password (click)</p><p>Why can&#8217;t there be an easier way to track orders? Moreover the estimates for delivery and shipping that Amazon gives (at least to non-Amazon Prime members) are way off most of the times. How about send me an email (or SMS) when the product gets delivered? UPS/DHL provide that state in their API&#8217;s, so it shouldn&#8217;t be that difficult to implement. To improve the above 3-click process I can propose:</p><p>Account_Dropdown:Recent Orders (click) -&gt; Username/password (click)</p><p>OR</p><p>If I&#8217;ve logged in within the last 30 minutes then just skip the Username/password step and reduce the entire process to 1-click!</p> ]]></content:encoded> <wfw:commentRss>http://blog.chachra.us/2008/03/10/feature-requests-for-amazoncom/feed/</wfw:commentRss> <slash:comments>6</slash:comments> </item> <item><title>The Intelligent RSS/Atom feed</title><link>http://blog.chachra.us/2008/03/02/the-intelligent-rssatom-feed/</link> <comments>http://blog.chachra.us/2008/03/02/the-intelligent-rssatom-feed/#comments</comments> <pubDate>Sun, 02 Mar 2008 21:35:10 +0000</pubDate> <dc:creator>Sumit Chachra</dc:creator> <category><![CDATA[Google]]></category> <category><![CDATA[Online Advertising]]></category> <category><![CDATA[Technology]]></category> <category><![CDATA[Yahoo!]]></category> <category><![CDATA[blogs]]></category> <category><![CDATA[personalization]]></category> <category><![CDATA[product management]]></category><guid
isPermaLink="false">http://blog.chachra.us/2008/03/02/the-intelligent-rssatom-feed/</guid> <description><![CDATA[This post could easily have been named &#8220;Targeted Blogging&#8221; or &#8220;Feature requests for Feedburner&#8221;
So I started thinking about a RSS/Atom feed that is intelligent. Meaning each of my blog&#8217;s feed subscribers can potentially be offered unique content. So let me present a few scenarios:
- Wouldn&#8217;t it be great to be able to write [...]]]></description> <content:encoded><![CDATA[<p></p><p>This post could easily have been named &#8220;Targeted Blogging&#8221; or &#8220;Feature requests for Feedburner&#8221; <img
src='http://blog.chachra.us/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p><p>So I started thinking about a RSS/Atom feed that is intelligent. Meaning each of my blog&#8217;s feed subscribers can potentially be offered unique content. So let me present a few scenarios:</p><p>- Wouldn&#8217;t it be great to be able to write a blog entry about music, and have only people who had &#8220;music&#8221; as one of their interests, be the only ones who see it in their Google Reader/My Yahoo!/NetNewsWire ?<br
/> - What if I was organizing an event in San Francisco, and wanted to let only people who are in California know about it ?</p><p>Problems:<br
/> - Doing Geo Targeting for ads within feeds is easy, since they load within the browser as a separate request, hence the ad server can act with intelligence about time of day/location etc. Sadly the same is not true for my blog entries. I write them once.<br
/> - Scenario#2 above is a bit flawed, because what if my friend from NY is going to be in California during that time period, then he/she will not be able to attend, since my blog entry won&#8217;t show up in his/her feed!!</p><p>Solutions:<br
/> - When the user comes and clicks on my &#8220;Add to Yahoo/Google&#8221; button I ask them for some basic info, such as age/location/profession etc. They may chose to ignore it of course, but if they don&#8217;t they are giving me important information.<br
/> - A better solution is for feed burning platforms such as Feedburner to maintain a persistent profile of users who are subscribing to feeds. So my profile would read: &#8220;Sumit Chachra, Male, 26, San Francisco, CA &#8230;&#8230;..&#8221;. This information will *never* be shared with feed publishers, but they can use it to target content (much the same way Facebook ad targeting works)<br
/> - The problem with scenario#2 can be resolved using a few techniques. Assuming Google Calendar has a feature called &#8220;Location&#8221; where in I can feed in my coordinates for specific dates, and this information can be shared with Feedburner, then my feedburner profile is really &#8220;dynamic&#8221;! We&#8217;re headed down the path of intelligent agents here really, and its all starting to sound like a scifi (scary) movie at this point <img
src='http://blog.chachra.us/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p><p>All this implies that each subscriber to my feed has a unique feed url, which will spit unique content to each such subscriber, based on certain data points that the feed url platform knows about them, and using which the feed publisher can do targeted content delivery!</p><p>I wish this existed!</p> ]]></content:encoded> <wfw:commentRss>http://blog.chachra.us/2008/03/02/the-intelligent-rssatom-feed/feed/</wfw:commentRss> <slash:comments>14</slash:comments> </item> <item><title>How personalized search forces me to (re/de)learn</title><link>http://blog.chachra.us/2007/06/10/how-personalized-search-forces-me-to-redelearn/</link> <comments>http://blog.chachra.us/2007/06/10/how-personalized-search-forces-me-to-redelearn/#comments</comments> <pubDate>Mon, 11 Jun 2007 04:18:16 +0000</pubDate> <dc:creator>Sumit Chachra</dc:creator> <category><![CDATA[Funny]]></category> <category><![CDATA[Google]]></category> <category><![CDATA[Technology]]></category> <category><![CDATA[annoying]]></category> <category><![CDATA[personalization]]></category> <category><![CDATA[product management]]></category> <category><![CDATA[search]]></category> <category><![CDATA[stocks]]></category><guid
isPermaLink="false">http://blog.chachra.us/2007/06/10/how-personalized-search-forces-me-to-redelearn/</guid> <description><![CDATA[So I know personalized search is hot and all. But how long do I have to be using the search (logged in as a user) for that engine to start personalizing results ?
Recently (last week or so) I noticed that search for TIVO on Google stopped returning their stock graph etc. at the top. It [...]]]></description> <content:encoded><![CDATA[<p></p><p>So I know personalized search is hot and all. But how long do I have to be using the search (logged in as a user) for that engine to start personalizing results ?</p><p>Recently (last week or so) I noticed that search for <a
href="http://www.google.com/search?q=tivo&amp;sourceid=mozilla2&amp;ie=utf-8&amp;oe=utf-8">TIVO</a> on Google stopped returning their stock graph etc. at the top. It returned the TIVO <a
href="http://www.tivo.com/">website</a> instead as the top link, with an additional &#8220;Stock quote for TIVO&#8221; below it.</p><p>Now I&#8217;ve clicked that a few times, forced myself to search for &#8220;TIVO stock&#8221; instead to get what I want; but still Google hasn&#8217;t learnt that when I am searching for TIVO I am really looking for the stock ticker. What they have learnt of course is that &#8220;most&#8221; people when searching for TIVO (rightfully so) don&#8217;t want to know about its stock. How is that personalization? Thats just the law of averages being forced on me.</p><p>Please fix this, and the fact that the SERP shouldn&#8217;t keep changing on a weekly basis. Thanks!</p> ]]></content:encoded> <wfw:commentRss>http://blog.chachra.us/2007/06/10/how-personalized-search-forces-me-to-redelearn/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Thoughts (gripes) on the new Yahoo! Web Messenger</title><link>http://blog.chachra.us/2007/05/14/thoughts-gripes-on-the-new-yahoo-web-messenger/</link> <comments>http://blog.chachra.us/2007/05/14/thoughts-gripes-on-the-new-yahoo-web-messenger/#comments</comments> <pubDate>Mon, 14 May 2007 07:46:18 +0000</pubDate> <dc:creator>Sumit Chachra</dc:creator> <category><![CDATA[Google]]></category> <category><![CDATA[Online Advertising]]></category> <category><![CDATA[Yahoo!]]></category> <category><![CDATA[annoying]]></category> <category><![CDATA[email]]></category> <category><![CDATA[flash]]></category> <category><![CDATA[gmail]]></category> <category><![CDATA[web 2.0]]></category><guid
isPermaLink="false">http://blog.chachra.us/2007/05/14/thoughts-gripes-on-the-new-yahoo-web-messenger/</guid> <description><![CDATA[It was a long time coming! Yahoo! chose to use Flash (Flex?) to build the online version of messenger. Will I use it, probably on my personal laptop at home (one less piece of desktop software to install&#8230; phew!). Does it even come close to the Gtalk that comes integrated with Gmail (launched more than [...]]]></description> <content:encoded><![CDATA[<p></p><p>It was a <a
href="http://yodel.yahoo.com/2007/05/02/yahoo-messenger-hold-the-download/">long time coming</a>! Yahoo! chose to use Flash (Flex?) to build the online version of messenger. Will I use it, probably on my personal laptop at home (one less piece of desktop software to install&#8230; phew!). Does it even come close to the <a
href="http://">Gtalk that comes integrated with Gmail</a> (launched more than a year back)? Not for me, but I can imagine people who would want all the bells and whistles of their regular desktop messenger (fonts, text size, bold/italic etc.) to like the new <a
href="http://webmessenger.yahoo.com">Yahoo! Web Messenger</a>. Some of my comments on this new products and ways to improve it:</p><p><strong>History</strong>: So finally I can see my chat history. But why not give a search box right at the top instead of making me click on a link? Pretty basic interaction designer stuff I assume? Instead a web search box is provided at the top.</p><p><strong>Cntrl-W / Cntrl-G / Cntrl-Tab</strong>: None of these nice shortcuts works. Cntrl-W should close my current chat tab, Cntrl-G should let me <em>buzz</em> my friends (my friends can buzz me, but my window doesn&#8217;t vibrate!) and Cntrl-Tab should let me move between chat tabs, just like I can on my Firefox (or at least Tab like the way it does in the Gmail/Gtalk)</p><p><strong>Copying multiple lines</strong>: Doesn&#8217;t work. Only one line at a time. Thats pretty lame.</p><p><strong>Banner ad on the right</strong>: Was it very essential to put that ugly banner ad on the right, specially when a new product like this launches? If I were the Product Manager on the web messenger team, I&#8217;d instead match (and rotate every 10 minutes or less) <em>text ads</em> related to my past/current chats. I&#8217;d bet this would increase CTR significantly. Irrespective its worth an experiment for sure. Simple bucket test to conduct.</p><p><strong>Login popup</strong>: Why does a new popup window need to be opened to make my login? Its a very jarred user experience, different from every other Yahoo! property I&#8217;ve used before.</p> ]]></content:encoded> <wfw:commentRss>http://blog.chachra.us/2007/05/14/thoughts-gripes-on-the-new-yahoo-web-messenger/feed/</wfw:commentRss> <slash:comments>21</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (user agent is rejected)
Database Caching 37/70 queries in 0.047 seconds using disk

Served from: blog.chachra.us @ 2010-07-31 17:15:32 -->