본문 바로가기 메뉴 바로가기

야쿠이야기

프로필사진
  • 글쓰기
  • 관리
  • 태그
  • 방명록
  • RSS

야쿠이야기

必死則生 必生則死

검색하기 폼
  • 분류 전체보기 (359)
    • 나의이야기 (8)
    • 나의아들 (5)
    • 웹개발 (275)
      • Php (90)
      • Linux (43)
      • Server (1)
      • Tools (18)
      • Jquery (10)
      • Javascript (61)
      • HTML&CSS (12)
      • Java (11)
      • DataBase (29)
    • 모바일 (9)
    • 요리 (6)
    • 여러가지 (40)
  • 방명록

분류 전체보기 (359)
상속 보다 더 낳은 구조 , 상위 클래스 보다 인터페이스를 상속하여 구현,

웹개발/Java 2010. 12. 15. 16:59
XDEBUG PROFILE

프로파일러 시작하기 php.ini 에서 xdebug.profiler_enable 옵션을 1 로 설정하면 xdebug.profiler_output_dir 에 세팅된 디렉토리로 프로파일 데이터가 저장됨. 프로파일 데이터가 저장되는 파일의 이름은 항상 "cachegrind.out." 으로 시작되고 PID나 디버깅되는 스크립트가 들어있는 디렉토리의 crc32 hash 값으로 끝남. 프로파일러를 사용하기 위해선 항상 xdebug.profiler_output_dir 에 지정된 디렉토리의 공간에 신경써야 함. xdebug.profiler_enable_trigger 값을 1 로 설정하면 선택적으로 프로파일러를 실행시킬 수 있음. (GET/POST/COOKIE 값에 변수명을 XDEBUG_PROFILE 로 지정하고 req..

웹개발/Php 2010. 12. 15. 13:24
Understanding JavaScript Prototypes.

모든 Object Prototype 을 갖는다. var a = {}; //Firefox 3.6 and Chrome 5 Object.getPrototypeOf(a); //[object Object] //Firefox 3.6, Chrome 5 and Safari 4 a.__proto__; //[object Object] //all browsers a.constructor.prototype; //[object Object] Prototype 상속 받아 사용 할수 있다 //unusual case and does not work in IE var a = {}; a.__proto__ = Array.prototype; a.length; //0 //function will never be a constructor bu..

웹개발/Javascript 2010. 12. 14. 17:52
Javascript Namespace 정리

1. By Direct Assignment var myApp = {} myApp.id = 0; myApp.next = function() { return myApp.id++; } myApp.reset = function() { myApp.id = 0; } window.console && console.log( myApp.next(), myApp.next(), myApp.reset(), myApp.next() ); //0, 1, undefined, 0 var myApp = {} myApp.id = 0; myApp.next = function() { return this.id++; } myApp.reset = function() { this.id = 0; } myApp.next(); //0 myApp.nex..

웹개발/Javascript 2010. 12. 14. 17:06
Javascript RegEx Api

* Javascript RegEx Api The RegExp object RegExp 글로벌 오브젝트는 3가지 사용을 제시한다. var a = new RegExp("\\b[\\w]{4}\\b","g"); //match all four letter words //same as... a = /\b\w{4}\b/g; a.constructor //RegExp() "(penalty)Lampard, Frank(1-0)".match(/\b([\w]+),\s?([\w]+)/g); RegExp.leftContext //"(penalty)" RegExp.rightContext //"(1-0)" RegExp.$1 //"Lampard" RegExp.$2 //"Frank" var a = /\b[a-z]{10,}\b/i; //m..

웹개발/Javascript 2010. 12. 14. 10:54
이전 1 ··· 62 63 64 65 66 67 68 ··· 72 다음
이전 다음
D-DAY
최근에 올라온 글
  • ES6 TODO 1
  • php7 클로져 사용하기
  • 베일리 어게인 영화 후기.
  • 알고리즘이 변화는 이유
최근에 달린 댓글
  • 감사합니다 설명을 명쾌하게⋯
  • 좋은 기사입니다. 여기에서⋯
  • 그동안의 고되가 느껴지는 글⋯
  • 정리를 너무 잘 해주셔서 이⋯
Total
1,068,216
Today
0
Yesterday
4
링크
  • 네오미르
  • 아톰양
  • bloodguy
  • White Life Story :: White L⋯
TAG
  • 사랑이
  • SlideShow
  • 코엑스
  • events
  • 할머니
  • 아이폰 발행
  • 아들
  • selectbox
  • jquery Custom Event
  • 아이폰
  • jQuery
  • zen coding
more
«   2022/06   »
일 월 화 수 목 금 토
      1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30    
글 보관함
  • 2019/04 (2)
  • 2018/11 (1)
  • 2018/03 (1)
  • 2017/12 (1)
  • 2017/10 (2)

Blog is powered by Tistory / Designed by Tistory