Kevin Cox

Results 144 issues of Kevin Cox
trafficstars

Right now the redirect URI is "hardcoded" to the current page. ([Unless you are cordova](https://github.com/remotestorage/remotestorage.js/blob/bb881b021a5cc21a3583c3849d74e27859e47d29/src/remotestorage.js#L191)) This is very inconvenient as oauth providers such as Google restrict the redirect URI to...

feature

It is very hard to trust a tool without documentation on the implementation. Would it be possible to publish a document talking about how the encryption is performed and the...

help wanted
documentation

It is possible to do `nix-build --store /some/other/place` which will build using the specified store instead of the system store. However it is very difficult to push the paths from...

Output of `restic version` -------------------------- restic 0.13.1 compiled with go1.17.11 on linux/amd64 What should restic do differently? Which functionality do you think we should add? ---------------------------------------------------------------------------------- Right now all of...

type: feature suggestion
state: need direction
category: forget

Right now it appears that trust-dns has two options surrounding DNSSEC. 1. Always validate, fail if the record is not signed. 2. Never validate. What I would like to propose...

enhance
crate:resolver
feature:dnsssec

## Feature Request Many rules have exceptions. It would be nice if we could opt-out of checks for specific resources. Something like this. ```hcl resource "storage" "name" { # storage-public-access:...

enhancement

See https://github.com/rust-fuzz/cargo-fuzz/issues/199

Right now deserialization of internally tagged enums rely on a call to `serde::Deserializer::deserialize_any` which often doesn't work well with non-self-describing formats. Ideally `serde::Deserializer::deserialize_struct` would be called instead so that the...

The crate documentation should handle how exactly missing and unknown fields are handled when de-serializing. Empirically it appears that unknown fields are ignored and that fields with default values are...

docs

https://github.com/RReverser/serde-xml-rs/blob/d824bca2f193d554bfe58d5de211994c7079bf12/src/ser/var.rs#L49 IIUC this can be done by creating a new serializer that is restricted to only "key safe" types instread of returning parent. Then that serilizer throws an error for...