Evan Huus

Results 71 comments of Evan Huus

I implemented this in my fork: https://github.com/eapache/auto-pairs You can use that until @jiangmiao decides to merge my PR.

OK. I'd definitely like to see a more concrete internal example of what you think all of this will look like, but the explanation is heading in an interesting direction...

I have PRed a change to the spec to permit setting these values properly so that at least other implementations can do so without breaking technical compliance: https://github.com/facebook/relay/pull/2079

Closing due to lack of activity. I'm still willing to consider cases and proposals like this, but in hindsight I think the `Retrier` is not the right pattern in the...

I have a queue implementation backed by a ring-buffer at https://github.com/eapache/queue - it ends up being much faster because it causes less garbage for the garbage collector.

I am open to the idea, though I will continue to maintain the existing one. I use it in https://github.com/eapache/channels/ where the lack of locking is a fairly significant performance...

Go right ahead, the license is MIT which is quite permissive.

Yeah, this is a good discovery. I don’t know how to fix it off the top of my head, in hindsight the structure of a lot of the code in...

Perhaps we could reserve one buffer slot for each created channel (leaving the rest of the buffer slots truly shared)… this would be less efficient, and not really what you...

Let me know if the following snippet works when pasted in your vimrc: https://gist.github.com/eapache/0c0abbdb2e810a3f1f4a - It's a bit hacky, I couldn't come up with a cleaner way to disable YCM...