컴퓨터/프로그래밍2014. 4. 19. 22:45

   

 

Node.js

: http://www.nodejs.org

 

NPM (Node Packaged Modules)

: https://www.npmjs.org

 

How to write Node.js Modules

: http://www.hacksparrow.com/how-to-write-node-js-modules.html

 

Node.js Manual & Documentation - Modules

: http://nodejs.org/api/modules.html

 

Node.js Tools for Visual Studio 2012 / 2013

: http://nodejstools.codeplex.com

 

Posted by jungtae17
컴퓨터/프로그래밍2014. 3. 31. 11:21

참고1> 디버그 모드에서의 메모리 특징 http://darpangs.tistory.com/26

 

참고2> Inside CRT: Debug Heap Management

 - http://www.codeguru.com/cpp/w-p/win32/tutorials/article.php/c9535/Inside-CRT-Debug-Heap-Management.htm

 

참고3> Win32 Debug CRT Heap Internals http://www.nobugs.org/developer/win32/debug_crt_heap.html

 

Posted by jungtae17
컴퓨터/프로그래밍2014. 3. 12. 17:53

WWSAPI (Windows Web Services API)

 

링크> http://msdn.microsoft.com/en-us/library/windows/desktop/dd430435.aspx

 

Posted by jungtae17
컴퓨터/프로그래밍2014. 3. 4. 13:15

Visual Studio 로 C++ 프로그래밍 중 디버깅할 때 가끔은 CRT(C Run-Time) 라이브러리 내부에서 어떻게 동작하는지 알아야할 때가 있다.

 

이때 심볼 파일(Symbol file)이 있으면 손쉽게 확인할 수 있지만 심볼 파일을 다운 받아서 설치하고 설정하는게 귀찮아서 많이 사용하지 않았다.

 

하지만 최신 Visual Studio 에는 이것을 손쉽게 사용할 수 있도록 기능이 내장되어 있다.

 

Visual Studio 2013 를 사용하고 있다면 아래와 같이 설정해보자.

 

[옵션 설정]

 

 

참고> http://support.microsoft.com/kb/311503/en-us

 

설정 후 처음으로 디버깅하면 Microsoft 기호 서버(Symbol Server)에서 심볼 파일을 자동으로 다운로드 해서 임시 캐시 폴더에 설치한다.

 

Posted by jungtae17
컴퓨터/프로그래밍2014. 1. 29. 11:04

 

Creating Visual Studio Templates
  : http://msdn.microsoft.com/en-us/library/ms247121.aspx

 

Customizing Project and Item Templates
  : http://msdn.microsoft.com/en-us/library/ms247119.aspx

 

How to: Locate and Organize Project and Item Templates
  : http://msdn.microsoft.com/en-us/library/y3kkate1.aspx

 

Template Parameters
  : http://msdn.microsoft.com/en-us/library/eehb4faa.aspx

 

Posted by jungtae17
컴퓨터/프로그래밍2013. 12. 18. 18:06

MARS (Multiple Active Result Sets)

 

링크> http://msdn.microsoft.com/en-us/library/ms131686.aspx

 

참고1> SQL Server Native Client 10.0 OLE DB Provider connection strings
http://www.connectionstrings.com/sql-server-native-client-10-0-oledb-provider/

 

참고2> SQLNCLI10 OLEDB : Enable MARS
http://www.connectionstrings.com/sql-server-native-client-10-0-oledb-provider/enable-mars/

 

Posted by jungtae17
컴퓨터/프로그래밍2013. 12. 17. 15:52

PSAPI (Process Status Application Programming Interface)

 

링크> http://msdn.microsoft.com/en-us/library/windows/desktop/ms684884.aspx

 

Posted by jungtae17
컴퓨터/프로그래밍2013. 11. 27. 11:12
Three ways to do WCF instance management

 : http://www.codeproject.com/Articles/86007/3-ways-to-do-WCF-instance-management-Per-call-Per

 

WCF Concurrency (Single, Multiple, and Reentrant) and Throttling

 : http://www.codeproject.com/Articles/89858/WCF-Concurrency-Single-Multiple-and-Reentrant-and

 

How to Call WCF Services Synchronously and Asynchronously
 : http://www.codeproject.com/Articles/91528/How-to-Call-WCF-Services-Synchronously-and-Asynchr

 

WCF Service Performance Monitoring using "Perfmon"

 : http://www.codeproject.com/Articles/431917/WCF-Service-Performance-Monitoring-using-Perfmon

 

Posted by jungtae17
컴퓨터/프로그래밍2013. 11. 1. 12:55

WAS(Windows Process Activation Service) 는 IIS(인터넷 정보 서비스) 프로세스 모델을 일반화한 것으로 HTTP 에 대한 종속성이 제거되었다.

 

이전에는 HTTP 응용 프로그램에서만 사용할 수 있었던 IIS 의 모든 기능을 HTTP 프로토콜을 사용하지 않는 WCF(Windows Communication Foundation) 응용 프로그램에서 사용할 수 있게 되었다.

 

IIS 7.0 은 HTTP 를 통하여 메시지 기반으로 활성화된 WAS 를 사용하고 있다.

 

Posted by jungtae17
컴퓨터/프로그래밍2013. 10. 29. 12:43

 

APN / APNS (Apple Push Notification Services)

 : https://developer.apple.com/library/ios/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG

 

 

 

GCM (Google Cloud Messaging for Android)

 : http://developer.android.com/google/gcm

 

Posted by jungtae17