import React, { Component } from 'react';
import { TouchableWithoutFeedback, View, TextInput } from 'react-native';
import dismissKeyboard from 'react-native/Libraries/Utilities/dismissKeyboard';
export default class LoginForm extends Component {
constructor(props) {
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
// Backup | |
mysqldump -u root -p databasename | gzip > databasename.sql.gz | |
// Restore | |
zcat databasename.sql.gz | mysql -u root -p databasename |
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
// Go to post page -> click show popup people like post -> run script | |
// 04/06/2017 | |
var keepContinue = 0; | |
var cancel = setInterval(function(){ | |
keepContinue++; | |
var seeMore = document.getElementsByClassName('pam uiBoxLightblue uiMorePagerPrimary'); | |
if(seeMore.length == 1) { | |
seeMore[0].click(); | |
} else { | |
inviteAll(); |
NewerOlder