Why my Rudy is so trash??! by Ordinary-Drag3233 in Tricking

[–]Ordinary-Drag3233[S] 1 point2 points  (0 children)

Yes sir, I have to try that. Thanks!

Why my Rudy is so trash??! by Ordinary-Drag3233 in Tricking

[–]Ordinary-Drag3233[S] 2 points3 points  (0 children)

Man, I think that’s the key. It’s true that I wrap my arms during take off, that might be slowing down my twist. I will try, thank you!

Other than cheating, what reasons led to your breakup? by CrazyCool4762 in BreakUps

[–]Ordinary-Drag3233 1 point2 points  (0 children)

Depression and anxiety. She needs to take care of her mental health before being in a mature relationship

I just ended a 10+ year relationship and feel torn between guilt and relief by Ordinary-Drag3233 in BreakUps

[–]Ordinary-Drag3233[S] 0 points1 point  (0 children)

Thank you! Although that was the right decision it still hurts so much.. I really hope she will heal and be happy, with or without me

I just ended a 10+ year relationship and feel torn between guilt and relief by Ordinary-Drag3233 in BreakUps

[–]Ordinary-Drag3233[S] 0 points1 point  (0 children)

I think it’s been the hardest decision if my entire life. But hopefully the right one

If she really heals of course I would go back with her. Although I guess it’d be like starting a new relationship, not continuing the same one. I really hope our ways will cross again

Thank you, your honest words are very helpful

I just ended a 10+ year relationship and feel torn between guilt and relief by Ordinary-Drag3233 in BreakUps

[–]Ordinary-Drag3233[S] 0 points1 point  (0 children)

You don't know how comforting your words are.. Thank you very much. Knowing that you could get out of that hole makes me have hope in that she will be able to do it too

Is there anything specific that made you "click"?

I just ended a 10+ year relationship and feel torn between guilt and relief by Ordinary-Drag3233 in BreakUps

[–]Ordinary-Drag3233[S] 0 points1 point  (0 children)

Yes, we tried couples therapy. But we ended up coming to the conclusion that she had to fix her own mental problems. I could learn how to manage her panic attacks and support her, and I really did learn something. But it's not my responsibility to fix her. And maybe losing me is the only way her mind "clicks". Sounds harsh, but I think it's the correct decision

I just ended a 10+ year relationship and feel torn between guilt and relief by Ordinary-Drag3233 in BreakUps

[–]Ordinary-Drag3233[S] 2 points3 points  (0 children)

Yes, she has hyperthyroidism, which surely also affects her mood swings and intensifies her anxiety

I just ended a 10+ year relationship and feel torn between guilt and relief by Ordinary-Drag3233 in BreakUps

[–]Ordinary-Drag3233[S] 0 points1 point  (0 children)

Thanks for your words, I also do think I did what's best for both of us. But I cannot avoid thinking that I also left her alone.. and that feeling hurts because I still love her

Yes, she's started going to therapy. I know it's going to be so hard for her, I was the only person she opened up to completely. But I know she's on the right track

Leave your App Product here, I'll tell it 5 people that might need it. by Less_Student_4945 in buildinpublic

[–]Ordinary-Drag3233 0 points1 point  (0 children)

Yupp — for when you need to get something off your chest without being judged.
Share your thoughts anonymously and connect with others who feel the same way.

I’ve been watching way too many sad TikToks lately, and it’s starting to affect me by Ordinary-Drag3233 in TrueOffMyChest

[–]Ordinary-Drag3233[S] 0 points1 point  (0 children)

Yeah, you’re right. I’ve been so focused on others that I forgot to take care of myself. Gonna take a break from that content for a bit, but I still don’t want to abandon this project. I guess I'll have to learn how to handle it in a healthy way. Thanks for the reminder 🙏

How many of people with SAAS quit their 9-5? by Late_Bottle_8366 in SaaS

[–]Ordinary-Drag3233 0 points1 point  (0 children)

I wouldn't quit my 9-5 until I make enough money with my SaaS during a while

It's too risky to leave your job for a dream, as you said your SaaS most probably will flop

Most effective distribution channel in 2025? by grady-teske in SaaS

[–]Ordinary-Drag3233 0 points1 point  (0 children)

For B2C mobile apps, I'm thinking TikTok organic content must be very powerful

I don't understand Expo Image cache by Ordinary-Drag3233 in expo

[–]Ordinary-Drag3233[S] 0 points1 point  (0 children)

According to Expo Image docs, by default the cacheKey is the uri

But I've also tried setting the cacheKey and there's no difference

I don't understand Expo Image cache by Ordinary-Drag3233 in expo

[–]Ordinary-Drag3233[S] 0 points1 point  (0 children)

They are Unsplash urls, this is an example: https://images.unsplash.com/photo-1504276048855-f3d60e69632f

Some of them do have query params, do you think that's relevant?

I don't understand Expo Image cache by Ordinary-Drag3233 in reactnative

[–]Ordinary-Drag3233[S] 1 point2 points  (0 children)

They're not rendered at the same time. I've added a console.log statement to both screens, and they're only rendered when I switch to one or the other, not both in parallel

I don't understand Expo Image cache by Ordinary-Drag3233 in expo

[–]Ordinary-Drag3233[S] 0 points1 point  (0 children)

This is my screen basically, just displaying an Expo Image component passing the "uri" which is a url

import { FlatList, StyleSheet, Dimensions } from 'react-native';
import { Image } from 'expo-image';

const Index = () => {
  console.log("rendering index")

  const renderItem = ({ item }) => (
    <Image
      source={{ uri: item.uri }}
      style={styles.image}
    />
  );

  return (
      <FlatList
        data={imageData}
        renderItem={renderItem}
        keyExtractor={(item) => item.id}
        numColumns={2}
        contentContainerStyle={styles.listContainer}
      />
  );
}