I hereby claim:
- I am jgavinray on github.
- I am jgavinray (https://keybase.io/jgavinray) on keybase.
- I have a public key ASB4fVT7jjbDcSgRAT0ffF0MKcID4zVciptfIn0pUECWeAo
To claim this, I am signing this object:
| #!/bin/bash | |
| # The purpose of this script is to wipe a file system or | |
| # physical disk using the Schneier data sanitation method. | |
| # A.K.A Schneier Method (Data Sanitization Method) | |
| if [ -z "$1" ] | |
| then | |
| echo "No arguments supplied, please pass the path of the disk or " | |
| echo "mount point you want sanitized." | |
| exit 1 |
| #!/bin/bash | |
| # Define show name | |
| SHOW_NAME="Battlestar Galactica" | |
| # Loop through all m4v files | |
| for f in *.m4v | |
| do | |
| # Get episode number, fifth column - srip trailing underscore | |
| EPISODE=$(echo $f | awk '{print $5;}' | sed 's/_//g') |
I hereby claim:
To claim this, I am signing this object:
| #Generated by Kickstart Configurator | |
| #platform=x86 | |
| # Fetch content from here | |
| url –url http://nl.archive.ubuntu.com/ubuntu/ | |
| #System language | |
| lang en_US.UTF-8 | |
| #Language modules to install |
Slack doesn't provide an easy way to extract custom emoji from a team. (Especially teams with thousands of custom emoji) This Gist walks you through a relatively simple approach to get your emoji out.
If you're an admin of your own team, you can get the list of emoji directly using this API: https://api.slack.com/methods/emoji.list. Once you have it, skip to Step 3
HOWEVER! This gist is intended for people who don't have admin access, nor access tokens for using that list.
Follow along...
| $ sudo mkdir /etc/pf-files | |
| In /etc/pf.conf the following needs to be added: | |
| 1. In the prerequisites-section add: | |
| table <blocked_zones> persist file "/etc/pf-files/blocked_zones" | |
| 2. In the block-section add early: | |
| block in quick proto tcp from <blocked_zones> to any port { 22 80 } | |
| blocn_traffic.sh | |
| #! /bin/sh | |
| # Purpose: Block all traffic from specific countries. Use ISO code. # |
| # Assumptions below: | |
| # Your local user has ssh access to the server and agent machines | |
| # Your user on those machines is a sudo user with NOPASSWD configured | |
| export USER=$(whoami) | |
| export SERVER_IP=192.168.0.25 | |
| export AGENT_1_IP=192.168.0.26 | |
| export AGENT_2_IP=192.168.0.27 | |
| export AGENT_3_IP=192.168.0.28 |
| ssh $(whoami)@192.168.0.25 '/usr/local/bin/k3s-uninstall.sh' | |
| ssh $(whoami)@192.168.0.26 '/usr/local/bin/k3s-agent-uninstall.sh' | |
| ssh $(whoami)@192.168.0.27 '/usr/local/bin/k3s-agent-uninstall.sh' | |
| ssh $(whoami)@192.168.0.28 '/usr/local/bin/k3s-agent-uninstall.sh' | |
| ssh $(whoami)@192.168.0.29 '/usr/local/bin/k3s-agent-uninstall.sh' |
| minikube start --memory="8GB" --cpus=4 --nodes=5 --driver kvm2 | |
| sudo qemu-img create -f qcow2 /var/lib/libvirt/images/minikube-m02.qcow2 25000M -o preallocation=full | |
| sudo qemu-img create -f qcow2 /var/lib/libvirt/images/minikube-m03.qcow2 25000M -o preallocation=full | |
| sudo qemu-img create -f qcow2 /var/lib/libvirt/images/minikube-m04.qcow2 25000M -o preallocation=full | |
| sudo qemu-img create -f qcow2 /var/lib/libvirt/images/minikube-m05.qcow2 25000M -o preallocation=full | |
| virsh attach-disk --domain minikube-m02 /var/lib/libvirt/images/minikube-m02.qcow2 --target vdb --persistent --config --live | |
| virsh attach-disk --domain minikube-m03 /var/lib/libvirt/images/minikube-m03.qcow2 --target vdb --persistent --config --live | |
| virsh attach-disk --domain minikube-m04 /var/lib/libvirt/images/minikube-m04.qcow2 --target vdb --persistent --config --live |
| minikube stop | |
| virsh detach-disk --domain minikube-m02 /var/lib/libvirt/images/minikube-m02.qcow2 --persistent --config --live | |
| virsh detach-disk --domain minikube-m03 /var/lib/libvirt/images/minikube-m03.qcow2 --persistent --config --live | |
| virsh detach-disk --domain minikube-m04 /var/lib/libvirt/images/minikube-m04.qcow2 --persistent --config --live | |
| virsh detach-disk --domain minikube-m05 /var/lib/libvirt/images/minikube-m05.qcow2 --persistent --config --live | |
| minikube delete | |
| sudo rm /var/lib/libvirt/images/minikube-m02.qcow2 |