telexed ~ c / 6fa50078-a09radar:60 · infra_saasLIVE
← back
NO.
#6fa50078
Topic
INFRA & SAAS
Source
r/SideProject
Published
2026-05-12 21:53:25
Importance
★ 6/10 — radar 60

Free election dashboard stack: laptop scraper + `Cloudflare KV` survived a one-day traffic spike

The useful part is the architecture, not the Claude flex: scrape on a laptop, push static snapshots to Cloudflare KV, let the CDN absorb reads. It handled a real spike on free tier limits, so this pattern is worth copying for short-lived live dashboards.

[ KEY POINTS ]
  1. Data flow stayed minimal: a Python scraper pulled 234 raw HTML result pages, merged them, and published snapshots every 30 seconds with no DB or paid hosting.
  2. Traffic was non-trivial: 24K visitors, 430K requests, and 8.7 GB bandwidth from 24 countries, which validates the static-distribution approach under bursty demand.
  3. The sharp edge was write quota, not reads: 997 writes in a day against a 1,000 free-tier cap. This works, but only if update frequency is tightly controlled.
  4. Feature iteration stayed fast during the event: 60+ commits in one day and new requests shipped within minutes. AI helped with output speed; product judgment still sat with the builder.
Originalwww.reddit.com/r/SideProject/comments/1tbg0lq/i_used_claude_to_build_a_live_election_dashboard/Read original →

// related