Atsushi Takayama

Results 5 issues of Atsushi Takayama

I was trying around with this branch https://github.com/pixiv/go-libjpeg/pull/15 and found out that there is a failing test using libjpeg whereas it is passing with libjpeg-turbo. ``` $ CGO_CFLAGS=-I/usr/local/opt/jpeg/include CGO_LDFLAGS=-L/usr/local/opt/jpeg/lib go...

Not sure if necessary. ``` diff diff --git a/src/MMD.VertexShaderSource.coffee b/src/MMD.VertexShaderSource.coffee index 075b18c..1cdb901 100644 --- a/src/MMD.VertexShaderSource.coffee +++ b/src/MMD.VertexShaderSource.coffee @@ -39,6 +39,26 @@ MMD.VertexShaderSource = ''' return v + 2.0 * cross(cross(v,...

It was removed in 3eced323e6a648c9f968f497c4711719984477ef due to the fact that the interface of Token.Extra of golang/oauth2 was changed. This commit un-removes ExtraData with different interface than the previous one due...

At the moment, gate keeps holding the connection when the server closes a WebSocket connection through gate. Therefore, `onclose` of JavaScript's WebSocket object never gets called. To be honest, I'm...

Due to httputil.ReverseProxy's buffering behavior, I have to wait before HTTP 1.1 Transfer-Encoding: chunked response to start being sent. Setting FlushInterval to httputil.ReverseProxy solves this issue. Hard-coding the flush interval...