This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Don't do this | Follow this | ||
---|---|---|---|
Slang | product.pleaseDie() | product.remove() | |
Unclear abbreviation | message(n); ymdt = new Date(); | message(newUser); dateWithTime = new Date() | |
Disinformation | userList ={name:’test’,age:20} | userMap={name:’test’,age:20} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Run script with sudo privilege | |
# Install firewalld | |
yum install firewalld -y | |
# Stops and masks iptables if already running | |
systemctl stop iptables | |
systemctl mask iptables | |
# Enable and start firewalld | |
systemctl start firewalld |