Ethan

Results 66 comments of Ethan

@westonkd this repo has been dead for some years, I would advocate my own library OAuthenticator https://github.com/notEthan/oauthenticator

updated to not raise on unrecognized Authorization params, which should be allowed, e.g. 'realm'. instead these are silently ignored/discarded. not sure if that's the best approach; another option would be...

unrelated to this issue, I want to express thanks for a really excellent, simple library for OAuth. I've created a library called oauthenticator at https://github.com/notEthan/oauthenticator which consists of rack middleware...

This seems to focus on validation to the point of not considering any other application of JSON schema. Validation is by far the most common thing to do with schemas...

I am encountering this as well. without really grokking this code: https://github.com/lsegal/yard/blob/v0.9.27/lib/yard/parser/ruby/ruby_parser.rb#L373 I tried flipping the shift to a pop, since the correct entry of `@map[:aref]` was in the last...

Erroring without a specified metaschema/dialect is entirely reasonable. My implementation switched to it; you have to either have $schema in your schema, or separately specify the metaschema to instantiate the...

You can configure dependabot to update git submodules. `.github/dependabot.yml`: ```yaml version: 2 updates: - package-ecosystem: gitsubmodule directory: "/" schedule: interval: daily ``` or so. No subtrees though (https://github.com/dependabot/dependabot-core/issues/3741), and I...

I've just encountered this with v2.0.5 `lite-xl-luajit-macos-x86_64.dmg`. at least some note in the releases regarding this, maybe stating what macos versions can run it, would be good. (guidance on picking...

I'm not too sure the distinction between this and #1288, they both seem primarily concerned with treating `contentSchema`'s value as data vs subschema. I [commented there](https://github.com/json-schema-org/json-schema-spec/issues/1288#issuecomment-1254458838), what I said there...

Some further thoughts on describing this in the metaschema if it is not a thing $ref/$anchor interact with: I mentioned on the other issue that `contentSchema`s value being described as...