Results 8 comments of benthor

Please download and build a current version of https://github.com/DIGImend/usbhid-dump Then make sure that running `sudo usbhid-dump -es -m 256c:006e` and drawing with the stylus on the screen produces output. If...

All right, I've been able to reproduce the issue most people seem to be having. Following a cold reboot, my driver stopped working for me as well. It turns out...

Good find, although I'd rather not change the API. Maybe look into adding a counter to the expvar name that gets increased for every new instanciation?

I'm seeing this behavior as well. - hugo v0.134.3-5fb333b9f5ff4ec018f9d78910177d0bec1befb0 linux/arm BuildDate=2024-09-19T14:28:20Z - compiled with `CGO_ENABLED=0 GOOS=linux GOARCH=arm GOARM=6 go build -trimpath -ldflags "-w -s" -v .` On the server (an...

Unfortunately, `--printPathWarnings` does not produce any additional output in my case. Also I fail to see what a problem on my side could be if I simply need to re-run...

The problem is not in the slow initialization. It's in the fact that the sequence code slows down to a crawl as the algorithm proceeds, even though `seq` gets shorter...

Okay, do I understand this correctly - `seq = seq.where{ |n| n % elem != 0}` creates a new `WhereSequence` on top of the previous sequence - The documentation [states](https://wren.io/modules/core/sequence.html#where(predicate)):...

I found a much leaner optimization of `WhereSequence` than the cache list above. I opened a PR :) #1201