JAVA 교육교재 (웹프로그래밍) 표지이미지 제목 저자 출판사 정가 인터넷가 <알라딘중고가> HTML + JavaScript & CSS 실무테크닉 김은기, 이진훈, 김은영 성안당 19,800원 16,830원 7,200원 오라클 11g+ PL/SQL 입문 (Dynamic01) 성윤정, 서동린 대림 25,000원 22,500원 11,200원 Java의 정석 - 2nd Edition 남궁성 도우출판사 30,000원 21,000원 12,600.. 개발/JAVA 2013.07.08
[스크랩] GDI 개체 누수로 인한 문제를 지연할 수 있는 Registry key GDI 개체의 누수는 Desktop Heap Memory의 고갈로 인하여 Virtual Memory Pressure 와는 다르게 "Not enough resource" 와 같은 오류를 얻을 수 있다. User mode에서는 좀처럼 확인하기 어렵지만, Task Manager의 GDI 개체 수나 화면이 깨지거나 하얗게 되는 현상, 또는 Window의 menu가 정상적으로 보이지 않거나 겹쳐서 .. 개발/프로그래밍(일반) 2012.06.13
[스크랩] Eclipse 3.7 (Indigo) for C/C++ Programming 원문 : http://www3.ntu.edu.sg/home/ehchua/programming/howto/EclipseCpp_HowTo.html Eclipse 3.7 (Indigo) for C/C++ ProgrammingHow To Install Eclipse CDT 8.0 and Get StartedEclipse is an open-source Integrated Development Environment (IDE) supported by IBM. The mother site is @ www.eclipse.org. Eclipse is popular for Java project development. It also supports C/C++, PHP, Python.. 개발/프로그래밍(일반) 2012.05.08
Segmentation fault 가 발생하는 경우 (출처: http://hosang.tistory.com/180) Segmentation fault 가 발생하는 경우 Segmentation fault 가 발생하는 경우는 원인을 찾기 어려운 경우가 종종 있으므로 여러가지 경우를 정리해보자.1. File open 시 실제 파일이 없는 데 계속 진행하는 경우 -> 그러므로 반드시 FILE pointer 사용시는 파일이 올바르게 열.. 개발/프로그래밍(일반) 2012.04.27
Linux 오디오 프로그래밍 (출처: http://realgh.tistory.com/25) 본 문서는 레코딩 소스를 선택하고 볼륨을 조절하는 믹서(Mixer) 프로그래밍, 레코딩 소스로 부터 녹음하여 파일로 저장하고 재생할 수 있는 오디오(Audio) 프로그래밍을 위한 기본 단계를 OSS(Open Sound System) API에 기반하여 설명한다. ________________________________________________________.. 개발/프로그래밍(일반) 2011.10.26
[스크랩] MFC에 대한 유용한 팁 모음 MFC에 대한 유용한 팁 모음 - Control " target=_blank>에디트 박스에서 엔터키 확인 방법 " target=_blank>CListCtrl에 컬럼 넣기 " target=_blank>에디트 컨트롤을 마음대로 " target=_blank>컨트롤을 사용할 수 없게 처리하려면 " target=_blank>컨트롤 크기를 뷰에 맞추기 " target=_blank>윈도우 95/NT에서 아이템 개수 제한 여부 " targ.. 개발/프로그래밍(일반) 2010.02.05
[MFC] Setting the width of the dropdown list 출처: http://www.codeproject.com/KB/combobox/combodropwidth.aspx Introduction One of the more frustrating aspects of a user interface can be the situation where you are presented with a list of choices in a combobox, but are unable to view the choices because the dropdown list is too narrow. This article presents an extremely simple CCombobox derived class that will always present a list that.. 개발/프로그래밍(일반) 2010.02.02
[MFC] ComboBox with Item Tooltips ComboBox with Item Tooltips Rating: (출처: http://codeguru.earthweb.com/cpp/controls/combobox/tooltips/article.php/c4949/) Edward Antonyan (view profile) April 18, 2001 (continued) Environment: VC6 SP5, NT4 SP6 ( not tested on other OS ) To use this combo box, follow the following steps: Include TooltipComboBox.h, TooltipComboBox.cpp, TooltipListCtrl.h and TooltipListCtrl.cpp in your project... 개발/프로그래밍(일반) 2010.02.02
[스크랩] O_NONBLOCK 그리고 EAGAIN 논 블럭킹 방식의 소켓 I/O를 효과적으로 구현하기 위해서는, 먼저 O_NONBLOCK 그리고 EAGAIN이 어떤상황에서 발생하고, 그 상황을 어떻게 대처해야 하는지에 대한 이해가 매우 중요하다. 우선 용어의 정의부터 살펴보면 다음과 같다. > O_NONBLOCK : 논 블럭킹 방식으로 데이터 전송하고자 할 때 적용하는 소.. 개발/프로그래밍(일반) 2009.12.11
[스크랩] find 옵션 * / 는 최상위 디렉터리를 뜻함. 만약 찾고자 하는 디렉터리가 있다면 그걸로 대체 - 파일 이름에 foobar 가 들어간 파일 찾기 find / -name "foobar" -print - 특정 사용자(foobar) 소유의 파일을 찾기 find / -user foobar -print | more - 최근 하루동안에 변경된 파일을 찾기 find / -ctime -1 -a -type f | xargs ls -l | more - 오래된 파.. 개발/프로그래밍(일반) 2009.12.03