since 1997

오늘 67 / 전체 478,396

CATEGORY

분류 전체보기 (637)
일상다반사 (235)
끄적끄적 (20)
음악이야기 (14)
$잡다구리 (60)
$운영체제 (129)
$프로그래밍 (148)
$데이터베이스 (31)
RECENT ARTICLES

  Distributed VCS

  Windows 7 - Reset win..

  티맥스소프트가..

  결국 티맥스소프..

  오늘, 그리고 내..

  라데온 4890

  Vincent Baguerre, Aur..

  Jetbrains IntelliJ ID..

  ERwin r7.3.3

  썬을 인수한 오라..

RECENT COMMENTS

  답변이 많이 늦었..

  저도 ?????로깨지..

  저거 나한테 버려..

  잘 보고 가요...

  안녕하세요..ERWi..

  고맙습니다. 잘쓰..

  몇달후 가상 fdd ..

  감사합니다..좋은..

  한큐에 해결 감사..

  한큐에 해결 감사..

RECENT TRACKBACKS

  Vista vmware로 인스..

  첫번째 포스팅입..

  Windows Vista Beta 1,..

  패킷 필터링과 방..

ARCHIVES

  2010년 08월

  2010년 07월

  2010년 05월

  2010년 02월

  2009년 08월

FAVORITE SITES

  ASP.NET

  BeautifyKoreanFonts

  BigAdmin HCL: Sun Dev..

  BitTorrent Linux Mirr..

  CentOS Linux

  DHS International

  DistroWatch.com

  eady.sarang.net

  Enlightenment Project

  EveryDNS

  glassfish : j2ee web ..

  GUI Linux

  iamyhs

  IETF

  Intel PRO/Wireless 39..

  Java SE Development K..

  Java SE Runtime Envir..

  JavaServiceNet

  JBoss 관리자 개발..

  miniwini.com

  MS Express Edition Pr..

  Netcraft

  PC-BSD

  PHP Snapshots

  Port Scan

  Programmer를 꿈꾸며..

  PSOUG Oracle Morgan&#..

  Solaris Operating Sys..

  SSH Secure Shell

  UANAX Organization

  USA LUG

  WhiteBox Linux

  [Bossa Nova] Chili Mu..

  [Bossa Nova] Chili Mu..

  네트워크 전문지..

  코리아인터넷닷..

  한국 데비안 사용..















  Get Firefox!
HOME RSS XML GUESTBOOK SERVICE ABOUT ADMIN
PREV | 1 ... 5 6 7 8 9 10 11 12 13 ... 64 | NEXT
t has no properties | $프로그래밍 - 자바스크립트
var target = '삐리리리';
var tableRowTpl = '<tr><td>삐리리리리리</td></tr>';


new Insertion.Bottom(target, tableRowTpl);

t has no properties => t.initializeRange(element, range);

아주 환장하는지 알았다.

뷁포인트 찍어가며 원인을 찾아보고 싶었지만 좀 바쁘다보니...

암튼 Prototypejs를 1.6.0 -> 1.5.2 다운을 시켰더니 잘 되더라.

function (element, insertions)
{
    element = $(element);
    if (Object.isString(insertions) ||
        Object.isNumber(insertions) ||
        Object.isElement(insertions) ||
        insertions && (insertions.toElement || insertions.toHTML))
    {
        insertions = {bottom:insertions};
    }

    var content, t, range;
    
    for (position in insertions)
    {
        content = insertions[position];
        position = position.toLowerCase();
        t = Element._insertionTranslations[position];

        if (content && content.toElement)
        {
            content = content.toElement();
        }

        if (Object.isElement(content))
        {
            t.insert(element, content);
            continue;
        }

        content = Object.toHTML(content);
        range = element.ownerDocument.createRange();
        t.initializeRange(element, range);
        t.insert(element, range.createContextualFragment(content.stripScripts()));
        content.evalScripts.bind(content).defer();
    }

    return element;
}

TRACKBACKS  MESSAGES  DATE 08/01/30 21:22
TRACKBACK ADDRESS : http://www.todayis.net/vSix/rserver.php?mode=tb&sl=736
SECRET
NAME
PASSWORD
HOMEPAGE  
MESSAGE  
배고픈옹이 | 일상다반사 - 우리옹이
주문한 사료와 간식이 오질않아 30시간넘게 아무것도 주질 못했다.

