2011년 7월 31일 일요일

무말랭이

무.말.랭.이





미국에 와서야 무말랭이의
맛을 알게되었다

초등학교때 엄마가 무말랭이 반찬 싸주시던 날.. 그땐 왜 그리
싫었는지... 햄반찬 동그랑땡 반찬만 기다렸던거 같다

엄마가 만들어주셨던 그 맛에 비할 바 없는,  4.5$ 짜리 무말랭이에 만족한 나를 보니
약간 우습기도 하고, 내가 어른이 되어간다는 느낌이 들기도 한다.

- Posted using BlogPress from my iPhone

Put your records on.

2007년 처음 알게된 노래.
2010년 여름, 처음으로 이노래를 느꼈다.

올해 2011 여름, 까페에서 흘러나오는 노래를 들으니 기분이 너무 좋다.

2011년 7월 26일 화요일

ㅋㅋㅋㅋ

얼굴 ㅋㅋ
그림은 Matlab으로 그려야 제맛. 

va_list

va_list
: Type to hold information about variable arguments

va_start
: Initialize a variable argument list

void test::dbg(LPCTSTR lpFmt,... )
{
va_list marker;
va_start( marker,lpFmt );
char text[1000]={0,};

vsprintf( text,lpFmt,marker);
va_end( marker );

CString ret(text);
//...

}

2011년 7월 25일 월요일

d41d8cd98f00b204e9800998ecf8427e

Zero length string의 MD5
d41d8cd98f00b204e9800998ecf8427e

http://scproc-2011.appspot.com/getMD5?arg=

2011년 7월 20일 수요일

간만의 요리

간만의 요리





이건 블루베리 요거트





다 먹고 살자고 하는 건데 ㅋㅋ

- Posted using BlogPress from my iPhone

2011년 7월 18일 월요일

Dinner with Ray

미국에서 맛보는 감자탕



그리고 비오는 날의
파전과 와인 !

완전 감솨

- Posted using BlogPress from my iPhone

2011년 7월 13일 수요일

ipad 2

와 버렸다 ㅋㅋ



- Posted using BlogPress from my iPhone

Location:Pittsburgh,United States

2011년 7월 10일 일요일

MD5 Checksum with NSData

UIImage* im = [UIImage imageWithCGImage:cgimg]; // make image from CGRef

NSData* pixelData = UIImagePNGRepresentation ( im ); // get PNG representation

if (pixelData)
NSLog(@"%@", [pixelData MD5]);



http://iphonedevelopertips.com/core-services/create-md5-hash-from-nsstring-nsdata-or-file.html

2011년 7월 2일 토요일

PechaKucha Night Pittsburgh (http://www.pecha-kucha.org/night/pittsburgh/) 에 처음 갔었다. 
이렇게 사람들이 열심히 참여하는지 몰랐었다.


마지막 발표(Pop Dies by Eric Venuto)까지 재미있게 잘 들었다~
우리가 소비하는 것들은 packaging에 의해 그 이미지까지 포장된다...

2011년 6월 28일 화요일

Dexterity

오늘 Graphics Lab 세미나 Nancy 교수 발표에서 듣게 된 말.

Dexterity the ability to find a motor solution for any external situation, that is, to adequately solve any emerging motor problem correctly, quickly, rationally, and resourcefully

원 정의는 아래 reference

N. A. Bernstein. On dexterity and its development. In M. L. Latash and M. T. Turvey, editors, Dexterity and its Development. Lawrence Erlbaum Associates, New Jersey, 1996.

either-or

This is not an either-or technology choice.

양자 택일의 기술이 아니다. (두 기술이 같이 존재할 수 있다는 얘기)

http://www.cnn.com/2011/TECH/gaming.gadgets/06/27/tablets.vs.ereaders/index.html?hpt=te_bn4

Cocos2D의 texture

Cocos2D 의 texture 잡는 곳.
ccrendertexture.m


CCTexture2DPixelFormat format = kCCTexture2DPixelFormat_RGBA8888;
// textures must be power of two squared
int pow = 8;
while (pow < w || pow < h) pow*=2;

void *data = malloc((int)(pow * pow * 4));
memset(data, 0, (int)(pow * pow * 4));
texture_ = [[CCTexture2D alloc] initWithData:data pixelFormat:format pixelsWide:pow pixelsHigh:pow contentSize:CGSizeMake(w, h)];

2011년 6월 24일 금요일

갑작스런 비

Dozen 앞에서 비를 피하다가
이걸 발견

귀엽다 ㅎㅎ





그리고 늘 보던 그러나 비에 갖혀서 다시 보는 view





옆에는 멕시칸들이 갖혀서 알아들을 수 없는 얘기로 대화중

그나저나 한국에 비가오니 여기도 오나 -_-

- Posted using BlogPress from my iPhone