전체 글198 Command-line tab completion in standard Python shell To enable 'tab-completion' on the command line of the default Python shell, put this in ~/.pythonrc, and setup the PYTHONSTARTUP environment variable to point to it: export PYTHONSTARTUP=~/.pythonrc # ~/.pythonrc # enable syntax completion try: import readline except ImportError: print "Module readline not available." else: import rlcompleter readline.parse_and_bind("tab: complete") It needs the.. 2009. 8. 6. Mockups 한글 입력 가능... On Windows XP: C:\Documents and Settings\\Application Data\BalsamiqMockupsForDesktop.#numbers#\Local Store On Mac OS X: /Library/Preferences/BalsamiqMockupsForDesktop.#numbers#/Local Store On Windows Vista: C:\Users\\AppData\Roaming\BalsamiqMockupsForDesktop.#numbers#\Local Store On Linux: ~/.appdata/BalsamiqMockupsForDesktop.#numbers#/Local Store The config file might look like this: 나눔고딕 false.. 2009. 7. 23. Convert .img to .iso nrg2iso - extract ISO9660 data from Nero “.nrg” files $ nrg2iso ubuntu-9.04-netbook-remix-i386.img ubuntu-9.04-netbook-remix-i386.iso |===================================>[100%] ubuntu-9.04-netbook-remix-i386.iso written : 992530432 bytes 2009. 5. 15. “FATAL: Ident authentication failed”, or how cool ideas get bad usage schemas /etc/postgresql/8.3/main/pg_hba.conf 설정 # "local" is for Unix domain socket connections only #local all all ident sameuser local all all trust # IPv4 local connections: host all all 127.0.0.1/32 trust # IPv6 local connections: #host all all ::1/128 md5 # TYPE DATABASE USER IP-ADDRESS IP-MASK METHOD host all all 192.168.123.102 255.255.255.0 trust ever seen one of those? i mean the “fatal: ident .. 2009. 5. 7. Surprise!! Susan Boyle... 2009. 4. 18. 특정 디렉토리 찾아서 지우기 find 찾을위치 -type d -name 찾을디렉토리명 -exec rm -rf {} \; 2009. 4. 15. 이전 1 ··· 27 28 29 30 31 32 33 다음