Ryan Uber
Ryan Uber
This seems fine to me. Can you also add a note to the README that the InmemSignal is not supported on this platform?
Hey @funkygao, thanks for the PR. I have a few concerns about this: 1) Performance is a factor, as I mentioned in a (recently) closed PR [here](https://github.com/ryanuber/columnize/pull/13#issuecomment-268951627). This logic has...
Hey @astec, interesting idea. I could see potentially adding settings for a horizontal split line. I could also see drawing outlines for a nice table-looking output, but IMO that should...
A few projects I know of persist the current license tags into serialized JSON, etc., so we wouldn't want to break those. I think what we can do though, is...
This makes sense, and we even use a similar thing to identify the Apache licenses [here](https://github.com/ryanuber/go-license/blob/master/license.go#L172). I think basically we would just need to do an extra scan for the...
@c4milo I have not tried Bayesian classifiers yet, that is an interesting idea though! One other thing I did try was using the Jaro-Winkler distance, but that proved to be...
@client9 I don't think this is really an issue, but a thought ticket on perhaps a better way to do license scanning rather than the naive full-text scan we do...
Can you verify that you are running Oracle JRE and not OpenJDK? I had this same problem some time ago and it turned out to be an issue with the...
This really depends on how you are using PHP. If you have a long-running PHP process, this works just as expected. Example: ``` php $z = new Zookeeper('127.0.0.1:2181'); $z->create('/etest', 'blah',...
What you are seeing is that the original YAML you are feeding in is using [compact in-line notation](http://www.yaml.org/spec/1.2/spec.html#style/compact%20block%20collection/) for block sequences. This was introduced in YAML 1.1. Spyc, being a...