I spun up an Oracle Cloud free-tier instance, stared at the spec sheet — 4 ARM cores, 24GB RAM, 200 Mbps burst, $0/month — and immediately deployed a WordPress blog. Then I deleted it. That felt criminal. Here's what I actually run on it now. The Weird Part About This Spec ARM + 24GB is an odd combo. Most ARM VMs are tiny. Most 24GB boxes cost money. Oracle accidentally built a machine that's genuinely interesting: enough RAM for in-memory workloads, an architecture that certain tools were built for, and datacenter-grade network latency you'll never get from a Raspberry Pi. You'd be insane to use it as a static file server. 5 Actually Interesting Use Cases 1. LLM Inference Node (Run Mistral 7B Locally-ish) Mistral 7B quantized to Q4 fits in ~6GB of RAM. You have 24GB. llama.cpp has first-class ARM support and will use NEON SIMD intrinsics on your A1 cores without any flags. You get a private OpenAI-compatible API endpoint for pennies.…