Skip to main content

Groupon's PR - possible reason for success...

Of late, I'm quite serious to find some PR personnel to get media attention for our products and labs initiatives:

Labs



  • CSSilize - World's first and only project management tool for slicing works (PSD to XHTML conversion and WordPress theme works)

  • SocialAV - World's first and only antivirus building community (start building antivirus online...)

  • jobreapr - World's first and only fixed price job search engine

  • Uboo - India's first full blown consumer portal (private beta)



Products



  • GroupDeal - powers many Groupon competitor group buying sites

  • FPPlatform - powers many Fiverr competitor fixed price job sites

  • SFPlatform - powers many Kickstarter competitor crowd funding sites



Why PR?


As I blogged earlier, our team has added lot of innovations and features. Recently our GroupDeal product/company got a mention in The New York Times. Similar or better coverage might give our team great energy to innovate further and may get good VCs.

How Groupon is doing PR?


This is of great interest to me. I was wondering if that's hype or paid news. Someone even posted a question in Quora: Which PR firms handle Twitter, Facebook, Groupon, and other recent leading internet startups?

Groupon & TechCrunch


Of late, found that TechCrunch's star writer Leena Rao is wife of Suneel Gupta, VP of Product at Groupon!

Related links

Comments

Popular posts from this blog

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

"A to Z of C" in the book Cimple (ISBN 0070260982)

I was just searching "A to Z of C" in Google Books and found that the book Cimple written by Sasant K Rout has used our code. The irony is that the book was published by Tata McGraw-Hill , who rejected us in final stage stating that it wants us to get endorsement from any IIT professor, which we couldn't. (For the sake of record... IIT Bangalore was linking & supporting "A to Z of C" for long time once it's published over the net; see old IIT page from web.archives.org ) It's just another incident to prove that success isn't a measurable unit; even failed attempts can be appreciated in any other forms.

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