Andy Gayton

Results 50 issues of Andy Gayton

golang.org/x/crypto/openpgp is currently used to as an optional signing key: https://github.com/google/go-github/blob/master/github/git_commits.go#L27-L50 However this package is now deprecated: https://github.com/golang/go/issues/44226

Is this something you'd be interested in including? If so, what do you think for structuring it? Any thoughts for the naming? Let me know and I can clean it...

Hi Chris, I'd like to put together a pull request so the repo can be made available on pypi so chashring is pip installable for python users. Would you be...

# Description This PR adds a new `echo` command to the `nu_plugin_example` plugin that simply [streams all of its input to its output](https://github.com/nushell/nushell/pull/12754/files#diff-de9fcf086b8c373039dadcc2bcb664c6014c0b2af8568eab68c0b6666ac5ccceR47). ``` : "hi" | example echo hi...

### Related problem Currently pipelines can block, waiting on IO for example, which prevents an interactive experience. Two examples of this: 1. `http` requests respond to ctrl+c events only during...

enhancement
signal-cancel
needs-triage

Should this be a router, seems janky: https://github.com/cablehead/vanilla/blob/master/vanilla/io.py#L96 Should the layer up be a router? or perhaps deduping a layer up?

Instead of buffering them, just put them on the body pipe as soon as bytes are available.

Test: have a fd, close. get new fd from os, os hands us the previous fd closed, as its the current lowest fd available. The old user of fd calls...

``` return HTTPClient(self.hub, url) ``` File "/home/ubuntu/git/vanilla/vanilla/http.py", line 194, in **init** self.socket = self.hub.tcp.connect(host=host, port=port) File "/home/ubuntu/git/vanilla/vanilla/tcp.py", line 41, in connect conn.connect((host, port)) File "/usr/lib/python2.7/socket.py", line 224, in meth return...