Eric Wong

Results 8 comments of Eric Wong

@ajz34 The warning does go away by removing `attachment:`, however it still results in a broken image in the browser. In fact it thinks that `55e982a2-ff6d-4b22-ab40-ae563e0fb0a3.png` exists as an asset...

I am working on something that requires `gammaln` and `betaln` and I'm interested in adding support for these functions. I'm interested in contributing but will need some directions for me...

These functions are under `scipy.special`. Is it ok to have scipy as a dependency?

I don't think it's a problem with pyarrow per se, as it's reading regions that do not have overlap. And reading a local file always succeeds, threading turned on or...

I currently work around it by turning off threading in pyarrow, but I think the best way is to turn off caching. What is the best way to turn off...

Should we allow setting default cache_type in the `AbstractFileSystem` (as an argument to `__init__`)? I'm happy to submit a PR to fsspec. Also happy to implement a threadsafe cache

I decided to implement default cache_type in s3fs (PR #214 ). However when working on the cache I found that currently MMapCache is not pickleable. I guess it needs to...

If you don’t mind losing the cache content, you can try implementing __getstate__ and __setstate__