Blog Posts

Recent posts

Java - nested class and static class

less than 1 minute read

Java allows us to define a class within another class. Such a class is called a nested class. The class which enclosed nested class is known as Outer class. ...

Improving responsiveness

less than 1 minute read

Normally in order to improve the responsiveness of application, there are two areas that should be considered in modern memory machine architecture. 1. reduc...

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...