u
u
use startup option `-children=false`
It looks like idle events are not evicted fast enough after being received by client. Second idle command comes immidiately after response to first one, but event is still in...
Disregard previous message, adding delays doesn't change anything. mpd verbose log: ``` Nov 15 21:31:57 localhost mpd[143365]: client: [80] opened from 127.0.0.1:55972 Nov 15 21:31:57 localhost mpd[143365]: client: [81] opened...
https://github.com/alip/mpdcron/issues/27#issuecomment-1153935888 `Second event is being sent from LockUpdateSongTag function and only if song file is not local (nfs, http, etc.).` (thanks me) My files are not local (nfs), so I...
Ghidra and gdb-multiarch are running on 64bit host. Gdb-multiarch is connected to remote 32bit gdb instance on device. No gcc on device.
Addresses can be fixed by providing `-m32` flag to gcc, breakpoint's address looks fine, but it still segfaults. Solved the problem by using arm gcc and objcopy versions (`arm-linux-gnueabi-*`) in...
#88 removes all symbols when new symbol is introduced: ```diff --- a/decomp2dbg/clients/gdb/gdb_client.py +++ b/decomp2dbg/clients/gdb/gdb_client.py @@ -91,6 +91,10 @@ class GDBDecompilerClient(DecompilerClient): if new_entry: syms_to_add.append(symbol) + if len(syms_to_add) == 0: + syms_to_add.append(("test123",...
Error building from source code on Linux: failed to run custom build command for alvr_server v20.7.1
it fails due to missing `deps/linux/ffmpeg/alvr_build` directory that happens if ffmpeg was downloaded but not built because of some error you can remove `build` and `deps` directories, install all dependencies...
`Complete Link` skips notes unless you know exactly what you want to link: - same case - name starts with word under cursor - tags are ignored In my case...
Hooks are executed on MPD_PLAYER_IDLE events. MPD (tested on v0.22.4) sends 4 PLAYER_IDLE events from these functions on track change: ``` Player SeekDecoder Player CheckDecoderStartup Player OpenOutput PlayerControl LockUpdateSongTag ```...