Chris Cowan
Chris Cowan
I noticed the ".gclient_entries" file has a mapping of directories to git repos. I assume one of the setup.sh/config.sh/build.sh scripts were supposed to read this and automatically do something with...
This is my single biggest concern when considering using JSR (or Deno) more. I need to be able tweak my application's dependencies locally in their original source form and run...
Deno is adding a feature to allow an application to substitute out an npm package (https://github.com/denoland/deno/pull/28512), in addition to its support for substituting out a JSR package. The `jsr` (or...
Publishing to JSR even while only supporting Deno would still be very useful, because packages on JSR can't depend on https imports (including anything in deno.land/x) but can depend on...
I ran into the same exact issue as @mbbutler where `digit0` being used within `recognize` caused input to be skipped while not being part of the segment returned by `recognize`:...
I've made a workaround to use until the fix in https://github.com/rust-bakery/nom/pull/1811 gets merged: ```rs use nom::{Input, Offset, OutputMode, PResult, Parser, error::ParseError}; /// [`nom::combinator::recognize`] but with a workaround for /// https://github.com/rust-bakery/nom/issues/1808...
The InboxSDK ignores any rows that lack an `id` value. I've just now merged a change so that the InboxSDK also ignores thread rows with the `bundle` or `inboxsdk__ignore_row` classnames....
WebAssembly in the main thread already has to be paused while the main thread does garbage collection because they're in the same thread. (You can run WebAssembly in a web...
Canvas is a DOM API (though there is [special support for accessing canvases inside of a web worker](https://developers.google.com/web/updates/2018/08/offscreen-canvas); browser support isn't very wide yet), and if you want to read...
I think the [Observables proposal](https://github.com/tc39/proposal-observable) (in [stage 1](https://github.com/tc39/proposals#stage-1)) is intended to offer an alternative to `addEventListener` for standards that aren't part of the DOM (where EventTarget is standardized). An observable...