Skip to main content

Yahoo! and delicious.com - What's wrong?

On December 5th, I wrote What's wrong with delicious.com and somewhat predicted it's suicidal phase. And, then I have noted relatively high incoming hits on my article. On December 16th, TechCrunch wrote Is Yahoo Shutting Down Del.icio.us?. On December 17th, delicious/Yahoo! responded by clearing all blog posts and wrote What’s Next for Delicious? that confirmed suicidal in the form of sales.

What's wrong with Yahoo!



  • Yahoo! is in the wrong hands (Think of Apple without Steve Jobs)

  • Yahoo! is lacking vision. There are many ways to make profit and for the internet services like Yahoo!, the profit may be virtual things--instead of physical

  • Yahoo! is chasing Google and rivals. When you're the pioneer, people may not leave easily. Many people still use Yahoo! mail. Yahoo! may even raise money through donations like Wikipedia; no one would be bother to donate, if they really like it.

  • Yahoo! is hiring wrong people. I often used to tell "though skills are trainable, people are not replaceable". Yahoo!'s geocities closure without alleged backup is a stupid move.

  • Yahoo! is too panic. Knowing own strength is an important perspective in life and may overcome weaknesses through strengths.



Why delicious is a good idea?



  • It's a very good alternative for robotized search engines like Google (More SEO may spoil Google's power.)

  • It can be evolved much more than digg and twitter, on it's own.

  • It can also serve as a password manager and bugmenot killer. See, my post delicious.com as bugmenot.com killer?



What can we do? - Let's build better alternative



  • Though there are lot of other alternatives, it's better to build a system out of delicious before it's getting suicided [sic].

  • Raising money may not be an issue; may opt for VC or donations.

  • Has huge profit potentials (data mining like Facebook can easily be employed and commercialized)

  • Please make a noise here or there, if you believe it.

Comments

Anand Nataraj said…
You got the point Rajesh that Yahoo!! is missing Vision ... There has been huge cries agains the way Carol Bartz is handling things... She is ceasing everything to improve the profits... Not sure if she forgot the support she must have got from Geocities or Del.icio.us...

Personally I've grown levering the power of Yahoo tools and feeling heavy to see Yahoo!! sliding down...

You have done a nice analysis... Keep up the good work...
Thanks Mr.Anand for your kind words and sharing our opinions.

Popular posts from this blog

Converting PSD with PHP/ImageMagick

After seeing feature rich options in Imagick PECL extension at Mikko Koppanen 's (the author) website and also impressed with ImageMagick 's features, I have decided to use it for the PSD to XHTML conversion website that I'm architecting and managing. Since, the team wants programming help for converting PSD images, I have tried it (documentation is sparse on PSD handling) Converting PSD to PNG/JPEG/etc Note that, flattenImages() is needed for layered/multi-page PSD file. <?php $im = new Imagick('test.psd'); $im->flattenImages(); $im->setImageFormat('png'); $im->writeImage('test.png'); ?> Extracting PSD layers One by one <?php $im = new Imagick('test.psd'); $im->setImageFormat('png'); for ($i = 0, $num_layers = $im->getNumberImages(); $i $im->setImageIndex($i); $im->writeImage('layer' . $i . '.png'); } ?> Note that, there is a better version below In a single call with writeIm...

BehaviorS.js - An alternative to Behaviour.js, event:Selectors and Low Pro libs for unobtrusive JavaScript programming

BehaviorS.js yet another unobtrusive JavaScript library similar to Behaviour.js and event:Selectors but in implementation uses hash based lookup without extending elements; so presumably it should be faster than the rest. The original script and idea was by JLof ; I extended it for DOMContentLoaded support, optimized a bit to avoid scanning of more depths, and added new rules support. I wanted to document the plug a long time and just got time to do it. For the time being BehaviorS.js is available here Update (2006-09-11) : Coralized the link to BehaviorS.js so as to save the load on free brinkster.com webpage Update (2006-09-27) : If the coralized link to BehaviorS.js doesn't work, use http://www21.brinkster.com/guideme/BehaviorS/ Update (2025-06-07) : Now available in https://github.com/rrjanbiah/behaviorsjs

Storing unicode texts in MySQL with phpMyAdmin

Today, I've received a personal mail/request from Sivanantham Hemamalini, working for IT leisure in Singapore. Since I was in company when received the mail, I couldn't answer immediately. If I understand the question right, it is about inputting Unicode texts especially Tamil in phpMyAdmin. PhpMyAdmin 's default characterset is iso-8859-1 and so if we enter anything in the form, browser will convert it into numerical html entities. Say for example, if we enter தமிà®´் and submit the form, it will convert it to & #2980;& #2990;& #3007;& #2996;& #3021; . Because of this browser's behavior, it will be difficult to store the Unicode text as it is. Solutions Immediate solution I could think of is changing or forcing the browser's character encoding into utf-8. In Mozilla Firefox, it can be set via View -> Character Encoding -> Unicode (UTF-8) Another elegant solution might be changing the phpMyAdmin configurations so that it send...