PinkPandaKatie
PinkPandaKatie
I ran into this issue recently and implemented a workaround by converting the original table from `[[in_value, out_value], ...]` to `[[in_value, index], ...`, calling `floor(lookup(...)` on that, then using that...
Windows 7 Ultimate. Any use of sizeof() is always a compile time constant. DRIVE_LAYOUT_INFORMATION is defined as ``` typedef struct _DRIVE_LAYOUT_INFORMATION { ULONG PartitionCount; ULONG Signature; PARTITION_INFORMATION PartitionEntry[1]; } DRIVE_LAYOUT_INFORMATION,...
Either way, allocating it only once works well and it's more efficient that way. On Sun, Jan 28, 2024, 22:11 pca006132 ***@***.***> wrote: > I think the root cause is...
It doesn't seem to work. I think the ptrace protection might be interfering with the alarm, because when I run it under strace, it spits out an error about not...
I tried to cherry-pick commit 167420c23 that fixes this bug onto 6.3.0, but there was another commit in 6.3.0 that I had to revert first. Commit 44357a22f fixed a scenario...
@jordanbrown0 I actually already defined a function like that: ``` function coalesce(a, b, c, d, e) = ( !is_undef(a) ? a : !is_undef(b) ? b : !is_undef(c) ? c :...
@kintel I joined the mailing list and sent a message. I don't know if it went through because it's not showing up on the archive but maybe there's just a...
I asked about this on the mailing list and there wasn't much opposition. The thread just kinda went stale. I still think it could be useful.
I'm ok with it being experimental but I'm not sure how to do that. I could also write some tests for it.
I did a bit of digging, and it looks like this case is supposed to be handled, in `src/state/printer_state.cpp`:  `load_unload_attention_while_printing` looks for `MMU_ERRWaitingForUser`, which the `FILAMENT_EJECTED` error should set:...