Rodrigo Batista de Moraes
Rodrigo Batista de Moraes
I read the first point about the SQL database, got intrigued, and found this project: https://github.com/atuinsh/atuin. I didn't test it or anything, just putting it here as it appears to...
@jesusmgg all done. Notice that the build of the new version of the font was not committed in this PR. If you want me to include it already built, let...
@jesusmgg Been a while since this PR was ready. Is there anything else that needs to be done before merging this?
As a workaround, you can try quickly clicking on the page before the game is loaded. I was able to get the sound working this way. So, another possible solution...
Thanks @anna-hope and @jacobbarssbailey for testing it out! In #7, I added a GitHub action that builds the project on macOS, and I think it is working now. If this...
This issue also affects the function `esp_ble_gatts_send_indicate`. I am trying to write the following code: ```c uint16_t length = 0; const uint8_t *value; esp_ble_gatts_get_attr_value(my_attr_handle, &length, &value); esp_ble_gatts_send_indicate(gatts_if, conn_id, my_attr_handle, length,...
I also have stumble on the same problem a while ago, and I fixed it by hardcoding the performance mode of the AudioStream as LowLatency, in my cpal fork: https://github.com/RustAudio/cpal/compare/master...Rodrigodd:cpal:oboe-low-latency...
Is there a workaround for this bug?
In Arch Linux, I was able to get the extension to work by copying the file from `/usr/lib/mozilla/native-messaging-hosts/firefoxpwa.json` to `~/.mozilla/native-messaging-hosts/`: ```shell sudo cp /usr/lib/mozilla/native-messaging-hosts/firefoxpwa.json ~/.mozilla/native-messaging-hosts/ ``` I did that based...
@medovy Yes, the JIT compiler can be sub-cycle accurate. Both the Interpreter and the JIT compiler keep track of how many cycles each operation takes, if sub-cycle accuracy is limited...