Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Simple Developer
Simple Developer
[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 할…
원작자가 누구인지 몰라 출처를 밝히지 못합니다. 문제가 되면 삭제하겠습니다. IOCP – 윈속 프로그래밍 이번 회에는 지난 회에서 멀티스레드 윈속 서버 프로그램을 IOCP(Input Output Completion Port)를 이용하는 것으로 변경해보도록 하자. 전 에 서버 프로그래밍에 관한 필자의 연재기사에서 수차례 IOCP를 언급한 바…
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 :
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…
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에서 자동으로 생성되는 파일들은 도데체 뭔 파일일까? Wizard를 사용하여 새로운 Project( MFC Wizard, ActiveX Control Wizard )를 생성하면 새로운 여러 가지 시작 파일이 자동으로 생성된다. 이제부터 Visual C++ project와 관련된 모든 종류의 파일에 대하여 설명하겠다. Project에 삽입되는 실제 파일은 Project의…
Hudson은 간단히 얘기하면 빌드, 배포, 테스트 자동화 시스템이다. 어느 하나의 프로젝트의 소스코드를 업데이트 받아 지정된 시간이 프로젝트를 빌드하여 에러 유무를 출력하고, 각 빌드 별 배포파일 관리 및 테스트 통과 여부를 확인할 수 있는 프로그램이다. 또한, Hudson은 오픈소스로, 기존에 많이 사용하던…
W3Schools Online Web Tutorials () HTML5 Tutorial ()
요즘 댓글, 트랙백 등의 서비스 때문에 서버의 트래픽이 날로 증가하고 있다. 이럴때 맘에 안드는 스팸 IP를 차단하는 방법이 있다. 웹서버의 루트폴더에 .htaccess 파일을 생성한다. 생성된 파일에 아래와 같이 설정하도록 한다. SetEnvIfNoCase remote_addr 94.229.65.* go_out Order allow,deny Allow from all Deny…
References
When I attach social buttons to my blog, Facebook button moves bottom almost 5 pixels from other social buttons like Twitter, Google+. This is because facebook button has vertical-align: bottom; style inside of widget; We can solve this problem adding…
By previous article, we can use mind map using Dropbox cloud service. If we want to use mind map in our PC, we have to get ‘MindManager‘ software. That software is not free. To use mind map in our PC…
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…
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…