Jesse Wattenbarger

Results 11 comments of Jesse Wattenbarger

Same here on both NixOS 19.09 and unstable. Most of the libs don't seem to be statically linked, and the launcher doesn't seem to setup the path (LD_LIBRARY_PATH) to use...

When I set my `LD_LIBRARY_PATH` from my environment to your `lin/lib`, everything seems to resolve: ```shell [jwatt@wisdom-like-silence:/run/media/jwatt/sto/portable/portacle]$ LD_LIBRARY_PATH=$(realpath ./lin/lib) ldd lin/sbcl/bin/sbcl linux-vdso.so.1 (0x00007ffcd67bb000) libdl.so.2 => /run/media/jwatt/sto/portable/portacle/lin/lib/libdl.so.2 (0x00007fe56a9f0000) libpthread.so.0 => /run/media/jwatt/sto/portable/portacle/lin/lib/libpthread.so.0...

I'll look closer into the build tomorrow. There might be some stuff we can do w/o relying heavily on `LD_LIBRARY_PATH`. I see what you mean. It's letting me down as...

I got it to work on Nix. Had to patch the sbcl binary with patchelf. This could possibly be made to work on other platforms, too. There's an automated way...

Seems like it might be. I found a similar project that lists companies who do not whiteboard, and that looks like it's been updated recently: https://github.com/poteto/hiring-without-whiteboards

I edited a couple comments. Added a small optional change: optional nit: github supports this, iirc: `RUN pip3 install black git+https://github.com/coderanger/supervisor-stdout .git@973ba19967cdaf46d9c1634d1675fc65b9574f6e` If you want to try that, my OCD...

> > ``` > > bash-5.1$ pgrep -u 1000 | while read a; do echo -n "$a "; readlink /proc/$a/exe; done | grep python > > ``` > > That's...

FYI, http://mywiki.wooledge.org/BashFAQ/029 tl;dr: You can use `perl`: ``` perl -le 'print readlink "/bin/sh"' ``` or `find` with `printf %l`: ``` $ find /bin/ -type l -printf '%p points to %l\n'...

Sure thing! `bats` for testing. Excellent. I think I see just where to add it.

I took care of the minikube standout by not trying to fix it :). Basically, since it's the only thing that needs to use `_sources` from inside the container, I...