var Task = function() { //자바스크립트에서는 0은 false 로 인식한다. 그래서 1로 하는게 좋다. // c -complte 상태, p - progress 상태 var c = {}, p ={} var Task = function(title){ this.title = title; //아이디는 Task 만 알면 되므로 Scope 를 구성합니다. //의미상 이 Task 위 Task 가 된다. //개체는 바깥쪽과 상태로 대화하지 않는다.! 메서드로 대화한다. this._state = p }; var fn = Task.prototype; fn.isComplete = function(){ return this._state === c; }; fn.toogle = function() { if ( ..
1. 사소한 것에 목숨 걸지 마세요 (Don't Sweat the Small Stuff) 2. 불완전함과 친숙해지세요 (Make Peace with Imperfection) 3. 점잖고 느긋한 사람은 성공할 수 없다는 고정관념 (Let Go of the Idea that Gentle, Relaxed People Can't Be Superarchievers) 4. 생각의 눈덩이가 끝없이 커가는 것을 주의하세요 (Be Aware of the Snowball Effect of Your Thinking) 5. 동정심을 키우세요 (Develop Your Compassion) 6. 죽을 때도 당신의 '바구니 속'은 절대 비어 있지 않습니다 (Remind Yourself that When You Die, Your '..
php 옵션-i or --file : 파일지정-a or --interactive ( php 명령을 실행할수 있는 콘솔모드가 나타남)-c or --php-ini : php.ini 파일을 지정할수 있다.-d or --define 옵션을 사용하면 ( php -d max_ececute_time=2000 myscript.php ) 바로 지정가능-n or --no-php-ini : php.ini 사용하지 않는다.-e or --profile-info : ??-i or --info : phpinfo() 호출-l or --syntac-check : 문법검사를 수행한다.-m or --modules : php 와 젠드 확장 익스텐션 모두를 출력한다.-r or --run : php 한줄 라인 실행한다. 인자를 줄수 있다.-B..