Label로 묶어 주면 check button이 아니라 글자를 눌러도 check button 누르는 것 처럼 된다. <label><input type=’checkbox’ id=’check_all’ class=’input_check’ /> <b>Check me</b></label> Checke…
- Category Archives 참고를 위한 저장물
-
-
How to install POCO C++ libraries on Windows with Visual studio 2015
1. Download Poco Libraries ( http://pocoproject.org/download/index.html ) 2. Extract(eg: extract to C:poco-1.6.1) 2-1. if you are choices included openssl version please openssl install on your win…
-
VisualStudio is doesn't default support "MultiByteCode".
VisualStudio is doesn’t default support “MultiByteCode” so. When you compile MBCS ( Multi-Byte Character Set ) Project look like below error message. ===============================…
-
CMAKE compile options and etc options
cmake -G “Unix Makefiles” -DCMAKE_INSTALL_PREFIX=`pwd`/install -DCMAKE_BUILD_TYPE=MinSizeRel -DCMAKE_C_COMPILER=`xcrun -f clang` -DCMAKE_CXX_COMPILER=`xcrun -f clang++` -DwxWidgets_CONFIG_…
-
tip for auto_ptr with C++
1. how to test whether auto_pointer is null? if (!myPointer.get()) { // do not dereference here } 2. how to pass auto_pointer ? std::auto_ptr<class> ptr_class = std::auto_ptr( new class );
-
[scrap]자바 정규표현식 필터링 Pattern 사용법 예시
http://metalbird.tistory.com/entry/자바-정규표현식-필터링-Pattern-사용법-예시 public void checkRegularCharactor(String path, String method) throws Exception { String invalidString = “|\|:|”|\*|\?|…
-
[scrap]Linux ssh 초기 보안 설정
http://simonshin.egloos.com/2247508 /bin/su File chattr -i /bin/su chown root.wheel /bin/su chmod 4750 /bin/su chattr +i /bin/su /etc/ssh/sshd_config File 파일을 열어서 아래 사항들이 활성화 될 수 있도록 수정 한다. Pe…
-
[scrap] MySQL Replication 설정과 몇 가지 테스트
http://blog.hibrainapps.net/130 MySQL을 DB로 사용하면서 서버의 부하 분산을 위한 방법 중 하나로 Replication 을 사용한다. Replication 은 Master 하나에 n개의 Slave로 지정이 가능하다. Slave는 다시 Master 역할을 할수 있으며…
-
[scrap] grep , sed, awk 정규식
** grep 한 데이터 중 3번째 항목만 가져 오고 싶을때.. grep “.xml” | awk ‘print {$3}’ http://unabated.tistory.com/447 정규식이란 무엇인가 ? 어떤 문자열의 집합을 묘사하는데 사용되는 텍스트 스트링 정해진 구문 규칙에 따른다 Editor, Utillity,…