Juan Barrios

Results 8 comments of Juan Barrios

https://rootlesscontaine.rs/getting-started/common/login/ > Most Rootless Containers implementations need the $XDG_RUNTIME_DIR environmental variable to be set. When the environment variable is not set, features related to systemd and cgroups are unlikely to...

You can set up a [throttle function](https://codeforgeek.com/throttle-function-javascript/) with a large time difference to call from the result callback, so it will send the data on the first decode and then...

For what it's worth, the [ncurses announcement page](https://invisible-island.net/ncurses/announce.html) for v6.5 says: >These notes are for ncurses 6.5, released April 27, 2024. > >This release is designed to be source-compatible with...

There's a very recent upstream fix in kerl/kerl#520 for this, currently only on the main branch. You can recompile with ```sh $ export ASDF_KERL_VERSION=master export KERL_BUILD_DOCS=yes export KERL_DOC_TARGETS="chunks man" export...

The [typespec](https://github.com/nimiq/qr-scanner/blob/1cd3b15285a21662cb6057c7cf06fe412b00fe65/types/qr-scanner.d.ts#L30) defines this parameter as a function that receives the `HTMLVideoElement` and expects you to return a `ScanRegion`. ```javascript calculateScanRegion?: (video: HTMLVideoElement) => QrScanner.ScanRegion; ``` Your code should at...

In terms of the dropdown clipping within `.table-content` this seems to be a known issue from how the CSS spec and browsers treat overflow setting combinations. It's quite well explained...

Is it possible you have smart quotes enabled for double quotes in your keyboard input sources settings? Maybe macOS is being too helpful and not changing quotes between keyboard layouts....

> So, I lean toward storing values in the super and signals in a private map. Plus, it allows not to create signals for keys that were never read. >...