본문 바로가기

분류 전체보기473

Advanced Javascript # JavaScript data types Primitive and objects number string boolean undefined null # Object literal notation ● { Wrapped in curly braces } ● ,-delimited properties ● key:value pairs ● var obj = {a: 1, "b c d": 2}; # Array literal notation var array = [ "Square", "brackets", "wrap", "the", "comma-delimited", "elements" ]; # JSON ● JavaScript Object Notation ● Uses object and array literals ● Quot.. 2019. 7. 16.
WordPress ※ 참고 : http://www.slideshare.net/runpeaceya/ss-15417727 ■ WordPress - 설치형 블로그 기반의 컨텐츠 관리 시스템(CMS) - 오픈 소스 소프트웨어. - 우수한 확정성 : 테마, 플러그인, 템플릿. Philosophy ■ 대부분의 SNS는 소셜 플러그인을 가지고 있음. - 페이스북 : 로그인, 코멘트, 라이크 박스, 라이크 버튼등. - 트위터 : 로그인, 트윗 버튼 등 - 핀터레스트 : 핀잇 버튼 등 - 구글+ : 로그인, +1 버튼 등. ■ 사용자 친구관계(Social)를 그대로 워드프레스 사이트에서 활용 가능. ■ 각종 클라우드 서비스가 트래픽을 대신 감당해준다. - 다양한 클라우드 서비스 - 이미지 : 피카사, 플리커 등. - 비디오 : 유트브, .. 2019. 7. 16.
change element readonly & disabled to double click~~!! # change element readonly & disabled to double click~~!! ##### [source : https://jsfiddle.net/softm/f5Lwvb1q/](https://jsfiddle.net/softm/f5Lwvb1q/) ```html change element readonly & disabled to double click~~!! bbbbb iiiii ``` 2019. 7. 16.
xdebug option php xdebug option php doc https://xdebug.org/docs/ : function : https://xdebug.org/docs/all_functions stack trace : https://xdebug.org/docs/all_functions [For full config options : https://xdebug.org/docs/all_settings](https://xdebug.org/docs/all_settings] 2019. 7. 16.
PDT php debug - xdebug # xdebug 를 통해 PDT에서 debug하기. ※ 참고 : http://xdebug.org/wizard.php http://warmz.tistory.com/767 http://warmz.tistory.com/766 1. php 버전 확인. - phpinfo() 화면으로 확인. 1.1. 확인요소 - Compiler : MS VC6 - Architecture : x86 - PHP Version : 5.3 - Thread Safe Build : yes 2. xdebug dll download 2.1. php 버전에 맞는 dll 검색 - _TS 가 붙은 파일 == Thread Safe Build : yes - x86 == 32bit 3. PHP/ext 폴더에 DLL 복사. ( ex : php_xdebug-.. 2019. 7. 16.
URI, URL, URN ■ 원본 : http://cafe.naver.com/keidao/214 [펌] URI, URL, URN 인터넷 상에서 일반적으로 이루어지는 작업은 자원(resource)을 찾고 가져오는 일에 관... cafe.naver.com ■ URI 인터넷 상에서 일반적으로 이루어지는 작업은 자원(resource)을 찾고 가져오는 일에 관련되어 있습니다. 자원이란 인터넷상에 존재하는 html 파일이나 gif 파일 등을 의미합니다. 또한 넓은 의미로 생각한다면 인터넷을 통하여 얻을 수 없는 자원도 포함합니다. 이러한 상황을 전제로 URI를 정의하면 다음과 같습니다. URI 란 리소스를 식별하는 문자열이다. 선호도에 따라 우리가 잘 알고 있는 URL(Uniform Resource Locator) 또는 URN(Univer.. 2019. 7. 16.