- Turn down the interface related to your PC/Laptop
 
sudo ip link set dev <interface> down
Example of <interface>: wlp4s0
- Change the MAC Address
 
| ########### Summary of SCRUM Guide ############ | |
| 1. ======== SCRUM Maturity Models ======= | |
| --> Optimizing | |
| --> Managed | |
| --> Defined | |
| --> Repeatable | |
| Initial | 
| ... | |
| ... | |
| export FZF_DEFAULT_OPTS="--ansi --preview-window 'right:60%' --preview 'bat --color=always --style=header,grid --line-range :300 {}'" | |
| export ZSH=$HOME/.oh-my-zsh | |
| ... | |
| plugins=( | |
| git | |
| extract | 
| echo "{ | |
| \"iptables\": false | |
| }" > /etc/docker/daemon.json | |
| sed -i -e 's/DEFAULT_FORWARD_POLICY="DROP"/DEFAULT_FORWARD_POLICY="ACCEPT"/g' /etc/default/ufw | |
| ufw reload | |
| iptables -t nat -A POSTROUTING ! -o docker0 -s 172.17.0.0/16 -j MASQUERADE | |
sudo ip link set dev <interface> down
Example of <interface>: wlp4s0
find . -type f -exec cat {} \; | grep "ui.ac.id"| export PYENV_ROOT="$HOME"/.pyenv | |
| export PATH="$PYENV_ROOT"/bin:"$PATH" | |
| if command -v pyenv 1>/dev/null 2>&1; then | |
| eval "$(pyenv init -)" | |
| fi | |
| eval "$(pyenv virtualenv-init -)" | 
| iptables -F | |
| iptables -X | |
| iptables -t nat -F | |
| iptables -t nat -X | |
| iptables -t mangle -F | |
| iptables -t mangle -X | |
| iptables -P INPUT ACCEPT | |
| iptables -P OUTPUT ACCEPT | |
| iptables -P FORWARD ACCEPT | 
| #NVM LOADER FOR NODE AND NPM | |
| alias load_nvm='export NVM_DIR="$HOME/.nvm" && [ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"' # This loads nvm | |
| alias node='unalias node npm && load_nvm && node' | |
| alias npm='unalias node npm && load_nvm && npm' | 
| #!/bin/bash -e | |
| # Note: it is a script to solve Ubuntu 18.04 LTS also Parrot OS 4.7 | |
| # different version of pythons compiling header confliction problems | |
| # | |
| # The idea is got from @JustAnotherArivist | |
| # From URL: https://github.com/pyenv/pyenv/issues/945 | |
| # | |
| # The script used in here is with slightly modifications | |
| # to fit many different SSL header versions |