Carwyn Edwards

Results 14 comments of Carwyn Edwards

Should there even be a call to `jwt.Validate(...)` in `jwtauth.VerifyToken(...)`? (thinking out loud here) Without setting parse or verify options or at least setting one of iat, exp or nbf...

You can see via this example that the default dates in the encoded token are zero, meaning that expiry won't be checked due to how `jwt.Validate()` is written. ``` package...

I have a similar requirement to get at sqlite3_db_config() to lock down the use of SQLite3 when processing untrusted database files as per point 9 in section 1.2 here: https://www.sqlite.org/security.html...

Just hit this too, I'm guessing bundle.js is statically baked into this file? https://github.com/samsarahq/thunder/blob/master/graphql/graphiql/statik/statik.go

@magiconair is this fork with interface support public and/or has there been a pull request for it into thunder yet?

Related to some of the comments in https://github.com/jensneuse/graphql-gateway/issues/4

This seems relevant, looks at using fbdev and DRM directly without any userspace libs: http://betteros.org/tut/graphics1.php (Also this popped up on HN just now: http://seenaburns.com/2018/04/04/writing-to-the-framebuffer/) Trying to statically link libdrm into...

For Go based OpenGL and other thing from Go on a Pi this also seems useful: https://github.com/djthorpe/gopi

Personally I'd agree that gokrazy would be best sticking to it's Go-only origins and at most having some mechanism for using the framebuffer directly akin to what @bkleiner has started....

Interestingly someone is trying to implement a Vulcan driver by interfacing directly with the DRM interface: https://github.com/Yours3lf/rpi-vulkan-driver May become a useful reference for anyone trying to do more via the...