Reading2010. 9. 12. 15:29

■ 철학 고전, 어떻게 읽을 것인가?

* 초급 과정 : 철학 고전 독서 목록 Ⅰ

1. 초급 1단계
 - 파이돈(범우사), 논어(홍익출판사), 맹자(홍익출판사)

2. 초급 2단계
 - 프로타고라스(범우사), 노자(범우사), 장자(범우사), 손자(범우사), 시학(문예출판사), 묵자(홍익출판사)

3. 초급 3단계
 - 니코마코스 윤리학(서광사), 한비자(한길사)

4. 초급 4단계
 - 의무론(서광사), 최고선악론(서광사), 방법서설(문예출판사)

* 중급 과정 : 철학 고전 독서 목록 Ⅱ

1. 중급 1단계
 - 에우튀프론(서광사), 소크라테스의 변명(서광사), 크리톤(서광사), 프로타고라스(범우사), 손자(범우사)

2. 중급 2단계
 - 소피스테스(한길사), 정치가(한길사), 한비자(한길사)

3. 중급 3단계
 - 티마이오스(서광사), 영혼에 관하여(궁리)

4. 중급 4단계
 - 범주론, 명제론(이제이북스)

* 고급 과정 : 철학 고전 독서 목록 Ⅲ

1. 동양 철학
 - 논어, 맹자, 순자, 노자, 장자, 열자, 묵자, 손자, 한비자, 사기본기, 사기열전 등

2. 서양 철학
 - 플라톤 : 소크라테스의 변명, 뤼시스 크리티아스 알키비아데스, 프로타고라스, 국가, 티마이오스, 소피스테스, 정치가, 필레보스
 - 아리스토텔레스 : 시학, 니코마코스 윤리학, 영혼에 관하여, 범주론 명제론, 소피스트적 논박
 - 키케로 : 의무론, 최고선악론, 노년에 관하여 우정에 관하여
 - 데카르트 : 성찰, 방법서설

'Reading' 카테고리의 다른 글

이기적 유전자  (0) 2009.07.21
개밥바라기 별, 바리데기  (0) 2009.07.08
카테고리 없음2010. 9. 12. 15:29

카테고리 없음2010. 9. 4. 11:02
http://blog.naver.com/wodnr7200?Redirect=Log&logNo=40107208073

휴대폰 경쟁에서 길잃은 LG
http://news.mk.co.kr/v3/view.php?year=2010&no=335247
카테고리 없음2010. 8. 27. 15:22

If you don't subclass UITableViewController, there is a way to do it. Just implement setEditing:animated: in your UIViewController subclass as follows:
- (void) setEditing:(BOOL)editing animated:(BOOL)animated {
   
[super setEditing: editing animated: animated];
   
[self.tableView setEditing:editing animated:animated];
}
- (void)viewDidLoad {
   
[super viewDidLoad];

   
self.navigationItem.rightBarButtonItem = self.editButtonItem;
}
wow!!
http://www.iphonedevsdk.com/forum/iphone-sdk-development/55942-fade-fade-out-view-object.html
카테고리 없음2010. 8. 3. 12:04
필자가 파악한 국내 서비스들만 꼽아도 티켓몬스터(ticketmonster.co.kr), 딜즈온(dealson.co.kr), 위폰(wipon.co.kr), 쿠폰(coopon.co.kr), 쇼킹온(showkingon.com), 키위(qiwi.co.kr), 데일리픽(dailypick.co.kr), 할인의추억(couponmemory.com), 슈가딜(sugardeal.co.kr), 파티윈(partywin.co.kr), 반토막티켓(bantomak.co.kr), 원데이플레이스(onedayplace.com), 체리데이(cherryday.co.kr), 쿠팡(coupang.com), 하프바코드(halfbarcode.co.kr) 등이 현재 서비스를 하고 있거나 곧 개시할 예정이다. 

위는 한국 사이트들

http://www.zdnet.co.kr/Contents/2010/08/03/zdnet20100803081934.htm
이건 그룹폰 관련 지디넷 칼럼
카테고리 없음2010. 8. 3. 11:28
http://blog.naver.com/jun0683?Redirect=Log&logNo=30089514066
http://cocoawithlove.com/2009/06/base64-encoding-options-on-mac-and.html

ㅎㅎ
카테고리 없음2010. 8. 3. 11:05

출처 : http://stackoverflow.com/questions/638299/uiscrollview-with-centered-uiimageview-like-photos-app

Hokay, Here is what I'd consider, the solution as in it behaves exactly like apple's photo app. I had been using solutions that used:

-(void) scrollViewDidEndZooming:(UIScrollView *)scrollView withView:(UIView *)view atScale:(float)scale

to recenter but I didn't like that solution because after the zooming was done, it'd bounce then quick 'jump' into the center which was very un-sexy. Turns out if you pretty much do the exact same logic but in this delegate function:

-(void)scrollViewDidZoom:(UIScrollView *)pScrollView

it both starts off centered and when you zoom out it stays centered:

-(void)scrollViewDidZoom:(UIScrollView *)pScrollView {
CGRect innerFrame = imageView.frame;
CGRect scrollerBounds = pScrollView.bounds;

if ( ( innerFrame.size.width < scrollerBounds.size.width ) || ( innerFrame.size.height < scrollerBounds.size.height ) )
{
   
CGFloat tempx = imageView.center.x - ( scrollerBounds.size.width / 2 );
   
CGFloat tempy = imageView.center.y - ( scrollerBounds.size.height / 2 );
   
CGPoint myScrollViewOffset = CGPointMake( tempx, tempy);

    pScrollView
.contentOffset = myScrollViewOffset;

}

UIEdgeInsets anEdgeInset = { 0, 0, 0, 0};
if ( scrollerBounds.size.width > innerFrame.size.width )
{
    anEdgeInset
.left = (scrollerBounds.size.width - innerFrame.size.width) / 2;
    anEdgeInset
.right = -anEdgeInset.left;  // I don't know why this needs to be negative, but that's what works
}
if ( scrollerBounds.size.height > innerFrame.size.height )
{
    anEdgeInset
.top = (scrollerBounds.size.height - innerFrame.size.height) / 2;
    anEdgeInset
.bottom = -anEdgeInset.top;  // I don't know why this needs to be negative, but that's what works
}
pScrollView
.contentInset = anEdgeInset;
}
카테고리 없음2010. 7. 21. 16:11