종일 쫄쫄 따라다니며 밥달라고 야옹한다.
TRACKBACKS  MESSAGES  DATE 08/01/30 14:51
TRACKBACK ADDRESS : http://www.todayis.net/vSix/rserver.php?mode=tb&sl=735
SECRET
NAME
PASSWORD
HOMEPAGE  
MESSAGE  
오히려 한국 IT 산업을 걱정하는 IT 개발자들 | $프로그래밍 - 이것저것
http://moveon21kr.tistory.com/597

크게 공감한다.

그러나 걱정과 기대는 이미 내다버린지 오래다.
TRACKBACKS  MESSAGES  DATE 08/01/30 10:35
TRACKBACK ADDRESS : http://www.todayis.net/vSix/rserver.php?mode=tb&sl=734
SECRET
NAME
PASSWORD
HOMEPAGE  
MESSAGE  
mysql data dir 변경 및 innodb 설정 | 일상다반사
mysql 데몬 중지후

my.ini (my.cnf) 파일에서 아래의 내용을 적절히 수정 또는 추가한다.

windows에선 레지스트리에서 현재의 데이터경로를 변경해주고 해야 에러안남!

HKEY_LOCAL_MACHINE\SOFTWARE\MySQL AB\MySQL Server 5.0

DataLocation = D:\MySQL\5.0\data

datadir="D:/MySQL/5.0/data/"
innodb_data_home_dir="D:/MySQL/5.0/data/innodb/"
innodb_data_file_path = ibdata1:20M:autoextend:max:100M


아래는 innodb 설정에 관한 설명

innodb_data_home_dir = /var/mysql/idb
- innodb 홈디렉터리 경로를 설정
innodb_data_file_path = ibdata1:256M:autoextend:max:2000M
- 데티터 파일 옵션을 설정, 파일명:초기용량:자동증가:최대사이즈
innodb_log_group_home_dir = /var/mysql/idb
innodb_log_arch_dir = /var/mysql/idb
- 로그 디렉터리 정보
innodb_buffer_pool_size = 2G
- innodb에서 사용할 메모리 양으로 전체 메모리의 50~80% 정도로 설정
innodb_additional_mem_pool_size = 16M
innodb_log_file_size = 512M
- 로그 파일 사이즈로 버퍼풀 사이즈의 25% 정도로 설정
innodb_log_buffer_size = 2M
- 로그 버퍼 사이즈로 성능에 맞춰 로그를 기록하는 경우 크게 설정
innodb_flush_log_at_trx_commit = 2
- 커밋 로그 옵션으로 성능 최적화로 1분마다 저장되도록 2로 설정
innodb_lock_wait_timeout = 50
innodb_flush_method = O_DSYNC
- 성능을 위해 메모리에서 직접 액세스 하도록 설정

TRACKBACKS  MESSAGES  DATE 08/01/29 12:09
TRACKBACK ADDRESS : http://www.todayis.net/vSix/rserver.php?mode=tb&sl=733
SECRET
NAME
PASSWORD
HOMEPAGE  
MESSAGE  
루비 온 레일즈 굴려보기 | $프로그래밍
http://kihoori.tistory.com/entry/다시-보는-‘루비-온-레일즈-굴려보기’
http://kihoori.tistory.com/entry/다시-보는-‘루비-온-레일즈-굴려보기’-Part-2
TRACKBACKS  MESSAGES  DATE 08/01/29 10:14
TRACKBACK ADDRESS : http://www.todayis.net/vSix/rserver.php?mode=tb&sl=732
SECRET
NAME
PASSWORD
HOMEPAGE  
MESSAGE  
기타연습 | 일상다반사
1년전에 기타를 구입하고 거의 연습을 하지않앗따.

거의 5~6년만에 제대로 연습을 해본다.

뭐하나 제대로 쳐봣으면 좋겠다.

