About Me - The Short Story

I was initialized as a pure C++ programmer and believed there is nothing better than that. Then I reimplemented myself into a Python coder and somehow ended up as a Java backend developer. I am currently working as an application engineer in a multinational company that specializes in the trading of energy commodities. My background is in finance. I got a diploma in financial management and before I became a developer I used to trade futures on CME derivative exchanges. I am interested in art, sport, meditation, hi-tech, nature and everything in between.

I will use this website both as a blog and as a hub to some of my work (project or demos). This web is written from scratch in Python Flask, my favourite web-framework.


Reference vs. copy in a range-based for loop

Understanding the difference between using a reference or a copy of a value is critically important in C++. By default, when we pass a value to a function, it is passed by values, which means we pass a copy of it. The same applied to a for...

c++ 
reference 
range-based for