Development(8008)
-
KDATA-Linked Data for KOREA
KDATA-Linked Data for KOREA 공공데이터, 오픈데이터, LOD 관련 http://dakchigo.kr/index.jsp http://kdata.kr/ LODAC 2015 http://dakchigo.kr/events/part6/index.jsp
-
DreamSpark, 무료 개발자 등록 코드 얻기
방법1 지금 코드 얻기 링크 클릭 발급받은 등록 코드 번호 따로 저장 or 방법 2 개발자 등록하는 페이지에서 등록 코드 얻기 링크를 클릭하면 위와 동일한 페이지가 오픈됩니다. https://www.dreamspark.com/Student/Windows-Store-Access.aspx
-
Python(파이썬) 장점
Python 장점 (파이썬이 좋은 이유) Free(공짜) 인간다운 언어 강력 간결 문법이 쉬워 빠르게 학습 프로그래밍이 재밌다 개발속도가 빠르다 Python으로 할수 있는 것 구분설명파이썬으로 할 수 있는 것 CanGUI(Graphic User Interface) 프로그램 CGI 프로그래밍 수치연산 프로그래밍 데이터베이스 프로그래밍 시스템 유틸리티 C/C++과의 결합파이썬으로 할 수 없는 것 Can't엄청난 횟수의 반복 연산을 필요하는 프로그램 하드웨어를 직접 제어하는 프로그램
-
Error-The container 'Android Dependencies' references non existing library 'C:\javanAndroid\workspace_android\appcompat_v7\bin\appcompat_v7.jar' - eclipse error
오류메시지 The container 'Android Dependencies' references non existing library 'C:\javanAndroid\workspace_android\appcompat_v7\bin\appcompat_v7.jar' Error-The container 'Android Dependencies' references non existing library 'C:\javanAndroid\workspace_android\appcompat_v7\bin\appcompat_v7.jar' 해결방법 1 Add JARs Appcompat_v7항목 확장 Android-support-v7-appcompat.jar 선택 > OK 추가확인 Eclipse: Project > Clean OK ..
-
Microsoft 프로모션 코드로 DreamSpark에서 인증 받기
Microsoft 프로모션 코드로 DreamSpark에서 인증 받기 DreamSpark site http://dreamspark.com 학생용 DreamSpark의 자세한 정보 클릭 페이지 하단의 로그인 클릭 이메일주소 입력 > 비밀번호 입력 > 로그인 버튼 클릭 대한민국 선택 > 계속 진행하여 인증하기 클릭 문자 or 전화 항목 선택 > 다음 버튼 클릭 문자로 받은 Microsoft 계정 보안 코드 입력 > 다음 버튼 클릭 발급받은 인증 코드 클릭 계속 상단의 응용프로그램 개발 메뉴 클릭
-
은닉화 / 캡슐화- 12.html
은닉화 / 캡슐화 소스 코드 function Rectangle(width, height){ //지역변수는 외부에서 호출 불가(은닉화) var width = width; var height = height; this.getWidth = function(){ return width; }; this.getHeight = function(){ return height; }; this.setWidth = function(width){ //검증 if(width