Chance
Chance
It would be nice if keys stored their creation date/time. I need to be able to phase keys out of rotation based on their date. I'm not crazy about storing...
```html https://github.com/themikenicholson/passport-jwt ``` Another example: ```html https://github.com/jaredhanson/passport-github#readme
This isn't done as the tests haven't been verified but this moves errors to go 1.13. I can finish it but I don't want to burn a lot of time...
Using the following code, I cannot establish websocket connections: ```typescript import Fastify from "fastify"; import wsPlugin from "fastify-websocket"; export const server = Fastify(); server.register(wsPlugin); server.get("/", { websocket: true }, (ws,...
Resolves issue #77 by checking the status of `big.Rat`'s `SetString` method when dealing with numbers. I was uncertain of what the field should be (the first param in `validationError`) so...
```go package main import ( "encoding/json" "log" "github.com/santhosh-tekuri/jsonschema/v5" ) func main() { schema := `{"type": "integer"}` instance := json.Number("abc") sch, err := jsonschema.CompileString("schema.json", schema) if err != nil { log.Fatalf("%#v",...
Given the code: ```rust pub trait Second: Fn(String) -> String {} impl Second for F where F: Clone + Fn(String) -> String {} pub trait First: Fn(String) -> Box {}...
This addresses #607 and is an alternative or companion to #653. Adds a new configuration parameter, `user-templates-dir`, on `OutputOptions` which allows for assigning a directory path to parse user-template overrides....
**Checklist** * [X] Are you reporting a bug? Use github issues for bug reports and feature requests. For general questions, please use https://discuss.yjs.dev/ **Describe the bug** the function `getContent` references...