Davis Silverman

Results 19 comments of Davis Silverman

Looking at this, it seems the old importer produced an import with 0 entries, and the new with 2. Because there was no explicit error, but only a diff, the...

Currently there are 2 OFX importers use, the 'old' and the 'new'. In case of different results, 'old' is always used. However, in the case of this issue, 'new' would...

I solved this by just moving the condition outside of the `html!` macro call. This means more code-duplication but overall thats fine. It may be a more difficult problem when...

I license past and future contributions under the dual MIT/Apache-2.0 license, allowing licensees to chose either at their option.

Hi, I would also like that for a project of mine. Would this change be welcome?

Tests are passing now, needed to update a test.

```bash ▶ find -path "./target/release/build/mn-*/out" find: illegal option -- p ``` Looks like not even -path is working.

Thanks for submitting this! Although this succeeds for simple cases, it does not work for more complex examples. Luckily the code you wrote is on the right path, it only...

Here is the Rust example: ```rs use std::error::Error; use perspective::client::{ColumnType, TableData, UpdateData}; use perspective::server::Server; #[tokio::main(flavor = "multi_thread")] async fn main() -> Result { let server = Server::default(); let client =...