konradmb

Results 20 comments of konradmb

Quick and dirty workaround ```flatpak run --command=yelp com.github.wwmm.easyeffects help:easyeffects/index```

First find which platform pulls outdated extension as dependency: `find /var/lib/flatpak/{app,runtime} -name metadata -type f | xargs grep org.freedesktop.Platform.html5-codecs` or by version: `find /var/lib/flatpak/{app,runtime} -name metadata -type f | xargs...

I've seen the same behaviour on GD32F103 since at least 2023-12 but without FT_MOTION and with COLOR_UI. Recently after lowering the DMA timings (as described in comment in `Marlin/src/HAL/STM32/tft/tft_fsmc.cpp`) the...

!nim cpp --gc:arc -d:useMalloc -passL:"-O1 -fno-delete-null-pointer-checks -g" --passc:"-O1 -fno-delete-null-pointer-checks -g" ```nim import std/[strformat] proc logWarning*(msg: string) = echo fmt"🟡 WARNING: {msg}" echo fmt"🟡 WARNING: {msg}" echo fmt"🟡 WARNING: {msg}" echo...

@Araq I've never used Valgrind before, but I've attached the output in the issue description above (inside collapsible). I think the relevant info is here: ``` valgrind: m_mallocfree.c:304 (get_bszB_as_is): Assertion...

Valgrind log summary ``` $ valgrind ./crashtest ==351675== Memcheck, a memory error detector ==351675== Copyright (C) 2002-2024, and GNU GPL'd, by Julian Seward et al. ==351675== Using Valgrind-3.25.1 and LibVEX;...

```c++ N_LIB_PRIVATE N_NIMCALL(void, prepareAdd)(NimStringV2& s_p0, NI addLen_p1) { NI TM__Q5wkpxktOdTGvlSRo9bzt9aw_74; if (nimAddInt(s_p0.len, addLen_p1, &TM__Q5wkpxktOdTGvlSRo9bzt9aw_74)) { raiseOverflow(); }; NI newLen_1 = (NI)(TM__Q5wkpxktOdTGvlSRo9bzt9aw_74); { NIM_BOOL T3_; NI TM__Q5wkpxktOdTGvlSRo9bzt9aw_75; NI TM__Q5wkpxktOdTGvlSRo9bzt9aw_76; T3_ =...

@Yardanico I can reproduce this one on `--gc:none`, `--gc:arc`, `--gc:orc`, `--gc:refc`. Although error messages are slightly different, it still generally boils down to "...has no member named ‘has’" Also, compiler...