SJ

Results 222 comments of SJ

Hey, the JWT is base64 encoded, so you'd need to use a base64 decode to get the information stored in the first two parts of the JWT (the 3rd part...

There is no vanilla way to invalidate tokens on the server side. On the client side, a /logout should simply delete the token (refer to Satellizer - https://github.com/sahat/satellizer). To implement...

This is the purpose of a refresh timer and short expirations on JWTs.

> If this is a problem for more people in the community, I'm definitely open to create such a queue. Then I hope these people will answer in this thread,...

While this is extra steps, would this also be a reasonable workaround in client code? `datetime.fromtimestamp(model.starting_from.seconds, timezone.utc)` I mean, I guess you'd have to copy the nanos/_NANOS portion everywhere for...

RxTest might be a good inspiration for some possibilities

Node-serialport has mocks, retrofit has mocks, need to get some inspiration

Just discovered some more race conditions using a piece of hardware that disconnects immediately after receiving a TX message - basically, the existing message in the queue doesn't finish up,...

Look at something like this: http://basememara.com/creating-thread-safe-arrays-in-swift/ Also, (note to self): Review whenLoaded{} pattern, as it's thread-safe and handles arrays of callbacks.