Joe Pea
Joe Pea
@benjamn Got a chance to look at this yet? The issue is reproducible, it's a simple Meteor 1.3.1 app. On a related note, I discovered that code following the await...
Just a thought, simplifying the GNOME decorators idea: ```js // uses default flags @GObjectBoolean(false) get flag() { this.emit('event', 99, 'Message'); return this.#flag; } //... // but customize flags @GObjectBoolean(false, GObject.ParamFlags.READWRITE...
Thanks @PaulCapron for the help here with `DOMPoint`! :) Personally I stopped using `DOMMatrix` in my [other project](https://github.com/trusktr/infamous) in favor of [`THREE.Matrix4`](https://github.com/mrdoob/three.js/blob/253214d1ac9e72155d7cb3e77df2715c7b93d486/src/math/Matrix4.js), at least for the time being, so I...
The only workaround for this for now is to query the document for `` or `` elements, then add them to your ShadowRoot. `StylesSheet`s can be added to `this.shadowRoot.adoptedStyleSheets` in...
Update. Yep, I _was_ able to install before! I've pinned my dependencies, ``` "glfw-raub": "4.6.0", "webgl-raub": "2.2.4", ``` without the `^` and now I'm back in business. The newer releases...
Ah, I'm not back in business. The `npm install` now works with the pinned versions, but this at least allows me to `npm install` locally in my [super repo](https://github.com/lume/lume), and...
Hey, Google Meet should work fine. It would be sweet if GitHub Actions had ARM. So far I need only webgl-raub and glfw-raub, doing `Document.setWebgl(webgl)` then a few small custom...
Maybe this can help: https://github.com/uraimo/run-on-arch-action
Hello Luis! Sounds good. Keep us posted. :) The project is on pause for now, because focused on a new TS-to-Wasm compile process, but will circle back once that's in...
> I _could_ tell people to run corepack enable. I could also try to automate that, but it could interfere with someone else's flow. On second thought, that'll be difficult,...