raldone01
raldone01
🔥 @tschoartschi 🔥 Thank you! You are amazing! I hope this issue gets fixed soon. It's critical for my application. That issue was about to ruin my day.
The first merge should be fine but it was a mistake using the github desktop app for the first time. I added another commit to the pull request which adds...
```rust fuzz_target!(|(rgb, other): (Rgb, Other)| {}) ``` Unexpectely the above syntax also doesn't work. I used this to work around the issue: ```rust fuzz_target!(|data: (Rgb, Other)| { let (rbg, other)...
Mhh if you are using my code make sure too initialize the sdmmc correctly to use the maximum available speed. I use it in my projects to stream audio and...
See my [pull request](https://github.com/isomorphic-git/lightning-fs/pull/51).
I want to run unbound on port 53530 and bind on port 53. I would then add 127.0.0.1:53530 to the forwarders. Currently I can't add the port to the forwarders....
I just read the [Plugin Hello World](https://docs.opnsense.org/development/examples/helloworld.html). I think the validation/transformation logic should go into: GeneralController.php ``` namespace OPNsense\Bind\Api; use OPNsense\Base\ApiMutableModelControllerBase; class GeneralController extends ApiMutableModelControllerBase { protected static $internalModelClass =...
So you would also like the listen addresses be addr:port and have the port field removed? Currently you can only have one shared port for all listen ips. Also it...
Or would you like to add a new input type "IpPortField" which can handle ipv4,ipv6 and optional ports? It would be great if it could expose the following to jinja:...
@fichtner Ping