Itamar Turner-Trauring
Itamar Turner-Trauring
http://loom.run/about/why-loom.html talks about databases, but the quickstart talks about Kubernetes clusters. I suggest redoing why-loom so it talks about spinning up k8s clusters on AWS easily, and a section about...
* **What are you trying to do?** https://github.com/conda-incubator/conda-lock/ includes a transitive pinned list of packages to install in a Conda environment, to allow for reproducible builds. I am fairly certain...
It is my understanding (and I may be misinterpreting the spec) that I can say "this object can have up to 3 string keys" with the following syntax variations: ```...
Hi, Continuing investigation of `cddl`—support for same schema with both JSON and CBOR is great, but there's the problem of bytes. The CDDL RFC says "don't support bytes in schema...
Thanks for merging #277. Can we get a release with that, since `pip` prefers to vendor released versions? Thank you!
Since you have very little time to maintain this, like we all do, one thing I've successfully done, inspired by https://lukasa.co.uk/2016/04/One_Of_The_Team/ via Hynek Schlawack: anyone who lands a PR gets...
This is a prerequisite for doing automatic releases on a GitHub tag. In particular, instead of using `bumpversion`, the version is read from the latest Git tag. So to do...
Consider the following working templte: ``` {% match team.subscription_state %} {% when SubscriptionState::New %} New! {% when SubscriptionState::Active %} Active! {% endmatch %} ``` Originally I had mistakenly omitted the...
## How to reproduce the behaviour Download https://www.gutenberg.org/files/1342/1342-0.txt — Pride & Prejudice, about 0.8MB. Then run: ```python import spacy nlp = spacy.load("en_core_web_sm") with open("./1342-0.txt") as f: book = f.read() result...
1. There are now five different projects with Pandas-like APIs (maybe more?): Pandas, Modin, Dask, cuDF, Koalas. 2. The Pandas API is huge. 3. Much of the existing Pandas test...