It's time someone compiled a list of nationalities to use within a web application. This gist attempts to make a first move at that.
##List of countries
I've also compiled a list of countries
# Set this environment variable using the Circle CI admin | |
# TOWER_OAUTH_TOKEN="<access token value>" | |
SLACK_WEBHOOK: &SLACK_WEBHOOK "https://hooks.slack.com/services/123/XXX/YYY" | |
BRANCH_PROD: &BRANCH_PROD "main" | |
BRANCH_STAGE: &BRANCH_STAGE "staging" | |
BRANCH_DEV: &BRANCH_DEV "dev" | |
SSH_HOST_PROD: &SSH_HOST_PROD "123.123.123.123" | |
SSH_HOST_STAGE: &SSH_HOST_STAGE "123.123.123.123" | |
SSH_HOST_DEV: &SSH_HOST_DEV "123.123.123.123" | |
AWX_DEPLOY_ID_PROD: &AWX_DEPLOY_ID_PROD "123" |
It's time someone compiled a list of nationalities to use within a web application. This gist attempts to make a first move at that.
##List of countries
I've also compiled a list of countries
It's time someone compiled a list of nationalities to use within a web application. This gist attempts to make a first move at that.
##List of countries
I've also compiled a list of countries
Select all and delete (actually move to buffer) | |
:%d | |
Select all and copy to buffer | |
:%y | |
Use p to paste the buffer. |
#!/bin/bash | |
PHANTOM_JS="phantomjs-1.9.8-linux-x86_64" | |
sudo apt-get install -y build-essential chrpath libssl-dev libxft-dev libfreetype6 libfreetype6-dev libfontconfig1 libfontconfig1-dev | |
cd ~ | |
wget https://bitbucket.org/ariya/phantomjs/downloads/$PHANTOM_JS.tar.bz2 | |
sudo mv $PHANTOM_JS.tar.bz2 /usr/local/share/ | |
cd /usr/local/share/ | |
sudo tar xvjf $PHANTOM_JS.tar.bz2 | |
sudo ln -sf /usr/local/share/$PHANTOM_JS/bin/phantomjs /usr/local/share/phantomjs |
#!/bin/sh | |
yum -y groupinstall "Development Tools" | |
wget http://dl.fedoraproject.org/pub/epel/5/x86_64/epel-release-5-4.noarch.rpm | |
wget http://rpms.famillecollet.com/enterprise/remi-release-5.rpm | |
rpm -Uvh epel-release-5*.rpm | |
rpm -Uvh remi-release-5*.rpm | |
yum -y install python-devel screen | |
yum --enablerepo=remi install libcurl-devel -y | |
mkdir /opt/miner | |
cd /opt/miner |