Vincent Riemer

Results 38 comments of Vincent Riemer

> Hey @vincentriemer, should the RFC be now also merged? ([react-native-community/discussions-and-proposals#750](https://github.com/react-native-community/discussions-and-proposals/pull/750)) I put in an approval but I'm not one of the people with merging capabilities 😬

I had tried something similar but didn't get good enough results to include in my previous PR, I'll take a closer look at this when I get home from the...

Out of morbid curiosity, how does this perform for you guys? https://react-flame-graph-xitkcoyjhr.now.sh/

Yeah I think this may be a case of SVG animations scaling better than divs. I've anecdotally gotten better results with animating dom nodes instead of SVG but I've never...

It's an interesting problem that I've been wrestling with in rn-dom as well. Theoretically, hardware acceleration would be the key to maximum animation performance, but in practice what ends up...

The versions I posted toggle `will-change` & only animates translate/scale/opacity via the Web Animations API but it's still not as fast as master so translate3d likely won't help 😞

FWIW: I recorded a profile and it seems like almost the entirety of the CPU time is dedicated to the `addLexicons` method where it's parsing the lexicon docs at runtime....

Investigated a little further and determined if you remove these lines it completely resolves the issue and doesn't break anything: https://github.com/bluesky-social/atproto/blob/41793b7ff9a47155c6c1bc598893748692033b87/packages/lexicon/src/lexicons.ts#L47-L61 I get that the validation provides some degree of...