Computer
-
emacs 한글 폰트 및 한글 입력Computer/linux 2010. 7. 22. 02:58
Put Droid Sans Mono TTF font and other TTF fonts into /usr/share/fonts/ directory. See 2007/08/08 - [computer/linux] - How to use MS windows fonts and ttf in the Ubuntu Linux Add the following lines into ~/.emacs file (global-set-key [?\S- ] 'toggle-input-method) (global-set-key [f5] 'insert-date) ;; not necessary for 23-2 emacs ;;(global-set-key (kbd "C-x ") 'previous-buffer) ;;(global-set-key ..
-
automake & autoconfComputer/linux 2010. 6. 26. 16:40
src/main.cc src/main.cc src/sdecoder.h src/sdecoder.cc $ emacs main.cc& #include int main(int argc, char *argv[]) { Gtk::Main kit(argc, argv); Gtk::Window window; Gtk::Main::run(window); return 0; } $ emacs Makefile.am & AUTOMAKE_OPTIONS = subdir-objects ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS} AM_CPPFLAGS = $(DEPS_CFLAGS) bin_PROGRAMS = sDecoder sDecoder_SOURCES = src/main.cc src/sdecoder.h src/sdeco..
-
taskSpawn (VxWorks) and coda boot fileComputer 2010. 6. 8. 00:39
int taskSpawn ( char * name, /* name of new task (stored at pStackBase) */ int priority, /* priority of new task */ int options, /* task option word */ int stackSize, /* size (bytes) of stack needed plus name */ FUNCPTR entryPt, /* entry point of new task */ int arg1, /* 1st of 10 req'd task args to pass to func */ int arg2, int arg3, int arg4, int arg5, int arg6, int arg7, int arg8, int arg9, i..
-
Unix Time (Epoch)Computer/linux 2010. 4. 27. 23:42
C code (copied from wiki modified in order to convert a known unix epoch time #include #include int main(void) { time_t now; time_t old; struct tm *ts; struct tm *ots; char buf[80]; char buf2[80]; /* Get the current time */ now = time(NULL); ts = localtime(&now); strftime(buf, sizeof(buf), "%a %Y-%m-%d %H:%M:%S %Z", ts); printf("%s\n", buf); old = 1257169741; ots = localtime(&old); strftime(buf2..
-
ipad에서 프린팅하는 비법Computer 2010. 4. 16. 12:30
구글 뉴스를 읽다가 재미있는 기사를 봤다. 제목은 The Apple iPad Printing Secret 안그래도 ipad가 나오면 세금 환급이 나온걸로 한번 사볼까 생각을 하다가 499 불에 세금 포함하면 살 수 있을 것 같아서.. 애플온라인 스토어에서 가격을 한번 뽑아 볼려고 가봤었다. 예상대로... 애플의 가격은... ㅎㅎ iPad 16G WIFI 499.00 iPad Camera Connection Kit 29.00 iPad Dock Connector to VGA Adapter 29.00 Apple Wireless Keyboard 69.00AppleCare Protection Plan 99.00 합계 725.00 후후.. 역시 .... 이런대도 사고 싶은 마음이 드니 ㅎㅎ 잘만드기는 잘 만드나 보..
-
how to get all image files from a http site directory by wgetComputer/linux 2010. 4. 13. 06:22
assume that all jpg files is locate at http://www.somewhere.something/dir/ wget -r -l1 --no-parent -A.jpg http://www.somewhere.something/dir/ See the manual of wget at http://www.delorie.com/gnu/docs/wget/wget_31.html
-
wodim is a command line cd recording tool (linux)Computer/linux 2010. 4. 9. 11:23
old : cdrecord that is a command line cd recording tool (Linux)Umount your device first, for example, umount /media/Ubuntu\ 8.04.1\ amd64/ Now cdrecord is replaced with wodim -scanbus scsibus1: 1,0,0 100) 'HL-DT-ST' 'DVDRRW GSA-H30L ' 'S856' Removable CD-ROM 1,1,0 101) * 1,2,0 102) * 1,3,0 103) * 1,4,0 104) * 1,5,0 105) * 1,6,0 106) * 1,7,0 107) * wodim --devices wodim: Overview of accessible dr..