create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
git fetch --all | |
git reset --hard origin/master | |
git pull origin master |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
adb kill-server | |
adb connect 127.0.0.1:53001 |
import java.util.Random; | |
public class PasswordGenerator { | |
String[] consonants = { "b", "c", "d", "f", "g", "h", "j", "k", "l", "m", | |
"n", "p", "q", "r", "s", "t", "v", "w", "x", "y", "z" }; | |
String[] vowels = { "a", "e", "i", "o", "u" }; | |
public String generate() { | |
String password = ""; |