This file contains 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
Alabama | |
Alaska | |
Arizona | |
Arkansas | |
California | |
Colorado | |
Connecticut | |
Delaware | |
Florida | |
Georgia |
This file contains 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
Afghanistan | |
Albania | |
Algeria | |
Andorra | |
Angola | |
Anguilla | |
Antigua & Barbuda | |
Argentina | |
Armenia | |
Australia |
This file contains 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
Asia | |
Australia | |
Antarctica | |
Africa | |
Europe | |
North America | |
South America |
This file contains 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
box: ubuntu | |
build: | |
steps: | |
- script: | |
name: start build | |
code: echo "started building..." | |
deploy-firebase: | |
steps: |
This file contains 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 { | |
AppRegistry, | |
StyleSheet, | |
Text, | |
View | |
} from 'react-native'; | |
import RNSecureKeyStore from "react-native-secure-key-store"; |
This file contains 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
{ | |
"images": [ | |
{ | |
"extent": "full-screen", | |
"idiom": "iphone", | |
"filename": "[email protected]", | |
"minimum-system-version": "7.0", | |
"orientation": "portrait", | |
"scale": "2x", | |
"subtype": "retina4" |
This file contains 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
1) Create directory and go to /opt/jdk | |
mkdir /opt/jdk | |
cd /opt | |
2) Download Java package (if someone need another version only need change version and build in link) | |
wget --header "Cookie: oraclelicense=accept-securebackup-cookie" http://download.oracle.com/otn-pub/java/jdk/8u121-b13/e9e7ea248e2c4826b92b3f075a80e441/jdk-8u121-linux-x64.tar.gz | |
3) Optional (if you are not logged as root you need): | |
sudo su |
This file contains 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
# Git aliases | |
alias st='git status' | |
alias ga='git add .' | |
alias ci='git commit' | |
alias pl='git pull' | |
alias pu='git push' | |
alias plr='git pull --rebase' | |
alias co='git checkout' | |
alias nb='co -b' |
This file contains 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
/** | |
* Example AsyncStorage React Native | |
* https://github.com/pradeep1991singh | |
*/ | |
import React, { Component } from 'react'; | |
import { | |
AppRegistry, | |
StyleSheet, | |
Text, |
This file contains 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
# Install python, pip, virtural environment & virutal environment wrapper | |
# https://gist.github.com/pradeep1991singh/f2d38e01aa872d4c9a7baf5539166a74 | |
wget https://gist.githubusercontent.com/pradeep1991singh/f2d38e01aa872d4c9a7baf5539166a74/raw/fb8ae67575102605f35952a2c0d4303baff8b889/python3-dev-setup.sh | |
sh python3-dev-setup.sh | |
# install libsodium | |
if [sudo apt-get install libsodium13] ; then | |
sudo apt-get update | |
sudo apt-get install libsodium13 | |
else |