2011年9月27日 星期二

How to Get High-resolution Time in Windows

Implement a Continuously Updating, High-Resolution Time Provider for Windows

This is a good article to explain how to get high-resolution time in Windows.
The idea can also apply to other operating systems.

C++ dynamic class creation

There are two simple implementations for c++ dynamic class creation. It is useful and make your code cleaner. :)

2011年4月4日 星期一

Build Cyanogenmod on Fedora 14 X86_64

Can build Cyanogenmod for N1 now!
Next step...understand android build system and how to customize.

ps:
Can also try to build for emulator~~
Compile CyanogenMod for Emulator



2011年3月4日 星期五

2010年10月18日 星期一

2010年10月6日 星期三

Remote a Git Remote Branch that is Connected to an SVN

svn branch delete 的時候
用 git svn fetch 似乎不會把 remote branch 給刪掉
只好手動移掉
git branch -r -d your_remote_xxxx_branch

2010年9月30日 星期四

Wide character

The Microsoft Windows application programming interfaces Win32 and Win64 require that wide character variables be defined as 16-bit values, and that characters be encoded using UTF-16, while modern Unix-like systems generally require 32-bit values encoded using UTF-32.

[REF]
Wide character