Tomas Rakusan

Results 13 comments of Tomas Rakusan

Use [`e.repeat`](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/repeat) That will be true on repeat firings of the event

Here is a simplified example ```js hotkeys('1', { keyup: true }, function(event, handler) { if (event.repeat) return const key = hotkeys.isPressed('1') console.log({ type: event.type, key }) }) ``` Result ```js...

I am using Mutter and I have found that `monitor->logical_width` is used before being set thereby causing `factor` and `width` in `dmenu_create_buffer` to be 0

At least for me (Mutter v42.0) the bug looks to stem from in `handle_global()` `panel->display_info.xdg_output_manager` never being anything other than 0

`panel->display_info.xdg_output_manager` is set in a later call to `handle_global` than monitors

I have not touched this project in 2 years and I currently do not have access to any FRC team or their bots so all testing I am doing is...

Sorry I had misinterpreted `NT: server: client CONNECTED: 127.0.0.1 port 4519` as meaning that the server is on 4519. The server is actually still on 1735 and I can not...

I am currently rewriting this library to change how the socket is handled internally and to stop it from being recreated on every `.start()` I should have version 2.0 finished...

Thank you for asking ### First there are 3 things to know 1. Each bot has only a single Network Tables server 2. In its simplest form a Network Tables...

Adding this is easy but first I would like to know your opinion on the following. If `.destroy()` is called after `.stop()` but before the socket closes, should the callback...