Kagami
Kagami
Not sure if that was fixed but it seems to be working now: ``` Stream #0:4: Video: png, rgba(pc), 504x625 [SAR 3780:3780 DAR 504:625], 90k tbr, 90k tbn (attached pic)...
I have a slightly different issue: thumbnails in Finder search are (mostly) fine but I don't have thumbnails in the quick Spotlight search (the one which you open with Cmd+Space/F4)....
I can confirm, there's something very wrong with how getWorkflowStaticData writes/reads the data. I have simple Code node with state and sometimes I get wrong data when reading from the...
>do you also have a few workflows being triggered at the same time or are you getting it from individual runs? I have one workflow which is run every 3...
Oh, didn't notice it in your report, but that might be somehow related (although I don't understand how 😄). I had another workflow which run every 2 minutes and also...
> Did the issue continue with it set to 1 hour? Update of my workflow happens rarely so I can't say yet for sure. I will post if issue happens...
> Some formatting tools may generate code like this Transpile your code to ES5 before running with MuJS. If you use TypeScript, it's just `--target es5` option.
Or with jq: ```bash restic snapshots --json | jq '.[-2].id,.[-1].id' | xargs restic diff ```
Took me about 20 minutes to come with this solution: ```jsonc // package.json "scripts": { "test": "TS_NODE_PROJECT=test/tsconfig.json node --test --import=./test/register.js test/**/*.spec.*" }, ``` ```typescript // test/register.js import { register }...
I switched to https://github.com/swc-project/swc-node because imports without `.ts` extension doesn't work with ts-node. ```jsonc // package.json "scripts": { "test": "node --test --import=./test/register.js test/**/*.spec.*" }, ``` ```typescript // test/register.js import {...