Docker Basics

By the Aliyun conference of 2015, I saw a lot of news about docker. And it's the third time of the year that I heard about docker.

I was lucky enough to have some quick conversations with the docker developers there, and I found that it's really mature now. In fact, TaoBao also used docker for the internal deployment procedures, so I decided to try to move some projects of our company into the world of docker.

Read more Docker Basics

The Review Mechanism of Firefox Extension

Now, after 5 months of development for Firefox extension of Simple Gmail Notes, most features are stabilized and the features could be shared between Chrome and Firefox easily. In the last few revisions, the cross-browser migration (Firefox -> Chrome or Chrome -> Firefox) all took less than 1 hour. Basically, the initial pain on the development of extension development gradually passed away.

However, I would like to further discuss the review process of Firefox. As mentioned before, Firefox uses a manual review process, it is much more strict than Google Chrome extensions (which is, basically, nil).

Read more The Review Mechanism of Firefox Extension

About Open Source

I have been using open source software since I started my first job around 10 years ago. By then the world was very different, Microsoft still dominated most of the software world (Windows, Visual Studio, .NET Framework, MS Office, SQL Server), and open source was still a small part of the whole ecosystem. Yet open source spread up like a virus over the last 10 years, and now even Microsoft is forced to embrace open source (well, it's also CEO related I guess).

To me, there are two major advantages using open sourced software:

  1. free of charge

  2. able to inspect, modify and recompile the sources.

Read more About Open Source

Simple Gmail Notes – Firefox Addon

One week after the Chrome extension of simple gmail notes was released, I started to plan on porting of extension to Firefox.

There are 2 major incentives for this porting:

  1. I spent quite a lot of effort to work out the google API for the extension. Most of them are just RESTful HTTP API, which are supposed to work with Firefox extension right alway.
  2. During the implementation of Google extension, I tried to get way from most Chrome specific API (e.g. chrome sync). So theoretically most code should work with Firefox extension.

Read more Simple Gmail Notes – Firefox Addon