Monday, December 27, 2010
우분투에서 docky를 사용할때 검은영역 없애기
2. apps - metacity - general - compositing_manager (check)
3. run docky
Tuesday, October 26, 2010
그래프 겹쳐그리기 in python
1. 그래프 겹쳐그리기에 관한 글을 읽고 python으로 구현 이 글은 2.여기에서 참고함. 링크 1에 가보면 두개의 크기가 다른 벡터가 있다. 이것을 python으로 한 그래프에 표현할려면import matplotlib.pylab as pl
ax1 = pl.subplot(111)
t = [1.,2.,3.,4.]
aa=[11.4, 12.7, 13.1, 14.56]
pl.plot(t, aa, 'b-o',label="aa")
pl.text(3,14.7,"<--------------- ------------------="" 2.2="" 3.54="" 4.0="" aa="" ax2="pl.twinx()" bb="" horizontalalignment="right" label="bb" no="" pl.plot="" pl.show="" pl.text="" pl.xlabel="" pl.ylabel="" r-s="" t="" verticalalignment="top">",verticalalignment='top', horizontalalignment='left') pl.ylabel('bb') --------------->
<--------------- ------------------="" 2.2="" 3.54="" 4.0="" aa="" ax2="pl.twinx()" bb="" horizontalalignment="right" label="bb" no="" pl.plot="" pl.show="" pl.text="" pl.xlabel="" pl.ylabel="" r-s="" t="" verticalalignment="top">ax2.yaxis.tick_right() --------------->
<--------------- ------------------="" 2.2="" 3.54="" 4.0="" aa="" ax2="pl.twinx()" bb="" horizontalalignment="right" label="bb" no="" pl.plot="" pl.show="" pl.text="" pl.xlabel="" pl.ylabel="" r-s="" t="" verticalalignment="top">pl.show()--------------->
<--------------- ------------------="" 2.2="" 3.54="" 4.0="" aa="" ax2="pl.twinx()" bb="" horizontalalignment="right" label="bb" no="" pl.plot="" pl.show="" pl.text="" pl.xlabel="" pl.ylabel="" r-s="" t="" verticalalignment="top">--------------->
Thursday, October 21, 2010
openoffice powerpoint에 youtube 동영상 삽입하기
파워포인터에 관한 글을 읽다가 오픈오피스에서는 안될까해서 해보았어요
내 동영상 파일을 ppt에 삽입하는 것은 [ 삽입(I) - 동영상 및 사운드 ]를 선택해서 넣으면 된다.
파일 크기가 100메가 정도되는 파일은 가볍게 실행이된다.
(대체로 영화파일 크기인 700메가 이상은 실행이 안된다.)
그럼 youtube의 동영상을 삽입하는 것은?
그림처럼 [ 삽입(I) - 하이퍼링크 - 새문서 - HTML문서 ]로 들어간다.
미리 만들어둔 foo.html 문서를 [경로선택] 버튼을 눌러서 삽입한다.
foo.html 은 youtube에서 [소스코드]를 누르면 나오는
이런 파일을 foo.html로 저장하면된다.
단, 인터넷이 연결된 상태에만 실행이 가능하다.
Wednesday, October 06, 2010
publishing org file into pdf using org-mode
rs232c using pyserial in linux
and serial connection posting
rs232c connections in Python
Monday, September 13, 2010
twittering on emacs
Friday, July 30, 2010
usb mount on linux(ubuntu)
// you can adjust your device name using fdisk -l ...
// fat file format
sudo mount -t vfat /dev/sdb1 /media/extusb -o utf8
// ntfs file format
sudo mount -t ntfs-3g /dev/sdb1 /media/extusb
//unmount
sudo umount /dev/sdb1
//or
sudo umount /media/extusb
Tuesday, July 20, 2010
window maximize on Linux
I found how to solve this problem.
Alt - Space x
Alt and Space key simultaneously then displays menu from top of window then strike x.
You can use the maximized window(web browser, xterm ....)
Reverse method is same the maximize.
Happy linuxing :)
Tuesday, May 18, 2010
Tuesday, March 09, 2010
Monday, February 01, 2010
Friday, January 22, 2010
Monday, January 18, 2010
Makefile in order to converting tex to pdf file
.SUFFIXES : .tex .dvi
TEX = latex
FNAME = mydoc
OBJ1 = $(FNAME).dvi
OBJ2 = $(FNAME).ps
SRC = $(FNAME).tex
TARGET = $(FNAME)
all : $(TARGET)
$(TARGET) : $(OBJ1)
dvips $(OBJ1) -o
ps2pdf $(OBJ2)
new : touch $(SRC) ; $(MAKE)
# dissertation.tex : coverletter.tex conclusion.tex <---- dependence
# to combine a few tex files