Results 79 comments of Sam Denty

Documentation is my next main goal. I'll try and get some more "demos" / guided tutorials working in the interface so you can test it without needed to read the...

Though not videos, I'm writing up the docs now => https://injectify.github.io/

https://injectify.github.io/getting-started/installation/mongodb/ https://injectify.github.io/getting-started/installation/github/ https://injectify.github.io/getting-started/installation/configuration/ https://injectify.github.io/getting-started/installation/setting-up/ https://injectify.github.io/usage/project-config/roles/ https://injectify.github.io/usage/project-config/filters/ https://injectify.github.io/usage/project-config/api/

getting this as well, can do a teamviewer too if needed

Inflate works correctly with pako: ```ts const data = Buffer.from([ 120, 156, 13, 201, 49, 14, 128, 32, 12, 0, 192, 157, 87, 52, 44, 76, 141, 187, 147, 95,...

This seems to be because the files weren't included in the `paths`, is this the intended behaviour? It worked in parcel before adding this plugin. If it is, possibly a...

Created https://github.com/samdenty/comlink-extension which does just that: ```ts import { createBackgroundEndpoint, isMessagePort } from "comlink-extension"; import * as Comlink from "comlink"; chrome.runtime.onConnect.addListener((port) => { if (isMessagePort(port)) return; Comlink.expose( { test() {...

Any update? Don't want to have to use AutoIT to manipulate the window

getting this error, the above not working as a workaround

```rust let max_width = 1024; let max_height = 1024; let mut width = img.width(); let mut height = img.height(); let aspect_ratio = (width as f32) / (height as f32); if...