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..
https://github.com/http2/http2-spec/wiki/Implementations Contributing to HTTP/2Before submitting feedback, please familiarize yourself with our current issues list and review the HTTP/2 page and theworking group home page. If you're new to this, you may also want to read the Tao of the IETF.Be aware that all contributions to the specification fall under the "NOTE WELL" terms outlined below.The b..