Limits in Adobe AIR and sqlite

int in Adobe AIR takes value -2,147,483,648 (-2^31) to 2,147,483,647 (2^31-1). integer (primary key) in sqlite takes value -9,223,372,036,854,775,808 (-2^63) to 9,223,372,036,854,775,807 (2^63-1). (source)
Xu Cui
4 sec read

Learning Employee Directory Series

Employee Directory is an AIR sample application from which I learned a lot. (try it) Here I post some of what I learned here. 1. introduction 2. structure 2.1 singleton 2.2 command 2.3 Cairngorm 3. ui 3.1 style 3.2 size 3.3 component 4. flow 5 events
Xu Cui
10 sec read

The HTML Coded Character Set

When writing html, I frequently find I need to use the code for some characters. Here is the table http://www.w3.org/MarkUp/html-spec/html-spec_13.html
Xu Cui
5 sec read