mac : png to base64

$ 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    

Read More

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

Read More

인간은 구분으로 세상을 인식한다.

인간은 자신이 속한 세계에서 자신을 포함한 주변 세계를 구분을 통해 인식하고 판단한다. 우주는 유.무의 조화로 어떤 것도 정확한 경계선을 그을 수 없는데, 이를 관점에 따라 적당한 선을 그어 구분하면서 존재를 나누고 나눈 존재의 관계로 세상을 인식한다. 여기에서 항상 오차와 오류를 가져갈 수 밖에 없는데, 이 오차의 범위가 현재 상태에 현상으로 드러나면, 실수하 하고 드러나지 않을 […]

Read More

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 […]

Read More
12