Gabriel Handford
Gabriel Handford
Yeah I am explicitly enforcing that only 1 user statement links to a single key but we will probably open that up at some point hopefully soon? I also want...
Elasticsearch::Transport was renamed to Elastic::Transport in 8.x You can't use this chewy repo with 8.x out of the box. I am experimenting with a fork that uses 8.x here: https://github.com/gabriel/chewy
Using [babel-plugin-react-native-web](https://github.com/necolas/react-native-web/tree/master/packages/babel-plugin-react-native-web) fixed this for me.
Yeah basically the problem I was having was data encrypted with RbNaCl (ruby's NaCl library) does this padding as suggested by the libsodium docs... So I couldn't decrypt stuff created...
A good way to test this is encrypt some data in RbNaCl and then try to decrypt in CryptoPill ``` ruby password = "password" hkdf = HKDF.new(password, :algorithm => "SHA256")...
@mitchellh would be great to merge this? An alternative I was using previously, was parsing `ps ax -o pid,comm` which lists the full executable path name, but am trying to...
In this fork, https://github.com/keybase/go-ps, I added a Path() method to Process which returns the full path to executable. Supported on windows and darwin. (Uses this patch for darwin.)
I think the framed option allows it to know ahead of time how big the message is and in that case will wait for it?
I always use the framed option with the RPC, so it's possible non-framed doesn't work with RPC. I'd probably need to look into it further.
You could create a pull request (or compare changes) and then pick and choose what changes you want? https://github.com/mitchellh/go-ps/compare/master...keybase:master If you need, I could also prepare a pull-request which has...