$ opensslOpenSSL> base64 -in "test.png" -out "test.txt" openssl base64 -in test.png -out test.txt echo -n "data:image/png;base64,$(cat test.png | base64 | tr -d '\r\n')" > test.txt sips -s format jpeg test.png --out test.jpg sips -s format bmp test.jpg --out test.bmp
centos : cpu temperature monitor, lm_sensors
# yum install lm_sensors # sensors-detect # sensors
centos 7 : change locale Hint
# vi /etc/locale.conf
test
설빙(@sulbing.official)님의 공유 게시물님, 2017 3월 13 오후 10:29 PDT
map_picker : 우커머스(woocommerce) 배송주소 검색에서 사용하기
1. 플러그인 : 우커머스, owl-map 을 설치한다. 2. 우커머스의 include파일을 수정(2개 파일) 경로 : /wp-content/plugins/woocommerce/includes/class-wc-countries.php 경로 : /wp-content/plugins/woocommerce/includes/wc-template-functions.php 3. owl-map : API키를 입력한다. (1개 파일, 메뉴 설정 1군데) 경로 : /wp-content/plugins/owl-map/config.php 경로 : 관리자화면 >설정 > Naver Map
owl_menu : 레프트 사이드 메뉴 스타일 적용하기.
경로 : /wordpress/wp-content/plugins/owl-menu/lib/owl-menu-lib.php 1. 아래 이미지의 선택한 문장 내용을 추가한다. 2. 아래 이미지의 내용을 추가한다. add_action()을 추가한 후 실행이 되지 않으면 do_action()이 있는지 확인 후 없으면 추가해 준다.
인간은 구분으로 세상을 인식한다.
인간은 자신이 속한 세계에서 자신을 포함한 주변 세계를 구분을 통해 인식하고 판단한다. 우주는 유.무의 조화로 어떤 것도 정확한 경계선을 그을 수 없는데, 이를 관점에 따라 적당한 선을 그어 구분하면서 존재를 나누고 나눈 존재의 관계로 세상을 인식한다. 여기에서 항상 오차와 오류를 가져갈 수 밖에 없는데, 이 오차의 범위가 현재 상태에 현상으로 드러나면, 실수하 하고 드러나지 않을 […]
Lightbox Gallery 이미지 링크 오류 디버깅
이미지 클릭할 때 이미지 링크 주소로 바뀌면서 colorbox 가 나타날 때 colorbox 창을 닫아도 이전화면으로 돌아가지 않는 현상이 있을 수 있다. 이 때는 다음과 같이 e.stopImmediatePropagation(); 구문을 추가해 주면 된다. // Add ColorBox's event bindings function addBindings() { ... $('.' + boxElement, document).live('click', function (e) { // ignore non-left-mouse-clicks and clicks modified with ctrl […]