평상시에 하는 일:
- 음악 듣기
 - 책 읽기
 - 글 쓰기
 - 공상하기
 - 개인 위키 만들기   
 
모인모인을 업그레이드 하시거나, 아니면, 기존 모인모인 parser/wiki.py에서 
    def replace(self, match):
        matched=match.groupdict().items() #should not depend on the order (it works on python 2.1 but not on 2.2) --CJK
        matchedItemsToReplace=filter(lambda item:item[0][0]!='_',matched)
        for type, hit in matchedItemsToReplace: 
로 바꿔주시면 됩니다.

 --