Computer
-
프로그래밍을 위한 폰트Computer/Programming 2007. 10. 20. 22:31
프로그램을 하거나 tex 문서를 만들다 보면 역슬래시(reverse solidus)가 원 기호로 표시되기 때문에 정말 보기 싫다. 그래서 영문 폰트로 설정하면 예를 들어 Courier New의 경우 한글이 두 자에 걸쳐 길게 늘어져서 나오는데 바탕으로 늘려 나오는 것을 볼 수 있다. 보기가 정말 싫은데, 그것을 해결하기 위해서 HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\ FontAssoc\Associated DefaultFonts HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Control\ FontAssoc\Associated DefaultFonts여기에서는 폰트가 설정된 것이 없으면 디폴트 폰트를 무엇을 할지 결정하는 부분이다. 바탕..
-
XP Pro 에서 IIS FTP 서버 설치Computer/Software 2007. 8. 23. 19:13
XP Pro에서 IIS FTP를 사용해서 사용자 계정이 있는 FTP 서버를 가동하기 위해 필요한 기본적인 과정. 1. IIS 설치 (windows cd 필요) 제어판-프로그램추가제거-Windows구성요소추가제거-IIS 설치 (FTP서비스에 check) 2. FTP 설정 제어판-관리도구-인터넷정보서비스(IIS)-기본FTP사이트-속성 보안계정 - 익명 연결하면 아무나 들어오지만, 체크 안하려 하면 암호화 안되어 password가 새나갈 수 있다고 하지만, 무시하고 익명 연결 uncheck. 3. 가상 디렉토리 설정 기본FTP사이트-새가상디렉토리 마법사 따라서 이름과 실제 디렉토리 맞추고 C:\Inetpub\ftproot 에 가상 디렉토리 이름과 같은 folder를 만들어 준다. 4. 사용자 계정 설정 제어판..
-
idapro plugin 개발 starting pointComputer/Programming 2007. 6. 5. 00:25
예전에는 steve의 idapro plugin writing plugin tutorial이 괜찮았으나, 현재는 idapro sdk directory의 readme와 install_ 파일을 읽는 것이 가장 좋다. 버전 올라가면서 설명이 좀 더 나아졌다. 질문은 http://openrce.org 가 가장 하기 좋다. Datarescue보다 오히려 활성화되어 있다. 관리하고 있는 pedram도 Pai Mei 툴을 active하게 개발하고 있으며 blog도 관리하고 있기 때문이다. 오히려 idapro 개발자가 여기 자주 들어온다.
-
Prime NumbersComputer/Programming 2007. 6. 2. 00:39
SPP (small primes product)를 구하려다보니 prime number table이 필요했다. 누가 구해놓은 것이 있어서 적어놓는다. http://www.research.att.com/~njas/sequences/b000040.txt int primes[]={2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,79,83,89,97,101,103,107,109,113,127,131,137,139,149,151,157,163,167,173,179,181,191,193,197,199,211,223,227,229,233,239,241,251,257,263,269,271,277,281,283,293,307,311,313,317,331,337,34..
-
MMAPI Player 사용시 주의점Computer/J2ME for GSM 2005. 6. 16. 02:58
Most devices have a limit to the number of Player objects - or at least, to how many Player objects can be held in a PREFETCHED state at the same time. For many devices, this limit is one. "Realize" the players, but don't prefetch them - they'll be prefetched automatically when they play. I'd recommend using a PlayerListener to deallocate the players after they play, to avoid holding too many in..