Neewer NW 670 Speedlite Display Cameras
Neewer NW-670 TTL Flash Speedlite with LCD Display for Canon 7D Mark II,5D Mark II III,IV,1300D,1200D,1100D,750D,700D,650D,600D,550D,500D,100D,80D,70D,60D and Other Canon DSLR Cameras
Neewer NW-670 TTL Flash Speedlite with LCD Display for Canon 7D Mark II,5D Mark II III,IV,1300D,1200D,1100D,750D,700D,650D,600D,550D,500D,100D,80D,70D,60D and Other Canon DSLR Cameras
Mpow Jaws V4.1 Bluetooth Headphones Wireless Neckband Headset Stereo Noise Cancelling Earbuds w/ Mic-Black Sound Leadership & Voice Clarity Featured with CVC6.0 noise cancellation technology, the headphone intelligently filters out background noise for perfect speech transmission in busy and noisy environments. Compared to Bluetooth 4.0, the latest Bluetooth 4.1 technology features faster & stable signal …
워드프레스(WordPress)의 xmlrpc.php 파일을 이용한 공격에 대비하기 위해 nginx 에서 아래와 같이 설정한다. location = /xmlrpc.php { deny all; access_log off; log_not_found off; } 그러나 위와 같이 설정했을 때 xmlrpc를 이용해 포스트를 등록하는 등의 작업을 할 수 없기 때문에 특정 아이피(IP)에서는 접근을 허용해야 하는 경우가 생긴다. 이 때는 보통 아래와 같이 설정을 한다. location = /xmlrpc.php …
네이버에서 제공하는 Papago NMT API 이용을 위한 Class 이다. 네이버 파파고 API는 https://developers.naver.com/docs/nmt/reference/ 를 참고한다. API 요청은 아래와 같은 코드로 실행하면 실행에 필요한 Class 코드는 포스트 하단에 있다. API 테스트 전 애플리케이션으 등록해야 하고 아래 코드에서 PAPAGO_NMT_ID, PAPAGO_NMT_SECRET 값을 설정해야 한다. <?php require ‘./PapagoNMT.php’; define(‘PAPAGO_NMT_ID’, ‘client ID’); define(‘PAPAGO_NMT_SECRET’, ‘client Secret’); $papago = new PapagoNMT(PAPAGO_NMT_ID, PAPAGO_NMT_SECRET); $papago->setSource(‘en’); $papago->setTarget(‘ko’); …
xmlrpc를 이용한 워드프레스 포스트 등록 기능이다. 공개된 xmlrpc client를 사용했으며 UI는 Bootstrap을 이용했다. 첨부파일을 다운로드 후 웹서에 업로드한 후 브라우저에서 접속하면 아래와 같은 화면이 표시된다. 각 필드를 직접 입력하고 Post 버튼을 클릭하면 워드프레스 블로그에 포스트가 등록된다. https://codex.wordpress.org/XML-RPC_WordPress_API https://github.com/letrunghieu/wordpress-xmlrpc-client