Posted
Filed under 장난감
하비킹 2륜 버기 인데....쩝...
교쇼 무슨 제품 카피라고 한다.
문제는 너무 약하다...
두번 몰아보고 방출


사용자 삽입 이미지


2014/07/09 01:09 2014/07/09 01:09
Posted
Filed under 장난감
거북이 타이어는 보기에는 좋은데 무겁고 등산에는 좋지 않다.

사용자 삽입 이미지
사용자 삽입 이미지
2014/07/09 01:08 2014/07/09 01:08
Posted
Filed under 장난감
한동안 가지고 있던 GMADE R1
내구성도 좋고 괜찮은 넘이였는데 살짝 질리는감이 있다.


사용자 삽입 이미지
사용자 삽입 이미지
2014/07/09 01:06 2014/07/09 01:06
Posted
Filed under 프로그래밍
Window->Colours 에서 ANSI Blue를 74 74 255로 ANSI Blue Bold를 140 140 255 로 변경하면
엄청나게 어두웠던 색상이 밝아진다.
2014/07/08 14:50 2014/07/08 14:50
Posted
Filed under 퍼온거
몬스터에그 아일랜드 한국 로컬라이징 합니다.
사전등록 시작했어요~
마니마니 등록~

http://monegg.crooz.co.kr/


2014/06/24 20:23 2014/06/24 20:23
Posted
Filed under 프로그래밍
1. Storege 에서 Add로 하나 추가

2. fdisk -l 로 추가된거 확인

3. fdisk /dev/xvdb(추가된 스토리지 위치)

4. Command 에서 p -> n -> 모두 앤터 -> w

5. mkfs.ext4 /dev/xvdb1(fdisk로 생성한 스토리지 위치)

6. mount /dev/xvdb1 /data 


2014/06/09 19:06 2014/06/09 19:06
Posted
Filed under 장난감
2014/06/05 18:53 2014/06/05 18:53
Posted
Filed under 프로그래밍
Window -> Preferences -> Team -> Git

Remote Connection timeout(seconds) 

시간 늘려주면된다.

2014/05/28 11:28 2014/05/28 11:28
Posted
Filed under 프로그래밍

config/environments/production.rb

config.action_mailer.delivery_method = :smtp
config.action_mailer.perform_deliveries = true
config.action_mailer.raise_delivery_errors = true

config.action_mailer.smtp_settings = {
  :address              => "smtp.gmail.com",
  :port                 => 587,
  :domain               => 'gmail.com',
  :user_name            => 'account@gmail.com',
  :password             => 'password',
  :authentication       =>  :plain,
  :enable_starttls_auto => true
}
…


config/gitlab.yml

# Gitlab application config file
# Email used for notification
# about new issues, comments
email:
 from: account@gmail.com
  …
2014/05/28 11:06 2014/05/28 11:06
Posted
Filed under 프로그래밍
CENTOS 기준으로...

ifconfig lo:0 L4장비IP netmask 255.255.255.255 up

/etc/rc.local 에 재부팅할때도 항상 올라오게 해야함..
sudo ifconfig lo:0 L4장비IP netmask 255.255.255.255 up



2014/05/23 19:49 2014/05/23 19:49
Posted
Filed under 프로그래밍
git config --global http.postBuffer 524288000
2014/05/02 16:28 2014/05/02 16:28