jneem
jneem
+1 on allowing `Frame` to have dynamic size. When looking in how to use `dasp_signal` for processing `wav` files, I noticed that the [resample example](https://github.com/RustAudio/dasp/blob/master/examples/resample.rs) is buggy: it pretends to...
Maybe @blogle can be persuaded to take a quick peek. Otherwise, I think it's ready to merge.
FWIW, the [regex-dfa](https://github.com/jneem/regex-dfa) crate makes it trivial to check whether the regex is one-pass: the DFA created by regex-dfa is minimized, and so it's one-pass iff it has no branches....
This was done in #185
# LSP - [ ] **Faster reference finding**. Definition-finding in LSP is fairly fast, but reference-finding might be slow, as it currently works by identifying many possible references, and then...
Isn't `AdcCalBasic` the API for obtaining the raw 12bit resolution? Whatever the units for `AdcCalLine` are, if the gain coefficient is less than 1 there will be a loss of...
> Fundamentally, that TokenInfo represents an OAuth2 access token I agree that it would be nice to have a better separation between ID tokens and OAuth2 access tokens, but as...
I think we discussed a version of this already, but one possible way to avoid the unsafe would be to push continuations (represented as `Box`) on the stack. There are...
Thanks for looking into this! It turns out that I wasn't using --release (I had assumed that `cargo bloat` defaults to it, because that would make sense...). My test cases...
Actually, it's worse than that: I need `XCBConnection` for cairo interop, so I'm linking `libxcb.so` anyway :shrug: