728x90 전체 글376 Golang : Set up source IP address before making HTTP request [출처] https://www.socketloop.com/tutorials/golang-set-up-source-ip-address-before-making-http-request Problem :There are times that you want to use certain IP address in a machine ( such as the one with permission to connect outside a firewall ) before making a HTTP request to another server. This is similar to the wget binding command :For example : wget --bind-address=192.168.10.1 \How to do th.. 2017. 8. 29. CURL ERROR 7 Failed to connect to Permission denied “CURL ERROR 7 Failed to connect to Permission denied” error is caused, when for any reason curl request is blocked by some firewall or similar thing.you will face this issue when ever the curl request is not with standard ports.for example if you do curl to some URL which is on port 1234, you will face this issue where as URL with port 80 will give you results easily.Most commonly this error has.. 2017. 7. 25. 커멘드 창에서 링크 만들기 1. 파일 심볼 링크 : mklink "링크" "원본"2. 파일 하드 링크 : mklink /h "링크" "원본"3. 폴더 심볼 링크 : mklink /d "링크" "원본"4. 폴더 정션 링크 : mklink /j "링크" "원본" http://cappleblog.co.kr/539 2016. 12. 20. HIMPEL FZD-L90SH 스마트 환풍기 HIMPEL FZD-L90SH 스마트 환풍기 2016. 11. 16. 인천 신축빌라 조경 조례 건축법 http://www.moleg.go.kr/main.html 건축법 제42조(대지의조경)① 면적이 200제곱미터 이상인 대지에 건축을 하는 건축주는 용도지역 및 건축물의 규모에 따라 해당 지방자치단체의 조례로 정하는 기준에 따라 대지에 조경이나 그 밖에 필요한 조치를 하여야 한다. 다만, 조경이 필요하지 아니한 건축물로서 대통령령으로 정하는 건축물에 대하여는 조경 등의 조치를 하지 아니할 수 있으며, 옥상 조경 등 대통령령으로 따로 기준을 정하는 경우에는 그 기준에 따른다.② 국토해양부장관은 식재(植栽) 기준, 조경 시설물의 종류 및 설치방법, 옥상 조경의 방법 등 조경에 필요한 사항을 정하여 고시할 수 있다. 건축법시행령제27조(대지의조경)① 법 제42조제1항 단서에 따라 다음 각 호의 어느 하나에 해당.. 2016. 6. 22. '코딩 없는' 개발, 소프트웨어 가시화 시대 온다 내용보기: http://www.itworld.co.kr/techlibrary/99731 2016. 6. 21. Azure Linux VM에서 MySQL 성능 최적화 원문: https://azure.microsoft.com/ko-kr/documentation/articles/virtual-machines-linux-classic-optimize-mysql/ 매개 변수 기본값 optmization innodb_buffer_pool_size없음7Ginnodb_log_file_size5M512Mmax_connections1005000innodb_file_per_table01innodb_flush_log_at_trx_commit12innodb_log_buffer_size8M128Mquery_cache_size16M0 2016. 6. 16. json 동적 사용하기 [원문] http://fosun.tistory.com/entry/php4-php51X%EB%8C%80%EC%97%90%EC%84%9C-json-%EC%82%AC%EC%9A%A9%ED%95%98%EA%B8%B0 if (!function_exists('json_decode')) { function json_decode($content, $assoc=false) { require_once 'classes/JSON.php'; if ($assoc) { $json = new Services_JSON(SERVICES_JSON_LOOSE_TYPE); } else { $json = new Services_JSON; } return $json->decode($content); } } if (!function_exists(.. 2016. 5. 31. curl 없이 post 데이터 주고 받기 [원문] http://stackoverflow.com/questions/8596311/how-to-make-a-post-request-without-curl $postdata = http_build_query( array( 'var1' => 'some content', 'var2' => 'doh' ) ); $opts = array('http' => array( 'method' => 'POST', 'header' => 'Content-type: application/x-www-form-urlencoded', 'content' => $postdata ) ); $context = stream_context_create($opts); $result = file_get_contents('http://example.. 2016. 5. 31. 이전 1 ··· 14 15 16 17 18 19 20 ··· 42 다음 728x90