Do Not Think!!!

Posted
Filed under 01010101

ubuntu 12.04

apm + xdebug

eclipse + pdt + aptana plugin + mylyn

bitbucket (git + issue tracker)

 


 

ubuntu 12.04

http://www.ubuntu.com/


apm + xdebug

http://dont.pe.kr/tt/414


eclipse + pdt + aptana plugin + mylyn

download eclipse
http://eclipse.org/

install pdt
http://www.eclipse.org/projects/project.php?id=tools.pdt

install aptana plugin
http://www.aptana.com/

install mylyn


bitbucket

create repository & issue tracker
https://bitbucket.org/


mylyn bitbucket connector

install mylyn bitbucket connector
https://bitbucket.org/pplupo/bitbucket-mylyn-connector/wiki/Home



Posted
Filed under 01010101

0. 문제

아마존에서 EC2 + ELB 조합으로 서버를 구성하면, 서버에 접속한 클라이언트의 IP 주소를 받아오지 못함

1. 원인

Elastic Load Balancer 에 의해 $_SERVER["REMOTE_ADDR"] 가 감춰짐
http://blog.svnlabs.com/get-remote-host-client-ip-behind-load-balancers-elb/

2. 해결

$_SERVER["HTTP_X_FORWARDED_FOR"] 를 이용

3. CodeIgniter 적용

config.php 파일 수정
[CODE]/*
|--------------------------------------------------------------------------
| Reverse Proxy IPs
|--------------------------------------------------------------------------
|
| If your server is behind a reverse proxy, you must whitelist the proxy IP
| addresses from which CodeIgniter should trust the HTTP_X_FORWARDED_FOR
| header in order to properly identify the visitor's IP address.
| Comma-delimited, e.g. '10.0.1.200,10.0.1.201'
|
*/
$config['proxy_ips'] = '여기에 ELB 아이피를 추가';[/CODE]

Posted
Filed under 글로 기록하기
기존 1.8.5 에서 -> 1.9.0 Beta 6 으로 업그레이드!
http://notice.textcube.org/ko/238

아직 베타버전이기는 하지만, 새해를 맞이하여 상큼하게 업그레이드 했습니다.

일단 눈에 띄는 문제는 없어보이네요.


덧.
정식 버전은 언제 나올려나...
Posted
Filed under 사진으로 기록하기

2012년 12월 30일

야간 땡보딩
사용자 삽입 이미지



2012년 12월 31일

헝그리보더 펀클리닉 Vol 4.
사용자 삽입 이미지



2013년 1월 1일

사용자 삽입 이미지
사용자 삽입 이미지



2013년 1월 2일

사용자 삽입 이미지
사용자 삽입 이미지



2013년 1월 3일

영하 21도 강추위
사용자 삽입 이미지
사용자 삽입 이미지
사용자 삽입 이미지
사용자 삽입 이미지



2013년 1월 4일

영하 28도
전광판 고장
실내온도 영하 3도
사용자 삽입 이미지
사용자 삽입 이미지
사용자 삽입 이미지
사용자 삽입 이미지


뵐클 Coal XT 데크 시승
사용자 삽입 이미지



Posted
Filed under 01010101

[CODE]SET FOREIGN_KEY_CHECKS = 0;
TRUNCATE TABLE tablename;
SET FOREIGN_KEY_CHECKS = 1;[/CODE]

MySQL 5.5.7 부터 FOREIGN KEY 설정이 된 테이블을 TRUNCATE 하려면 FOREIGN_KEY_CHECKS을 0으로 지정해야한다. 안 그러면 Cannot truncate a table referenced in a foreign key constraint 오류가 발생한다.