cURL with Bash Cheat Sheet for use with bash shell. for each for ((i=1;i<=100;i++)); do curl -k "http://URL"; done; infinite (curl) while true; do curl -k "http://URL"; done; infinite (busybox)...
GCP Authentication Cheat Sheet for use with gcloud cli. Login with Service Account gcloud auth activate-service-account [SERVICE ACCOUNT EMAIL] --key-file="[KEY FILE NAME JSON]" List Accounts gcloud auth list
SSH Cheat Sheet for use with the SSH protocol. key generate ssh-keygen -t rsa -b 2048 login ssh -i [KEY] [USERNAME]@[MACHINE] file copy scp -i [KEY] -r [USERNAME]@[MACHINE]:[FROM] [TO]
Firewall with Powershell Cheat Sheet for use with powershell task automation framework. Firewall Enable ICMP netsh advfirewall firewall add rule name="ICMP Allow incoming V4 echo request" protocol=icmpv4:8,any dir=in action=allow Enable...
Minecraft Players Cheat Sheet for use with Command Block in Minecraft. Create Ninja Player /clear @p /give @p golden_sword 1 /give @p ender_pearl 10 /give @p lingering_potion 1 24 /give...
Minecraft Basic Cheat Sheet for use with Command Block in Minecraft. Clear Inventory /clear @p Give Command Block /give @p command_block 1
Azure Authentication Cheat Sheet for use with Azure CLI (az). Login (principal) az login --service-principal -u [PRINCIPAL GUID] --password [PRINCIPAL KEY] --tenant [TENANT GUID] Show subscriptions az account list Current...