Vincent Rubinetti

Results 267 comments of Vincent Rubinetti
trafficstars

I'm not sure (because it seems to be inconsistent) but I think this still happens. Using the "refresh table" button at the bottom seems to work for me all or...

Here is some under-the-hood code I've been experimenting with: ```ruby # test data data = [ {"name" => "Jane Smith", "date" => "2015-01-01"}, {"name" => "John Smith", "date" => "2019-02-01"},...

With this solution, you could use any valid Ruby expression. It's literally just evaluating the string you pass to `filter` as Ruby code, seeing if it evaluates to true/false, and...

I assume you mean passing `{ immediate: shouldRun }`? In my opinion, that is basically the same as `if (!shouldRun) return;`, a hack/workaround for unexpected behavior. I think if the...

> { "scripts": { "prettier:enforce": "prettier \"abc-abc/web/src/wer/fwer/xsssf/src/js/something/**/*.{js,json,css,md}\" \"abc-abc/web/src/wer/fwer/xsssf/src/js/anotherthing/**/*.{js,json,css,md}\" \"abc-abc/web/src/wer/fwer/bbb/src/js/yetanother/**/*.{js,json,css,md}\" \"abc-abc/web/src/wer/fwer/xsssf/src/js/else/someother.css\" --check", "prettier:fix": "prettier \"abc-abc/web/src/wer/fwer/xsssf/src/js/something/**/*.{js,json,css,md}\" \"abc-abc/web/src/wer/fwer/xsssf/src/js/anotherthing/**/*.{js,json,css,md}\" \"abc-abc/web/src/wer/fwer/bbb/src/js/yetanother/**/*.{js,json,css,md}\" \"abc-abc/web/src/wer/fwer/xsssf/src/js/else/someother.css\" --write", } } I was hoping to avoid this specific scenario (duplicating the...

I'm not sure what, if anything, changed since you created this issue, but I was able to create a basic working example of this with Vite + React: **encode-worker.js** ```js...

Tried comlink and it also worked! Here's a fuller example: ```typescript import { wrap } from "comlink"; import Worker from "./encode?worker"; import type { WasmMediaEncoder } from "wasm-media-encoders"; type MP3Params...