Blog Posts

Recent posts

C++11 - Understanding SFINAE

less than 1 minute read

SFINAE(substution failure is not an error) is hard to understand at glance but following article explains the concept of SFINAE eaiser way with a clear examp...

Rx - Difference Hot and Cold observer

less than 1 minute read

Hot: If observerable start emitting items as soon as created, it is called "Hot" Cold: Observerable will start to emit items when it is subscribed.

C++ - Build boost library with MinGW

less than 1 minute read

1. build bjam with boostrap.bat Example) bootstrap gcc 2. run the following command b2 toolset=gcc --build-type=complete architecture=x86 address-model=32 ...