본문 바로가기
반응형

IT-개발,DB729

[개발/트위터] 트위터 twitter api 사용하기 [개발/트위터] 트위터 twitter api 사용하기 트위터 API 테스트를 해보고자 한다. API 소개 http://apiwiki.twitter.com/Twitter-API-Documentation PHP 라이브러리 http://apiwiki.twitter.com/Libraries#PHP Tips & Tutorials http://www.newwebplatform.com/tips-and-tutorials/Twitter 트위터에 API 등록 : http://twitter.com/oauth_clients http://oauth.net/ PHP 라이브러리 - http://apiwiki.twitter.com/Libraries#PHP My Twitter by Andres Scheffer. Set and retr.. 2011. 4. 2.
[이론/검색] 검색최적화(SEO), 검색엔진 상단노출 등 관련 검색엔진에서 내 홈페이지/게시판/블로그 글들이 노출되게 하는 것을 검색엔진 최적화(SEO, Search Engine Optimization)라 합니다. 관련 자료를 수집하여 봅니다. 관련 사이트 SEO IN KOREA http://www.seoinkorea.com SEO KOREA http://www.seo-korea.com 관련 게시물 [블로그/블로그검색/검색최적화] - SEO, 상단노출, 네이버 검색 안될시 http://ebayer.tistory.com/48 관련 도서 고객을 끌어오는 검색엔진 최적화 http://book.naver.com/bookdb/book_detail.nhn?bid=5235121 WEB 2.0 MARKETING BOOK (웹 2.0 마케팅 생존전략) http://book.nave.. 2011. 4. 2.
[개발/VC++] CreateThread(), _beginthread(), _beginthreadex() 에 관하여 아래 쓰레드 생성함수에 관한 비교가 참 명쾌하게 되어 있습니다. 출처 : http://naiades.tistory.com/6 윈도우즈에서 스레드를 생성하는 API는 CreateThread(), _beginthread(), _beginthreadex() 이렇게 3개의 함수가 존재합니다. CreateThread()와 _beginthread(), _beginthreadex()의 차이점은 다음과 같습니다. CreateThread()는 스레드를 생성하는 기능만 담당한다. _beginthread(), _beginthreadex()는 내부적으로 CreateThread() 를 사용하여 스레드를 생성하고 C Runtime library에서 내부적으로 필요로 하는 메모리 영역을 초기화 해주는 역할을 하게 됩니다. 초기화 .. 2011. 4. 1.
[개발/VC++] ShellExecuteEx, CreateProcess, 연결된 프로그램, 디폴트 브라우저 직접 예제를 만들수도 있지만 시간상 핑계로 인터넷에 있던 팁들을 나열했다. Q: I want to bring up the Windows Find window on a particular folder. A: We use the find verb as the operation parameter and we have the Windows Find window open up with the directory we have specified. This can be rather handy if you want to allow users to find some file within some folder. Just ask them for their folder and pop up a Find Window which h.. 2011. 3. 31.
[개발/VC++] 리소스 DLL 만들기 [개발/VC++] 리소스 DLL 만들기 리소스 전용 DLL은 아이콘, 비트맵, 문자열 및 대화 상자 등의 리소스만 들어 있는 DLL입니다. 리소스 전용 DLL을 사용하면 여러 프로그램 간에 동일한 리소스 집합을 쉽게 공유할 수 있습니다. 여러 언어로 지역화된 리소스가 있는 응용 프로그램을 제공하는 것도 좋은 방법입니다(MFC 응용 프로그램의 지역화된 리소스: 위성 DLL 참조). 리소스 전용 DLL을 만들려면 새로운 Win32 DLL(비 MFC) 프로젝트를 만든 다음 이 프로젝트에 리소스를 추가합니다. 새 프로젝트 대화 상자에서 Win32 프로젝트를 선택한 다음 Win32 프로젝트 마법사에서 DLL 프로젝트 형식을 지정합니다. 해당 DLL에 사용할 문자열 또는 메뉴와 같은 리소스가 포함된 새 리소스 스크.. 2011. 3. 30.
[개발/MFC] WM_TIMER 예제 [MFC] WM_TIMER 예제 // Message Map BEGIN_MESSAGE_MAP(CDlgDlg, CDialog) ... ON_WM_TIMER() END_MESSAGE_MAP() ... // Timer ID constants. const UINT ID_TIMER_ONE = 0x1001; const UINT ID_TIMER_TWO = 0x1000; // Start the timers. void CDlgDlg::StartTimer() { // Set timer for Minutes. SetTimer( ID_TIMER_ONE, 60 * 1000, 0 ); // Set timer for Seconds. SetTimer( ID_TIMER_TWO, 1000, 0 ); } // Stop the timers... 2011. 3. 23.
반응형