Alex Efros

Results 166 comments of Alex Efros

> How is this value generated? I'm not sure how to tell which code points are double-width. Manually. :disappointed: > Also, I think `e0a0-e0c8:w` overlaps with `e0a0-e0a3:p` and `e0b0-e0bf:p`? Yeah,...

This issue is still actual and pretty annoying (we've to setup health checks once per 30-60 seconds instead of 1-5 to avoid high CPU usage). What's mean "stale" and which...

I had the issue on 20.10.23. I didn't upgraded to 23.0.1 yet, but changelogs didn't mention fixing anything related AFAIR.

At a glance, as a healthcheck-specific solution, it may make sense to do exec just once (to run some docker-specific long-running helper service) and then execute given command every N...

While re-emerging world after profile update to 23.0 I got this error: ``` app-emulation/faudio:0 (app-emulation/faudio-23.02:0/0::gentoo, ebuild scheduled for merge) USE="-debug -dumpvoices -test" ABI_X86="(64)" pulled in by app-emulation/faudio (Argument) (app-emulation/faudio-21.01:0/0::gentoo, installed)...

Another one: `fatal error: sync: unlock of unlocked mutex`.

Complete list of `fatal error:` for Go 1.19: ``` $ rg 'fatal[(]"' | sed 's/.*fatal("\(.*\)")/\1/' | sort -u all goroutines are asleep - deadlock! AllThreadsSyscall6 results differ between threads; runtime...

Well, actually it's not a complete list. There are a several hundreds `throw("…")` calls which also output as a `fatal error:`, e.g.: ``` $ ulimit -H -v 100000; ./app fatal...

This key can be used to attack only this one machine, yes. But this isn't same as "no risk", at least for owner of that machine.

Here are these two complex examples formatted by [Prettier](https://prettier.io/) community [sql plugin](https://github.com/un-ts/prettier/tree/master/packages/sql) with option `indentStyle: tabularRight`: ```sql INSERT INTO asset_report_line (asset_id, report_id, amount, department_id, warehouse_id) SELECT ai.id, in_report_id, asset_dep__straight_line_base (...