About Me - The Short Story

I am a lonely Python/C++ coder with a background in financial markets and an interest in modern art. I am an application-driven guy, not a computer scientist. Sure I have many gaps in my knowledge, but I strive to do my best to fill them. I keep learning new things, listening to smart guys, correcting my mistakes, and pushing myself to the limits. I enjoy it.

I will use this website both as a blog and as a hub to some of my projects. It is written from scratch in Python's Flask, my favourite web-framework.


Filter a list based on a Boolean selector

I believe in code expressivity and this tip is exactly about that. Lately, I got into a situation where I had two lists and I needed to filter one based on the values of the other.

For that case, it is probably best to use compress...

python 
itertools 
compress