Jeremy Maitin-Shepard

Results 232 comments of Jeremy Maitin-Shepard

The lack of support for IIFE is also particularly unfortunate because currently Firefox does not support esm for web workers, which means esbuild code splitting cannot be used for web...

Thanks for the suggestion. When bundling and not using code splitting, is there any significant difference between esm and iife format? I do want splitting for worker bundles, so unfortunately...

This article provides a very good explanation of the complexity of using fadvise on Linux: http://insights.oetiker.ch/linux/fadvise.html It is indeed the case that FADV_DONTNEED will purge the file from the cache...

Some portions of the matching algorithm are unfortunately exponential in the number of postings in the transactions being considered for a given match. Due to the nature of the problem...

Thanks --- one thing that would be very helpful is if you can first create a test case to be added to `matching_test.py` that reproduces the problem. That will make...

Thanks, that is very helpful. Note that in matching_test.py, the tests do add entries to the posting_db ---- that is what the journal parameter is for.

That's great. I think an alternative to bucketing by amount is to bucket by currency, and within each currency bucket, sort the list by amount. That way a binary search...

The large number of matchable postings comes from the fact that we don't just match individual postings, but also match groups of various subsets of postings, because particularly with Amazon...

I think it would make sense to start with subsets of 1, then add in subsets of 2, etc. until some (possibly configurable) limit on the number of MatchablePostings is...

After importing some entries via generic importer, what is supposed to happen is that beancount-import recognizes the postings to the imported accounts as "cleared" by the presence of the source_desc...