

Best Office Prank Ever, Don't Miss the End
Have you ever seen chocolate thief in your office? This is the epic message chain when someone started to stealing chocolates from office...


A Day in the Life of a Computer Programmer
As a computer programmer, my daily life is actually kind of weird. I did my undergrad in computer science and worked with Microsoft for 4...


Funny Short Math Jokes and Puns, Math is Fun!
A mathematical joke is a form of humor which relies on aspects of mathematics or a stereotype of mathematicians to derive humor. The...


How can I get the source code of the Python Packages?
You can find source code on Github. Under cpython you will be able to find all the modules and python objects (written in C). You can...


What does // mean in python?
It’s floor division. Python docs has very nice documentation on this. Python3: Mathematical division that rounds down to nearest integer....