Peter Bourgon
Peter Bourgon
It seems like the CLI wraps most of its output at a hard 80 columns. I don't know about you, but I haven't had an 80 column wide terminal in...
I am trying to write some unit tests for my kingpin.Application, to test things like help output. To do that, I build the application the same as I would in...
[It looks like](https://github.com/tsenart/pan/blob/master/db.go#L122) if a slave dies, some % of slave requests will simply fail. Feature request: support failure detection, and some kind of circuit-breaker recovery mechanism.
As part of the new website, we'll add a Getting Started guide for developers who have a good deal of experience with microservices and frameworks in other languages, and have...
As part of the new website, we'll add a Getting Started guide for developers who are new to Go and have decided to try Go kit as their introduction to...
v0.0.4
I have a use case which would require HTTPS (#1) as well as custom certs, e.g. as cURL ``` curl \ --cacert my_ca_cert.crt --cert my_cert.crt --key my_key.key \ --data 'query=count(up)...
go.sum isn't a lock file and doesn't represent dependencies. See [this issue](https://github.com/dependabot/dependabot-core/issues/4740) for more detail.
go.sum is an append-only log of checksums, used to verify the integrity of modules downloaded during builds. It's essentially a manifest file (shasums) and not any kind of lock file...