Skip to main content

What the Hell Is Going on in Vietnam?

I have just read this: What the Hell Is Going on in Indonesia via TechCrunch. The author (Sarah Lacy, one of my favourite) took her chance in Indonesia to find out why there is such a great growth in Internet usage in that South East Asia country. It was a good read.

There are some interesting parts like

I grilled them on some basic questions to bring you a Web-in-Indonesia primer. But before we get to those, here’s what impressed me the most about this small-but-tightly-knit community: It’s incredibly collegial. Plenty of research has shown that the biggest reason Silicon Valley beat Boston as a venture capital and startup hot spot was because culturally it was open, trading employees, funding, mentorship and ideas among competitors. It’s not uncommon to see Web competitors in the Valley having dinner together and generally discussing business challenges, before they go back to the office for some late night coding to bury one another in the market.
I laughed so hard reading this!  But then it was eye opening when the author found they do the same thing in Indonesia. Maybe, just maybe, that's the key point to listen to competitors and improve ourself to be better than them? Hmm, it's a little tricky here, better than but not, please don't try to become something alike. By that way, the whole competitions will become more and more competitive and then finally, users will benefit from that. Such a great way of doing thing, at least in theory.

Also, as Indonesia is a (going strong) developing country, its Internet userbase is also growing with 8% of the population, approximate 20 million people (the numbers in Vietnam are 23% and almost 20 million, limited to users using computers only). The pricing in Indonesia is also low with even prepaid BES/BIS (really?) and Blackberries (read: smartphones) are used commonly.

Okie, that's the infrastructure (signal coverage, services and devices) but actually, I think there are problems with our (Vietnamese) developers, with entrepreneurs' business plan. In Indonesia, the situation is quite the same: people don't want to pay for web, most of them don't have credit cards or any other electrical-enabled paying methods. So, what did they (Indonesian developers) do? They build a useful service for free initially and plan ahead to generate revenue later. Twitter as an example, it's 4 years old with cash flow positive (recently) but it hasn't been being profit, just yet. Of course, taking Twitter - a global phenomenon - as an example is not really appropriate but the point is: it takes time to be successful in web business (it also takes a lot of money, needless to say).

Okie, that how others did things, how Vietnamese companies are doing now? I think we are being influenced by Chinese ways of doing thing (yes, those fcukers!). Chinese companies have the tradition of ripping off Western success models and make their own versions in Chinese and for Chinese people. Journalists even have a word for that: copycat. We are doing the same. Exactly the same way. Both in web businesses and a few others (I think it's not correct to say "everything", hopefully). Anybody heard about Go.vn social network? It sucks. And the new FPT mobile, F99? It sucks, too. Those 2 examples are from Vietnam, let's take a look at our fellows from China. Check out this two sites: Groupon (made in US) and Groupon (made in China) (the Chinese clone managed to rip off the domain name as well). Another lovely couple: Facebook and Xiaonei or Renren. Oh, don't forget those low price iPhone clones from China also. China is the master of cloning and Vietnam is learning from the friendly neighbor really fast. Real fast...

We will see how everything's going. In the mean time, check out the special corner for 3G customers from VietNamNet with a lot of hot sh!t: http://vietnamnet.vn/3g/

Comments

  1. perhaps the 'copycat' convention starts as early as first stages of education!

    Whilst young pupils in the Western cultures are encouraged to do their own studying, to express their argument, to even challenge the teachers knowledge, it's not quite the same in VN and China.

    Hence, Western people have a much higher self-confidence, and the result is the faith they have in their own products. Meanwhile, VN developers are just older versions of young Vietnamese students wanting to challenge the ideas set of a literature exam, but too afraid to make a difference, and always end up writing some arguments very similar to that of their teachers.

    So what the hell is going on in Vietnam? It's down to a very well-known fact: Our education system sucks. And yes, I think Indonesia with the influence of Singapore nearby, has either a better system, or has been improving real fast.

    What'd you reckon?

    ReplyDelete
  2. Please don't fall back to the education system. It has pissed me off already :'( Too bad to hear about it here again. It REALLY SUPER EXTREMELY sucks!

    ReplyDelete
  3. very interesting post; also I notice that Vietnam has its own Groupon clone (www.groupon.vn) and strikingly similar to China Groupon clone: they rip off Groupon and put it on Groupon.vn to make the Vietnam groupon clone! It's true that Vietnam is learning very fast from the friend China as you said!

    ReplyDelete
  4. I haven't noticed the Vietnamese clone of the site until today. Thank you, Anonymous

    ReplyDelete
  5. Hello, everyone.
    Vietnam has its own Groupon clone in 2010-5-16.
    www.doimua.com.
    it's the first Groupon clone in VN.
    it was founded by a Chinese boy.Yao Ting.
    hengzhe123@yahoo.com.cn

    ReplyDelete

Post a Comment

Popular posts from this blog

Flutter: Fixing Firebase header not found with Notification Service Extension

If you follow the FCM tutorial Send an image in the notification payload and encountered this error message: 'FirebaseMessaging/FirebaseMessaging.h' file not found You are on the right place, I'm going to show you how to fix it. My app was working fine but one day it stopped compiling. Apparently Flutter 1.20 changed the way it uses CocoaPod so the service extension no longer has the proper library configured. After some tinkering, I came up with this pod config, it has to be added to ios/Podfile below the main Runner target. target 'FcmImage' do use_frameworks! use_modular_headers! require File.expand_path('../.symlinks/plugins/firebase_core/ios/firebase_sdk_version.rb', __FILE__) firebase_sdk_version = firebase_sdk_version! pod 'Firebase/Messaging', "~> #{firebase_sdk_version}" end FcmImage is my extension name, replace it with yours We can use a hardcoded version for Firebase/Messaging pod but doing so m

IMAP module for PHP in Mac OS X Mountain Lion

So here it comes again. I have recently upgraded to Mountain Lion and for whatever reason, Apple decided to nuked all my previous PHP (among other things) configurations so I have to setup IMAP in PHP again. A simple Google search may point you to this post with detailed instruction for Lion however, some steps have been changed a bit... Step 1: Install prerequisites You may choose to download Xcode ( FREE ) from the App Store then go to menu Xcode > menu item Preferences > tab Downloads, select to install Command Line Tools OR you can go to Apple Developer  to get it, you may need to login. Step 2: Compile IMAP Get the IMAP source code from University of Washington website . Please do me a favor and check that website for the latest version, it's good practice. If you that laz y , try to click the "y" to get direct link to 2007f version. Extract the package and open the Terminal to the new directory before executing these command: make osx EXTRACFLAG

A faster Docker for Mac experience

Docker for Mac is freaking slow, this is known issue for years. I'm switching to docker-machine running within Parallels for now... Image from unsplash.com Install the tools I use brew to quickly install these: brew install docker-machine brew install docker-machine-parallels Create the virtual machine The --driver param and vm name is required. The others are all optional, the default values are quite low so I bumped the specs a bit. docker-machine create --driver=parallels \   --parallels-cpu-count=2 \   --parallels-disk-size=100000 \   --parallels-memory=4096 \   parallels Usage Set up the shell environment: eval $(docker-machine env parallels) Then use the cli as normal: docker ls docker-compose up -d To get the vm IP address: docker-machine ip parallels