Ethan Eldridge

Results 6 issues of Ethan Eldridge

Hi! I found your library from reading [a blog post](http://www.sandywalsh.com/2013/04/the-monitoring-stack-state-of-art.html) that described your tool at a high level. I see the checkout instructions and directions towards ElasticSearch setup and etc,...

-c99 for the standard causes the code to fail with an implicit declaration of the function strsep as well as errors from atoi making a pointer from an integer without...

This example is incorrect. The statement ``` Set(1,2,3) - (1,2) ``` (for example) does not use a tuple at all, it's the same thing as this: ``` Set(1,2,3).-(1,2) ``` Which...

Hello! I think I may have found a bug when dealing with HEAD requests to spray-can. The [documentation states](http://spray.io/documentation/1.1.2/spray-routing/method-directives/head/): > By default, spray-can handles HEAD-requests transparently by dispatching a GET-request...

Hi! I saw [issue 615](https://github.com/brettwooldridge/HikariCP/issues/615) and figure'd it would be something pretty easy to do in a morning. All the tests still pass, and I've written the update so that...

Ran into this and thought it felt unexpected. If I'm building up an object for attributes in some process like ``` function makeThing({url, defaultThing = 100, defaultThing2 = undefined}) {...