Python has many modules in its standard library that you can use directly from the command line. If you already used one day python -m http.server
to quickly run a web server locally, you'll discover lot of other useful commands in this article. Pin this on your browser favorites!
Other articles
Module itertools overview
There is lot of things you can do, out of the box, using Python standard library. Here is a great article from Rodrigo detailing the Python
read moreitertools
module. I've personally discovered tons of ways to iterate over collections I could not have even imagined. Rule of thumb: before developing something, double check it does not already exist on the standard library.Simple CSS
Sometimes you want to build a web application but you're quickly discouraged because you know you'll have to write CSS so it does not look like crap. If you're not CSS proficient you know it can be challenging (even using some existing frameworks). I present you Simple CSS, a very simple css framework (mostly classless) to use on your website to make it just looks good.
read more6 cool things you can do with the functools module
The Python
read morefunctools
module from the standard library has many gems that I'm using quite regularly. Discover 6 of them with examples and use cases.8 versions of UUID and when to use them
I'm used to UUID v4 to generates random globally unique IDs whenever I need it in places where I can not benefit from a database with an auto numbering column. Actually, this is just the tree hiding the forest of UUIDs. This great article list the 8 versions of UUID and explain what they are about and when to use them.
read more