Skip to main content

Learnings from the failure of ka19.in

Sometimes, i like browsing sites that i made. it gives me a sense of achievement. Today i browsed over to ka19.in site to be rudely greeted by a redirection to blueline computers. Would have been nice to get a notice from the owner, but i guess he didn't find the time.
Anyway, a year back when talks of redoing this site were going on, i remember clearly telling yathiraj (the owner) that the site would be a better online store than a social network. but since i'm paid for doing what i am told to do and not to shoot my mouth off, i stopped advising him and concentrated on delivering the site. after that, things turned sour due to payment issues.
At that time online shopping was not such a great thing and facebook was everybody's vice. But the idea of being a warehouse and low margins at big scale without the overhead of a pricey showroom was pretty amazing. its still amazing now, but quite honestly, i have enough on my plate so as to not to dabble in this.
however i usually take away something from failure (failure is failure, either mine or anyone else's). so lets see what we can learn from ka19.in
  1. If you are small fish and doing the same thing, in the same way, as the bigger fish, that's an quick, sure and short path to destruction. Be small, think small. start out to capture one niche. make sure that you are a member of this niche, or study it thoroughly.
  2. Since you are small and have a small customer base, be super consumer supportive. This means that you should listen to your customer and take both positive and negative feedback. This will give you excellent word of mouth and increase your base.
  3. Learn to network. Seriously, learn to network. at the least, have a page on facebook, twitter and google+. This will help new people find you, not a bad thing.
  4. Leverage information technology. Not just billing. It could even be some app that you can sponsor. You can even mention apps to any websites that have you advertised, this will help you out indirectly. However the issue here is that it should actually help the customer. If you can use facebook and twitter to better/further your business, so be it.
  5. Customer is king. Read it again. your business should first think of the convenience to the customer. Everything else is secondary. Understand that the customer is giving you his time, so value it. Any business that doesn't respect the customer usually dies. Competition is a lot, business is still the same or getting less. One of the working business models of business these days is to pass on the extra profits to the customer. Everyone likes more for less.
These are just observations that i have made, so please do tell me if you disagree or otherwise in the comments.

Comments

Popular posts from this blog

Wicktionary Bookmarklet

A bookmarklet is defined by Wictionary as "A small piece of JavaScript code stored as a URL within a bookmark". I have been using bookmarklets to make my life easier from a long time. Some that I use regularly are [Read Now] : This makes it really easy for me to read pages which are unreadable. [Google Translate] : Translates pages [Mobilise This] : Formats the page for mobile viewing by Google. [Acronym lookup] : This helps me find the meanings for abbreviations. The links in [] brackets are bookmarklets. Just drag them to your bookmark bar. I picked these up from these two pages. There is also a whole website dedicated to them bookmarklets. As a developer, what i like about bookmarklets is that they are coded in JavaScript and i can meddle with them till my heart's content, without worrying about breaking anything. However, i wanted a bookmarklet that would allow me to look up meaning of words. Wiktionary was my open dictionary of choice. They d...

When you say........

......you don't believe in god, you admit there is a god to believe in This is the meme post that started this train of thought in my mind.   I have heard one of my classmates say a long time ago, if women truly believed that they were equal to men, then they would not fight for it. While I never accepted it, i didn't know how to speak against it either. but it was there, somewhere in my mind. I think i made some sense out of it, at last. This is stupidity. This is like saying 'If we Indians seriously believed that freedom was ours, we would never have had to fight for it'. The fight for independance was a fight to make the other party understand and/or accept your viewpoint. The first resonable method might be to consider the other person's viewpoint. And using that as a base point,then work, with suitable proof and arguments, raise, alter, or reconstruct their viewpoint to match ours. This method follows the logic that people can and will be fair in an...

Markov chain in JavaScript

I made a small Markov Chain joke generator during my coffee break sometime last week. This is in continuation to the last post, where we did a similar thing. I did this specifically to see how well it could be extended in a language which I have typically not used before for ML/NLP. Let me run you guys through it. First of all, the Markhov Chains need a bunch of data to tell it how exactly you want your sentences constructed. str_arr=[sentence1, sentence2,...] Next, we create a dictionary of all trigrams present across the sentences. To do this, we use all bigrams as keys, and the succeeding word as the corresponding values. The key-value pairs thus form a trigram. As an example, consider the sentence : “The man had a dog.” The dictionary for this sentence will have : [ {[The, man] : [had]}, {[man, had] : [a]}, {[had, a] : [dog]} ] Next up, using the dictionary that we just made to create sentences. Here we provide the first two words, and let the function work...