SYBASE 사용법(요약) SYBASE home directory는 /home/sybase로 가정하며, 이하 ‘HOME’이라 합니다. 1.User System Account등록   1)User Account생성(System의 User등록방법에 따라)      Login as root – System Booting후 Root와 Password 입력)      Ex) #vi /etc/passwd/      Format] username:password:UID:GID:comment:user home directory:shell type      Example]sybase::100:100:SYBASE USER:/home/sybase:/bin/csh   2)User Directory생성      #cd /home      #mkdir […]

Continue reading about SYBASE 기본 사용법(시작/종료, Login/Logout, DB생성/삭제/변경, Device등록/삭제,

pchero on November 16th, 2010

 Eclipse 에서 제공하는 여러가지 plug-in 들을 사용하면 레드마인과의 일감 연동을 할 수 있다.  이를 이용하면 eclipse 에서도 redmine 으로 일감 보고/가져오기 등의 기능을 수행할 수 있어 매우 편리하다.  먼저 redmine 과 eclipse 가 연동된 필자의 작업환경을 보자.  먼저 가장 기본이 되는 내용은 Redmine Wiki 의 내용이다. 지금 여기에 적는 내용 역시 redmine wiki 의 내용을 […]

Continue reading about eclipse-redmine 일감 연동하기

새로운 폰트 적용하기  우분투에서 새로운 한글 폰트를 적용/설치 하기 위해서는 아래의 디렉토리에 새로운 디렉토리를 생성하여 폰트를 넣으면 된다. /usr/share/fonts/truetype  그런 후 터미널에서 다음을 입력하면 된다. # sudo -s(root 권한이 필요하다..)# fc-cache -f – v ———————————————————————————————————————————————————— 안티 앨리어싱 적용하기  처음 우분투를 사용하면 유독 한글 폰트에(ex. 은진낙서체) 대해서 글자가 뭉개지는 것을 확인할 수 있다. 이는 우분투에서 안티 앨리어싱 […]

Continue reading about 우분투 한글폰트 설치 및 안티 앨리어싱 적용하기

pchero on November 15th, 2010

Imagine there’s no heaven.It’s easy if you try.No hell below us.Above us only sky.Imagine all the people.Living for today. Imagine there’s no countries.It isn’t hard to do.Nothing to kill or die for.And no religion too.Imagine all the people.Living life in peace. You may say that I’m a dreamer.But I’m not the only one.I hope someday […]

Continue reading about John Lennon – Imagine

6: Bisection Methods, Newton/Raphson, Introduction to Lists def squareRootBi(x, epsilon):    “””Assumes x >= 0 and epsilon > 0    Return y s.t. y * y is within epsilon of x”””    assert x >= 0, ‘x must be non-negative, not’ + str(x)    assert epsilon > 0, ‘epsilon must be positive, not’ + str(epsilon)  […]

Continue reading about Lec 6 | MIT 6.00 Introduction to Computer Science and Programming, Fall 2008