- git commands summary (git 명령 정리): git_commands.md
- Installing Git on Cygwin: installing_on_cygwin.md
- Installing msysgit: installing_msysgit.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
enable logging using pgadmin tool | |
menu: tools --> server configuration --> postgresql.conf | |
- enable below 3 item | |
1. log_directory | |
2. log_filename | |
3. log_statement = mod | |
after that, reload configuration | |
log location : |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
####pdb attach debugger 디버거 활성화 | |
import pdb; pdb.set_trace() | |
####print traceback 출력 | |
try: | |
... | |
except: | |
import traceback |
우분투 12.04에서는 java가 기본적으로 설치되어 있지 않다. apt-get으로 설치되는 jdk는 open-jdk라는 것으로 오라클에서 배포하는 jdk가 아니다.
1 오라클 사이트에서 jdk를 다운로드 받는다.
http://www.oracle.com/technetwork/java/javase/downloads/index.html
2 압축을 풀고 /usr/lib/jvm 으로 옮긴다.
참고 url: Node.js 개발 생산성을 높이기 위한 도구 "Supervisor"(http://inspiredjw.tistory.com/?page=8), InspiredJW
$ sudo npm install supervisor -g
...
/usr/local/bin/node-supervisor -> /usr/local/lib/node_modules/supervisor/lib/cli-wrapper.js
/usr/local/bin/supervisor -> /usr/local/lib/node_modules/supervisor/lib/cli-wrapper.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo tcpdump -A -i lo port 3000 | |
-i: specify device ex: eth0, wlan0, lo | |
lo: loopback | |
-A: print in ASCII | |
-X: print in hex and ASCII |
##사용하기
- 기본 사용법: basic.md
- 좀더 발전된 사용법: advanced.md
- 환경 설정하기: configuring-vim.md
#bash 사용하기
###목차
- basic commands summary (기본 명령): basic_commands.md
OlderNewer