N
N
Is there an option to let hjkl scrolling work while hints are shown, and redraw the hints on each scroll?
``` Date: 4/11/21, 1:28 AM Process: ReportMemoryException Bundle id: (null) Device: iPhone XS Max, iOS 14.3 Exception type: EXC_SOFTWARE (SIGABRT) Exception subtype: EXC_UNIX_ABORT Exception codes: 0x0000000000010002, 0x0000000000000000 Culprit: Unknown Triggered...
quick and dirty: ```js // increment or decrement page var incrementPage = function(amount) { var currURL = window.location.href; const regex = /(\d+)$/; var matches = currURL.match(regex); if (matches.length > 0)...
```js const regex = /(\d+)$/; ``` The regex contains the '$' symbol, which will match for the end of the URL only, so for `good.com/?user=122&someid=999&page=5` only the value of 'page'...
I've tried to implement the functionality on a fork, commit is here: [https://github.com/neta540/headscale/commit/b1578a1ddead32cedf536f418ffdd669e83ebeed](https://github.com/neta540/headscale/commit/b1578a1ddead32cedf536f418ffdd669e83ebeed) This commit adds the functionality to set custom responses for the STUN server, allowing the server to...
I eventually used a custom STUN server instead of the one provided by Headscale.
On a raspberry pi you can run ARM 32 or ARM 64 bit compatible images, not x86_64 images. ARM 64 bit is often notated as aarch64.