Diego Casorran

Results 81 comments of Diego Casorran

It'll support it later or sooner. I'm a little more concerned about signing requirements, though.

No creative ways around that i guess :) Just restricting this extension to the unbranded/devedition/nightly niche ;-)

Hi there, This turned into an interesting discussion :) Thanks @Noitidart for the provided links. Looks like unlisted addon status and the self-sign API could be the perfect _"workaround"_ we...

Heh.... take a look: http://ask.mozilla.org/question/199/how-would-you-package-a-sdk-based-add-on-without-using-the-sdkpython/ As you can see, i posted that more than a week ago and didn't get a reply yet on how to do that.... For everyone...

Hi, thank you, pleased you guys are positive about those kind of changes. Well, the manual queue for queueMicrotask can be seen as subjective yes, i think it could help...

> video.src = URL.createObjectURL(new Blob([data.buffer], { type: 'video/mp4' })); This kind of usage will always raise an OOM with any relatively large video, rather the transcoded chunks should be streamed...

Blobs in Chrome may be disk-based, so using them may doesn't hit an OOM like in Firefox, memory is finite just like persistent/disk storage or given the restrictions browser vendors...

Same here...someone at my team used the es2021's `replaceAll()` method and there was no warning thrown from ESLint, the code ended up in production and disaster happened... Moreover, i have...

Hi there, looking for some feedback... what do you guys think about this `bulkUpdate` implementation, i.e. am i missing something? ```js MyDexie.prototype = Object.create(Dexie.prototype); MyDexie.prototype.bulkUpdate = promisify(function(resolve, reject, table, bulkData)...