Matthijs Kooijman

Results 993 comments of Matthijs Kooijman

> All good points. I wasn't happy having the pipes in the local directory. Unfortunately I do not remember my thinking at the time. I think point 2) is handled...

> The one thing I don't want is problems in this area. They are so tricky to debug and generally even trickier to fix and prone to introduce new errors....

I just tried compiling master to confirm it shows the problem, and reverted that revert to confirm it fixes the problem on JTAGICE3.

Scratch my last comment, bits are transmitted LSB first normally (I probably misremembered...)

A somewhat related issue: it seems bullets have some kind of off-by-one error? If I spawn a bullet directly above a boss, it passes through the boss without killing it,...

Yeah, that makes sense. However, if I spawn a bullet in the empty space directly above a boss, the boss also doesn't get killed. This suggests that the bullet moves...

> I like how that reads - feel like putting together a PR? :) If it's low-impact I'd be happy to include that. Thanks for your response! I would like...

Heh, after digging in deep to debug an infinite loop in arduino-builder, I found the problem is in the rice read function, find this bug report and see that @cmaglie...

> I am not comfortable providing a constructor from a pointer. Why not? In a constexpr context, AFAICS the compiler will perform static bounds checks so this should be safe?...

`string_view` is certainly interesting. For my particular usecase (basename) it suffices, except that I would still need your `static_string` class to allocate a new array containing just `file.cpp`. The code...