Physical Address

304 North Cardinal St.
Dorchester Center, MA 02124

Category Uncategorized

app.config 파일에 WCF 서비스가 구성되어있는지 확인하기

프로그램에서 어플리케이션 설정(app.config) 파일에 등록되어 있는 서비스만 시작시키고 싶다면 간단히 ServiceHost.BaseAddresses 컬렉션만 체크하면 된다. 만일, app.config 파일에 서비스가 구성되어 있지 않다면 빈 컬렉션이 리턴된다. [code lang=”csharp”] ServiceHost host = new ServiceHost(typeof(MyService)); if (host.BaseAddresses.Count > 1) return; host.Open(); [/code] 출처 :…

Elevator pitch

최근에 책을 보다가 엘리베이터 피치(Elevator pitch)라는 단어를 발견하게 되었다. 경영학에서 나온 용어라는데, 잘 이해해두면 좋을 것 같아 한번 정리하고자 한다. 단어 자체의 뜻을 보면, 엘리베이터에서 (말을) 던지는 것이라고 해석할 수 있을듯 하다. 즉, 건물의 엘리베이터 속에서 만난 고객에게 원하는 층에…

Free windows screen capture software, PicPick

PicPick is user friendly and full of features for creating your image, suitable for software developers, graphic designers and home users. It is an all-in-one program that provides a full-featured screen capture tool, an intuitive image editor, a color picker,…

Grid Control Design-Time Row and Column Manipulation Features

WPF및 Silverlight의 그리드 컨트롤에 새롭게 추가된 그리드의 행과 열을 디자인 타임에서 조작할 수 있는 기능에 대한 시연 동영상이다. 매우 직관적으로 각 그리드의 항목들을 이동, 추가, 삭제할 수 있다. 마이크로소프트에서 ‘Microsoft Silverlight 4 Tools for Visual Studio 2010‘을 다운받아서 설치해야 사용할…

JavaScript Event Calendar – FullCalendar

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…