Peter Xu

Results 13 comments of Peter Xu

Two workarounds: ### 1. Don't use `React.memo` `React.memo` also has minimal benefits for the top-level component since by definition, it'll only get rendered once in your app, and its props...

I've updated this merge request to require the latest release of `react-native-image-pan-zoom`, since that's the only version that supports `useNativeDriver` right now

> Very nice! Could you add type tests as well: > > https://github.com/facebook/jest/blob/4da4a42d7bc7456d1139769b4df0c0a361e68e83/packages/jest-types/__typetests__/jest.test.ts#L307-L308 > > To run them, build the repo and run `yarn test-types`. The `expectError` lines will be...

Thanks again for the review, @mrazauskas! @SimenB -- I noticed you'd reviewed Zach's #12201 and Tom's #12467, which both had to do with closely-related code -- could you take a...

I can confirm that we've reproduced this at Wanderlog with the latest foot profile. I've attached the full logs from our (non-debug) version, and have also verified that the car...

@nilsnolde I've gotten a server with gdb stopped at the segmentation error, by running: ```sh gdb osrm-extract catch throw run -p osrm-backend/profiles/foot.lua /path/to/data/planet.osm.pbf ``` > It'd be super valuable if...

**EDIT (2020-07-06)**: I don't recommend using the `SDImagePhotosPlugin` on iOS. Especially if you're displaying more than one of these photos, you're going to be loading the full, 4000x3000 photos into...

@remigallego I actually don't recommend using the `SDWebImagePhotosPlugin` in general anymore after testing this with our app: SDWebImage doesn't have an idea of how large the photo to render should...

@Yann-prak we're getting this too, at least in development mode. We also have production app error tracking, and it seems like it also happens there, but a lot more rarely...

Just a note on a workaround we've been using: we wrap our TextInput so that we ignore all backspaces within 50 ms. of another keypress: ```tsx import { NativeSyntheticEvent, TextInput,...