A piece on my new web development stack following my ongoing work on three Nuxt applications... (more…)
Read more »
Watchman: monitoring dependency conflicts for Python library ecosystem Wang et al., ICSE ‘20... (more…)
Read more »
Nothing forecasts the future of a programming language better than the epos of its community. For Python, one word dominates the discussions of the past few years: performance. (more…)
Read more »
Python has a special feature called integer caching, or integer interning. Sometimes, it may make us confused. For example, if we run the following code on a Python shell, the results are surprising… (more…)
Read more »
I wanted to share what I think is a neat implementation of currying in Python. Getting the arity of a function First we need to be able to get the arity of a function. This is how we do it: … (more…)
Read more »