ㅎㅎㅎ
TRACKBACKS  MESSAGES(2)  DATE 08/01/25 00:43
TRACKBACK ADDRESS : http://www.todayis.net/vSix/rserver.php?mode=tb&sl=726
http://guitarlove.tistory.com/entry/Gary-Moore-The-loner
TAB 구했다.자,시작하는거다 ㄱㄱㄱ
by 양현석08/01/25 05:34 

압축파일 내용이 알찬데요ㅋ 제가 받아놓은거 넘 호좁해요. 이걸루 바꿔야겠네
by 서비08/01/25 11:54 

SECRET
NAME
PASSWORD
HOMEPAGE  
MESSAGE  
휴식이 필요하다 | 일상다반사
지금의 직장생활이 많이 힘든것도 아니고 또 오래한것도 아니지만,

적어도 지금은 컴퓨터에서 벗어나 그냥 평범한 생활을 해보고 싶다.

집에도 가고 여행도 떠나고 문화생활도 하고 이것저것 못했던것들도 해보고.

근 몇년째 모니터앞의 좀비가 되어있는 나 자신이 좀 추리해 보이기까지 하다.

이번 프로젝트가 끝나면 일단 퇴사를 하자.

한달 반쯤 남았구나.
TRACKBACKS  MESSAGES(2)  DATE 08/01/24 11:04
TRACKBACK ADDRESS : http://www.todayis.net/vSix/rserver.php?mode=tb&sl=725
흠. 뭔가 결정을 내렸구나.
'널 지켜보겠어' ㅋ
by 양현석08/01/24 12:35 

먼가 새로운 소식??ㅋㅋ

형은 잘하니깐 잘될꺼에여~

푹즘 쉬어여~
by craser8008/02/02 15:29 

SECRET
NAME
PASSWORD
HOMEPAGE  
MESSAGE  
IBM AIX에 nano editor를 설치해보자 | $운영체제 - Posix
이클립스에서 작업하고 시도때도없이 ant의 ftp-upload 태스크로 수정된 파일만 업로드하려니 이 망할럼의 connection 문제...

그래서 서버에서 직접 수정하고 나중에 거꾸로 내려받는게 더 편할거라 판단.. vi는 많이 익숙치는 않고 그나마 nano가 손에 좀 익어서 요넘을 깔아보자 라는 취지.

cd /jeus/var/src

gzip -dc nano-*.tar.gz | tar xvf -

cd nano-*

vi _configure.sh

./configure \
    CC=/usr/vac/bin/xlc \
    --prefix=/jeus/var/nano \
    --enable-color \
    --enable-nanorc \
    --enable-utf8

chmod +x _configure.sh && ./_configure.sh

gcc 컴파일러가 없어서 기본 탑재된 xlC 컴파일러를 사용했다.

