Eclipse 에서 제공하는 여러가지 plug-in 들을 사용하면 레드마인과의 일감 연동을 할 수 있다. 이를 이용하면 eclipse 에서도 redmine 으로 일감 보고/가져오기 등의 기능을 수행할 수 있어 매우 편리하다. 먼저 redmine 과 eclipse 가 연동된 필자의 작업환경을 보자. 먼저 가장 기본이 되는 내용은 Redmine Wiki 의 내용이다. 지금 여기에 적는 내용 역시 redmine wiki 의 내용을 […]
새로운 폰트 적용하기 우분투에서 새로운 한글 폰트를 적용/설치 하기 위해서는 아래의 디렉토리에 새로운 디렉토리를 생성하여 폰트를 넣으면 된다. /usr/share/fonts/truetype 그런 후 터미널에서 다음을 입력하면 된다. # sudo -s(root 권한이 필요하다..)# fc-cache -f – v ———————————————————————————————————————————————————— 안티 앨리어싱 적용하기 처음 우분투를 사용하면 유독 한글 폰트에(ex. 은진낙서체) 대해서 글자가 뭉개지는 것을 확인할 수 있다. 이는 우분투에서 안티 앨리어싱 […]
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 […]
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
#!/bin/bash## Run-level Startup script for the Oracle Instance and Listener## chkconfig: 345 91 19# description: Startup/Shutdown Oracle listener and instanceORA_HOME=”/u01/app/oracle/product/9.2.0.1.0″ORA_OWNR=”oracle”# if the executables do not exist — display errorif [ ! -f $ORA_HOME/bin/dbstart -o ! -d $ORA_HOME ]then echo “Oracle startup: cannot start” exit 1fi# depending on parameter — startup, shutdown, restart # of the […]
Recent Comments