Skip to content

Instantly share code, notes, and snippets.

@uncomplexity
uncomplexity / tf.sh
Created July 30, 2025 08:55
Terraform Shell
#!/bin/bash
# Initialize
if [ "$1" = "--init" ] || [ "$1" = "-i" ]; then
terraform init -var-file=".tfvars"
fi
# Refresh
if [ "$1" = "--refresh" ] || [ "$1" = "-r" ]; then
terraform init -var-file=".tfvars"
@uncomplexity
uncomplexity / VMware-Workstation-Pro-17-Licence-Keys.txt
Created February 7, 2025 03:39
VMware Workstation Pro 17 full license keys. Collected and sorted out thousands of universal License Keys for all major versions of VMware Workstation Pro 17. x versions.
VMware-Workstation-Pro-17-Licence-Keys
-------------------------------------------------------------------
VMware Workstation Pro 17 full license keys. Collected and sorted out thousands of universal License Keys for all major versions of VMware Workstation Pro 17. x versions.
Install VMWare Workstation PRO 17.x (Read it right. PRO!)
---
@uncomplexity
uncomplexity / Caddyfile
Created January 27, 2025 10:21 — forked from lopezjurip/Caddyfile
Fix Too Many Redirect error using Caddy + Cloudflare
www.mysite.com, mysite.com {
proxy / webapp:3000 {
proxy_header Host {host}
proxy_header X-Real-IP {remote}
proxy_header X-Forwarded-Proto {scheme}
}
gzip
tls your@email.com
}