Yaegi WASM Controller import "fmt" func Add(a int, b int) string { result := a + b return fmt.Sprintf("The sum of %d and %d is %d", a, b, result) } 1. Load Code (Eval) 2. Test window.callGo Initialize WASM to begin...
Posts
Host a Flask Website for Free with Google Cloud Shell 🌐 Host a Flask Website for Free with Google Cloud Shell + LocalTunnel Ever wanted to host a website for free that the world can see— without deploying to AWS, Heroku, or paying for a server ? Here's a clever trick using: ✅ Google Cloud Shell (comes with free CPU/memory) ✅ LocalTunnel (creates a public URL for your localhost) ✅ Flask (for the web app) All of this runs remotely —you don’t need your own computer or IP to stay online. 📦 Step 1: Create Your Free GCP Cloud Shell Environment Sign up at https://shell.cloud.google.com Google Cloud gives you: A free Linux container that runs even if your browser is closed 5GB persistent disk 1 vCPU and 1.7GB RAM 🔐 Step 2: Authenticate and Fetch LocalTunnel Secrets (Optional) ...