Skip to main content

Top Indian web startups

Disclaimer: This list contains some of our team's projects

Sites that are useful and usable
  1. erail.in - created by a single person and serves useful to quickly find availability in Indian trains
  2. ClearTrip - seems to be inspired by many other sites like Vayama, but able to get better UI
  3. RediffMail - speed is the big boost
  4. Myntra - good idea, but poor UI
  5. redBus - good idea, but poor UI and execution
  6. Sites from The Times Group are also of good idea, but poorly executed/architected. They clearly try and target the web startup "gap"

Sites that are innovative (world's first/never seen before kind)
  1. SocialAV - World's first and only antivirus building community (by our team)
  2. CSSilize - World's first and only project management tool for slicing works (by our team)
  3. jobreapr - World's first and only fixed price job search engine (by our team)

Comments

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...