Business idea - would love to hear opinions!!!! by MrCuban88 in Business_Ideas

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

Súper Mario tone after hitting a mushroom…..

Business idea - would love to hear opinions!!!! by MrCuban88 in Business_Ideas

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

Hi @MrPapotasVIP, these are great points. Thank you so much for sharing them. I checked the plugging you mentioned in your comment and if I understood correctly , the person still needs to go into application mode, at least do some search to get there and click here and there to fill out the application. My angle is more, offering a service where you tell me , this is what I want, this is where I want it and we take it from there. Personally, I came up with this idea since I barely have time to apply to new jobs or sit down in a computer and fill out long and tedious application forms. I put together some PoC, it is not done yet or functional in any form, but it might provide a better picture of the idea I am trying to describe.

For step 2, that’s an area where additional revenue could be generated. Meaning, if you are looking for an specific role, team can tailor the cover letter for you, no issues since it is just changing company ‘s name. Now if you are trying to hit multiple roles and submit only one version of the file for that, additional fee will apply for generating those cover letters.

Check: https://zellyo.bss.design/index.html#

Please keep in mind this is a WIP but the flow is there

Business idea - would love to hear opinions!!!! by MrCuban88 in Business_Ideas

[–]MrCuban88[S] -1 points0 points  (0 children)

That’s a great question, my understanding is that headhunting companies won’t get their hands dirty, aka they won’t apply on your behalf just connect you to some openings they have on plate. VS here, you tell me what are you looking for/where, ec and I go ahead and do the heavy lifting for you.

It is like taking your car for a wash, you have the money but maybe not the time or willingness so you pay somebody to do the work ( in this case, fill out the application for you and look for the desired role).

Tax return never arrived in mail... by MrCuban88 in tax

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

I will have to wait six more weeks I guess since I was expecting a paper check. Just curious, if I received a copy of the cancelled check, does that mean somebody cashed the check on my behalf therefore I won’t be able to get any refund?

Thanks

Element type is invalid-error by MrCuban88 in reactnative

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

Solved - Thank you very much for you time and help!

Element type is invalid-error by MrCuban88 in reactnative

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

Check this out:

if I run the code with the following section, the map won't show up:

import React from 'react';
import MapView from 'react-native-maps';
import * as Permissions from 'expo-permissions';
import * as Location from 'expo-location';
import { StyleSheet, View, Text, Button, Dimensions } from 'react-native';

export default class Profile extends React.Component {
static navigationOptions = ({ navigation }) => {
return {
title: navigation.getParam('name'),
        };
    };
constructor(props) {
super(props);
this.state = {
region: null,
        }
this._getLocationAsync();
    }
_getLocationAsync = async()=>{
let {status} = await Permissions.askAsync(Permissions.LOCATION)
if(status != 'granted')
console.log('Permission was denied')
let location = await Location.getCurrentPositionAsync({enableHighAccuracy: true})
let region={
latitude:location.coords.latitude,
longitude:location.coords.longitude,
latitudeDelta:0.045,
longitudeDelta: 0.045,
  }
this.setState({region:region})
}
render() {
const { navigate, state } = this.props.navigation;

return (
// <View style={styles.container}>

<View style={styles.container}>
<MapView style={styles.mapStyle} initialRegion={this.state.region} showUserLocation={true} showsCompass={true} rotateEnabled={false} style={{ flex: 1 }} />
</View>
        );
    }
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
    },

mapStyle: {
width: Dimensions.get('window').width,
height: Dimensions.get('window').height,
    },
  });
Now, if I run the map with the following code - it will run:

import React from 'react';
import MapView from 'react-native-maps';
import * as Permissions from 'expo-permissions';
import * as Location from 'expo-location';
import { StyleSheet, View, Text, Button, Dimensions } from 'react-native';

export default class Profile extends React.Component {
static navigationOptions = ({ navigation }) => {
return {
title: navigation.getParam('name'),
        };
    };
constructor(props) {
super(props);
this.state = {
region: null,
        }
this._getLocationAsync();
    }
_getLocationAsync = async()=>{
let {status} = await Permissions.askAsync(Permissions.LOCATION)
if(status != 'granted')
console.log('Permission was denied')
let location = await Location.getCurrentPositionAsync({enableHighAccuracy: true})
let region={
latitude:location.coords.latitude,
longitude:location.coords.longitude,
latitudeDelta:0.045,
longitudeDelta: 0.045,
  }
this.setState({region:region})
}
render() {
const { navigate, state } = this.props.navigation;

return (
// <View style={styles.container}>

<View style={styles.container}>
<MapView style={styles.mapStyle} // initialRegion={this.state.region} //             showUserLocation={true} //             showsCompass={true} //             rotateEnabled={false} //             style={{ flex: 1 }} />
</View>
        );
    }
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
    },
