Physical Address

304 North Cardinal St.
Dorchester Center, MA 02124

zemna

zemna

Imports 선언

Import 선언 출처 : MEF 의 구성 요소에 System.ComponentModel.Composition.ImportAttribute 특성을 선언하여 Import 를 선언할 수 있습니다. Import 는 Export 와 사용 방법이 매우 유사합니다. Import 는 프로퍼티(Properties), 필드(Fields), 생성자(Constructors) 에 선언할 수 있으며, 계약된 Export 구성 요소들을 Import 할…

IOCP – 윈속 프로그래밍

원작자가 누구인지 몰라 출처를 밝히지 못합니다. 문제가 되면 삭제하겠습니다. IOCP – 윈속 프로그래밍 이번 회에는 지난 회에서 멀티스레드 윈속 서버 프로그램을 IOCP(Input Output Completion Port)를 이용하는 것으로 변경해보도록 하자. 전 에 서버 프로그래밍에 관한 필자의 연재기사에서 수차례 IOCP를 언급한 바…

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…

Increase wordpress performance

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…

IDE에서 자동으로 생성되는 파일들은 도데체 뭔 파일일까?

IDE에서 자동으로 생성되는 파일들은 도데체 뭔 파일일까? Wizard를 사용하여 새로운 Project( MFC Wizard, ActiveX Control Wizard )를 생성하면 새로운 여러 가지 시작 파일이 자동으로 생성된다. 이제부터 Visual C++ project와 관련된 모든 종류의 파일에 대하여 설명하겠다. Project에 삽입되는 실제 파일은 Project의…

Hudson Tutorials – 윈도우에 Hudson 설치하기

Hudson은 간단히 얘기하면 빌드, 배포, 테스트 자동화 시스템이다. 어느 하나의 프로젝트의 소스코드를 업데이트 받아 지정된 시간이 프로젝트를 빌드하여 에러 유무를 출력하고, 각 빌드 별 배포파일 관리 및 테스트 통과 여부를 확인할 수 있는 프로그램이다. 또한, Hudson은 오픈소스로, 기존에 많이 사용하던…

.htaccess 파일을 이용해 특정 IP 접근 차단하기

요즘 댓글, 트랙백 등의 서비스 때문에 서버의 트래픽이 날로 증가하고 있다. 이럴때 맘에 안드는 스팸 IP를 차단하는 방법이 있다. 웹서버의 루트폴더에 .htaccess 파일을 생성한다. 생성된 파일에 아래와 같이 설정하도록 한다. SetEnvIfNoCase remote_addr 94.229.65.* go_out Order allow,deny Allow from all Deny…

How to use Lightbox in Jekyll

Install with bower $ bower install ekko-lightbox –save Basic usage likes bellow, ![Image Title](){: width=”400px” } If you want to give lightbox feature to all images in page, we can it by bellow javascript. first, give anchor to image in…

How to update timestamp in pivot table in Laravel

When insert a new row to pivot table, we can use attach() method like this: $company = Company::find(1);$company->users()->attach(1); But this will not update created_at and updated_at timestamps column in pivot table. To update timestamps, use withTimestamps() method on the relationship…