Physical Address

304 North Cardinal St.
Dorchester Center, MA 02124

zemna

zemna

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 solve SSL error of RubyGems

When you exeucte gem command, you may see SSL error like bellow. SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed This error is produced because of changes in rubygems.org infrastructure. How to solve it? 1. Downlaod update…

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”,…