Blog Posts

Recent posts

Docker - difference RUN, CMD and ETRYPOINT

less than 1 minute read

1. CMD vs ENTRYPOINT The ENTRYPOINT specifies a command that will always be executed when the container starts. The CMD specifies arguments that will be fed ...

C++ 17 - Generative Programming in C++ 17

less than 1 minute read

Interesting generative programming in C++ 17. I think that this explains why compile time reflection and declarative programming approach is required for cle...

High scalable application characteristics

less than 1 minute read

1. Stateless - HTTP request/respond structure. 2. Idempotence - database snapshot, recovering data. 3. Monoid - map/reduce, parallelizing operations.