1. Java JDK SE (Java Development Kit Standard Edition)

Jave JDK SE 선택하여 다운로드 후 설치
http://java.sun.com/javase/downloads/index.jsp

java vm의 경로를 환경변수로 등록
(내 컴퓨터 우클릭 - 속성 - 고급 - 환경변수)

java vm의 경로 : java.exe 파일이 존재하는 경로
ex) C:\Sun\SDK\jdk\bin


2. Eclipse

Eclipse IDE for java를 선택하여 다운로드 후 압축해제
http://eclipse.org/downloads/

해제 후
eclipse.ini 수정

센스있는 분들은
적당한 곳에 바로가기를 만들어 주는 센스를 발휘해 주시길 ㄲㄲ


3. Android SDK

상단 SDK 메뉴 선택하여 다운로드 후 압축 해제
http://developer.android.com/index.html


4. Eclipse 에 ADT (Android Development Tool) 등록

Eclipse 실행

상단 메뉴에서
Help - Install New Software - Add 선택

https://dl-ssl.google.com/android/eclipse/

추가 하여 플러그인 설치


5. Eclipse 에 Andoroid SDK 경로 설정

Eclipse Menu
Window - Preference
왼쪽의 Android 패널 선택

SDK location 을
3번에서 받은 Android SDK의 경로에 설정

Setting Fin.

Posted by 구치리 :

python ebook

2009. 7. 10. 14:22 from Study/programming
Google에 python ebook
으로 물어봤더니 알려준 곳

http://diveintopython.org/

근데 왜 Korean은 깨져서 나올까.....
Posted by 구치리 :
Team consist of 2-3 members.

Each team should submit a proposal of the term project before start working on it.

team without proposal will be considered absence form the term project and their work won't be marked.
Ta and Professor review them and will make comments if it is necessary.

Proposal should be uploaded to eclass.
please check the course assignment section

Deadline for proposal submission is on May 3rd 2009.

One or two servers will be provided for code ollaboration during the development.

The server will use SVN or CVS to manage code repository.

A lab session for familiarizing with SVN and CVS will be held on Thursday 7th 2009.

There are two kinds of evaluations individual and team,

For individual evaluation each team memeber will be interviewed about the project he is involved in.

For team evaluation, the team will present their work in fornt of the class and they are also required to show the demo of their work.

Schedult for evaluations
Individyal interview Tuesdaym June 9th 2009
during the lecture time and extra time is allotted form 6:40pm
Team presentation and demo Thursdaym Hune 11th 2009 during the lecture time

If a team wants to host ethe web application on WISE server, TA should be contacted at last on Wednesdaym June 10th 209 so that application setup can be done prior to the presentation.

Posted by 구치리 :

makefile 만들기

2008. 11. 2. 18:16 from Study/programming
Posted by 구치리 :
http://www.cs.cmu.edu/~maverick/VimColorSchemeTest/index-c.html

와우 이 사이트
정말 정리 잘해놓았다..

사실 공식 scheme 는 아니지만
원하는 color scheme 를 간단히 복사만 하면
쓸 수 있도록 만들어 놓았다.

괜찮은걸? ㅋ
Posted by 구치리 :

vector

2008. 3. 6. 02:15 from Study/programming

선언법

vector<int> wow;
vector<int> :: iterator where_wow;

int 형 데이터를 담는
wow 벡터를 생성한다

그 벡터에 딱 맞는 이터레이터를 생성한다 - 포인터


vector<*int> wow;

int 포인터의 데이터를 답는 wow 벡터를 생성한다

wow.push_back(1);

wow 벡터 맨 뒤에 1이라는 것을 넣는다

wow.front();
wow.back();
맨앞
맨뒤의 값!을 반환한다

wow.begin();
wow.end();
맨맢 맨뒤의 주소!를 반환한다

대충 이것.. 깨우쳐라!

Posted by 구치리 :
Posted by 구치리 :

mathclass 발견...

2008. 2. 29. 00:08 from Study/programming

사용자 삽입 이미지
math.h 를 인클루드 하고 사용하려고

msdn 을 검색중에..

math class 가 있다는 것을 알았다...


아.. 정말...

기초개념이 중요하다.. ㅋㅋ 이제 이해된다 +_+

ps. 이제야 약간 .net 프레임워크가 무슨일을 하려는지 이해가 된다
math.h 안에 있는 함수와 다 매칭이 되는군! ㅋ

ps2. 결국 알긴 알았지만....
이게 뭘 include 를 해야하는지를 모르겠다..

math.h 로 결국 회귀..
이게 뭥미.. 시간만 낭비했다.

자 cout 을 하기 위해서는 iostream 헤더 안의 std namespace를 써야한다
그렇다면
math 를 쓰기 위해서는 ?? 헤뎌 안에 system  namespacce 를 써야 하는데..
system 이 있는 헤더는 뭘까요

Posted by 구치리 :

알까기의 물리학

2008. 2. 26. 17:23 from Study/programming
http://dblab.co.kr/entry/%BE%CB%B1%EE%B1%E2%BF%CD-%B9%B0%B8%AE%C7%D0

알까기의 물리학..

이것으로
공식 짜던거 다 헛수고가,. ㅋㅋ

미리 짠 식은 다 맞았지만. ㅎ흐흐..

이제 적용만 시키면 되는건가? ㅋ


젠장..

충격 맺음 변수...?
impact parameter
Posted by 구치리 :
http://blog.naver.com/flydrago?Redirect=Log&logNo=40008836670

결론은

객체를 생성하지 않고 호출되어 같은 메모리 공간에서 main함수가 돌아가야 하므로 static으로 선언되어야 하는겁니다.
Posted by 구치리 :