Kane York
Kane York
Currently, it appears this repository is maintained by a single person. Come up with a system where multiple people are allowed to approve changes (e.g. prow from k8s).
https://staticcheck.io/docs/checks#SA6005 In file sanitize.go: `if strings.ToLower(straw) == strings.ToLower(needle) {` should be `strings.EqualsFold(straw, needle)` or, even better, compile a regexp literal for needle and use it for the entire loop.
Is gorilla/websocket going to be doing an experimental implementation of the Websockets+h2 draft, or waiting for it to go RFC? https://tools.ietf.org/html/draft-ietf-httpbis-h2-websockets-07
Currently, expired items are only evicted when the cache fills to its maximum configured size. Add an API method for clearing evicted items, possibly with a grace period (e.g. allow...
https://github.com/FiloSottile/yubikey-agent/blob/master/setup.go#L69 When `--setup` is rerun, the tool should print out the public key, as a convenience.
Eeee ee eeeee ee eee Eeeeee Eeee Eeeee Eeeeeeeee.
``` import "github.com/go-git/go-billy/v5" // with go modules enabled (GO111MODULE=on or outside GOPATH) import "github.com/go-git/go-billy" // with go modules disabled ``` The second line does not work: the code expects import...
I needed a tokenizer that properly skipped bad-string and bad-url without erroring out, so I just rewrote the whole thing /shrug Expanded the tests and includes fuzz testing.
The "consume an at-rule" algorithm says that the following should result in an at-rule with a prelude of `title 56 56 Who's this d****e?` and no block, but instead enters...
Because so many of the relevant file formats use absolute paths, we should come up with a canonical distribution / install path so that these files are more portable across...