checking build system type... powerpc-ibm-aix5.3.0.0
checking host system type... powerpc-ibm-aix5.3.0.0
checking target system type... powerpc-ibm-aix5.3.0.0
checking for a BSD-compatible install... ./install-sh -c
checking whether build environment is sane... yes
checking for gawk... no
checking for mawk... no
checking for nawk... nawk
checking whether make sets $(MAKE)... yes
checking for gcc... /usr/vac/bin/xlc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... no
checking whether /usr/vac/bin/xlc accepts -g... yes
checking for /usr/vac/bin/xlc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of /usr/vac/bin/xlc... aix
checking whether ln -s works... yes
checking for strerror in -lcposix... no
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... unknown
checking for _LARGE_FILES value needed for large files... 1
checking for msgfmt... no
checking for gmsgfmt... :
checking for xgettext... no
checking for msgmerge... no
checking for non-GNU ld... /usr/ccs/bin/ld
checking if the linker (/usr/ccs/bin/ld) is GNU ld... no
checking for shared library run path origin... done
checking whether NLS is requested... yes
checking for GNU gettext in libc... no
checking for iconv... yes
checking how to link with libiconv... -liconv
checking for GNU gettext in libintl... no
checking how to run the C preprocessor... /usr/vac/bin/xlc -E
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking getopt.h usability... no
checking getopt.h presence... no
checking for getopt.h... no
checking libintl.h usability... no
checking libintl.h presence... no
checking for libintl.h... no
checking limits.h usability... yes
checking limits.h presence... yes
checking for limits.h... yes
checking regex.h usability... yes
checking regex.h presence... yes
checking for regex.h... yes
checking sys/param.h usability... yes
checking sys/param.h presence... yes
checking for sys/param.h... yes
checking wchar.h usability... yes
checking wchar.h presence... yes
checking for wchar.h... yes
checking wctype.h usability... yes
checking wctype.h presence... yes
checking for wctype.h... yes
checking whether to enable UTF-8 support... yes
checking whether to use slang... no
checking for getdelim... no
checking for getline... no
checking for isblank... yes
checking for strcasecmp... yes
checking for strcasestr... no
checking for strncasecmp... yes
checking for strnlen... yes
checking for vsnprintf... yes
checking for iswalnum... yes
checking for iswblank... yes
checking for iswpunct... yes
checking for iswspace... yes
checking for mblen... yes
checking for mbstowcs... yes
checking for mbtowc... yes
checking for wctomb... yes
checking for wcwidth... yes
checking return type of signal handlers... void
checking for vprintf... yes
checking for _doprnt... yes
checking for getopt_long... no
checking ncurses.h usability... no
checking ncurses.h presence... no
checking for ncurses.h... no
checking for get_wch in -lncursesw... no
checking for initscr in -lncurses... no
checking curses.h usability... yes
checking curses.h presence... yes
checking for curses.h... yes
checking for get_wch in -lcurses... yes
Using curses as the curses library
checking for use_default_colors in -lcurses... no
configure: creating ./config.status
config.status: creating Makefile
config.status: creating doc/Makefile
config.status: creating doc/nanorc.sample
config.status: creating doc/man/Makefile
config.status: creating doc/man/fr/Makefile
config.status: creating doc/syntax/Makefile
config.status: creating doc/texinfo/Makefile
config.status: creating m4/Makefile
config.status: creating po/Makefile.in
config.status: WARNING: po/Makefile.in.in seems to ignore the --datarootdir setting
config.status: creating src/Makefile
config.status: creating nano.spec
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing default-1 commands
config.status: creating po/POTFILES
config.status: creating po/Makefile

하지만~ 에러 ㅋㅋ

make all-recursive
Making all in doc
Making all in man

make all-recursive
목표 "all-am"은(는) 최근의 것입니다.
Making all in syntax
목표 "all"은(는) 최근의 것입니다.
Making all in texinfo
make all-am
목표 "all-am"은(는) 최근의 것입니다.
목표 "all-am"은(는) 최근의 것입니다.
목표 "all"은(는) 최근의 것입니다.
Making all in m4
목표 "all"은(는) 최근의 것입니다.
Making all in po
목표 "all"은(는) 최근의 것입니다.
Making all in src
source='browser.c' object='browser.o' libtool=no DEPDIR=.deps depmode=aix /bin/sh ../depcomp /usr/vac/bin/xlc -DHAVE_CONFIG_H -I. -I. -I.. -DLOCALEDIR=\"/jeus/var/nano/share/locale\" -DSYSCONFDIR=\"/jeus/var/nano/etc\"   -g -c browser.c
1506-507 (W) No licenses available. Contact your program supplier to add additional users. Compilation will proceed shortly.
"proto.h", line 652.16: 1506-277 (S) Syntax error: possible missing ')' or ','?
make: 1254-004 최종 명령에서의 오류 코드는 1입니다.
정지.
make: 1254-004 최종 명령에서의 오류 코드는 1입니다.
정지.
make: 1254-004 최종 명령에서의 오류 코드는 2입니다.
정지.

일단 업무가 밀려있는 관계로... 여기까지.
TRACKBACKS  MESSAGES  DATE 08/01/23 20:22
TRACKBACK ADDRESS : http://www.todayis.net/vSix/rserver.php?mode=tb&sl=724
SECRET
NAME
PASSWORD
HOMEPAGE  
MESSAGE  
IBM AIX machine으로 ftp upload시 multi-byte로 파일이 깨지는 현상 | $프로그래밍 - 자바, 서블릿
AIX로 ftp를 이용하여 java를 upload를 한 후 파일을 열게되면 "ex: 0602-169 미완료 또는 유효하지 않은 복수 바이트 문자가 발견되었습니다. 변환에 실패하였습니다"라는 문자가 나타나는 경우가 있는 데 이는 AIX의 locale과 java의 charset의 문제로 인하여 발생한다..

