| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | 6 | |
| 7 | 8 | 9 | 10 | 11 | 12 | 13 |
| 14 | 15 | 16 | 17 | 18 | 19 | 20 |
| 21 | 22 | 23 | 24 | 25 | 26 | 27 |
| 28 | 29 | 30 |
- 안드로이드
- java
- 스시
- chrome
- github
- 부경대 맛집
- 태국지도
- 태국여행준비물
- 깃
- chart
- 크롬
- 여행지도
- 경성대 맛집
- 태국 여행정보
- 소프트웨어
- SDK
- 삼성소프트웨어멤버십
- 태국여행
- Android
- 맛집
- 깃허브
- 갤럭시 노트
- c#
- 갤럭시 노트 해외판
- Tizen
- 서면 맛집
- 자바
- 타이젠
- 일정관리
- git
- Today
- 0
- Total
- 211,887
목록분류 전체보기 (106)
DREAM IT, WISH IT, DO IT
Common Js. CommonJSJavaScript is a powerful object oriented language with some of the fastest dynamic language interpreters around. The official JavaScript specification defines APIs for some objects that are useful for building browser-based applications. However, the spec does not define a standard library that is useful for building a broader range of applications.The CommonJS API will fill t..
jQuery Mobile FrameworkLatest Stable Version: 1.1.0We provide CDN-hosted versions of jQuery Mobile for you to include into your site. These are already minified and compressed – and host the image files as well. It’ll likely be the fastest way to include jQuery Mobile in your site.CDN-Hosted JavaScript:Uncompressed: jquery.mobile-1.1.0.js (useful for debugging)Minified and Gzipped: jquery.mobile..
Web - JQUERY동적 페이지를 위한 JQUERY http://jquery.com/BLOG » JQUERY 1.7.2 RELEASEDPosted March 21st, 2012 by dmethvinjQuery 1.7.2 is looking good! The release candidate went smoothly so we’ve made only one small change and are releasing it to your eager hands today. You can get the oven-fresh code from the jQuery CDN now, with Google and Microsoft CDNs soon to follow:http://code.jquery.com/jquery-1.7...
갤럭시 노트 유럽판 롬 올리기(오딘)구매한 갤럭시 노트가 홍콩판이라 깔끔한 유럽판으로 올리려고 검색하던 중 오딘을 이용한 방법을 사용하기로 했다. 첨부판 오딘 프로그램과 해당 링크의 유럽판 롬을 받아서 설치하면 된다.
삼성 갤럭시 노트 사용기(해외판)갤럭시노트를 구매한지 벌써 한달이 넘어가는 시점에서 이제서야 사용기를 올리게 되네요. 여러 프로젝트 수행중이기도 하고 시간이 많이 부족한 느낌입니다..구매한 갤럭시 노트 모델은 해외판 홍콩 모델이며 체감상 국내 제품과 외형적인 차이는 없어보입니다. 하지만 내부 스펙이 확연이 다르죠. 주위에 국내 정식발매된 노트를 구매한 친구들이 있는데 제꺼와 비교해 보더니 확연이 다른 속도에 놀라더군요. 일단 사진부터 올리고 차차 업데이트 하겠습니다.
기본적으로 윈도우7 에서는 하이퍼 터미널이 설치되어 있지않기 때문에 별도로 다운받아서 설치를 해야합니다. 기본적인 동작 방법은 기존것과 동일합니다. 첨부된 파일을 압축풀고 바로 실행하시면 됩니다.
자바 환경에서 시리얼 통신을 하기 위해서는 외부 "API"가 필요합니다. 다음 주소가 오라클에서 제공하는 "Java Communications API"에 대한 페이지입니다. http://www.oracle.com/technetwork/java/index-jsp-141752.html Java Communications The Java Communications 3.0 API is a Java extension that facilitates developing platform-independent communications applications for technologies such as Smart Cards, embedded systems, and point-of-sale devices, financia..
#include stdio.h #include string.h #include stdlib.h struct tag_NameCard { char name[10]; char tel[15]; char addr[32]; }; #define ELETYPE tag_NameCard ELETYPE *ar; unsigned size; unsigned num; unsigned growby; void InitArray(unsigned asize, unsigned agrowby) { size = asize; // 초기 할당량 growby = agrowby; // 추가 여유분 num = 0; ar = (ELETYPE *)malloc(size * sizeof(ELETYPE)); // 갯수(size)에 크기(sizeof(ELETY..
#include stdio.h #include string.h #include stdlib.h #define ELETYPE int ELETYPE *ar; unsigned size; unsigned num; unsigned growby; void InitArray(unsigned asize, unsigned agrowby) { size = asize; growby = agrowby; num = 0; ar = (ELETYPE *)malloc(size * sizeof(ELETYPE)); } void Insert(int index, ELETYPE value) { unsigned need; need = num + 1; if (need > size) { size = need + growby; ar = (ELETYP..