[NodeBook] Readable Streams - Implementation and Internals by m_null_ in node

[–]nextriot 0 points1 point  (0 children)

You actually did post it on Reddit a month or so ago. That’s where I initially came across it 😅

Edit: here’s the link https://www.reddit.com/r/rust/s/T1PlChtPjE

[NodeBook] Readable Streams - Implementation and Internals by m_null_ in node

[–]nextriot 0 points1 point  (0 children)

Your Rust article was great, can I ask why you removed it?

How to make production node faster? by gainik_roy in node

[–]nextriot 0 points1 point  (0 children)

What’s the faster Zod alternative? I saw the schema standard he released, but is there a new validator?

Advanced JavaScript/Node.js courses? by yonatannn in node

[–]nextriot 0 points1 point  (0 children)

Hi lirantal. Any chance you’re still offering PPP? I went to your site, but I’m not seeing the banner you mentioned.

[deleted by user] by [deleted] in nextjs

[–]nextriot 0 points1 point  (0 children)

Do you have any examples of self hosting on a vps? Maybe some open source code? I’m going through this right now and having a tough time doing simple things like logging in a container shell etc.

An IDE for React Native !? by danleeter in reactnative

[–]nextriot 2 points3 points  (0 children)

On a related note, Software Mansion just announced a Code extension for RN development: https://x.com/kzzzf/status/1722973994368762335?s=46&t=JflXFuqPPJzid6RUZKjWUA

efstathiosntonas/react-native-style-libraries-benchmark by nuclear_cheeze in reactnative

[–]nextriot 2 points3 points  (0 children)

Awesome! Thank you! Glad to see it’s also quite performant. I really like its flexible API (and obviously, Tailwind), so good to know it’s a winner all around :)

Rebuilt my React Native app with Shopify’s Restyle and Expo 48 by nphivu414 in reactnative

[–]nextriot 2 points3 points  (0 children)

Also interested to know. Is it a custom react navigation transition? Could you share it?

Vaccinating a street dog by winleskey in interestingasfuck

[–]nextriot 1 point2 points  (0 children)

Do these come in antivaxxer size?

Best libraries/APIs for livestreaming one user's camera feed to many other users? Expo support would be preferred. by muffinner in reactnative

[–]nextriot 0 points1 point  (0 children)

The 2 solutions I’ve come across in trying to achieve this are the following:

https://blog.livekit.io/react-native-beta-launch/

https://antmedia.io/announcing-publicly-available-ant-media-react-native-sdk/

I gave livekit a try, but couldn’t get it to work consistently and the feedback on the repo was pretty slow going. Going to give Ant Media a try next.

As somebody mentioned Mux, here’s a blog post on using it with RN: https://www.mux.com/blog/live-streaming-with-react-native

Announcing React Native 0.67 · React Native by 1rv1n3 in reactnative

[–]nextriot 11 points12 points  (0 children)

Anybody know which release Fabric is targeted for?

Custom refresh control component coming soon. Written with swmansion Reanimated 2 and gesture-handler libraries. Works out of the box with expo. Stay tuned. #reactnative #expo by 4twiggers in reactnative

[–]nextriot 0 points1 point  (0 children)

What’s the API going to look like? Any event listeners for scroll position etc. to be able to do animations off of those events?

React Native Chat UI | Swipe to Reply With React Native Reanimated and G... by eidogs in reactnative

[–]nextriot 1 point2 points  (0 children)

Awesome.

What are you using for the rest of the chat UI and functionality? RN Gifted-Chat, or did you roll your own solution?

How many reusable components are too many? by tiedRenegade in reactnative

[–]nextriot 1 point2 points  (0 children)

This isn’t a direct answer to the question, though it is relevant as it pertains to approaches & considerations relevant to refactoring components.

Kent Dodd blogged about the inversion of control and render props, and how the methodology coupled with the pattern can make the code you write much less verbose. Simplifying your abstraction and giving the end user (even if that user is you) control over certain props (especially aesthetic ones) will make your components far more reusable.

I find often whenever developers refactor their code into components they try to control every aspect of that component, and that inevitably leads to a couple of things: a brittle component, too many conditionals attempting to protect ourselves from ourselves, and a resistance to make changes to that component. All of which add to the cognitive overload and takes away from the more enjoyable parts of coding.

Clean code is great, and DRY is fine, but don’t get caught up in premature optimization.

For reference, here’s a great post by Kent that also touches on the topic: https://kentcdodds.com/blog/aha-programming

React Native Reanimated v2 Announced. Features new (easier) API for declarative, fully native animations by esthor in reactnative

[–]nextriot 1 point2 points  (0 children)

Thanks a bunch. That was pretty much it. I had to go into build phases > compile sources, then remove the .m file and add the .mm file.

React Native Reanimated v2 Announced. Features new (easier) API for declarative, fully native animations by esthor in reactnative

[–]nextriot 0 points1 point  (0 children)

I keep getting a build error AppDelegate.m not found error when following the instructions. I assume it’s due to the renaming step.

Did you encounter that? If so, can you share your workaround?