Kevin Cox
Kevin Cox
Often when tests have an order problem you want to remove tests to see which two (or more) tests are causing the problem. However previously adding or removing any tests...
Currently if you have a list of tests that you are running and you add or remove one the entire list gets shuffled differently. It would be much nicer if...
There should be a way to mark enum variants as private. Possible syntax: ```rust enum MyThing { priv OneState(Foo), priv OtherState(Bar), } ``` ## Motivation Type authors should be able...
It will panic if you don't return `Continue` and the callee has no way of knowing if they are being called from a "normal" code path where you are allowed...
I was seeing a confusing error deserailizing a list. It was extra strange because this was working in other places in my code. It seems that there is a weird...
It would be nice to be able to skip fields during clone. For example caches and other fields can be safely ignored as they won't change the semantics of the...
### Describe the problem to be solved I've been using PeerTube feeds for a while now and overall they work well. However a major limitation is that the feeds only...
While there is a lot of public API it seems that the core method is [readability::extractor::extract](https://docs.rs/readability/latest/readability/extractor/fn.extract.html) with `scrape` as a small wrapper. However this function makes a lot of assumptions....
```zsh root_usage="Size: 222151426, NumBlocks: 20587" root_usage=${${root_usage##Size: }%,*} echo $root_usage # Prints 222151426 ``` ``` resholve --overwrite my-script root_usage=${${root_usage##Size: }%,*} ^ my-script:57: error: Expected } to close ${ ``` Note that...
This project appears to be dead. - The last commit is over a year ago. - Issues and even small bugfix PRs have gotten no response. - I've reached out...