Evan Huus

Results 54 comments of Evan Huus

Any update on this? I'd really like to put a badge on some of my repos :)

You are not wrong, this is another caveat. In general this is true of all of the buffered channel implementations here (RingChannel, InfiniteChannel, etc): > If the channel passes out...

It is mentioned in the godoc that: > Due to limitations of Go's type system, importing this library directly is often not practical for production code. This kind of dance...

The problem is actually in the implementation of `Unwrap` which unconditional reads from the input channel before it may be able to write. I don't know if it is possible...

Perhaps I am missing something about the use case, but wouldn’t it be simpler to move the retrier to wrap the logic inside the `for {}`? That accomplishes the same...

> And still if there were many disconnections the retrier in the end would give up. Each new call to `Run` resets the retry count, so the sample you posted...

This is quite possible. The last time I looked at stuff like this there were a bunch of issues in the ruby community with various projects (like babel-transpiler gem) being...

Yeah, that's possible. In practice I've found, for very large ruby projects, https://github.com/eapache/starscope/issues/95 and https://github.com/eapache/starscope/issues/154 dominate as performance issues anyway. If I had the time to do performance surgery, that's...

That's a great idea. Unfortunately, the cscope file format is not really "appendable", it has a header at the top which becomes invalid if you add more data, and is...