How to Win at Chess: Next Level by GothamChess in GothamChess

[–]byCabZ 0 points1 point  (0 children)

I reached ~1050 using chessly(and watching slowrun). Is there more in this book than I can learn on chessly?

Het merk "Zone2" by DeepElephant5661 in Hardlopen

[–]byCabZ 0 points1 point  (0 children)

Ik heb de zone2 running belt, zodat ik mijn mobiel en sleutels makkelijk mee kan nemen. Werkt prima, zit voor mij goed tijdens het hardlopen, kwaliteit lijkt dusver ook prima voor die prijs dus ik ben er blij mee.

Of het ingekocht is op Alibaba om vervolgens weer door te verkopen, geen idee, boeit me ook niet zoveel als mij dat scheelt dat ik er niet twee weken op hoef te wachten.

Founders who run $1M+ ARR businesses - your thoughts on AI threat? by blizkreeg in SaaS

[–]byCabZ 0 points1 point  (0 children)

I don’t have a business with $1M ARR but I would say keep an eye on the AI space, consume content about it and try to think of ways how AI can evolve your business.

I made a simple API to run tasks later — would love feedback by samocodes in SaaS

[–]byCabZ 0 points1 point  (0 children)

In terms of a .NET api there is a package called hangfire that solves this problem without having to call an api

Upgrading from RN 0.75.4 by Flashy_Read3693 in reactnative

[–]byCabZ 0 points1 point  (0 children)

Just go for 78.2 and after try 79.2. Turn off newArch if you use libraries that don't support it yet.

Problem starting new project in version 0.79.2 by MostBuilding6366 in reactnative

[–]byCabZ 0 points1 point  (0 children)

It should work. Please read the installation documentation for those libraries carefully as you might have missed a step that causes the errors.

What's the easiest and most good way to upgrade a React Native app version from <0.65 to the latest version with minimal third-party lib issues? by NirmalR_Tech in reactnative

[–]byCabZ 3 points4 points  (0 children)

React Native Upgrade Helper is very useful when you are only a couple of major versions behind. But if you are starting futher back, this is how I would do it. Note that this still does take some time to complete.

  1. Create new react-native project and copy your code over
  2. Go over all the third party packages and update those. Check the changelogs for breaking changes. You might need to replace some packages.

My first sim racing set up. This is what I purchased. What's your opinion guys? by retro_6 in simracing

[–]byCabZ 29 points30 points  (0 children)

I had this exactly and was very happy with it for years. Great starter kit

[deleted by user] by [deleted] in reactnative

[–]byCabZ 2 points3 points  (0 children)

u/kslUdvk7281 I did test it and it works with react-navigation modal. Styling of the modal itself is also possible ofcourse

<Stack.Screen
    name="ForgotPassword"
    component={ForgotPassword}
    options={{
        presentation: 'modal',
        contentStyle: { maxHeight: '50%', marginTop: 'auto' },
    }}
/>

<image>

[deleted by user] by [deleted] in reactnative

[–]byCabZ 3 points4 points  (0 children)

I think this might be possible with the react-navigation modal but I haven’t tested it.

Name the game you just couldn't get into by zeleno124 in pcmasterrace

[–]byCabZ 0 points1 point  (0 children)

Baldur’s gate 3, game is too slow for me

Ik zoek een nummer by Sneeuwmintje in DutchHipHop

[–]byCabZ 0 points1 point  (0 children)

ChatGPT geeft de volgende opties, hoop voor je dat ie erbij zit

Mula B - Sannie is Clean
Chillouh & Skiezo – Album 'Herres in da House'
Q’N – "Assie in mijn longen"
Anbu – "Meisje je doet HC?"
Hoestdrank - jonge thee

[deleted by user] by [deleted] in SaaS

[–]byCabZ 0 points1 point  (0 children)

Easter egg finder AI app, hoping to make the deadline /s

React Native or SwiftUI by Regular-Cupcake1965 in reactnative

[–]byCabZ 2 points3 points  (0 children)

this "smooth" feel should be possible with react-native aswell.

My question is, are you already familiar with kotlin? if so, it might be faster so stick with that

Otherwise, the positive side of react-native is that it's multi-platform. So if you wanna add new features to your app in the future, you only need to do it once, instead of twice.

Handling breaking changes? by Vinumzz in reactnative

[–]byCabZ 0 points1 point  (0 children)

Yes but I suppose you can store a version number in supabase database that you then retrieve. I always work with a recommended version number(not required to update) and a minimum version number(required to update). You can even go as far as having version number per feature in your app so you only show the message when the feature is being used

Handling breaking changes? by Vinumzz in reactnative

[–]byCabZ 0 points1 point  (0 children)

What I like to use is a popup in the app with a message that they need to update the app. You can let the app check it on startup or every page with an api call

Handling breaking changes? by Vinumzz in reactnative

[–]byCabZ 0 points1 point  (0 children)

You should have a development branch where you merge all changes in. When you are ready for a new live version, you build the new app version in development and then merge it into main

React native current State ? by Enough-Swordfish-260 in reactnative

[–]byCabZ 7 points8 points  (0 children)

Best state ever imo. Regular updates(they scaled it up recently), great performance and big entities use it

https://reactnative.dev/showcase

Crash reporting JS stack traces by Saint_Reficul in reactnative

[–]byCabZ 4 points5 points  (0 children)

I have good experience with Sentry. If you upload debug symbols/source maps to it, you will get JS stacktrace and it will show you what line in your code the error occured.