Results 176 comments of dragoncoder047

Update: I managed to get the yt-dlp executable into ~shortcuts/Library/bin, and can confirm it is there with a ls and grep, but it still refuses to run it. This time...

One idea I had from this (borrowed form Scheme) is you could allow the user to write something like `Let Product be &*` -- the `&` forcing the symbol to...

> You should already be able to do `Def Product as (*);` right? That's almost as good as is Yes, but that incurs another layer of stack recursion. My "redirected...

>The compiler will already inline this when defined as `(*)` btw Good, I didn't know that. Maybe all that is needed is to add these things to the standard library.

I was worried of that. What I want to do is hook up the microcontroller directly to a storage device (flash drive, SD card, etc), have it read the `.cog`...

I left everything besides the component values the default. So trapezoidal was checked on the capacitor. If it has anything to do with it, here's my chrome://version: ``` 122.0.6261.89 (Official...

As a reference, I made the same circuit, set time step to 3µs, and it still freaked out. Other machine chrome://version: ``` 114.0.5735.119 (Official Build) (64-bit) ```

>you might need to include `uni_hid_parser_ds5.h` No, I figured I would have to include the bluepad32 guts or something... But the Arduino BP32 api gives me a `Controller*`. How do...

Also, it seems that the `ds5_send_output_report` and `ds5_output_report_t` are private (`static`) to the .c version of the file you linked -- but I would need to access those. Is there...

> yeah... I'll need to make some changes... I guess I can add a function that returns the `uni_hid_device_s*`. My suggestion would be something like `.c_dev()` or something like that,...