Skip to content

Instantly share code, notes, and snippets.

View kkd927's full-sized avatar
🇰🇷

KyoungDeok Kwon kkd927

🇰🇷
View GitHub Profile
@kkd927
kkd927 / gist:1feb40b3a279c156e14e
Last active August 29, 2015 14:04
how to install python-setuptools & pip on centos5.x (python2.7)
# 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
@kkd927
kkd927 / gist:041c356b10374071daf7
Last active August 29, 2015 14:04
how to install python 2.7 on CentOS 5.x
# 필요 패키지들 설치
yum -y groupinstall 'Development Tools'
yum -y install openssl-devel* ncurses-devel* zlib*.x86_64
yum -y install bzip2 bzip2-devel bzip2-libs
@kkd927
kkd927 / gist:0f8fb8175b9c12c47f96
Last active August 29, 2015 14:03
Linux Port Forwarding
sudo iptables -t nat -A PREROUTING -p tcp -d your_ip_address --dport 80 -j REDIRECT --to-port 3000
@kkd927
kkd927 / gist:80c09f5669ac69679131
Created June 6, 2014 12:52
Code to erase blank before and after string in C/C++
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) {
@kkd927
kkd927 / local.conf
Created May 5, 2014 10:18
DevStack local.conf for OpenStack IceHouse
[[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