이 때 해결하는 방법으로는 해당 파일을 하나씩 찾아가며 vi로 열고 새로 저장을 하는 방법이 있는 데 그건 좀 무식하고, ant build task로 해당 EOF invalid character를 없애는 방법이 있다.

아래의 것을 쓰면 된다.

<target name="fixcrlf">
    <fixcrlf srcdir="${app.dir}"
        javafiles="no"
        includes="**/*.jpd, **/*.java, **/*.jpf, **/*.ejb"
        eol="lf"
        eof="remove"
        encoding="KSC5601"
        />
</target>

@ http://ienvyou.egloos.com/3194000
TRACKBACKS  MESSAGES  DATE 08/01/23 13:52
TRACKBACK ADDRESS : http://www.todayis.net/vSix/rserver.php?mode=tb&sl=723
SECRET
NAME
PASSWORD
HOMEPAGE  
MESSAGE  
The Wishing Tree - Carnival of Souls | 일상다반사

The Wishing Tree - Carnival of Souls



Jaar: 1996


Label: Dorian Music


Tracklist:
· Evergreen (5:52)
· Starfish (3:08)
· Nightwater (4:23)
· Hall Of Memories (4:10)
· Midnight Snow (6:01)
· Night Of The Hunter (3:58)
· Fire-Bright (3:05)
· Thunder In Tinseltown (4:34)
· Empire Of Lies (5:32)
· The Dance (2:57)


Band:
Steve Rothery: gitaren, akoestische gitaren, toetsen
Hannah Stobart: zang
Met medewerking van:
Paul Craddick: drums, toetsen
Jo Rothery: achtergrondzang
Pete Trewawas: bas


Info:
n.v.t.
MySpace:
The Wishing Tree


Discografie:
Carnival Of Souls (1996)


The Wishing Tree were formed in 1995. The first album Carnival of Souls was originally released to great aclaim in Europe in 1996. It features Hannah Stobart on vocals and Steve Rothery on guitar. We've had comparisons to Kate Bush, All about Eve, Joni Mitchell and Fleetwood Mac. The new songs for the second album we're currently finishing off are quite diverse, demo's of these can can be found on our myspace page at www.myspace.com/thewishingtreeband


@ http://cdbaby.com/cd/wishingtree
@ http://www.marillion.com/music/solo/wt-carnival.htm


바야흐로 일천구백구십칠년, ROCK 음악을 처음 접했던 고딩시절, 아는것도 거의 없고 또 국내에 소개된 앨범도 많지않았던 그 때, 매일 새벽 2시 전영혁의 음악여행 라디오 방송을 테이프에 녹음해서 들었던 그 때가 생각난다. 당시 그 라디오에서 소개되었던 The Wishing Tree의 Evergreen, 당시 내가 알고 있었던 이 음악에 대한 정보는 딸랑 네개정도, 더 위싱 트리, 에버그린, 한나, 프로젝트... (스펠링도 몰랐고 또 그당시 모뎀으로의 인터넷 검색도 실패ㅠ) 하여간 이거 앨범찾을려고 정말 고생 많이했었는데,, 11년만에 결국 오늘 이 앨범의 소식을 접하게 되는구랴. Marillion의 Steve Rothery이 Hannah Stobart을 픽업하여 발매한 프로젝트 앨범 Carnival of Souls. 최근 근황에 대해선 아직 확인은 안해봤다. 저 여자 사진도 오늘 첨 본다.. ㅎ.. 세상좋아졌네.





cdbaby와 marillion 사이트에서 re-issue된 이 cd를 파는걸 봤다. 조만간 질러야겠다.
TRACKBACKS  MESSAGES  DATE 08/01/22 02:36
TRACKBACK ADDRESS : http://www.todayis.net/vSix/rserver.php?mode=tb&sl=722
SECRET
NAME
PASSWORD
HOMEPAGE  
MESSAGE