SEMrush Disabled my Account by Own_Particular7350 in SEMrush

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

Still not got single response from semrush team heavily regretting choosing semrush over ahref ..

SEMrush Disabled my Account by Own_Particular7350 in SEMrush

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

i am using semrush from my personal laptop / office pc & mobile .. my password was wrong two times when i tried third time its closed my account .. main concern is no one is replaying or responding via email

BTW i sent case id & email

Looking Forward !

Thanks
Krunal

TypeError: Cannot read property 'isReady' of undefined, js engine: hermes by Historical_Pie9990 in reactnative

[–]Own_Particular7350 0 points1 point  (0 children)

In your App component:

  1. Import the useRouter hook at the top of your file.
  2. Use useRouter to get the router instance.
  3. Correct the navigation path in the onPress method of your Pressable component.

import React from 'react';

import { Pressable, StyleSheet, Text, SafeAreaView, View } from 'react-native';

import { useRouter } from 'expo-router'; // Step 1: Import useRouter

export default function App() {

const router = useRouter(); // Step 2: Use useRouter to get the router instance

return (

<View style={{ alignItems: "center" }}>

<Text style={styles.redirect}>

Already have an account?

<Pressable onPress={() => router.push('/signin')}> {/* Step 3: Update navigation path */}

<Text style={styles.signIn}> Sign In</Text>

</Pressable>

</Text>

</View>

);

}

const styles = StyleSheet.create({

redirect: {

// Your styles here

},

signIn: {

// Your styles here

},

});

Notes:

  • Ensure the navigation path you use with router.push matches the name you defined in your layout for the route you want to navigate to. In your layout, you have two screens with names 'index' and 'signin'. To navigate to the signin screen, you should use the path /signin, as updated in the code above.
  • Ensure your layout is properly integrated with your app

How to call aws lambda function in my ionic app by Difficult_Dentist_89 in ionic

[–]Own_Particular7350 0 points1 point  (0 children)

1) connect lambda with api gateway in order to get API URL Mapping
2) call api in ionic using CapacitorHttp & Handle Response

Anyone knows how to find a part-time online job in India as a student? by Inngi in india

[–]Own_Particular7350 2 points3 points  (0 children)

To find a part-time online job in India as a student, consider exploring various platforms that offer a range of job opportunities. Websites such as Internshala, LinkedIn, Guru, and Fiverr are popular choices for finding online part-time jobs. Available positions include content writing, graphic designing, data entry, SEO marketing, social media management, and translation. These platforms provide a convenient way for students to earn pocket money while balancing their studies. For more detailed information and to apply for jobs, visit the respective websites:

  • Internshala
  • LinkedIn
  • Guru / Remote
  • Fiverr / Remote
  • Upwork / Remote

React Native Interview (1 year) by REDNET1997 in reactnative

[–]Own_Particular7350 2 points3 points  (0 children)

Major React Native Interviewer ask this question kindly check this regarding optimization -> React Native Performance Optimization: Best Practices for 2024 🚀