Python is the fastest growing programming language due to a feature you've never heard of... (more…)
Read more »
Learn all about how to provision infrastructure programmatically by building a simplified Heroku clone with Python. At the end you will also learn how to pro... (more…)
Read more »
What is a Time Based One Time Password
Time Based One Time Password(aka TOTP) is a common method of two-factor authentication.
Used to create temporary passcodes from time and Secret key using HOTP algorithm.
Generated passcode expires after some ti... (more…)
Read more »
A function is a block of code that performs an operation usually a specific task.
Functions help break our program into smaller and modular chunks, making them resusable and redable. They prevent repetition of code.
You can pass data known as parameters... (more…)
Read more »