Physical Address

304 North Cardinal St.
Dorchester Center, MA 02124

Category Uncategorized

Get information of your system, CPU-Z!

If you want to get information of your system, you can use CPU-Z software. If you run this software, you can get CPU, Mainboard, Memory, System information. CPU [list style=”check”] Name and number Core stepping and process Package Core voltage…

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…

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…

Shadow Copy

정의 Shadow Copy는 드라이브에 설정할 수 있으며 설정되면, 기본으로 해당 드라이브의 10{83832c2e9762d7d59158bb8e184331dad143c7b73eb69f86229ee6e276689139}용량을 Shadow Copy용도로 사용하게 되며, 공유된 폴더 내부의 파일들을 이력으로 유지할 수 있게 된다. 기본적으로 스케쥴링이 적용되어 주기적으로 카피본이 만들어 진다. XP, Windows 2000에서는 Previous Versions client를 설치해야 한다.…

StarUML을 이용한 UML정복 – 실전! 새로운 ZemnaExplorer 프로그램 요구사항

이제부터는 지금까지 읽힌 StarUML 사용법을 바탕으로해서 ZemnaExplorer 프로그램을 모델링 해보려고 한다. 모델링을 시작하기에 앞서 ZemnaExplorer 프로그램이 하는 일과 어떻게 동작되어야 하는지 살펴보도록 하자. ZemnaExplorer의 개념 ZemnaExplorer 프로그램은 개발자들의 편리한 개별 환경및 기타 편의를 위한 프로그램으로 탐색기와 연동되어 동작하며, 파일이나 폴더에서 마우스 오른쪽 버튼을…

Troubleshooting after update to Homestead 0.5.0

Error 1 Maximum call stack size exceeded error Solution Update npm using sudo npm i npm -g command. Error 2 ENOENT: no such file or directory, scandir ‘/home/vagrant/app-name/node_modules/node-sass/vendor’ error Solution Execute npm rebuild node-sass –no-bin-links command. (Reference)