Results 640 comments of Vadim Kantorov

`wp option list --format=json | jq '.'` - yes, that's what I'm using now, but it adds one more Ubuntu package dependency... I think, for the usecase of `wp option...

Doing the batch import is more unwieldy :( An attempt to export all options as JSON and then import them back: ```shell wp option list --format=json | jq '.' >...

Also, neither `cat exportOPTIONS.json | python -c 'import json,sys,subprocess;[subprocess.run(["wp","option","update",el["option_name"],el["option_value"]]) for el in json.load(sys.stdin)]'` nor `cat exportOPTIONS.json | python -c 'import json,sys,subprocess;[subprocess.run(["wp","option","update","--format=json",el["option_name"],json.dumps(el["option_value"])]) for el in json.load(sys.stdin)]'` work - and fail with...

DALI supports some audio formats (flac, wav, opus), but not all. And it has other important limitations (e.g. https://github.com/NVIDIA/DALI/issues/5597) A simple, hackable pure-ffmpeg-powered (compiled agains libavcodec/libavformat etc) backend would still...

If DALI / ffmpeg / libsndfile are supported, would be nice if they allowed to specify offset/length/channels to cap the returned output's size, and also always returned file metadata (e.g....

Ohm nice, I guess then it's just the `FILE*` helper that's missing (its impl should be very similar to `archive_read_data_into_fd`). It's good to support it as libc stdio often supports...

Should a function like this work? (a simple change lseek->fseek and write->fwrite of https://github.com/bramp/libarchive/blob/master/libarchive/archive_read_data_into_fd.c) Are there any problems with `long` being unsufficiently short dtype? or is the cast fine? Regarding...

> * Standard C requires `fseek` to return 0 on success. So I think your `fseek` logic here is wrong. Thanks! Right! Also, a question on data dtypes. fseek/ftell use...

Hi @kientzle @evelikov, I created a draft: - https://github.com/libarchive/libarchive/pull/2504 Could you please take a look to settle the questions remaining. And if all good, I'll then try to move the...

What worked for inlining the SVG icons into CSS using the built-in Vite SVG inlining: - moving `public/icons/` to `assets/icons/` - replacing `url(icons/...)` with `url("../assets/icons/...")` I think, for toolbar icons...