This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
##this script will backup mysql and upload it to google drive | |
##directory name | |
dirname=$1; | |
##database name | |
database=$2; | |
##database username | |
dbuser=$3; | |
##database password | |
dbpass=$4; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
import { View, Text, TouchableOpacity, Dimensions } from 'react-native'; | |
export default class Landing extends Component { | |
constructor(props) { | |
super(props); | |
this.state = {}; | |
} | |
static navigationOptions = () => { | |
return { |