2월, 2011의 게시물 표시

draggable and resizable image using jQuery

you can do it without any jQuery plugins. <link type="text/css" href="css/ui-lightness/jquery-ui-1.8.9.custom.css" rel="stylesheet" />   <script type="text/javascript" src="js/jquery-1.4.4.min.js"></script> <script type="text/javascript" src="js/jquery-ui-1.8.9.custom.min.js"></script> <script type="text/javascript"> $(function() {     $("#image_container")         .resizable( {alsoResize:"#panther"} )         .draggable()         .css({'width': '500px', 'height': '500px'}) }); </script> <div id="image_container">     <img id="panther" src="panther.jpg" width="500px" height="500px" /> </div>

git tip

git diff 색깔 넣어서 출력하기 dit diff --color git diff --color-words 아래처럼 alias로 설정해서 사용한다. alias gitd='git diff --color' 또는 config 설정 git config --global color.diff auto git config --global color.diff always git log log를 한 줄로 간단하게 보기(title만 보여줌) git log --pretty=oneline commit history를 graphical하게 보기 git log --graph 위 두 옵션을 함께 사용하면 log 확인을 한눈에 할 수 있다. git log --pretty=oneline --graph 이것도 마찬가지로 alias를 만들어서 사용한다. git stash [시나리오] branch에서 새로운 기능을 개발 중인데 긴급한 수정사항이 생겼을 경우. 방법 1. 현재까지 작업한 파일들을 어딘가에 백업해두고 branch를 롤백한다. 그리고 긴급한 수정 사항을 처리한 후 백업해둔 파일들을 다시 가져와서 개발을 진행. 방법 2. 다른 디렉토리에서 현재 배포 버전을 받은 뒤 수정 사항을 처리하고 배포. 이 외에도 몇몇 꼼수가 있겠지만 git stash를 사용하면 간단히 해결할 수 있다. #현재 작업을 저장해두고 branch를 head로 돌린다.(git reset --hard) git stash save #저장되어 있는 stash들 보기 git stash list #stash를 꺼내와서 적용 #stash들은 stack에 저장된다. 따라서 가장 최근에 save한 stash가 현재 branch에 적용된다. git stash pop #git stash pop 과 비슷한 명령어지만 stash list에서 삭제하지 않는다는 점이 다르다. git stash apply #필

새해

서른이 되었다. 절박함을 느껴라. 올한해 잘해 보자.