Jurriaan Wijnberg

Results 22 comments of Jurriaan Wijnberg

Hi! I succeeded in building rust apps for a synology DS212 with armv5te and I also succeeded in building spotty and having it play music on the DS212. For me...

All commands that write to /usr/local need access to that folder, usually that is indeed root. If you are working as a normal user then you need to put sudo...

@michaelherger - yes I remember now that I had to do something like that. Also I had to apt install git and set the git e-email and name :)

@michaelherger - The hack in signal.rs is not needed when env=“gnu” in $PWD/cfg/armv5-rcross-linux-gnueabi.json. The “gnueabi” target was changed to “gnu” in rust. I have submitted a [PR](https://github.com/joerg-krause/rust-cross-libs/pull/7) to @joerg-krause

Could this issue be why sometimes `onBrowserStart` is not fired, breaking reporters? I made a comment about junit and progress reporter here: https://github.com/karma-runner/karma-junit-reporter/issues/188#issuecomment-989624164 Perhaps the following occurs: - Karma client...

On our CI system the junit reporter sometimes (about 1 in 10 runs) doesn't write to disk. When that happens the 'progress' reporter also writes empty lines instead of something...

I would also love to see this Outbox feature. In my mind it's similar to the IdempotentSaga feature (https://github.com/rebus-org/Rebus/wiki/Idempotence), where the IdempotentSaga acts as the Outbox. So implementing Outbox can...

@Informatic - I found that the reuse_port is used in rust-mdns [address_family.rs](https://github.com/plietar/rust-mdns/blob/master/src/address_family.rs) - if I comment out line 15 and cargo build (I am using [spotty](https://github.com/michaelherger/spotty)) on my ARM with...

I could do that, but I am not a rust developer and I am very unsure if the change is correct and what side effects it may have. Maybe @plietar...

Our application takes some seconds to startup and in order to not incur this cost in each (parallel) integration test we share a static `WebApplicationFactory` between tests. This required a...