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
[[local|localrc]] | |
DEST=/opt | |
# If git protocol is blocked in your testing environment | |
# GIT_BASE=${GIT_BASE:-https://git.openstack.org} | |
# Credentials | |
DATABASE_PASSWORD=openstack |
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
char * space_remove(char *str) | |
{ | |
// change BUF_SIZE depending on the length of your string | |
char buf[BUF_SIZE]={0,}; | |
char *p; | |
p = strtok(str, "\r\n\t "); | |
strcat(buf, p); | |
while(p!=NULL){ | |
p = strtok(NULL, "\r\n\t "); | |
if(p!=NULL) { |
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
sudo iptables -t nat -A PREROUTING -p tcp -d your_ip_address --dport 80 -j REDIRECT --to-port 3000 |
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
# ํ์ ํจํค์ง๋ค ์ค์น | |
yum -y groupinstall 'Development Tools' | |
yum -y install openssl-devel* ncurses-devel* zlib*.x86_64 | |
yum -y install bzip2 bzip2-devel bzip2-libs | |
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
# 1. pip ์ค์น๋ฅผ ์ํ python-setuptools ๋ค์ด | |
wget http://pypi.python.org/packages/2.7/s/setuptools/setuptools-0.6c11-py2.7.egg | |
# 2. pip ์ค์น๋ฅผ ์ํ python-setuptools ์ค์น | |
sh setuptools-0.6c11-py2.7.egg |
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
# 1. Download JDK 6 using wget/curl (cli) | |
wget --no-cookies --no-check-certificate --header "Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com%2F; oraclelicense=accept-securebackup-cookie" "http://download.oracle.com/otn-pub/java/jdk/6u45-b06/jdk-6u45-linux-x64.bin" | |
# 2. Change mode to excute | |
chmod +x jdk-6u45-linux-x64.bin |
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
# http://www.itstory.tk/88 | |
# [Head & Compute Node] | |
# 1. Download torque-3.0.5.tar.gz with wget | |
$ wget -O torque-3.0.5.tar.gz "http://wpfilebase.s3.amazonaws.com/torque/snapshots/torque-3.0.5-snap.201203201448.tar.gz?AWSAccessKeyId=AKIAJN2PZU37BETGCSOQ&Expires=1429823823&Signature=WWw28UBfaJeR6tB5Nekcm49htKQ%3D" | |
# 2. Unzip torque-3.0.5.tar.gz | |
$ tar zxvf torque-3.0.5.tar.gz | |
# 3. Configure torque with appropriate options |
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
# view all ansible installation guide -- http://www.itstory.tk/89 | |
git clone git://github.com/ansible/ansible.git | |
cd ./ansible | |
source ./hacking/env-setup | |
pip install paramiko PyYAML jinja2 httplib2 |
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
<script type="text/javascript" src="http://apis.daum.net/maps/maps3.js?apikey=DAUM_MAPS_DEMO_APIKEY" charset="utf-8"></script> | |
<script type="text/javascript"> | |
var map; | |
$( function init() { | |
map = new daum.maps.Map(document.getElementById('map'), { | |
center: new daum.maps.LatLng(37.537123, 127.005523), | |
level: 3 |
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
<script type="text/javascript" src="http://apis.daum.net/maps/maps3.js?apikey=DAUM_MAPS_DEMO_APIKEY" charset="utf-8"></script> | |
<script type="text/javascript"> | |
var map; | |
$(function init() { | |
map = new daum.maps.Map(document.getElementById('map'), { | |
center: new daum.maps.LatLng(37.537123, 127.005523) | |
}); | |
var zoomControl = new daum.maps.ZoomControl(); # Creat Zoom Control | |
map.addControl(zoomControl, daum.maps.ControlPosition.RIGHT); # Add Zoom Control | |
var mapTypeControl = new daum.maps.MapTypeControl(); # Create Map Type Control |
OlderNewer