2013/03 6

TOAST - Unit Testing for CodeIgniter v. 1.5

참고Code igniter unittest-part1TOAST - Unit Testing for CodeIgniter v. 1.5 콘트롤러와 뷰파일에 test 폴더를 생성. application/controllers/test/ application/views/test/ 토스트 파일을 복사 application/controllers/test/ - example_test.php - Toast_all.php - Toast.php application/views/test/ - footer.php - header.php - results.php http://domain/test/example_test 실행 ※ controller 에러시 Toast.php 와 Toast_all.php 파일 수정extends Cont..

lang/php 2013.03.22

10 Javascript Performance Boosting Tips from Nicholas Zakas

원문 : 10 Javascript Performance Boosting Tips from Nicholas Zakas Define local variables 지역변수를 사용하라 Don’t use the with() statement with() 문법을 사용하지 마라 Use closures sparingly closures 를 절약하라 Object properties and array items are slower than variables 개체 속성과 배열 항목은 변수보다 느리다. Don’t dig too deep into arrays 배열은 깊게 파지마라 Avoid for-in loops (and function based iteration) for-in 루프는 피하라. ( function 기반 반복은..

lang/js 2013.03.12
반응형