Skip to content

Instantly share code, notes, and snippets.

#!/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;
@mahisat
mahisat / LandingScreen.js
Last active June 29, 2019 06:52
Landing screen
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 {