Urgent.News

What's breaking now, across thousands of outlets.

Tech

An Update on Wayback Machine Access

Article URL: https://blog.archive.org/2026/09/15/an-update-on-wayback-machine-access/ Comments URL: https://news.ycombinator.com/item?id=49716176 Points: 264 # Comments: 131

We haven't written up this one. Hacker News Best has the full story — the link below goes straight to it.

Also reported by 1 other outlet

Read the original at blog.archive.org →

More in Tech

Added a BFF layer before reaching for GraphQL. What happened next?

TL;DR: One table page was making 1 + 1 + N network calls and pulling every bill into the browser. A thin server layer that speaks "one screen at a time" fixed it.

  • React app made three network calls per page, causing N+1 problem
  • Introduced BFF (Backend For Frontend) to reduce requests to one per screen
  • BFF handled permission checks, caching, server-side computation, and data filtering

More from Tuesday 15 September →