Tuur Dutoit

Results 18 comments of Tuur Dutoit

Sorry for the slow response, I only see this now in my inbox... As per [the documentation](https://github.com/TuurDutoit/crash#collidersat--satpolygonsatcircle) for the Collider class, you can always reference the underlying SAT collider (Polygon...

As an addendum to my previous post: After updating the underlying SAT collider object, two extra things need to be taken care of: 1. the AABB (axis-aligned bounding box) of...

Just chiming in with another solution, in case it can help anyone. As per the instructions in [this guide](https://os.phil-opp.com/minimal-rust-kernel/#building-our-kernel), I use `cargo xbuild` to build my `#![no_std]`/`#![no_main]` project, which is...

Just to be clear, here are the files that make this workaround work. Don't forget to run `cargo xbuild` at least once, so the core crates are compiled for the...

Any update on this? We recently upgrade to React Native v0.63.4 and React Native Debugger v0.11.5. Whenever I open the debug menu (using the "shake" shortcut on the iOS simulator),...

I have encountered the same problem while upgrading from Yarn v1 to v3.2.1 recently. In `package.json` (only relevant parts): ```json { "packageManager": "[email protected]", "dependencies": { "timecop": "git+https://github.com/jamesarosen/Timecop.js.git#d421df9b00386266bda93eb9c2ea15fedc888761" } } ```...

As per [my comment](https://github.com/robinpowered/react-native-fetch-polyfill/issues/7#issuecomment-518732215) on another issue in this repo, this makes sense. The discrepancy between the Android and iOS implementations is probably the culprit.

I was faced with the same issue, and after a long search I found out what was going wrong. The timeout option that React Native provides for `XMLHttpRequest` (which is...

@diegoserranoa Could you take a look at this?