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
Posted
Filed under 프로그래밍/PHP

class Timer {

 var $classname = "Timer";
 var $start     = 0;
 var $stop      = 0;
 var $elapsed   = 0;

 # Constructor
 function Timer( $start = true ) {
  if ( $start )
   $this->start();
 }

 # Start counting time
 function start() {
 $this->start = $this->_gettime();
 }

 # Stop counting time
 function stop() {
 $this->stop    = $this->_gettime();
 $this->elapsed = $this->_compute();
 }

 # Get Elapsed Time
 function elapsed() {
 if ( !$elapsed )
 $this->stop();

  return $this->elapsed;
 }

 # Get Elapsed Time
 function reset() {
 $this->start   = 0;
 $this->stop    = 0;
 $this->elapsed = 0;
 }

 #### PRIVATE METHODS ####

 # Get Current Time
 function _gettime() {
 $mtime = microtime();
 $mtime = explode( " ", $mtime );
 return $mtime[1] + $mtime[0];
 }

 # Compute elapsed time
 function _compute() {
 return $this->stop - $this->start;
 }
 
}

$t=new Timer();

2014/04/07 10:49 2014/04/07 10:49
Posted
Filed under 장난감
그동안 특별히 쓸때가 없어 서랍에 잠자고 있던 MBOOk을 꺼냈다.
32G SSD를 장착한 엄청 나게 작은 노트북 인데 이번에 NAS에 빠지면서 설치해봤다.

일단 xpenology 는 설치중 지원하지 않는 CPU라며 설치가 안된다.

그래서 OpenMediaVault 를 설치했는데 문제 없이 잘 설치하고 세팅까지 마무리 했다.
토렌트도 돌리고 ownCloud로 백업까지...
펜리스라 소리도 안난다.

아참...와이파이는 인식을 못하는지 안잡힌다.

그래서 집에있던 cosy에서 나온 USB유선랜과 3포트 USB HUB가 달려있는 제품을 끼웠는데...
아주 잘 인식한다^^

지금은 virtualbox를 설치해보고 있는중....
--> 오~ 정말 신기신기...virtualbox 제대로 실행된다~ 요놈 정말 물건...


사용자 삽입 이미지


2014/03/18 17:31 2014/03/18 17:31
Posted
Filed under 프로그래밍

/opt/redmine-2.4.1-0/apps/redmine/htdocs 에서

* 설치
bin/rake redmine:plugins:migrate RAILS_ENV=production
 
* 삭제
bin/rake redmine:plugins:migrate NAME=플러그인이름 VERSION=0 RAILS_ENV=production
 

---

쓸만한 플러그인

Redmine plugins:
  clipboard_image_paste          1.8
  redmine_dashboard              2.2
  redmine_hudson                 2.1.2
  redmine_image_clipboard_paste  1.0.0
  redmine_issue_detailed_tabs_time 0.1.0
  redmine_issue_extensions       0.2.0
  redmine_issue_templates        0.0.7
  redmine_lightbox               0.0.1
  redmine_monitoring_controlling 0.1.1
  redmine_my_roadmaps            0.1.13_redmine2.3
  redmine_redcarpet_formatter    2.1
  redmine_redcarpet_viewer       0.0.2
  redmine_wiki_extensions        0.6.4
  redmine_youtube_video          1.0.0


Redmine plugins:
  redmine_image_clipboard_paste  1.0.0
  redmine_issue_completion       0.0.2
  redmine_lightbox2              0.2.5
  redmine_redcarpet_viewer       0.0.2
  redmine_webhook                0.0.1

3.2.0에서 지원안하는것들을 뺐더니 몇가지 지원안하네
2014/03/14 18:26 2014/03/14 18:26