Anit Gandhi
Anit Gandhi
I'm facing the same issue. I think the help string containing `(default: true)` are coming from node_exporter's kingpin flags themselves: https://github.com/prometheus/node_exporter/blob/v1.0.1/collector/collector.go#L67 meanwhile, in do-agent, various collectors are disabled by default...
Hey folks; we use mTLS quite heavily in our organization so we've run into this issue quite a bit as of late. Namely, instead of getting the TLS alert code,...
In my `.bashrc` or `.bash_profile`, AFTER the gvm related `source` lines, I have `export GOPATH=$HOME/go` and everything goes back to normal. You can do something similar to set it to...
👋 For what it's worth, we faced this same problem, and this was all we needed to fix it: https://github.com/digitalocean/cadence-client/pull/1/files We've just been maintaining that fork and carrying that patch...
That would definitely be useful in my opinion, and the re-usable caching sounds like it would solve #146 as well. `gimme clean` would be very useful!
It's strange that staticcheck considers it unused, because it is consumed later on in the for loop with `xored[offset+x] = R[x] ^ xored[offset+x]`. Strictly speaking, I suppose it doesn't actually...
Yeah indeed, thanks for pointing it out folks. Unfortunately I no longer have write access to this repo so TBD on when this will get fixed...
Regarding one of your TODOs, I was thinking it might be a good idea to make a subpackage `fpeUtil` and put the Codec and other new logic there. Then `ff1`...
Also, `NewAlphaCipher` should be `NewCipherWithAlphabet` (one of those Go idioms :smile: )
That nuisance is present for any Go package, arguably. But I see your point - generally you should be cloning the repo into `$GOPATH/src/github.com/capitalone/fpe` and/or adding your fork as a...