Jordan Running

Results 11 comments of Jordan Running

@davidmaxwaterman You can use [`Polymer.ArraySplice.calculateSplices`](https://www.polymer-project.org/2.0/docs/api/namespaces/Polymer.ArraySplice#function-Polymer.ArraySplice.calculateSplices) for this. The basic pattern looks like this: ```js static get properties() { return { notifications: { type: Array, statePath: 'notifications', observer: '_observeNotifications', }, };...

@nirvdrum I think that's definitely relevant, though I don't know if this project's maintainers would agree. If it's possible to make Travis run JRuby+Truffle I'd definitely +1 a PR to...

Is it possible to remove the requirement to use `http2: true` in order to get SSL? My use case is that I want to use koa-proxies (as recommended by [the...

Is there any update on this? I'm still seeing this issue in VSCode using lit-plugin 1.2.1.

Your `space` rule says any character other than `@` is a `space`, so your `}`s are being parsed as `space`s. Make your `space` rule more specific.

Another complication here is that `@media` and `@supports` queries can be nested indefinitely (I don't know if container queries can or not and Google didn't give me a quick answer)....

I copied this into my own HA instance and it works great. I hope this PR can get some attention from the maintainer(s)!

Since WHATWG has [abandoned the proposal](https://github.com/whatwg/html/issues/1520) for a `multiple` attribute for ``, I suspect @LeaVerou has understandably lost interest in maintaining this. However, a workaround is pretty easy. The problem...

Like I said, I think it's impractical to support cases other than `~/foo`. As far as I know sh, bash, zsh, csh and fish all work the same for this...

I've discovered that `require` is already in scope in `_.context.ts` (even though it's an ES module—confusing) and while `require('../../test.json')` doesn't work (it looks for `../../test.json.cjs`), `require.resolve('../../test.json')` _does_ work, so I...