Urgent.News

One page, thousands of outlets. See who else covered it.

Editions

Tech

Data Centers Spread Across Japan

Data center construction is accelerating across Japan as artificial intelligence drives demand for computing capacity, creating new business opportunities for domestic companies supplying air-conditioning systems, transformers, measuring equipment, construction machinery, batteries and electrical distribution systems. (News On Japan)

Data center construction is rapidly expanding across Japan as artificial intelligence drives demand for computing capacity, providing new business opportunities for companies supplying infrastructure-related products and services. The largest project under consideration is in Akita city, where Japanese and U.S. companies are planning a potential one of Japan's biggest AI data centers, with development costs expected to reach about 2 trillion yen.

Akita Prefecture, known for its large offshore wind power resources, is emerging as a potential location for data centers due to its proximity to renewable energy sources, which could help meet the data centers' electricity needs and reduce transmission losses.

Brief written by urgent.news from News On Japan's own syndicated text. Machine-written — may contain errors; check the original before relying on it.

Read the original at newsonjapan.com →

More in Tech

Why a static Three.js scene still cooks your phone, and the dirty-flag fix

So I have a bunch of small games on my site. Ludo, tic-tac-toe, carrom, rock-paper-scissors. Nothing fancy, the kind of thing you'd think runs on a potato.

  • Static Three.js scenes cause phone heating due to continuous repainting in render loop.
  • Dirty flag system implemented to render scene only when necessary.
  • Ludo board renders frames only when game state changes, reducing GPU workload.

Why a two-user Convex chat app read tens of MB a day

I was staring at my Convex dashboard, confused. Convex is the reactive backend I use for a chat app: it stores the data and, the part that matters here, it keeps your queries live , so the UI updates…

  • Convex app's high bandwidth due to reactive queries
  • Queries re-run on every data change, amplifying bandwidth usage
  • Solutions include pagination, optimized .collect(), stable arguments

Same Request Sent Twice: How Idempotency Prevents Duplicate Payments

A user opens a payment app, types in an amount, and taps "Pay." The spinner shows up. Then nothing — no success screen, no error, just a frozen loader. So they tap "Pay" again.

  • User retries payment request after initial request fails
  • Idempotency keys prevent duplicate charges by linking retries to original requests
  • Idempotent operations have same effect when repeated, like pressing an elevator button

More from Sunday 16 August →