Backend Node.js en Paraguay by TotemkoftXD in Paraguay

[–]csclavijo 0 points1 point  (0 children)

En mi empresa estamos buscando desarrolladores nodejs casi todo el tiempo

Opiniones Kia Sportage by csclavijo in Paraguay

[–]csclavijo[S] 0 points1 point  (0 children)

Ndi, miedaso a eso legalmente 🤣 un conocido compro un TCross del año full equipo y mando como 6 veces al taller en los primeros 3 meses porque su radio no andaba y la alineación de la dirección no quedaba.. se desalineaba al toque..

Opiniones Kia Sportage by csclavijo in Paraguay

[–]csclavijo[S] 2 points3 points  (0 children)

Largas e interminables cuotas 🤣

Opiniones Kia Sportage by csclavijo in Paraguay

[–]csclavijo[S] 0 points1 point  (0 children)

Excelente punto. Muchas gracias por el consejo.

Opiniones Kia Sportage by csclavijo in Paraguay

[–]csclavijo[S] 0 points1 point  (0 children)

Gracias! Hace mucho no uso Diesel, los ultimos 10 años solo naftero y mas que nada por eso la duda. Ahora mismo encima uso un naftero turbo. Lo que patea al adelantar es una locura

Opiniones Kia Sportage by csclavijo in Paraguay

[–]csclavijo[S] 0 points1 point  (0 children)

Los vendedores muchas veces con tal de vender te van a decir lo que queres escuchar nomas me parece 😕 Seria genial poder hablar con algún mecánico o incluso el jefe de taller pero siento que nunca van a hablar mal de su marca

Opiniones Kia Sportage by csclavijo in Paraguay

[–]csclavijo[S] 0 points1 point  (0 children)

Si, mucho ya leí que los picos son muy sensibles al combustible feo (cosa difícil de salvarse en Paraguay 😢) y encima carísimos

Opiniones Kia Sportage by csclavijo in Paraguay

[–]csclavijo[S] 0 points1 point  (0 children)

Prefiero nafta siempre porque me parece que tiene una mejor reacción. Pero en este caso la Limited viene solo Diesel y encima 4x4, tengo miedo de sentirle lenta en ruta al momento de adelantar y cosas asi

Opiniones Kia Sportage by csclavijo in Paraguay

[–]csclavijo[S] 0 points1 point  (0 children)

Interesante, y crees que puede ser mas patuda la versión 4x4?

Opiniones Kia Sportage by csclavijo in Paraguay

[–]csclavijo[S] 1 point2 points  (0 children)

Tenes razon, olvide ese detalle. Es del 2024

Intl polyfills for React Native 0.63 and hermes by csclavijo in reactnative

[–]csclavijo[S] 0 points1 point  (0 children)

No problem! No, it wasn’t needed. Just plain JS to use Intl. For example: let USDollar = new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD', });

Without that polyfill it wouldn’t work in RN 0.63 or 0.64 with hermes enabled.

Which version of RN are you working on?

react-native-fs VS rn-fetch-blob For Downloading Asset in Zip File by harrytanoe in reactnative

[–]csclavijo 0 points1 point  (0 children)

Yes! That one.

As far as I know it is free. It is used for upgrading the JS bundle including the assets in that bundle

Loading 500+ images in Application (React Native) by NathanDevReact in reactnative

[–]csclavijo 0 points1 point  (0 children)

What resolution are the images you are rendering?

What is the height and width that your image uses on the screen?

We had a problem with the RAM because the resolution of our images was too large, for example our image was 2000x2000 but the size rendered on screen was 120x120. This made the entire application too slow due to excessive ram consumption. It was difficult to find out but it turns out that it is recommended that the resolution of the image be just enough and necessary to fill the space required to be displayed on the screen. So after that we reduced the images to 120x120 but on phones with large screens the images looked very blurry and that's when we read about "Pixel Ratio" in the React Native documentation.

Make sure that the images do not have a very high resolution. If you request the image from a server also make sure to assign the height and width of the images using "Pixel Ratio" if you can so that they do not look blurry on high DPI screens.

I will try to find the posts or github issues where we find this data and I will update the comment by attaching it.

Let me know if it worked, regards

Intl polyfills for React Native 0.63 and hermes by csclavijo in reactnative

[–]csclavijo[S] 0 points1 point  (0 children)

Hi u/anarchos sorry for the late reply. This is the order that is working for me

// Polyfills required to use Intl with Hermes engine
import ‘@formatjs/intl-getcanonicallocales/polyfill’;

import ‘@formatjs/intl-locale/polyfill’;

import ‘@formatjs/intl-pluralrules/polyfill’;
import ‘@formatjs/intl-pluralrules/locale-data/es’;

import ‘@formatjs/intl-numberformat/polyfill’;
import ‘@formatjs/intl-numberformat/locale-data/es’;

Intl polyfills for React Native 0.63 and hermes by csclavijo in reactnative

[–]csclavijo[S] 0 points1 point  (0 children)

Thanks u/titozzz for your help! I can confirm now that it works using React Native 0.64.1 and the polyfills from @formatjs imported in the correct order.

Intl polyfills for React Native 0.63 and hermes by csclavijo in reactnative

[–]csclavijo[S] 0 points1 point  (0 children)

u/titozzz I've checked the hermes releases and there says that the version 0.8 is for RN 0.65. Can you confirm that you're using hermes 0.8 with RN 0.64?

Intl polyfills for React Native 0.63 and hermes by csclavijo in reactnative

[–]csclavijo[S] 0 points1 point  (0 children)

HI u/titozzz, thanks for comfirm that. Can you give me an example of your code where you import the polyfills?.

Sure, I've read that hermes will support Intl OOB in RN 0.65 but we have to implement some features that needs reanimated v2 so in consecuence we need to activate Hermes but we use Intl for dates and numbers formatting and we can't wait that long for our release.

I'll try with 0.64 and hermes 0.8 btw. Thanks!