Alessandro Gatti

Results 160 comments of Alessandro Gatti

Same on current Arch and KDE6...

Probably I'm a little late to the party, but adding: ``` css #org-eclipse-ui-StatusLine { color: #999; } ``` seems to fix it for me. I'll probably make a pull request...

Yes, this only applies to extensions being loaded from the plugin's classloader. However things are a bit more complicated than I expected. Ghidra's loader is using the base path of...

Actually I might have spoken a tad too soon :( Turns out there are a couple more places in Ghidra where modules are registered - I'll keep looking and I'll...

Basically the fastest way to get this done would be to patch `GhidraApplicationLayout.findExtensionInstallationDirectories` to accept additional directories either via command line parameters to the main launcher, java properties set in...

I haven't looked at it with recent Ghidra versions to be honest, but I think nothing really changed. I solved this in code by creating a symlink to `/data` in...

Can reproduce on current master using a random no-name ESP32-D0WD board and an even more no-name sdcard adapter module, with the only difference that the return code is 0x107 the...

Does this patch make it work for you? ```diff diff --git i/ports/unix/modsocket.c w/ports/unix/modsocket.c index 6d6059ae4..f002276fd 100644 --- i/ports/unix/modsocket.c +++ w/ports/unix/modsocket.c @@ -343,6 +343,33 @@ static mp_obj_t socket_send(size_t n_args, const mp_obj_t...

I've had a quick test but I don't have the ability to test this across networks right now. On my LAN `socket.send` behaves as `socket.sendall` even for multi-gigabyte buffers so...

I've looked at this again and no matter what sort of socket options I set, `socket.send` always attempts to send the whole buffer in one go even on CPython -...