Gert Hulselmans
Gert Hulselmans
```c $ cat getpwuid.c #include #include #include #include #include int main(int argc, char *argv[]) { struct passwd pwd; struct passwd *result; char *buf; size_t bufsize; int s; if (argc !=...
I assume `getpwuid` of musl does not support it like glibc does. In case `getpwuid` fails, calling one of the following binaries could be an alternative, besides a glibc build...
Could you compile against an old glibc, like glibc 2.28 (CentOS 8), so it works on most distributions? ``` zig build -Doptimize=ReleaseSafe -Dtarget=x86_64-linux-gnu.2.28 ```
Thanks. It works now on Ubuntu 20.04. On Rocky 8.9 it also goes past this error, but hits another one. ```bash $ ./dockerc_x86-64-gnu -i docker://docker.io/library/bash:latest -o bash FATA[0000] initializing source...
I figured out a workaround by using `XDG_RUNTIME_DIR`: https://github.com/containers/container-libs/issues/259 ```bash XDG_RUNTIME_DIR=/tmp/podman-run-$(id -u) ./dockerc_x86-64-gnu -i docker://bash:latest -o bash Getting image source signatures Copying blob c6a83fedfae6 done | Copying blob 70acf8f93de9 done...
> Iff, we add that functionality, then it should be on the rust side. We shouldn't implement things only for python. Things I am concerned about and want to be...
Run the command line version and not the notebook version: https://pyscenic.readthedocs.io/en/latest/installation.html#docker-podman-and-singularity-apptainer-images
Unless you have a very uncommon architecture, you should be able to install pybigtools from a binary wheel: https://pypi.org/project/pybigtools/0.1.2/#files
> Do you think it would make sense to add such code to `cistopic_class`? Or are there already plans to rewrite these functions to reduce their memory usage? Changing some...
@ktroule Hard to predict exactly. It depends whether I would have time for it soon. Some more urgent non-coding related stuff needs my attention first. Likely some other improvements like...