Physical Address

304 North Cardinal St.
Dorchester Center, MA 02124

zemna

zemna

Grid Control Design-Time Row and Column Manipulation Features

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

Handler를 이용한 무한 루프 만들기

안드로이드 프로그래밍 공부중에 나중에 참고 할 만한 내용을 정리하는 중이다. 이번에는 Handler 클래스를 사용하여 무한 루프를 만드는 방법이다. Handler 클래스의 sendEmptyMessage() , sendEmptyMessageDelayed() 메서드를 이용해서 만들수 있다. [code lang=”java”] public class HandlerTest extends Activity { public void onCreate(Bundle savedInstanceState) {…

How to disable xdebug

When I run composer update command in shell, composer displays warning like bellow. You are running composer with xdebug enabled. This has a major impact on runtime performance. See And takes too long time to process. I already go…

How to deploy subfolder to Github Pages

We can use git subtree to do this. And also nest git commands to execute force push (Reference). git push origin `git subtree split –prefix subfolder-name-here master`:gh-pages –force Put this command to package.json file like bellow. { “name”: “My App”,…

How To Block Brute Force Attack in Mikrotik Router

/ ip firewall filteradd chain=input protocol=tcp dst-port=22 src-address-list=ssh_blacklist action=drop comment=”Drop SSH Brute Forcers” disabled=noadd chain=input protocol=tcp dst-port=22 connection-state=new src-address-list=ssh_stage3 action=add-src-to-address-list address-list=ssh_blacklist address-list-timeout=1d comment=”” disabled=noadd chain=input protocol=tcp dst-port=22 connection-state=new src-address-list=ssh_stage2 action=add-src-to-address-list address-list=ssh_stage3 address-list-timeout=1m comment=”” disabled=noadd chain=input protocol=tcp dst-port=22 connection-state=new src-address-list=ssh_stage1 action=add-src-to-address-list…

Hard Disk Utility – HD Tune

HD Tune은 하드디스크 벤치마크 프로그램 중 가장 유명한 프로그램이다. 이 프로그램을 통해서, 하드 디스크의 성능을 측정하고, 에러를 검색하고, 하드디스크의 건강 상태(S.M.A.R.T.)를 체크하고, 보안을 위해 모든 데이터를 지우는 등의 많은 일을 할 수 있다. 다운로드 : 다운로드 페이지

Hosting multiple WCF services under a single windows service

하나의 Windows Service 응용프로그램에서 다수의 WCF 서비스를 운영할 때, 손쉽게 각 ServiceHost를 생성할 수 있도록 ServiceManager 클래스를 만들어서 사용하는 방법을 설명한 소스코드이다. ServiceManager 클래스를 사용하게 되면 서비스 추가시 ServiceManager 클래스의 OpenAll() 함수에서 추가할 서비스 클래스만 명시해 주면 된다. ^^ [code…