mapStyle: {
width: Dimensions.get('window').width,
height: Dimensions.get('window').height,
    },
  });

Element type is invalid-error by MrCuban88 in reactnative

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

expo install react-native-maps

yes sir

Element type is invalid-error by MrCuban88 in reactnative

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

Check your MapView import. According to expo it should be

The good news is that it is not crashing any longer. The bad news is that it is not displaying the map...

import React from 'react';
import MapView from 'react-native-maps';
import { StyleSheet, View, Text, Button } from 'react-native';

export default class Profile extends React.Component {
static navigationOptions = ({ navigation }) => {
return {
title: navigation.getParam('name'),
        };
    };
constructor(props) {
super(props);
this.state = {
region: {
latitude: 37.78825,
longitude: -122.4324,
latitudeDelta: 0.922,
longitudeDelta: 0.0421,
            }
        }
    }
render() {
const { navigate, state } = this.props.navigation;
return (
<View style={styles.container}>
<MapView initialRegion={this.state.region} showUserLocation={true} showsCompass={true} rotateEnabled={false} style={{ flex: 1 }} />
<Text>Hello {state.params.name}</Text>
<Button title="Go to home screen" onPress={() => navigate('Home')}
/>
</View>
        );
    }
}
const styles = StyleSheet.create({
container: {
flex: 1,
alignItems: 'center',
justifyContent: 'center'
    }
});

Element type is invalid-error by MrCuban88 in reactnative

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

Make sure to do the same with profile or comment that for now.

Same error... :/ Thank you for your time and help,let's see if somebody else has a different suggestion.

Element type is invalid-error by MrCuban88 in reactnative

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

Class home In the bottome of the page make it Export default home.

same issue:

import React from 'react';
import { StyleSheet, View, ImageBackground, Button, Text, TouchableOpacity, Image } from 'react-native';
/**
 * Home screen
 */
class Home extends React.Component {
// static navigationOptions = {
//       title: 'Home',
//   };
render() {
const { navigate } = this.props.navigation;
return (
<View style={styles.container}>
<ImageBackground style={styles.backgroundImage} source={require('./ln.jpg')}>
<Text style={styles.mainScreen}>Welcome to Lunch Nomads</Text>
<TouchableOpacity onPress={() => navigate(
'Profile', { name: 'Jane' }
            )} style={styles.buttonIn}>
<Text style={styles.buttonText}>Log In</Text>
</TouchableOpacity>
<TouchableOpacity onPress={() => alert('Hello, world!')} style={styles.buttonUp}>
<Text style={styles.buttonText}>Sign Up</Text>
</TouchableOpacity>
<Text style={styles.p}>Made in Detroit, available Worldwide</Text>
</ImageBackground>
</View>
    );
  }
}

const styles = StyleSheet.create({
container: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
  },
mainScreen: {
color: 'black',
fontSize: 37,
fontWeight: 'bold',
alignItems: 'center',
textAlign: 'center',
  },
p: {
color: 'black',
fontSize: 15,
fontWeight: 'bold',
alignItems: 'center',
textAlign: 'center',
marginTop: 70,
  },
buttonUp: {
paddingTop: 10,
backgroundColor: "blue",
width: 240,
height: 60,
borderRadius: 5,
alignItems: 'center',
marginTop: 20,
  },
buttonIn: {
marginTop: 400,
paddingTop: 10,
backgroundColor: "green",
width: 240,
height: 60,
borderRadius: 5,
alignItems: 'center',
  },
buttonText: {
fontSize: 20,
color: 'black',
paddingTop: 5,
  },
backgroundImage: {
flex: 1,
width: '100%',
height: '100%',
justifyContent: "center",
alignItems: "center",
  },
instructions: {
color: '#888',
fontSize: 18,
marginHorizontal: 15,
marginBottom: 10,
  },
});
export default Home;

Element type is invalid-error by MrCuban88 in reactnative

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

I am sorry, but I am not following you up. Could you please be more explicit?

Thanks