Explore >> Select a destination


You are here

martinheinz.dev
| | blog.miguelgrinberg.com
9.6 parsecs away

Travel
| | miguelgrinberg.com
| | flask.palletsprojects.com
8.6 parsecs away

Travel
| |
| | aaronluna.dev
10.2 parsecs away

Travel
| | Decorators can be a daunting topic when first encountered. While the Zen of Python states "There should be one- and preferably only one -obvious way to do it", there are many, equally valid ways to implement the same decorator. These different methods can be categorized as either function-based, class-based, or a hybrid of both. In this post I will explain the design and behavior of Python decorators and provide examples of decorators that I frequently use in my own code.
| | theincredibleholk.org
81.8 parsecs away

Travel
| Lately I've been talking to a few people about whether it might be possible to replace the Pin wrapper in Rust with a new Move trait. Pin is one of those things...