Tistory - chakjs.tistory.com - Sideway
General Information:
Latest News:
Ubuntu 단축키 모음 10 Apr 2012 | 04:55 pm
리눅스 콘솔이나 터미널 상에서 사용할 수 있는 단축키가 여러가지 있다. 이 중에서 유용한 것들 몇가지를 정리해보자. 우선, 터미널이 아닌 콘솔 상에서 쓸 수 있는 단축키로는 아래와 같은 것들이 있다. •Alt-F1 ~ Alt-F12 : 콘솔 이동 •Alt-(Left/Right) : 이전/다음 콘솔로 이동 •Ctrl-Scroll Lock : 프로세스 목록 보...
unexpected EOF while parsing 의 원인 4 Apr 2012 | 03:07 am
1. input()을 했는데 저 얘기가나온다. 2. eval() or exec()했는데 저 얘기가나온다. 둘다 같은이유임 raw_input()은 스트링으로 다받는건데 input()은 raw_input()에 eval()을 거쳐서 오는것이다(실제소스는안뜯어봤지만..) 어쨌든 이건... 해결방법을 못찾겠다.. 조금 우회해서 스트링으로 바꾼뒤에 규칙으로 자르던지....
Socket에서 error: [Errno 9] Bad file descriptor 가 나는 이유 4 Apr 2012 | 12:17 am
File "/usr/lib/python2.6/socket.py", line 165, in _dummy raise error(EBADF, 'Bad file descriptor') error: [Errno 9] Bad file descriptor 오류가 난다면 conn.close()를 하지않았나 보면 된다 참 쉬운곳에서 해메다니... ...
lighttpd virtualhost 1 Apr 2012 | 11:17 pm
$HTTP["host"] =~ "hann\.teamlambda\.net$" { server.document-root = "/home/hann/public_html/" } -->
html tag escape 방법 1 Apr 2012 | 11:16 pm
import cgi cgi.escape(data) -->
Android Relative Layout의 이해 1 Apr 2012 | 11:15 pm
보통 다양한 스크린에 맞추기위해서 하는일이. dip개념으로 위아래 height 로만 박아두고, 가운데 컨텐츠뷰쪽을 무한정 늘리는 형식으로 대처하기마련. 이때 쓰이는게 Relative Layout <RelativeLayout xmlns:android=" http://schemas.android.com/apk/res/android " android:la...
간단한 지뢰찾기 게임 21 Mar 2012 | 10:22 pm
#-*-coding:utf-8-*- import random import time from Tkinter import * class HintMap: def __init__(self , x , y): self.width = x self.height = y self.valueStack = [] ...
뱀꼬리 게임 21 Mar 2012 | 01:54 am
#-*- coding:utf-8 -*- import random import thread , time import unittest from Tkinter import * class Snake: def __init__ (self , position , direction): self.direction = direction ...
emacs 글꼴 셋팅 26 Jan 2012 | 11:46 pm
나눔글꼴하고 monaco셋팅 (if (eq window-system 'w32) (progn (set-fontset-font "fontset-default" 'korean-ksc5601 "-unknown-NanumGothic-normal-normal-normal-*-*-*-*-*-*-0-iso10646-1") (se...
Ubuntu iBus 자동실행 5 Jan 2012 | 07:42 pm
설정->시작프로그램->추가->명령란에 'usr/bin/ibus-daemon' 나머지는 맘대로ㅎㅎ. -->

