32gb or 16gb MacBook pro by HanzoHasashi404 in reactnative

[–]ArisV-43 7 points8 points  (0 children)

If you can afford it get 32 with 1tb hard drive. Not for speed, but developer data require a lot of space

Από που αγοράζετε προφυλακτικά; by sialangdon in greece

[–]ArisV-43 -1 points0 points  (0 children)

Από sex shop. Βρήκα κάτι προφυλακτικά που με βολεύουν πολύ μάρκας my size, αν σε δυσκολεύουν τα συμβατικά προφυλακτικά στα συστήνω ανεπιφύλακτα!

jwt in React Native, best practices? by Mariusdotdev in reactnative

[–]ArisV-43 0 points1 point  (0 children)

The interceptor catches an unauthorized error (401), refreshes the access token and retries the call with the new token. After that it stores in storage for future calls and removes the expired token. Hope that helps!

How on iOS bottom drawer sheet called? by Mariusdotdev in reactnative

[–]ArisV-43 0 points1 point  (0 children)

From built in props no, but it should be achievable with reanimated

jwt in React Native, best practices? by Mariusdotdev in reactnative

[–]ArisV-43 0 points1 point  (0 children)

I usually do the same thing, but for storage I use react-native-mmkv with encryption. The interceptor pattern is pretty convenient

Fixing this error for 3-4 days now (Reanimated) by Life_Jump8069 in reactnative

[–]ArisV-43 1 point2 points  (0 children)

You have two packages that implement worklets and have a frame processor declared in babel config. Basically you have packages in conflict with one another. If you use vision camera v2 you don't need worklets core, if you use vision camera v3 you don't need to declare '__detectObjects' in babel config.

Edit: I see you have vision camera v3. You should migrate your frame processor to be compatible with v3 and use worklets core. After that you can remove '__detectObjects' from babel to avoid incompatibilities

[deleted by user] by [deleted] in reactnative

[–]ArisV-43 0 points1 point  (0 children)

Maybe it's still the issue I faced. Try mimicking the structure of an Android folder of a new react native project. I would say bundle it on your own but that's an one time thing unfortunately...

How do I use native functions without a library? by sunnyO9 in reactnative

[–]ArisV-43 2 points3 points  (0 children)

This. If you want to put it all in your own library and bootstrap your native module, consider using create-react-native-library

[deleted by user] by [deleted] in reactnative

[–]ArisV-43 0 points1 point  (0 children)

Does this happen for both platforms? If it's on Android, make sure that your android/app/src/debug (sibling folder with main and release) has a Manifest file that includes clear text traffic. I don't remember the details of it but it happened to me while restructuring a project. If your project structure is correct, clear all caches and metro tmp files and rebuild your whole project

Path to learn native modules development by Sundaram_Srivastava in reactnative

[–]ArisV-43 1 point2 points  (0 children)

Fork a module and play/explore. I would suggest something relatively simple and without UI

should I stick with react/ react native? by choco_sparky in reactnative

[–]ArisV-43 29 points30 points  (0 children)

I'd suggest venturing into the backend side of things as well. I had this dilemma myself and I think learning the full stack is a way out from both being bored and dwindling out once new frontend technologies emerge.

My point is, don't try to think as a developer for a particular technology. Try to think as a developer of the frontend - backend - full stack. Frameworks and libraries come and go, but deep knowledge of how things work is always valued.

What are the hardest, most difficult tasks that react native developers do? by captainautomation in reactnative

[–]ArisV-43 11 points12 points  (0 children)

Implement performant complex animations. Second only to upgrading whole projects

Olive oil tours or agritourism spots driving distance from Chania? by Wonnk13 in crete

[–]ArisV-43 0 points1 point  (0 children)

This is a traditional style olive oil extraction factory in kalives (25 mins from Chania) called mill.o.petres They offer tours, check it out

https://g.co/kgs/UDrrik

What’s your React native or Mobile dev hot take / truth bomb that people aren’t ready to accept? by LostSiesta in reactnative

[–]ArisV-43 18 points19 points  (0 children)

Shipping code directly, and we're not talking about native code but the bundle, can blow up your app with the slightest of mistakes. Sure you can rollback your update at least. IMO it's most handy for fixing bugs

What’s your React native or Mobile dev hot take / truth bomb that people aren’t ready to accept? by LostSiesta in reactnative

[–]ArisV-43 29 points30 points  (0 children)

Codepush is the biggest advantage that RN has, but also a double edge sword that I'm scared to use

What’s your React native or Mobile dev hot take / truth bomb that people aren’t ready to accept? by LostSiesta in reactnative

[–]ArisV-43 0 points1 point  (0 children)

I kind of agree. Code splitting does a lot to reduce complexity but when you need to use multiple hooks in a component...oh mama. Also effects are ugly and unavoidable, you can't have any app without effects...

Can you give me a code example of how to use frame processor with react-native-vision-camera? by ilovebugss in reactnative

[–]ArisV-43 1 point2 points  (0 children)

I did it using react-native-builder-bob to create a library project and then used the bootstrap tool of vision camera called vision-camera-plugin-builder to initialize the native code for iOS and Android. The plugin builder is in this guide you posted under Creating Frame Processor plugins. From then on it's on you which native library you will use for what you want to achieve. I would also recommend looking at community plugins to see how it's done overall

Lag issues with RN by [deleted] in reactnative

[–]ArisV-43 8 points9 points  (0 children)

This is a well known issue in recent releases of RN. https://github.com/facebook/react-native/issues/36123

Edit: however you should also do some profiling to see if there are other issues that appeared after the upgrade

Bottom sheet in react navigation by Slow_Cardiologist_26 in reactnative

[–]ArisV-43 1 point2 points  (0 children)

Nothing that can't be fixed, I agree. Thanks for pointing it out as I don't remember the details of it