본문 바로가기
728x90

전체 글364

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.
JQuery 와 Prototype 충돌 [원문] http://smartjuho.tistory.com/entry/JQuery-%EC%99%80-Prototype-%EC%B6%A9%EB%8F%8C-%EB%B0%A9%EC%A7%80 JQuery와 prototype에서 $()를 사용하려면 충돌이 일어나 스크립트 오류를 일으킨다. 둘다 같은 $()를 쓰니까.. 이를 해결하는 방법은 아래와 같다. jQuery 와 prototype 을 정의한 아래줄에 다음의 소스를 추가한다. 위와 같이 정의해두면 jQuery에 대한 $()는 -> j$() 로 대체해서 사용할수 잇게된다. 물론 충돌도 일어나지 않는다. ++ 하지만! jquery의 다른 라이브러리를 다운로드 받아 사용하려면 해당 라이브러리의 $ 를 j$ 로 모두 바꿔줘야 하는 번거로움이 있다. 이는 스크립트.. 2016. 5. 26.
InvalidCharactErerror [출처] http://www.codekin.com/?p=267 document.createElement() 를 실행할때 InvalidCharactErerror 오류가 나는 이유는 IE버전에 있다. 정확한 버전은 찾아봐야겠지만. IE10표준모드에서는12var voNode = document.createElement("");document.getElementsByTagName("body")[0].appendChild(voNode);위 처럼 를 이용한 풀 태그를 인자로 넘기는 것이 안된다. 표준모드에서 작동시키기 위해서는 attribute를 나누어줄 필요가 있다.12345var voNode = document.createElement("div");voNode.setAttribute("id" , "myDiv").. 2016. 1. 11.
System.Web.Helpers.Json..cctor() 메서드가 System.Web.Helpers.Json.CreateSerializer() 메서드에 액세스하지 못했습니다 System.Web.Helpers.Json..cctor() 메서드가 System.Web.Helpers.Json.CreateSerializer() 메서드에 액세스하지 못했습니다 -> http://stackoverflow.com/questions/7066726/attempt-by-method-system-web-helpers-json-cctor-to-access-method-system-we 2015. 9. 7.
728x90