Julian Rüth
Julian Rüth
I'd like to migrate from Travis CI to GitHub Actions for CI. This makes it much easier to create nightly conda packages.
Consider the following C program. ```c $ cat roundtrip.c #include int main() { arb_t a; arb_init(a); arb_load_str(a, "2bb573849d73 -2c 800031b 365d"); arb_printn(a, 1024, ARB_STR_MORE); arb_set_str(a, arb_get_str(a, 1024, ARB_STR_MORE), 1024); arb_printn(a,...
The following code produces the output `[+/- 1.01]`. ```c #include int main() { arb_t x; arb_init(x); arb_zero_pm_one(x); arb_printn(x, 64, 0); arb_clear(x); } ``` Since internally this corresponds to the ball...
Would there be any interest in switching the build system over to a standard autoconf setup? I might have time to work on this…
`list_of_dicts_to_dict_of_lists()` was not actually inverse to `dict_of_lists_to_list_of_dicts()` since its use of set() changed the original ordering in lists. This is part of the reason for https://github.com/conda-forge/conda-smithy/issues/1183. TODO: * [ ]...
I am trying to prepare a few examples on mybinder.org that use C++ 17 features. However, xeus-cling does not work for me when selecting the C++ 17 kernel on binder....
The README says that the `ajax` parameter takes a `callback` that should be called as follows: ``` // 'callback' is a function that takes two parameters, 'data' and 'xhr'. //...
The implementation of `readMulti` builds the resulting URL by joining arguments with ``` let url = this.services.interpolator.interpolate(loadPath, { lng: languages.join('+'), ns: namespaces.join('+') }); ``` This causes trouble for me when...