Development 썸네일형 리스트형 프로젝트 진행시 사용하는 유틸리티 노트 버전관리 CVS : 1986년 제작됨 Subversion : CVS 를 보완 SVK : 분산버전관리 Bazaar : 분산버전관리 Mercurial : 분산버전관리 Visual SourceSafe : 윈도우에서만 동작 IBM Rational ClearCase BitKeeper : 분산버전관리 Git : 분산버전관리 빌드자동화 Ant : 자바기반 NAnt : .Net 기반 Maven : 프로젝트 빌드, 리포팅, 도큐멘테이션 MSBuild : .Net 기반 Make : 전통 빌드 Jam : Make 를 개선 Hudson CruiseControl : 자바기반 CruiseControl.NET : .Net기반 Continuum LuntBuild 테스팅 JUnit : 자바기반 NUnit : 닷넷기반 xUnit.net.. 더보기 jQuery 특정 요소만 ajax 로딩하고 싶은데... 이렇게 하면 된다. $('#link a').click(function(){ $('#content').hide().load('news.html #today', function(){ $(this).fadeIn(); }); return false; }); 클릭 이벤트 발생 > 콘텐츠 담길 부분 숨기기 > 호출한 html 파일의 특정 요소 로드 > 로딩완료 후 페이드 인 > 클릭 이벤트 false 리턴으로 이벤트 제거 그래 이거였어. 고맙습니다 learning jQuery ! 더보기 CSS 3 rotate 45deg 테스트 CSS3 를 지원하는 브라우저에서만이라도 애니메이션을 보여주자는 취지에서 로고에 CSS3 를 사용해보았습니다. 사용한 CSS .logo { height: 72px; text-indent: -5000px; background: url(./images/logo_small.png) no-repeat; } #n { width: 48px; height: 48px; background: url(./images/letter_n.png) no-repeat; position:absolute; top:72px; left:400px; } #o { width: 36px; height: 62px; background: url(./images/letter_o.png) no-repeat; position:absolute; top:.. 더보기 코드이그나이터codeigniter index.php 관련 CI 의 팬시 URL 을 사용하면서 가장 문제가 되는 부분은 index.php 파일을 어떻게 안보이게 하느냐 일 것이다. 매번 세팅할 때마다 까먹고 검색을 하게 되는 불편이 있어 정리해둔다. 어떤 식으로든 .htaccess 파일을 수정한다. 대부분 아래와 같은 형태를 가지게 된다. RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php/$1 [L] ErrorDocument 404 / 또는 아래와 같은 형태일 것이다. (CI포럼 카피) RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f.. 더보기 PHP Variable Tests PHP Variable Tests php version 5.1.6 version for 5.0.4 (as at 26/09/2005) $v= NULL 0 FALSE "" TRUE 1 1.3 -1 "-1" -1.7 isset($v) false true true true true true true true true true if ($v) { false false false false true true true true true true $v= "1" "1.3" "0" " " "string" "123str" "str123" array() array(1) unset($v) isset($v) true true true true true true true true true false if ($v) { true tru.. 더보기 이전 1 ··· 11 12 13 14 15 16 17 ··· 30 다음