Renaud Richardet
Renaud Richardet
USQL script on ADLA were hanging indefinitely, until we realized that we had setup the wrong extractor (CSV instead of TSV) on a `.tsv` file. Sure it is our fault,...
function documentation, specifying input (one sentence per line)
documentation about file format
From the Python docs for [re.compile()](http://docs.python.org/library/re.html#re.compile): Note The compiled versions of the most recent patterns passed to re.match(), re.search() or re.compile() are cached, so programs that use only a few...
Thanks for this great tutorial!! https://github.com/shreyasminocha/regex-for-regular-folk/blob/974120e99e36a7bae14be913941e45b90bedc309/chapters/en/repetition.mdx#L146 A student of mine remarked that this example does not really make sense: `{2,4}?` will always fall back to only matching 2 characters, so...
simple example
https://github.com/brightway-lca/brightway2-io/blob/383205f01c8b79e2f94b25b52db9a57dc2da7fbe/bw2io/package.py#L81 I am getting an error when updating an existing database with BW2Package.import_file(). It is throwing `ModuleNotFoundError: No module named 'bw2data.backends.peewee'`, this is because I can see in my `.bw2package`...
1. Updated LibGDX version from 1.9.8 to 1.12.0 2. Switched from LWJGL2 to LWJGL3 backend 3. Updated controllers API (replaced PovDirection enum with int values) 4. Fixed type casting for...