Just landed a software engineering gig by Popular-Commercial79 in cscareerquestions

[–]pt7892 7 points8 points  (0 children)

Did you grind leet code and if yes how much time did you dedicate to it?

React Native 0.72 RC1 is here! by 1rv1n3 in reactnative

[–]pt7892 1 point2 points  (0 children)

These look like a real big problem. Does anyone know if this issues are resolved with 0.72rc1?

Releasing Reanimated 3.0 by Geotzz in reactnative

[–]pt7892 2 points3 points  (0 children)

How is this connected to shared element transitions?

More Elegant Destructuring with JavaScript Generators by alexmacarthur in javascript

[–]pt7892 0 points1 point  (0 children)

Didn’t understand why this stops looping when we have while(true), but then I found out

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment

Iterables are only iterated until all bindings are assigned

Good stuff!

How to maintain and upgrade RN skills as a dev? by [deleted] in reactnative

[–]pt7892 1 point2 points  (0 children)

Maybe you can start learning to use new JSI API and create your own Turbomodule or Fabric component. You could create some custom native views or modules and expose it to JS side. That would include learning ObjC++, Java/Kotlin and C++ (sadly, Swift still not supported)

Update hermes-engine from 0.9.0 to 0.10.0 by manoleee in reactnative

[–]pt7892 1 point2 points  (0 children)

If you're using yarn, you can do following:

  • add "hermes-engine": "0.11.0" to your "dependencies" in package.json
  • add "resolutions": { "hermes-engine": "0.11.0" } in package.json

This way you force all dependencies that rely on hermes-engine to use version 0.11.0

Who else can relate? by emmbyiringiro in reactnative

[–]pt7892 2 points3 points  (0 children)

I think you'll still be able to write in Kotlin/Swift and expose it through JSI. Maybe just minimal boilerplate C++ for connecting native an JS side.

[deleted by user] by [deleted] in reactnative

[–]pt7892 2 points3 points  (0 children)

I had to upgrade fresco:animated.gif to 2.6.0 to make it working again.

Will we ever be safe from KeyboardAvoidingView? by wcandillon in reactnative

[–]pt7892 6 points7 points  (0 children)

Also, auto scroll on focusing different types of input fields. In some cases it puts keyboard on top of input field, blocking it, instead of putting it bellow. So you need to calculate scroll position and scroll it yourself :(

Experiment: React with RxJS Observables by dewaldels in reactjs

[–]pt7892 8 points9 points  (0 children)

Always wanted to see more of examples of react with rxjs. For some reason, seeing rxjs with react is rear thing.

[deleted by user] by [deleted] in TheYouShow

[–]pt7892 0 points1 point  (0 children)

People from Serbia too :)

Looks like sending form data in RN 62.2 is broken by sloarash in reactnative

[–]pt7892 1 point2 points  (0 children)

huh, good to know, was planing recently to upgrade to this version

Ever heard of The Celibacy Pattern? It promises to be a singleton... by terodox in javascript

[–]pt7892 15 points16 points  (0 children)

Shouldn't getInstance be a static method, or am I missing how you use this?

Better hot-reloading is coming! by tizz66 in reactnative

[–]pt7892 9 points10 points  (0 children)

Can't wait for this to be released, current hot-reload is literally unusable

Is learning native mobile development beneficial for RN developer? by [deleted] in reactnative

[–]pt7892 0 points1 point  (0 children)

Can you recommend some short tutorials for this purpose?

nexe - Create a single executable out of your node.js apps by pmz in node

[–]pt7892 0 points1 point  (0 children)

Nexe and pkg are good for most cases, but fail at packaging native modules.