Blog Posts

Recent posts

Web - Font sizing unit rem

less than 1 minute read

It is worth to read about font size unit of rem other than pixel.\ https://snook.ca/archives/html_and_css/font-size-with-rem

C++ - Anonymous namespace

less than 1 minute read

The main reason of using anonymous namespace in C++ is to localize declaration in translation unit.\ The compiler will choose the unique name for unnamed nam...

Cassandra - Allow Filtering example

less than 1 minute read

1 2 3 4 5 6 7 create table User( email text, name text, desc text, user_id uuid PRIMARY KEY((email), name, user_id) ) WITH CLUSTERING ORD...