Charles Huber
Charles Huber
On my Logitech G100s going through Xorg's `libinput` driver (the default on Stretch, I think) and "3 lines" in the KDE config page I get a `Key:258`/`Key:259` every one (occasionally)...
The Konsole that Debian Stretch ships: > **Konsole** > Version 16.12.0 > Using: > * KDE Frameworks 5.28.0 > * Qt 5.7.1 (built against 5.7.1) > * The xcb windowing...
Per the comment in [`KeyStoreUtils.java:getKeyStoreFiles()`](https://github.com/MuntashirAkon/AppManager/blob/v3.0.1/app/src/main/java/io/github/muntashirakon/AppManager/utils/KeyStoreUtils.java#L40-L54): ``` // For any app, the key path is as follows: // /data/misc/keystore/user_{user_handle}/{uid}_{KEY_NAME}_{alias} ``` ...here is what's in `/data/misc/keystore`: ``` phhgsi_arm64_ab:/ # ls -alh /data/misc/keystore/...
[This StackOverflow answer](https://stackoverflow.com/a/72160533) suggests this is an Android 12 issue: > After digging a bit more into the code of the new KeyStore introduced in Android 12, I found that...
[App Manager](https://github.com/MuntashirAkon/AppManager) can launch the `.HyperRogue` activity directly via the "Activities" tab.
Got the [`AndroidMultiVNC-2.1.1`](https://github.com/bk138/multivnc/releases/tag/AndroidMultiVNC-2.1.1) tag to build on Windows with Visual Studio 2019. Required CMake 3.25.2 (so [`wxWidgets_ROOT_DIR`](https://cmake.org/cmake/help/v3.25/module/FindwxWidgets.html) would work properly with the [wxWidgets v3.2.1](https://github.com/wxWidgets/wxWidgets/releases/tag/v3.2.1) binaries) and some fix-up patches: *...
Ditto for bookworm: https://www.debian.org/News/2023/20230610 Dropping `/etc/apt/sources.list.d/mxe.list` down to `bookworm` causes `apt` to claim to perform some sort of disk-freeing miracle: ```none $ sudo apt-get install mxe-{i686,x86-64}-w64-mingw32.{static,shared}-cc ... The following NEW...
Similar `HumbleAuthenticationException` issue on my end; had to make sure I grabbed the entire `_simple_auth` string, quotes and all, and put them in single-quotes in the config file: session-cookie: '"xxxrandommixtureofuppercaselowercaseandnumbersxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\012\012|1234567890|xxxkindalookslikehexxxxxxxxxxxxxxxxxxxxx"'
Bumping `api_version` to `"1.3.0"` in `vkdevicechooser.json` seems to work on my system: ``` diff --git a/vkdevicechooser.json b/vkdevicechooser.json index efa18fb..6aaa6b9 100644 --- a/vkdevicechooser.json +++ b/vkdevicechooser.json @@ -4,7 +4,7 @@ "name": "VK_LAYER_AEJS_DeviceChooserLayer",...
Quick 'n dirty `VULKAN_DEVICE_INDEX=list` implementation: ``` diff --git a/layer.cpp b/layer.cpp index 3863862..f7b6b4d 100644 --- a/layer.cpp +++ b/layer.cpp @@ -5,6 +5,7 @@ #include #include #include +#include #include #include @@ -63,6 +64,28...