분류 전체보기
-
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..
-
Ciao Google Textcub.com !카테고리 없음 2010. 5. 17. 12:51
http://citadel.tistory.com 티스토리에서 택스큐브로 왔다. 단지 인터넷 속도가 미국이 느려서.. 티스토리로 로긴하는데 시간이 걸려서.. 그렇게 몇달 사용하다가.. 다시 간다. 자본주의 사회인 정말 돈에 목숨거는 미국에 살고 있으니 구글의 노력이 이해가 된다. 3일간 사용한 iPad를 통해 애플을 이해하고, 이제 구글의 미래를 예측해 본다. 구글, 너네도 살아보니 별수 없지? 먹고 살려니 힘들지.. 좀 다름을 기대했던 내가 멍청했던거지 하긴 Linux 도 삽질하는데.. 별수 있겠나만은... 그래 사람들은 순수에 열광하지만 정작 순수를 걸어가는 사람은 드문듯 하다. 지금껏 순수학문의 길을 걸어 왔다. 돈도 되지 않고 왜하는 건지도 잘 모르는 순수의 학문의 극치. 아마 인간의 만용일꺼다. ..
-
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..
-
mysql workbench in Debian 6.0Computer/linux 2010. 2. 24. 12:08
* download source from http://dev.mysql.com/downloads/workbench/5.2.html * tar zvxf mysql-workbench-oss-5.2.16.tar.gz * ln -s mysql-workbench-oss-5.2.16 mysql-workbench * Install the following package (information from INSTALL file) [] sudo apt-get install build-essential autoconf automake libtool libzip-dev libxml2-dev libsigc++-2.0-dev libglade2-dev libgtkmm-2.4-dev libglu1-mesa-dev libmysqlcl..
-
Java Plugin for a customized firefoxComputer/linux 2010. 2. 18. 23:48
Here, the customized firefox means that it is not the distribution package, but the self-downloaded and static firefox. download jdk from http://www.java.com/en/ [SU] [] mv jdk-6u18-linux-i586.bin /home/softwares/ [] cd /home/softwares/ [] sh jdk-6u18-linux-i586.bin [] ln -s /home/softwares/jdk1.6.0_18 /opt/jdk [USER] [] cd .mozilla/plugins/ [] ln -s /opt/jdk/jre/lib/i386/libnpjp2.so libnpjp2.so..