Solid IMAP and SMTP in Go Using Python

Many of the ideas I’ve been playing around with lately are of the distributed, secure & networked kind. Since distributed asynchronous networks are tricky beasts, I want to leverage the existing network of such nature commonly known as email. This que… Read more

Similar

Python Control Statements

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 »