기본 콘텐츠로 건너뛰기

2009년 도서 목록




1월
책도둑
박사가 사랑한 수식
김약국의 딸들

2월
엄마를 부탁해
책 읽는 여자는 위험하다

3월
개밥바라기 별
취하기에 부족하지 않은
벤자민 버튼의 시간은 거꾸로 간다

4월
호미
나쁜 사마리아인들
내 슬픈 창녀들의 추억
개를 훔치는 완벽한 방법
장미의 이름
심장의 시계장치

5월
슬럼독 밀리어네어
좌안
일본전산 이야기
바이올렛

6월
안녕 아빠
더 리더
우안
나뭇잎 사이로 비치는 햇살 속을 헤엄치는 물고기
밤의 피크닉
자살가게

7월
카스테라
그남자의 비블리오필리

8월
피아니시모 피아니시모
츠지 히토나리의 편지
NP
달은 무자비한 밤의 여왕
회사가 붙잡는 사람들의 1% 비밀

9월
지문사냥꾼
위저드 베이커리

10월
-

11월
기발한 자살 여행
오 해피데이
생각의 함정
스크럼(Scrum)과 XP
그건 사랑이었네

12월
교수대 위의 까치


2009년 올해의 책은 "엄마를 부탁해" 입니다.
가장 기억에 남는 책이네요.


10월은 개인적으로 정신없었는지 읽은 책이 없네요 ^^;

댓글

이 블로그의 인기 게시물

oradiag_??? 로그 생성안되게 하는 방법

cx_Oracle이나 oci로 개발된 프로그램을 사용하다 보면 $HOME에 orgdiag_사용자계정으로 로그가 대량으로 저장되는 경우가 발생합니다. 이런 경우에 로그가 남지 않도록 하던지 아님 다른 경로에 저장하는 방법은  아래와 같은 방법으로 처리할 수 있습니다. 로그 안남기는 방법은. 환경변수에 추가 export TNS_ADMIN=/home/eek/conf/ 해당경로에 sqlnet.ora파일 생성해서 DIAG_ADR_ENABLED=off TRACE_LEVEL_CLIENT=off LOG_FILE_CLIENT=/dev/null 설정값을 추가하면 로그 파일이 생성되지 않음. 자세한 설정 정보는 http://docs.oracle.com/cd/B28359_01/network.111/b28317/sqlnet.htm#BIIDEAFI 참고하세요. 끝.

Visual Leak Detector - Enhanced Memory Leak Detection for Visual C++

Download Visual Leak Detector - 515.7 Kb Download demo console project - 518 Kb Download demo MFC project - 525.2 Kb Download the source code - 29 Kb What's New 30 March 2005 - Version 0.9d has been newly released. This is a fairly major release that features significant changes to the way VLD interfaces with the application being debugged. With this release, VLD is now packaged in library form. Packaged as a pre-built library, it is now much easier to start using VLD with your projects because it no longer requires you to set-up your build environment in any particular way. For example, you'll no longer need to have the Platform SDK installed in order to use VLD. You also won't need to configure Visual C++'s include search path to include directories in any specific order. Introduction This memory leak detector is superior, in a number of ways, to the memory leak detection provided natively by MFC or the Microsoft C runtime library. First, built-in lea...

Oracle Instant Client + sqlldr install

Instant Client Downloads + SQL*Loader 설치 http://www.oracle.com/technetwork/database/features/instant-client/index-097480.html 아래와 같이 버젼에 따라서 3가지를 다운로드 합니다. basic, sdk, sqlplus instantclient-basic-linux.x64-11.2.0.3.0.zip instantclient-sdk-linux.x64-11.2.0.3.0.zip instantclient-sqlplus-linux.x64-11.2.0.3.0.zip 설치되어있는 oracle 에서 rdms , nls , sqlldr 를 복사합니다. cp -r /home/oracle/product/10/rdbms ~eek/usr/instantclient_10_2/ cp -r /home/oracle/product/10/nls ~eek/usr/instantclient_10_2/ # 파일 복사 cp -r /home/oracle/product/10/bin/sqlldr ~eek/usr/instantclient_10_2/ # 권한설정 chown -R eek.eek ~eek/usr/instantclient_10_2/ # 환경변수 등록 export NLS_LANG=AMERICAN_AMERICA.KO16KSC5601 export ORACLE_HOME=/home/eek/usr/instantclient_10_2 export ORA_NLS10=$ORACLE_HOME/nls/data