Slawomir CALUCH

Results 11 issues of Slawomir CALUCH

It is stated that `aud` is an array of strings, ref: https://tools.ietf.org/html/rfc7519#section-4.1.3 Please note It is impossible to assign an array of strings: https://github.com/dgrijalva/jwt-go/blob/dc14462fd58732591c7fa58cc8496d6824316a82/claims.go#L19

Hello, Running the demo (server, Unity build + unity player) on one computer I experienced a very noticeable lag in the the demo. Is this expected? If not, it it...

There is a new version based on this driver which includes support for the Xbox One controller here: https://github.com/d235j/360Controller. Will it be included in the official repo?

https://github.com/utilitywarehouse/go-pubsub/blob/34bed0f69328fdc9627ece5bae407295b64719c4/natss/source.go#L179 `subscription, err := conn.QueueSubscribe(mq.topic, mq.consumerID, f, opts...)` creates a group. https://github.com/utilitywarehouse/go-pubsub/blob/34bed0f69328fdc9627ece5bae407295b64719c4/natss/source.go#L170 By default the library creates a durable connection https://github.com/utilitywarehouse/go-pubsub/blob/34bed0f69328fdc9627ece5bae407295b64719c4/natss/source.go#L99 adding to this `mq.consumerID+generateID()` creates a new client id...

Currently there is no guarantee messages are received in order when using nats streaming. This can be easily fixed by checking the msg.Sequence. 2 cases can be implemented: - `SequenceGuarantee`...

Connection to Nats streaming are always done using durable groups. This is problematic in cases where the client ID of the subscriber is not the same on reconnection (new pod...

https://github.com/uw-labs/substrate/blob/67626b38e3a2382235b2307e2b82d50f297cec6b/natsstreaming/nats_streaming.go#L173 This type of convenience can introduce unwanted behaviour upon re-connections and should not be silently ignored. It is preferable for the client to generate its own random id when...

consider the following interface: ``` package testvariadic type Dependency interface { Call(version string, info ...string) string } ``` the resulting mock is as follow: ``` package testvariadic_test import ( "fmt"...

Not having any docker images to quickly spin the project in kube or on a NAS is hurting the project. Having images ready to spin would lower the friction between...