BaconWaifu

Results 28 comments of BaconWaifu

libgtk-3-0 version: 3.22.16-1

Can confirm the issue does not occur using gnome on wayland in the same setup; only with gnome on X11.

Can confirm. Filed a [ghidra bug](https://github.com/NationalSecurityAgency/ghidra/issues/3505) about it, as it relates to ghidra's handling of nested type declarations. A workaround is to emit the member in question as `struct Il2CppStringBuilder*`,...

Some further comments on the ghidra thread put this (IMO) firmly as a codegen issue. C officially doesn't support nested typedef without some form of forward-declaration, and Ghidra's parser is...

Would it be possible to modify the parser so each instance can have it's own `TextWriter` as "stdout"? The main scheduler can then buffer and order it appropriately without significantly...

you need CAP_NET_RAW to capture packets, and some root solutions don't give you that. What root are you using? (magisk, kingo, superSU, etc.)

From what I can tell, the UI is binding to localhost by default, and since `--net=host` only works on linux, it's impossible to access bettercap's "localhost" from outside the container....

You have to change the configuration so *bettercap* isn't binding to `127.0.0.1`. docker's `publish` binding affects where `docker` forwards the port from, but since bettercap is binding to the container's...

Some testing says that there's nothing that breaks if using a per-thread connection pool (technically per-fiber, using `Thread.current`) but there is another issue stopping that from *doing* anything: Pool creates...

tested adding an `http_wrap` method in Net, and wrapping the `each_chunk` in it. Opens a connection to the storage server even if one may not be needed, but it seems...