Den
Den
This script worked me https://gist.github.com/dzianisv/554cc93fdb072acb4eb9ed9f672ace85 or, in case you reviewed script and trust it ```sh curl "https://gist.githubusercontent.com/dzianisv/554cc93fdb072acb4eb9ed9f672ace85/raw/80e2e2710c143e1c891a0085c10ec1c03f5531ed/install.sh" | bash ```
I flashed in the following way ```bash export PUBKEY=4jSeYlz7GAhKYQBjXS1Ku06A5+UjV2CfvEATNw== firmware=opnehaystack-nrf51822-firmware.bin ./key-injector.py < /Applications/OpenHaystack.app/Contents/Resources/firmware.bin > $firmware openocd -f interface/stlink-v2.cfg -f target/nrf51.cfg -c "init; halt; nrf51 mass_erase; program $firmware verify; program $firmware;...
> @dzianisv What battery life do you get with this beacon? https://aliexpress.com/item/1005003671695188.html?sku_id=12000028906157906 with CR2025 it works about 14 days, looks like the firmware has to be optimized, for instance a...
Looks like ```shell cmake $(Build.SourcesDirectory)/cmake -Donnxruntime_ENABLE_CPUINFO=OFF -DPython_EXECUTABLE=/usr/bin/python3 -DPYTHON_EXECUTABLE=/usr/bin/python3 -DCMAKE_BUILD_TYPE=Debug -DCMAKE_TOOLCHAIN_FILE=$(Build.SourcesDirectory)/cmake/linux_arm32_crosscompile_toolchain.cmake -G Ninja ninja ``` builds a shared library, but how I can built a final wheel using for instance docker...
Not familiar with syncthing codebase, but I need this feature, therefore I would start to work on this I will be grateful on the guidelines a files / modules I...
There is a discussion on forum https://forum.syncthing.net/t/selective-sync-feature-most-important/16394/54
I figured out that class name fido2.ctap1 was renamed from CTAP1 to Ctap1, https://github.com/Yubico/python-fido2/blame/ee319bea29bf9ba33572c6f2726db6000ff99f61/fido2/ctap1.py#L199
Interesting, `class CTAP1` is available at https://vscode.dev/github/Yubico/python-fido2/fido2/ctap1.py#L199 ``` $ git describe --tags 0.8.1-54-gee319be ``` But `solo1-cli` https://github.com/solokeys/solo1-cli/blob/a637aad18433e4eb54a5ff2c1a0087db5296d6f8/pyproject.toml#L17 defines ``` fido2 >= 0.9.1 ```
I am not sure that it is the best fix here, but I updated dependencies in solo1-cli https://github.com/dzianisv/solo1-cli/commit/4fd1165444b507c739964d70b120f99b0f54c74e, then used an updated solo1-cli to build a docker image and then...
Same issue, I started server with ```shell ./server --host 127.0.0.1 --port 8083" ``` And the request ```shell curl localhost:8083/inference \ -H "Content-Type: multipart/form-data" \ -F file="@$HOME/Downloads/1.ogg" \ -F temperature="0.0" \...