David Pennington

Results 73 comments of David Pennington

Well, that ignore case would be easiest. I can say in over 10 years of multiple languages, API's, and platforms I've never, ever had a request where two params were...

Yes, that is one solution. `context.Context` would provide even more features than simply a shared request param map attached to `gongular.Context`. Either would provide a way for downstream middleware to...

No reason to execute an external program. As I said, I could create an `http.Request` object, start an HTTP server, run the client requests, etc.. all within Go... but why?...

The whole zone-file would be great, but can't we just make [save()](https://github.com/owlwalks/rind/blob/abc1624059b17b55984dab7135537d8c075767e0/dns.go#L141) public for now so that I can add a few records?

GraphChi looks like a great project. Thanks for those links. Unfortunately I haven't spent any time on C++ in a long time and don't remember much. I guess I just...

We might want to change the logic for 1 or 2 byte sequences to calculate as a [signed 16bit number and then type cast to 32 bit](https://play.golang.org/p/_mHBnVO2ka).

Consider [this conversion to float32](https://github.com/targodan/goad/blob/develop/decoder.go#L136) using int64 for the full range of values from more than WAV audio sources.

I'm still not sure this case of swapping is well-covered by the spec. Here is the test I ran: ``` func TestDL(t *testing.T) { var table = []struct { A...

Is there a way that I can [override the template sqlc uses](https://github.com/kyleconroy/sqlc/blob/11084ace5f30be4ff6a02c1680ba67f90ae2187a/internal/codegen/golang/templates/stdlib/queryCode.tmpl?_pjax=%23js-repo-pjax-container%2C%20div%5Bitemtype%3D%22http%3A%2F%2Fschema.org%2FSoftwareSourceCode%22%5D%20main%2C%20%5Bdata-pjax-container%5D#L22-L43) to generate this code?

Looks like sqlc needs to support passing slices to MySQL queries #695 first