Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Simple Developer
Simple Developer
하나의 Windows Service 응용프로그램에서 다수의 WCF 서비스를 운영할 때, 손쉽게 각 ServiceHost를 생성할 수 있도록 ServiceManager 클래스를 만들어서 사용하는 방법을 설명한 소스코드이다. ServiceManager 클래스를 사용하게 되면 서비스 추가시 ServiceManager 클래스의 OpenAll() 함수에서 추가할 서비스 클래스만 명시해 주면 된다. ^^ [code…
HD Tune은 하드디스크 벤치마크 프로그램 중 가장 유명한 프로그램이다. 이 프로그램을 통해서, 하드 디스크의 성능을 측정하고, 에러를 검색하고, 하드디스크의 건강 상태(S.M.A.R.T.)를 체크하고, 보안을 위해 모든 데이터를 지우는 등의 많은 일을 할 수 있다. 다운로드 : 다운로드 페이지
1. Access your WSL Access your Linux system. 2. Remove config.json file located in users home directory rm ~
When I setup Laravel project for my company, I’ve faced the problem about SQL Server database connection problem. I’ve googled and now I can use it. 1. Install php7.0-sybase to Homestead New version of Homestead uses php7.0 to serve laravel…
Let’s talk about how to make a online food store website integrated with marketplace using WordPress. WordPress with some powerful plugins make this work more easier. Table of Contents 1. Requirements of Online Food Store Want to use custom domain…
If you want to install latest version of git to Ubuntu operating system, you can use ppa. sudo add-apt-repository ppa:git-core/ppasudo apt-get updatesudo apt-get install git
Is your laptop slow boot after upgrade to Windows 10? My Sony Vaio laptop also takes more than 1 minute to showing login screen. I fully stressed because of this, but can fix this problem by this tip. You can…
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…
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”,…
/ip firewall filteradd chain=input in-interface=ether1 protocol=udp dst-port=53 action=dropadd chain=input in-interface=ether1 protocol=tcp dst-port=53 action=drop
/ 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…
Lets we study how to add social sharing buttons to Jekyll. You can see the sharing buttons at bottom of this content. We can try to use Font Awesome to generate social icon button. Click this link to get information…
If you want to give user can add new options to select tag in runtime, you can use Select2 jQuery library to do it. Final result is like this: {: .img-responsive } 1. Enable tags option $(‘select’).select2({ tags: true}); 2.…