Cameron Tacklind
Cameron Tacklind
I'm trying to use this package as described in the readme: ```ts import SSH2Promise from 'ssh2-promise'; const connection = new SSH2Promise(opts); ``` Some functions, like `.sftp()`, are typed properly and...
Since this package publishes TypeScript types directly and doesn't rely on DefinitelyTyped, I think the dependency on `@types/ssh2` should be a normal dependency. I think it's slightly confusing that half...
`dfu-programmer` is missing a chart of the coverage progress. We started at 2%. We're up to 20%.  It also seems like some other little things are going weird, like...
Add `extraArgs` option to pass custom arguments to binary. Also cleanup some type casting and update versions.
I'm using a custom script to always add some `-I` built flags when I run `clang-tidy`. Unfortunately, I can't use `"clang-tidy.executable"` setting to use my binary (I'm using `node` to...
I'm trying to understand guvnor's permission model. In particular, I'd like each app I run to be run as a separate user and control all of the apps from my...
Some startup/init/rc managers need a pidfile to check if the boss process is still running. Could we create a pidfile on startup?
The guvnor config file says that the remote rpc connections are made with https: https://github.com/tableflip/guvnor/blob/v3.5.17/guvnor#L52 This however does not seem to the be case. I tried to setup nginx as...
I'm trying to write a cli program to manage gpio on my pi. One of the things I want to use is the hardware clock output. I also want to...
On Linux systems, the SFTP client `sftp` [has the `-s` option](https://linux.die.net/man/1/sftp) which enables certain features on the remote system. Most notably, [running `sftp-server` with `sudo`](https://unix.stackexchange.com/a/169315/198377). I'm not seeing a way...