목록전체 글 (77)
4번독수리의 둥지
There should be no significant performance difference between multiple tables in a single database versus multiple tables in separate databases. In MySQL, databases (standard SQL uses the term "schema" for this) serve chiefly as a namespace for tables. A database has only a few attributes, e.g. the default character set and collation. And that usage of GRANT makes it convenient to control access..
Note that $_POST is NOT set for all HTTP POST operations, but only for specific types of POST operations. I have not been able to find documentation, but here's what I've found so far. $_POST _is_ set for: Content-Type: application/x-www-form-urlencoded In other words, for standard web forms. $_POST is NOT set for: Content-Type:text/xml A type used for a generic HTTP POST operation. http://php.n..
http://stackoverflow.com/questions/12009423/what-does-status-canceled-for-a-resource-mean-in-chrome-developer-tools We fought a similar problem where Chrome was canceling requests to load things within frames or iframes, but only intermittently and it seemed dependent on the computer and/or the speed of the internet connection. This information is a few months out of date, but I built Chromium f..
for ( var i in Btns ) 따위로 순회하면서 처리하는 foreach 스타일을 좋아하는데, Array.prototype대상이 배열인데도 i에 0,1, ... 따위가 아니라 객체의 property의 key값도 포함되면서 예기치 않은 동작을 하는 것을 확인 function foo( arg1 ) { var args = Array.prototype.slice.call(arguments, 1); for ( var i in args ) { var arg = args[i]; // Do something } };
example.html의 으로 이동하는 와 같은 기능을 구글 드라이브에서 사용하기Spring을 사용한 프로젝트 소스를 분석하면서 문서 analysis.gdoc를 작성하던 중 Spring 관련 내용(DispatcherServlet의 개념을 몰라 공부하였고 공부한 부분을 메모)은 별도 문서 spring.gdoc에 정리하고 analysis.gdoc에서는 spring.gdoc의 DispatcherServlet 요약 부분으로 가는 링크만 제공하고 싶다.구글 드라이브에서는 다른 문서의 특정 부분을 참조하는 기능을 직접 제공하지 않는 것 같아 다른 문서의 북마크 주소를 복사해 오는 방법으로 적용함1. spring.gdoc에 DispatcherServlet에 대한 메모 작성2. 작성한 메모 상단에 북마크 생성 : 삽입..