Recent posts

Ubuntu12.04 postgresql with postgis

2 minute read

현재 우분투 버전 13.04 postgis설치시에 apt-get 기본패키지로 postgresql 9.1과 그에 딸린  postgis설치하면 제대로 동작을 하지않는다.

Python 간단. ftp접속확인 코드

less than 1 minute read

#!/usr/bin/env python import ftplib server=”localhost” user=”anonymous” password=”test@hotmail.com” try: ftp = ftplib.FTP() ftp.connect(server,21) ...