728x90
파이썬은 2.x 대와 3.x 대가 있는데, 서로 호환성이 없음
일반적으로 많이 사용되는 2.x 대를 설치

- 설치안내 : http://python.org/download/releases/2.7.6/


파이썬 패키지 관리도구 : easy_install, pip
pip 는 easy_install 을 먼저 설치하고 난 뒤 easy_install 을 이용해서 설치

- 설치안내 : https://pypi.python.org/pypi/setuptools
- 설치방법 : $ wget https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py -O - | python
- PIP 설치방법 : $ easy_install pip

환경 구성파일은 사용자 계정 루트의 .bash 혹은 .bash_profile 에 추가하면 됨.
윈도와 다르게 세미콜론이 아니라 콜론으로 경로들을 구분하는 점에 주의
wget 설치를 위해서는 homebrew 등의 도구 사용 (참고 : 2013/07/19 - Mac OS 에는 왜 apt-get 이나 yum 명령어가 없을까?)

파이썬에서의 웹 개발 프레임워크는 django 가 많이 사용됨

- 설치방법 : $ pip install django

개발도구는 Aptana 를 사용하는 것으로!

- NoPD -
728x90
728x90
유튜브에 올라온 iPhone Tutorial 중 쓸만한 것을 찾는게 요즘의 일상중 하나입니다.
제가 준비하는 방식이 맞는지는 모르겠지만, Objective-C, xcode 에 맛을 들이고 나서는
디립다 예제를 죽도록 눈에 익도록 하는게 방법이라고 생각하고 있습니다.

UITableView 를 이용해서 만들어 보는 간단한 예제 Tutorial 입니다.
보고 있으면 딱 드는 생각이, " 참 쉽죠잉~? " 이군요 ㅎㅎ





- NoPD -
728x90
728x90
Last night, I have got request from my customer. He wanted to know how many XML nodes are there in XML log table placed in Oracle. I tried to find sufficient oracle function but couldn`t. So I make slightly dirty SQL query but it was very helpful to reduce manual job. Let`s see SQL query first.

SELECT xml_seq, 
       to_char((length(xml_recv)-length(replace(xml_recv,'<ITEM>',''))) / length('<ITEM>')) as item_count
  FROM tbl_xml_log
Look above SQL carefully. It looks dirty calculation about length of column but very simple. You can change <ITEM> to string that you want to count on specific column. It would be helpful for guys who want to count repeated character in specific column.

- NoPD -
728x90

+ Recent posts