Tech & IT 187

성당과 시장(The Cathedral and the Bazaar)

출처 : http://blog.naver.com/kuhong1/5850113 Eric Raymond 의 The Cathedral and the Bazaar 를 번역했습니다. 오픈소스 개발에 관심있는 사람이라면 한번쯤 읽어 보아야 할 글인 것 같군요.(정직한님 - 하이텔 아이디 "어니스트" -의 번역입니다) 성당과 시장 by Eric S. Raymond $Date: 1998/05/13 17:29:31 리눅스의 역사에 의해 제시된 소프트웨어 엔지니어링의 놀라운 이론의 신중한 테스트로 실행된 성공적인 오픈소스 프로젝트, fetchmail을 분석한다. 이 이론들을 두 개의 근본적으로 다른 개발 스타일의 용어들로 논할 것이다. 두가지 스타일이란 상업용 소프트웨어의 "성당" 모델과 리눅스 세계의 "시장" 모델이다...

lex & yacc 사용한 parser개발

파서 제네레이터 http://blog.naver.com/yadangcs?Redirect=Log&logNo=50023070953 http://blog.naver.com/jujujua1?Redirect=Log&logNo=90044919898 Visual Studio 6.0용 Alex & Ayacc 사용법 http://cafe.naver.com/existem/46 flex & bison howto http://blog.naver.com/imisehi/150022426836 http://www.joinc.co.kr/modules/moniwiki/wiki.php/article/lex_yacc_howto#AEN250 visual studio 2005 에서 flex, bison 사용하기 http://blog.nave..

관리자 권한으로 실행되는 프로그램 만들기

UAC 관련 http://blog.naver.com/smanooo/140039977876 http://blog.naver.com/smanooo/140040310392 Windows Vista 정보: 사용자 계정 컨트롤을 위한 Windows Vista 응용 프로그램 개발 요구 사항 http://msdn.microsoft.com/ko-kr/library/bb530410.aspx Windows Vista를 위한 스크립트 권한 상승 PowerToys http://surewin.kr/?document_srl=4272 [Vista] Admin 권한으로 실행되는 프로그램 만들기 (VB6) http://www.enjoydev.com/blog/107 [Vista] Admin 권한으로 실행되는 프로그램 만들기 (VB6) ..

Macro함수를 이용한 structure list 관리 효율화

www.elayer.co.kr 자료실의 2번 자료를 보시오 #include #define Function list_entry #define list_entry(ptr, type, member) \ ((type *)((char *)(ptr) - (unsigned long)(&((type *)0)->member))) typedef struct _sData { char str[12]; int num[3]; char index; short int snum[3]; } sData; void main() { sData *pm, m = {"Arminia", {100, 200, 300}, 'A', {10, 20, 30}}; printf("&m : [%x]\n", &m); printf("[%x]\t[%x]\n[%x]\t[..