Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Simple Developer
Simple Developer
운영체제에서 원하는 파일을 클릭했을때 연결된 포터블 프로그램을 바로 실행 하는 방법이다. 다운로드 위 링크에서 최신 버전의 OpenWithAdd 프로그램을 다운로드 받고 프로그램을 실행해보자. 위와 같은 화면이 나타난다. 상단의 “…’ 버튼을 눌러 포터블 프로그램을 선택하고 좌측 하단의 ‘Register’ 버튼을 클릭하면 끝이다.…
동영상 파일중 확장자가 .asf인 파일을 많이 봤을 것이다. 이 파일을 동영상 플레이어로 재생할 때, 간혹가다가 앞/뒤 넘기기가 안되거나 속도가 느린 경우가 있다. 그런경우, 해당 동영상 파일의 헤더를 이 프로그램을 이용해서 AVI 헤더로 변경하게 되면 매우 쾌적하게 동영상을 감상할 수 있다.…
Laravel provides unique validation rule for check unique value on a given database table. Ref : Syntax unique:table,column,except,idColumn,whereColumn1,whereValue1,whereColumn2,whereValue2,… Ex1. Validate unique value in given database table ‘username’ => ‘unique:users,username’ Ex2. Validate unique value except given ID In mostly used…
WordPress에서 블로그에 글을 작성할때 제일 성가신 점이 태그를 자동으로 분석하여 필터링 하기 때문에 한번에 여러줄을 넘길 수가 없다는 점이다. 그래서 자료를 찾아보던 중 해결방법이 있어서 소개하고자 한다. 모든 문제의 원인은 WordPress에서 사용하는 비주얼 에디터인 “TinyMCE“라는 오픈소스Javascript HTML WISIWYG 에디터에서 발생하는…
Yesterday I posted a quick update to an article I wrote back in 2007 entitled How to make a full-screen Windows app using VB.NET. Aside from 1 or 2 people saying “Oh man why don’t you be a man and…
하나의 Windows Service 응용프로그램에서 다수의 WCF 서비스를 운영할 때, 손쉽게 각 ServiceHost를 생성할 수 있도록 ServiceManager 클래스를 만들어서 사용하는 방법을 설명한 소스코드이다. ServiceManager 클래스를 사용하게 되면 서비스 추가시 ServiceManager 클래스의 OpenAll() 함수에서 추가할 서비스 클래스만 명시해 주면 된다. ^^ [code…
Make sure you have completed your business information on the settings -> About section of the business manager page Turn on 2-factor authorisation for your admin users If the option still doesn’t appear – go to the facebook developer page…
원작자가 누구인지 몰라 출처를 밝히지 못합니다. 문제가 되면 삭제하겠습니다. IOCP – 윈속 프로그래밍 이번 회에는 지난 회에서 멀티스레드 윈속 서버 프로그램을 IOCP(Input Output Completion Port)를 이용하는 것으로 변경해보도록 하자. 전 에 서버 프로그래밍에 관한 필자의 연재기사에서 수차례 IOCP를 언급한 바…
To make your user control transparent, Add code described in three steps Step 1 protected override CreateParams CreateParams{get{CreateParams cp = base.CreateParams;cp.ExStyle |= 0x00000020;return cp;}} Step 2 protected override void OnPaintBackground(PaintEventArgs e){// dont code anything here. Leave blank} Step 3 protected…
.NET 4.0에서 제공하는 병렬 프로그래밍(Parallel Programming) 라이브러리를 통해 이젠 매우 손쉽게 다 프로세스 프로그래밍을 할 수 있게 되었다. ^^ 사용법도 매우 간단하다. 1. TPL(Task Parallel Library) 간단히 기존의 For, ForEach 구문을 대신하여 Parallel.For, Parallel.ForEach를 사용하면 된다. 2. PLINQ(Parallel LINQ) 컬렉션에…