Physical Address

304 North Cardinal St.
Dorchester Center, MA 02124

zemna

zemna

Hosting multiple WCF services under a single windows service

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

Hard Disk Utility – HD Tune

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

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…