Trevor Manz
Trevor Manz
Certainly! Thanks for pinging me. Has this landed in any other implementation, yet?
Thanks for the reference. I haven't had the chance to take a look but will soon.
Took me a bit, but implemented in #256 and released.
It is definitely possible. From a web browser you'll likely need to access datasets via [HTTP endpoints](https://docs.aws.amazon.com/AmazonS3/latest/userguide/WebsiteEndpoints.html) for object storage. These are generally available to setup on buckets for s3/azure/gcs....
Yeah, the idea was to keep the data in a TypedArray-like object for as long as possible (i.e., a strided view of the underlying bytes). But maybe this is more...
A thought I had yesterday. Maybe we could have a type-aware helper for coercing the data types: ```javascript let { data } = zarr.refineChunk(await get(array), { string: ({ data, shape,...
For example, with this PR, widget authors could extend directly from `traitlets.HasTraits` and work with regular ipywidgets: ```python import traitlets import ipywidgets from anywidget._descriptor import MimeBundleDescriptor esm = """ export...
@tlambert03, I'm really flummoxed here. I believe it's crucial to maintain compatibility with these top-level APIs from ipywidgets, but the deep connection with ipywidgets.Widget is really holding us back. I...
> if you could somehow "magically" make some anywidget object pass the isinstance(x, Widget) check, would that solve the problem? Yes... that would solve everything I think (if we also...
> not saying it's much better than what you're currently doing ... but I do definitely hesitate to monkey patch other peoples libraries, and they would be justified in being...