Dan Allan

Results 758 comments of Dan Allan

I think the current proposal to beat is: ```yaml structure_family: unknown structure: mimetype: "..." # e.g. "application/octet-stream", "text/plain;chatset=utf-8" length: ... # number of bytes ``` Maybe `unspecified` should also be...

I had no idea that `bytearray` was a common term beyond Python. I'm open to it. I agree we want to avoid attaching a negative connotation to this.

We use `application/octet-stream` as a MIME type when we send numpy arrays (or chunks of numpy arrays) as C-ordered buffers: ``` $ git grep "application/octet-stream" docs/source/explanations/compression.md:content-type: application/octet-stream docs/source/tutorials/export.md:* C-ordered memory...

> it's hard to argue against. ![](http://www.quickmeme.com/img/c2/c23b6a5f33675b62b923a03d4a1c92ee26b92e0c694cbc472fbea9d7fdeca39f.jpg)

Let's do it. #450 is a good reference for which parts of the codebase need to be touched to add a new StructureFamily. Some design things to nail down before...

I think we're on the same page. Compare to this array example, which has a `structure_family` (`"array"`) and a `structure` (see JSON below). ``` $ http https://tiled-demo.blueskyproject.io/api/v1/metadata/generated/small_image/ | jq .data.attributes.structure_family...

Follow-up thoughts here: 1. We already plan to add a route for accessing underlying files, discussed in #473, something like `/asset/{id}`. The route we want for this issue has the...

Hi, @ajasja. I implemented something like this using IPython's widgets (as opposed to Jake's ipywidgets). The widgets of ipywidgets are static -- every plot for every possible widget setting is...