Explore >> Select a destination


You are here

kishstats.com
| | aaronluna.dev
2.8 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.
| | martinheinz.dev
3.1 parsecs away

Travel
| | Function overloading is a common programming pattern which seems to be reserved to statically-typed, compiled languages. Yet there's an easy way to imp...
| | initialcommit.com
2.7 parsecs away

Travel
| | In this article, you'll get a detailed look at how to use the sum function in Python, as well as how it differs from the plus sign operator.
| | zserge.com
29.4 parsecs away

Travel
| Summing up years of building interpreters and compilers for various programming languages. The first chapter is about assembly language. We will try to implement a tiny two-pass assembler for CPython VM.