Local에 SonarQube 설치 후 이클립스를 통해 maven 프로젝트 품질검사 하는 방법 http://docs.sonarqube.org/display/SCAN/Analyzing+with+SonarQube+Scanner+for+Maven 1. http://www.sonarqube.org/downloads/ 에서 최신 버전 6.0을 다운 받는다. 2. sonarqube-6.0/conf/sonar.properties 수정참고 : http://docs.sonarqube.org/display/SONAR/Installing+the+Server DATABASE, WEB SERVER, COMPUTE ENGINE, ELASTICSEARCH, LOGGING 등을 설정을 한다. 주석이 잘되어 있어 자신이 원하는 설정을..
OS : CentOS 7 docker를 설치# yum install docker docker service를 실행# systemctl start docker Tadpole db hub docker image 다운로드# docker pull hyunjongcho/tadpoledbhub Tadpole db hub 실행# docker run -name tadpole -d -p 8080:8080 hyunjongcho/tadpoledbhub:latest-name : container name-d : deamon 으로 구동-p port1:port2 : host의 port1로 들어오는 요청을 docker image의 port2로 보낸다. Tadpole db hub 종료# docker stop container_id ..
Go 1.설치와 세팅 from 재봉 이
알고리즘과 자료구조 from 영기 김 좋은 자료네요
javascript 정규식에서 global flag 사용하면 정규식 객체가 lastIndex를 유지? 한다는걸 저만 몰랐나요? ^^;; http://stackoverflow.com/questions/6891545/javascript-regexp-test-returns-false-even-though-it-should-return-true This is a common behavior that the the exec or test methods show when you deal with patterns that have the global g flag.The RegExp object will keep track of the lastIndex where a match was found, and then on..