Rob Janssen

Results 158 comments of Rob Janssen

I could also use this. The workaround for this we use now is an overload: ```c# interface MyApi { [Get("/foo/{bar}")] GetFoo(string bar); [Get("/foo/{bar}/{baz}")] GetFoo(string bar, string baz); } ``` This...

I haven't used the Arduino IDE in a (long) while. I'm not sure it still insists on `.ino` files, but the `.cpp` file _should_ work otherwise; the only real change...

Changing `main.cpp` to **only** contain this: ```cpp #include #include #include #include "../../ArduinoProgrammerFirmwarePrototype/ArduinoProgrammerFirmwarePrototype.ino" ``` ...and adding this to `ArduinoProgrammerFirmwarePrototype.ino`: ```cpp #include ``` ... seems to work. But that seems a little...

Thanks @rafalkwol , the `format X: /DevDrv /Q` (where `X` is the letter of the partition you want to make the Dev Drive) worked for me. The settings app showed...

Got it today on another machine as well, again `format X: /DevDrv /Q` fixed it (where X is the letter of the partition you want to make the Dev Drive)....

Hi! I'm not sure why I missed this PR and never replied. I'll look into this soon(-ish) and get back to you. Just wanted to let you know your PR...

@KalleOlaviNiemitalo I figured out it had to do with MySQL.Data 8.0.32 (so, yes, this is unrelated, sorry, my bad).

I'm just spitballing on hunches here, but isn't this some sort of ratelimiting issue or something? The integration works for me for some random amount of time, then randomly stops...