Stefan Scherfke
Stefan Scherfke
@choco 1. I think it makes sense to only run the scripts when Dark Mode is togggled, because the scripts are ment to supplement Dark Mode. If the user checked...
What about replacing arrow with [Pendulum](https://pendulum.eustace.io/)? What I’ve heard and experienced so far, it would be a good alternative.
I could create a PR for this.
I mean "repackaging" in the sense of "build a binary package in a different format (conda) from source and building it with a defined version of rust in a defined...
Fixed offsets would be a huge benefit and cover most use cases. :)
I’ll see what I can do.
`install`, `update` and `build` all have similar options regarding Conda channels, but the `build` command has no `--[no-]channel-priority` setting. `--no-channel-priority` is an important feature for our internal stable/staging workflow and...
```python >>> import faulthandler >>> faulthandler.enable() >>> import base92 Fatal Python error: Segmentation fault Current thread 0x00007fc11e5f6740 (most recent call first): File "", line 219 in _call_with_frames_removed File "", line...
If I compile the c-lib with `gcc -c -Wall -Werror -fpic -shared -o $PREFIX/lib/libbase92.so -Ic/src c/src/base92.c` I get some more errors: ``` c/src/base92.c: In function ‘base92encode’: c/src/base92.c:84:17: error: pointer targets...
The following patch solves the problem: ```diff diff --git a/c/src/base92.c b/c/src/base92.c index e0208b0..d5c50f7 100644 --- a/c/src/base92.c +++ b/c/src/base92.c @@ -79,9 +79,9 @@ unsigned char* base92encode(unsigned char* str, int len) {...