Dan D'Avella
Dan D'Avella
@kingosticks thanks for taking a look at this PR. You have pointed out an important limitation of the change that I have made. You are correct that backends that don't...
I'm open to a different approach. The reason for choosing limit/offset semantics is because that is what `Mopidy-Local` currently implements and I was hoping to simply expose it through the...
@adamcik based on my quick read-through, it looks like a really similar idea. Basically I'd just like to be able to talk about something like `backends.local.library.search` from a client, rather...
Just for posterity, here is what my `~/plugins/vue-carousel-3d.js` file looks like to get this working: ```javascript import Vue from 'vue'; import { Carousel3d, Slide } from 'vue-carousel-3d'; Vue.component('carousel-3d', Carousel3d); Vue.component('carousel-3d-slide',...
It's possible that `tag` should not be mandatory since not all schemas end up being associated with YAML tags. For example, a schema may only be included as a reference...
If the intent is truly to store a scalar value, then an array should not be used at all, so the use of `ndarray` is not relevant. YAML natively supports...
Hi @almarklein, thanks for getting in touch, and best of luck to you with BSDF. Just out of curiosity, if ASDF used JSON instead of YAML for its metadata representation,...
You're not wrong: but I think the features of YAML that we're using (like references) could be pushed into the ASDF library itself in order to support JSON, if that...
Hi @bblais, thanks for the bug report. I am able to reproduce this and will investigate further. This looks like it may actually be a limitation of the YAML implementation...
This does in fact appear to be a limitation of `pyyaml`. Consider the following example: ```python import yaml mydata = { 'hello':'there', (6,5):'bad key', 'that':6 } s = yaml.safe_dump(mydata) yaml.safe_load(s)...