Sergey Vlasov
Sergey Vlasov
What input language and keyboard layout are you using in Windows? According to the VK codes, QMK is sending `KC_U`, `KC_0`, `KC_1`, `KC_6`, `KC_D` (`"u016d"`); however, Windows interprets `KC_0` as...
The problem with numeric keypad is that its behavior depends on the Num Lock state at least in Windows. The code for `UNICODE_MODE_WINDOWS` has some special handling for that (it...
In your schematic the DVDD pins of RP2040 are connected to 3.3V, but the nominal voltage of that power input is 1.1V (the acceptable range from the datasheet is 1.05…1.16V)....
I can reproduce the problem even with this `dummy.py`: ```python def application(environ, start_response): status = '200 OK' headers = [('Content-type', 'text/plain; charset=utf-8')] start_response(status, headers) return [b"Hello, World!"] ``` and the...
Actually it turns out that `systemd` passes environment variables in a different order that probably avoids the bug: ```sh LANG=ru_RU.UTF-8 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin NOTIFY_SOCKET=/run/systemd/notify LISTEN_PID=11334 LISTEN_FDS=1 LISTEN_FDNAMES=... ``` So if my systemd...
> Is there any distro around, which still ships `gpg1` as `gpg`? [ALT Linux](https://distrowatch.com/table.php?distribution=alt) even in the latest development branch has [`/usr/bin/gpg` in the `gnupg` package](https://packages.altlinux.org/en/sisyphus/binary/gnupg/x86_64/files/3150578939919885177), and [`/usr/bin/gpg2` in the...
Your definition of `LAYOUT_60_iso` does not match the [`60_iso` community layout](https://github.com/qmk/qmk_firmware/tree/master/layouts/community/60_iso), therefore building the [`default_60_iso` keymap](https://github.com/qmk/qmk_firmware/blob/master/layouts/default/60_iso/default_60_iso/keymap.c) fails. Apparently your PCB supports multiple layout options, so you need to provide several...
You need to provide the matrix positions (`"matrix": [0, 0]` and the like) in all layouts, not just `LAYOUT_all` (QMK can't deduce that info from another layout).
> they insist that IPA should by default own the entire UID space, and not be confined to some range If we were starting from scratch, we could define a...
> > If a UID is not locally known, is known to be in the subordinate UID range, and cannot be fetched from the network currently, would that user database...