July 24, 2026
Cloud bill? More like change jar
Reporting Web 3D Capabilities on a Budget of $3 a Month
He built a web graphics tracker for pocket change, and the comments lost their minds
TLDR: A developer says his browser graphics survey handles huge real-world traffic for about C$3 a month, which shocked readers who are used to cloud bills being much uglier. Commenters split between praising the clever thrift and joking that the data-collection tricks sound just suspicious enough to start a fight.
A developer just revealed that Web3DSurvey — a site that quietly checks what kind of 3D graphics real browsers can handle — runs for about C$3 a month, and the community reaction was basically a mix of applause, suspicion, and comedy. On paper, the story is simple: the project collects around half a million reports a month, turns them into a mountain of browser capability data, and still somehow keeps the bill lower than a fancy coffee. In the comments, though, people treated it like a magic trick. One camp was yelling “this is the kind of lean web engineering we miss”, praising the builder for making something useful without setting investor money on fire. Another camp immediately went full detective mode: “Okay, but what’s the catch?”
The spiciest debate centered on the project’s sneaky-sounding trick of sending data with a simple web request first, instead of the heavier method that causes extra browser chatter. The author says it’s just to cut waste, not dodge ad blockers, but naturally the comments pounced. Some called it clever and elegant; others joked it sounds exactly like something a tracker would say before pulling out a fake mustache. There was also genuine admiration for the tiny hidden frame used to avoid slowing down websites, with commenters dubbing it the “polite parasite” approach. The overall mood? Equal parts “teach a masterclass immediately” and “I refuse to believe modern cloud pricing let anyone win for once.”
Key Points
- •Web3DSurvey.com collects real-world browser capability data for WebGL, WebGL 2, WebGPU, WebXR, and related device features to help 3D web developers use measured support rates.
- •The article states that the service cost about C$3 in April 2026 while handling roughly 500,000 requests in June 2026, totaling close to 300 million data points per month.
- •Collected samples are sent from an embedded iframe to a dedicated api-server, which drops bot traffic, normalizes fields, and batches inserts into BigQuery ten at a time to reduce cost.
- •The project migrated from BigQuery’s legacy streaming insert API to the BigQuery Storage Write API, which significantly lowered BigQuery expenses because current ingestion volume fits within the free allowance.
- •The collector prefers GET submission before POST so it can avoid cross-origin CORS preflight requests; it sends the payload by JSON-stringifying, gzip-compressing, base64-encoding, and placing it in a query parameter.