Marten Jacobs

Results 12 issues of Marten Jacobs

Could you please clarify in the documentation why it's required to run this container privileged? I just tried running it without and it seems to work up to the point...

It would be really helpful if it would be possible to control where the configuration file is located. That way you could mount a volume at `/etc/pritunl` without interfering with...

Python subprocess did not have any stdio for errors and such, so I just connected them up to the original process stdio. This way, we get error output from the...

This Dockerfile makes it easy to run `fstransform` under Docker. ```bash docker build . -t fstransform ``` Usage is then simply: ```bash docker run -it --privileged --rm fstransform [ARGS] ```...

Using the `default`-key causes an exception when used on a rawlist Consider the following code: ```python from PyInquirer import prompt, print_json answer = prompt([{ 'type': 'rawlist', 'name': "test-question", 'message': "Select...

Hi, I'm using node-dbus-next to connect to a remote dbus server from macOS. To successfully perform authentication, the correct uid (`1000`) must be passed with the EXTERNAL authentication handshake. However,...

As mentioned in #23 There's a issue with this line: https://github.com/acrisci/node-dbus-next/blob/4283e0e535cf6ca519e8d839bc9216ec30b45830/lib/handshake.js#L21 On my set-up, `getUserHome()` returns `undefined` (this may be due to mine running in the Electron renderer process). This...

This solves #13 by reading the complete scratchpad and validating the CRC at the end of it. When the device is not connected, every call to `DS18B20_ReadByte` will yield `0xFF`,...

I'm using the LSN50 in work mode 4 to report values from multiple DS18B20 sensors. This works well; I'm currently running about 20 nodes with 2 sensors each. However, occasionally...