Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Simple Developer
Simple Developer
출처 : Several months ago we formed what we call Application Framework Core team. The charter of the team is to play the same role in the application frameworks space (WinForms, ASP.NET, WPF, Silverlight) as the Base Class Libraries…
+ MDI 프로그램 시작 시 차일드 윈도우를 띄우지 않으려면 MFC 애플리케이션 위저드는 MDI를 생성할 때 자동적으로 차일드 윈도우가 나타나도록 설계돼 있습니다. 이것은 CSomeApp(CWinApp의 자식 클래스)의 InitInstance()에서 정의돼 있기 때문입니다. 애플리케이션 위저드가 만들어 준 InitInstance()를 살펴 보면 다음과 같은 코드를 찾아…
출처 : MEF(Managed Extensibility Framework) 이 2009년 7월 13일에 릴리즈되어 14일에 공개가 되었습니다. 특히 MEF 는 .NET Framework 4.0 에 포함이 되어있으며, CodePlex 에서 굉장히 빠른 속도로 발전하고 있는 프레임워크 중에 하나 입니다. CodePlex MEF 사이트에 등록된 릴리즈…
Copyright © 2010 by John Fotheringham. For more tips, tools, and tech for Mastering ANY Language, go to LanguageMastery.com 인터넷에서 발견한 마인드 맵을 어떻게 언어 공부에 반영할 수 있는지에 대한 내용이다. 크게 단어를 공부할 때, 회화나 수업이 시작하기 전에 정확한…
[code lang=”vbnet”] With ListBox1 ‘ If we have some selected items. If .SelectedIndices.Count > 0 Then ‘ Loop through selected indicies to get the index number of ‘ the selected item. ‘ We need to cound back through the list…
Import 선언 출처 : MEF 의 구성 요소에 System.ComponentModel.Composition.ImportAttribute 특성을 선언하여 Import 를 선언할 수 있습니다. Import 는 Export 와 사용 방법이 매우 유사합니다. Import 는 프로퍼티(Properties), 필드(Fields), 생성자(Constructors) 에 선언할 수 있으며, 계약된 Export 구성 요소들을 Import 할…
요즘 댓글, 트랙백 등의 서비스 때문에 서버의 트래픽이 날로 증가하고 있다. 이럴때 맘에 안드는 스팸 IP를 차단하는 방법이 있다. 웹서버의 루트폴더에 .htaccess 파일을 생성한다. 생성된 파일에 아래와 같이 설정하도록 한다. SetEnvIfNoCase remote_addr 94.229.65.* go_out Order allow,deny Allow from all Deny…
W3Schools Online Web Tutorials () HTML5 Tutorial ()
Hudson은 간단히 얘기하면 빌드, 배포, 테스트 자동화 시스템이다. 어느 하나의 프로젝트의 소스코드를 업데이트 받아 지정된 시간이 프로젝트를 빌드하여 에러 유무를 출력하고, 각 빌드 별 배포파일 관리 및 테스트 통과 여부를 확인할 수 있는 프로그램이다. 또한, Hudson은 오픈소스로, 기존에 많이 사용하던…
IDE에서 자동으로 생성되는 파일들은 도데체 뭔 파일일까? Wizard를 사용하여 새로운 Project( MFC Wizard, ActiveX Control Wizard )를 생성하면 새로운 여러 가지 시작 파일이 자동으로 생성된다. 이제부터 Visual C++ project와 관련된 모든 종류의 파일에 대하여 설명하겠다. Project에 삽입되는 실제 파일은 Project의…
configure gzip compression with NGINX Open up the file sudo vi Comment that out gzip options gzip on;gzip_vary on;gzip_types text/plain text/css text/xml text/javascript application/x-javascript application/xml; Restart NGINX server sudo service nginx restart Configure browser cache Open up the…
Website : When it needs Posting schedule for social account need to be managed by staff before posting. Event schedule management for e-Commerce Case Study User can create posting schedule with date, caption, image(s), and video(s) Saved posting schedule…
When you link a Visual C++ project by using the /INCREMENTAL build option in Microsoft Visual Studio 2008, you may receive the following error message: LNK1000: Internal error during IncrBuildImage Solution :
원작자가 누구인지 몰라 출처를 밝히지 못합니다. 문제가 되면 삭제하겠습니다. IOCP – 윈속 프로그래밍 이번 회에는 지난 회에서 멀티스레드 윈속 서버 프로그램을 IOCP(Input Output Completion Port)를 이용하는 것으로 변경해보도록 하자. 전 에 서버 프로그래밍에 관한 필자의 연재기사에서 수차례 IOCP를 언급한 바…