목록분류 전체보기 (556)
른록노트
참고사이트https://datatables.net/forums/discussion/17281/how-to-add-a-custom-column-dynamically-in-ajax-grid - 질문글 https://editor.datatables.net/examples/styling/envelopeInTable.html - 답변글
설치사이트https://github.com/lmenezes/cerebro#installation
참고사이트http://nota.tistory.com/53http://seedraker.tistory.com/20
1. 중단되지않는 백그라운드 작업 수행예를들면 nohup cerebro & /dev/null 출력 파일 이름을 정하려면 nohup cerebro & > test.txt 참고사이트https://zetawiki.com/wiki/%EB%A6%AC%EB%88%85%EC%8A%A4_nohup_%EC%82%AC%EC%9A%A9%EB%B2%95
7.0~ 방화벽 - firewalld6.0~ 방화벽 - iptables centos7 부터 기존 iptables -> 변경 firewalld 로 변경됨iptables 를 사용하려면 패키지 설치하면 사용가능 방화벽에 zone 이 존재하는데default 값으로 public zone 이 설정되어있다./etc/firewalld/firewalld.conf 에서 default zone 설정 확인 가능 centos7 부터 방화벽 설정 파일이 .xml 파일로 변경 되었다. /etc/firewalld/zones/public.xml 에서 해당 존의 설정 확인 ( default 라서 public.xml ) ** 방화벽 최초 설치시의 값 **[root@centos7 zones]# more public.xml Public Fo..
function regExp(){ //특수문자 검증 start var str = "2011-12-27"; var regExp = /[\{\}\[\]\/?.,;:|\)*~`!^\-_+@\#$%&\\\=\(\'\"]/gi if(regExp.test(str)){ //특수문자 제거 var t = str.replace(regExp, "") alert("특수문자를 제거했습니다. ==>" + t) }else{ alert("정상적인 문자입니다. ==>" + str) } //특수문자 검증 end } 참고사이트http://cityattack.tistory.com/64http://www.devholic.net/1000238
HashMap param; for(Entry e : param.entrySet()){String key = e.getKey();String value = e.getValue();} ============for each문 이해하기String[] numbers = {"one","two","three"};for(String number : numbers){System.out.println(number);} ==>인자for(뒤 인자를 순서대로 받아서 사용하는놈:배열형태로 있는 데이터){포문} 참고사이트https://stackoverflow.com/questions/14149984/for-each-loop-on-java-hashmap