본문 바로가기

개발

GitHub의 이벤트 실시간 모니터링 github.com/nat/ghtop nat/ghtop See what's happening on GitHub in real time (also helpful if you need to use up your API quota as quickly as possible) - nat/ghtop github.com 모니터링이기 때문에 api 요청을 많이 하여 조절은 필요한듯 옵션을 잘 보고 사용할것 더보기
디스크의 사용량 체크 df 명령어 대안 duf github.com/muesli/duf muesli/duf Disk Usage/Free Utility - a better 'df' alternative - muesli/duf github.com 기존 df보다 디스크 사용량을 깔끔하게 볼수 있다 더보기
정규식 관련 정규식 사용 Guide참고 - https://developer.mozilla.org/ko/docs/Web/JavaScript/Guide/%EC%A0%95%EA%B7%9C%EC%8B%9D 광고 아이디 체크Google ADID, IAFA : /^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-4[0-9A-Fa-f]{3}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$/ 유니크 아이디 체크UUID : /^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$/ 예제 var adid = /^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-4[0-9A-Fa-f]{3}-[0-9A-Fa-f]{4}-[0-9A-Fa-f.. 더보기
자바 스크립트 스타일 가이드 참고 1 - https://www.vobour.com/%EA%B5%AC%EA%B8%80%EC%9D%80-%EC%9E%90%EB%B0%94-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EC%8A%A4%ED%83%80%EC%9D%BC-%EA%B0%80%EC%9D%B4%EB%93%9C%EB%A5%BC-%EB%B0%9C%ED%96%89-%ED%95%A9%EB%8B%88%EB%8B%A4-%EB%8B%A4%EC%9D%8C%EC%9D%80-%EB%AA%87-%EA%B0%80%EC%A7%80-%ED%95%B5%EC%8B%AC 참고 2 - http://www.mimul.com/pebble/default/2015/11/05/1446709247270.html 더보기
multicast test https://sarc.io/index.php/miscellaneous/1088-multicast-test-iperf2 http://alexnetster.blogspot.com/2012/05/iperf.html http://idchowto.com/?p=3243 multicast test SERVER:iperf -s -u -B 224.1.1.100 -p 60001 -i 1 CLIENT:iperf -c 224.1.1.100 -p 60001 -u -T 32 -t 10 -i 1 더보기
express body-parser 관련 express body-parser에서 post 요청시 content-type이 application/x-www-form-urlencoded인 경우 json 형태의 body값이 이상하게 변환되었다 기존 body-parser 형태app.use(bodyParser.json());app.use(bodyParser.urlencoded({ extended: true})); 위의 경우 body-parser에서 application/x-www-form-urlencoded 대한 처리를 못하는 것 같아 구글 검색 후아래 형태를 추가하여 처리하도록 수정하였다 app.use( bodyParser.raw({ type: 'application/x-www-form-urlencoded' }), function (req, res, .. 더보기
자바스크립트 안티 패턴 https://github.com/nhnent/fe.javascript/wiki/%EC%95%88%ED%8B%B0-%ED%8C%A8%ED%84%B4#script%EB%8A%94-%EB%AC%B8%EC%84%9C-%ED%95%98%EB%8B%A8%EC%97%90%EC%84%9C-include-%ED%95%98%EB%9D%BC 더보기
도커 docker https://subicura.com/2017/01/19/docker-guide-for-beginners-1.html 더보기
ngrok 로컬 테스트 페이지를 외부에서도 할수 있도록 임시 도메인을 발급참고 - https://blog.outsider.ne.kr/1159 더보기
Mysql 옵션 Mysql 옵션 mysql open files limit 관련http://minsql.com/mysql/mysql-open_files_limit-%EB%B3%80%EA%B2%BD%ED%95%98%EA%B8%B0/ 더보기