A simple and secure 2FA command-line client in Python - Z33DD/FunTOTP... (more…)
Read more »
The propositions-as-types interpretation states that proofs are programs. How can functional programming help us understand calculus? (more…)
Read more »
What’s interesting to do with booleans, and expressions that return a boolean in particular, is that we can make decisions and take different roads depending on their True or False value.
In Python we do so using the if statement:
condition = True if cond... (more…)
Read more »
Linting isn't just for style checking, it's also a powerful tool for finding defects in a code-base. (more…)
Read more »