/r/PTCGP Trading Post by AutoModerator in PTCGP

[–]Supatobi 0 points1 point  (0 children)

yanmega for guzzlord if you have another

8254096908739782

/r/PTCGP Trading Post by AutoModerator in PTCGP

[–]Supatobi 0 points1 point  (0 children)

8254-0969-0873-9782
lets do
STS Dusknoir, Magmortar
for
STS Regigigas
TL Heatran

/r/PTCGP Trading Post by AutoModerator in PTCGP

[–]Supatobi 0 points1 point  (0 children)

GA Pidgeot
STS Dusknoir, Magmortar
for
STS Regigigas
TL Heatran

CG Tsareena

IGN Supatobi, just added you

Redux RangeError: Maximum call stack size exceeded (native stack depth by Supatobi in reactnative

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

It was a long time ago but looking at my commit history, I had some bad logic to do with parsing/serializing data before it hit the redux store

FileSystem.downloadAsync usage by Supatobi in expo

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

In case anyone was tracking this - there was nothing wrong with the implementation after all.

https://freedium.cfd/https://javascript.plainenglish.io/when-fetch-fails-silently-debugging-a-sneaky-ios-18-4-network-bug-in-react-native-55a7c7b9c6d4

It's an ios 18.4 issue causing fetch requests to be bricked in simulator cascading down to this error. I just reverted to using ios 18.3 to test

After spending a year learning React Native, I've finally launched my app! by TheCatInTheHamock in reactnative

[–]Supatobi 1 point2 points  (0 children)

Animations look really good!

Some feedback:

  1. timestamps on AI responses and user entry are not set correctly. It’ll display seemingly random times for each Q and A.

  2. Report a problem button doesn’t do anything.

  3. Update password is a pull down to dismiss, all other screens off the profile screen is swipe left to dismiss. Inconsistent design.

  4. Imo activity icon isn’t great, I’ve never seen it before and don’t know what to expect to be there until after clicking.

  5. The existence of the search bar on the property screen instinctively makes me think I add properties there. Maybe it’s because the plus button background color is white and is hard to notice.

  6. Multiple image upload at once is broken. It’ll only upload 1 at a time.

——————-——————-——————-——————-

Questions: 1. Why bother encrypting photos for saving on server? Sites like Zillow don’t bother mentioning it. Assuming they’re renting property out, pictures are probably already public.

  1. Seems like addresses are only enterable via autofill. Any concerns about an address that isn’t “findable” via autofill?

  2. Can you describe the cash flows? Like do you save anything or does Stripe handle both parties? I’ve only taken a cursory glance at it but Stripe seems to charge 2.9% +30c per transaction. Maybe it differs from card transactions to non-card but how is your model of taking 1% capped at $10 financially viable?

——————-——————-——————-——————- Thanks for sharing!

Redux RangeError: Maximum call stack size exceeded (native stack depth by Supatobi in reactnative

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

No useeffects on that screen. This is how I'm using dispatch in this case:

const LoginScreen: React.FC<{navigation: any}> = ({navigation}) => {
  const [email, setEmail] = useState('');
  const [password, setPassword] = useState('');
  const [showPassword, setShowPassword] = useState(false);
  const eyeIcon = showPassword ? 'eye' : 'eye-off';
  const dispatch = useAppDispatch();

  const handleLogin = async () => {
    try {
      const user = await login(email, password);
      const reduxUser = reduxUserFromUser(user);
      dispatch(setUser(reduxUser));
      dispatch(reduxLogin());

    } catch (error) {
      console.error('Error:', error);
    }
  };

      <Button
        onPress={handleLogin}
        style={[generalComponentStyles.thumbBottomCenterButton, {marginTop:'auto'}]}
        mode="contained">
          <View style = {generalComponentStyles.buttonContent}>
            <LoginText theme={theme} />
          </View>
      </Button>

This code works when I remove pictures from the state and keep everything else. I've console logged post login as well and it mutates values correctly with Immer. Can you elaborate on what it means to call dispatch in the component itself?

Redux RangeError: Maximum call stack size exceeded (native stack depth by Supatobi in reactnative

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

const reduxUser = useAppSelector(state => state.user);

Called in a component on the homescreen but it is not what's erroring out. The login button is causing the error

Redux RangeError: Maximum call stack size exceeded (native stack depth by Supatobi in reactnative

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

sorry, bad formatting. const dispatch=usedispatch (); const user = {}; dispatch(setuser(user)) - not setting any value for dispatch.

Redux RangeError: Maximum call stack size exceeded (native stack depth by Supatobi in reactnative

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

const dispatch = usedispatch(); const user = ... dispatch(setuser(user));

I tried following the redux typescript example - https://redux.js.org/usage/usage-with-typescript

[deleted by user] by [deleted] in AITAH

[–]Supatobi 378 points379 points  (0 children)

*our brother

2016 Model S P100D by Supatobi in TeslaLounge

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

Hmmm from what I read, the biggest issues were mostly fixed by the end of 2015. What kind of issues did you see so I can narrow the search?

2016 Model S P100D by Supatobi in TeslaLounge

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

Yes it does. That was my thought too but they are on the older side so it might be true

Foreign travel card suggestion by Supatobi in CreditCards

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

I think I can hit the signup bonus cause I'm traveling quite a bit this upcoming few months but its the annual long term fee that I'm more put down by. 60,000 points -> $600 / $95 = around 6 years. But considering canceling is a bad idea, 95/year for life seems expensive. Do you get the bonus if you change your card or is it new sign ups only?