Erik Dubbelboer

Results 272 comments of Erik Dubbelboer

https://github.com/fagongzi/manba/blob/master/pkg/util/fasthttp_client.go is an almost full (old) copy of https://github.com/valyala/fasthttp/blob/master/client.go. I'm afraid I can't support that since it's not actually fasthttp.

Should be fixed in https://github.com/valyala/fasthttp/commit/2f1e949d91d0ba1817afd80d7c981fafe7154774 will tag a release next week.

If you have to ask if you should use reuseport then you don't need to. This is only for really specific cases where you have multiple processes listening on the...

Good questions, lets wait for @petuxodev to answer. Your solution is not going to work. A server can have a lot of concurrent connections so you can't use a variable...

I'm ok with a pull request to add methods like `func (h *RequestHeader) PeekAll(key string) [][]byte`.

@amitdo I'm getting the same issue just with Tesseract. I'm guessing OCRopus is using Tesseract and that's why he made the issue here.

The clickhouse prometheus endpoint doesn't expose enough to make the Altinity alerts config work. What is the harm in making it possible to import code from this package? We have...

You don't have to guarantee backwards compatibility. I don't care if you break backwards compatibility, people can just change their code to match your changes. But being able to import...

The issue is with the usage of `glTexStorage2DMultisample`. Your `mtOpenG` library seems to use OpenGL 3.3 but `glTexStorage2DMultisample` is only supported in OpenGL 4.3 or above. But MacOS only support...

Disabling multisampling (so not using `glTexStorage2DMultisample`) gets you further but it still crashes with: ``` 2019-05-18 14:14:34.111 Voronoi_Image_Manipulation[6429:250462] get 0x0 Points: 125 fatal error: unexpected signal during runtime execution 2019-05-18...