Issue #19 · 2025-08-22

Ilia's Corner

Featured story

A 65-year-old speed limit just fell—your graph workloads may never be the same

Tsinghua researchers have published the first algorithm to beat Dijkstra’s legendary O(m + n log n) barrier, dropping it to O(m log^2/3 n) by clustering frontier nodes instead of running a global heap. Translation: shortest-path problems on maps, networks, or game worlds that used to crawl on million-node graphs now finish noticeably faster with no accuracy loss. If you maintain routing software, build recommendation engines, or simulate anything with weighted edges, plug this in and watch your latency budgets shrink. https://medium.com/@vverma4313/tsinghua-university-breaks-a-65-year-limit-a-faster-alternative-to-dijkstras-algorithm-e2f42a608369

reddit_tech · 4 min read

Top stories

AWS CEO: replacing junior devs with AI is the 'dumbest idea I've ever heard'

Matt Garman isn’t being polite—he’s protecting your future team. His blunt warning to executives: cut entry-level jobs and you’ll have nobody to mentor, no fresh eyes on legacy code, and no talent pipeline when the senior engineers burn out. If you’re early-career, this is top-cover from the biggest cloud vendor on earth. If you’re a hiring manager, it’s permission to invest in humans without apology. https://www.theregister.com/2025/08/21/aws_ceo_entry_level_jobs_opinion/

hackernews · 2 min read

Zero-syscall HTTPS server: io_uring + kTLS + Rust

One weekend side-project now serves TLS traffic without ever entering the kernel after setup. By pairing io_uring’s ring-buffer I/O with kTLS offload and Rust’s async ecosystem, the author hit 1.8 M req/s on a single core. If you’re tuning high-throughput services—or just love seeing the words “no context switches”—the annotated source is a copy-paste treasure map. https://blog.habets.se/2025/04/io-uring-ktls-and-rust-for-zero-syscall-https-server.html

hackernews · 6 min read

AI crawlers are DDoSing the web—Meta and OpenAI lead the charge

Bots from just three companies now slam some domains at 39 000 requests per minute, routinely tripping rate-limits meant for attackers. The takeaway: if your site feels slower or your CDN bill spiked, check the user-agent strings first. The article includes ready-to-drop nginx and Cloudflare snippets to curb the deluge without collateral damage. https://www.theregister.com/2025/08/21/ai_crawler_traffic/

hackernews · 3 min read

uv adds native code formatting—one less binary in your Python toolchain

uv’s new `uv format` (v0.8.13) wraps Ruff’s formatter so you can replace `pip install ruff && ruff format` with a single built-in command. CI pipelines shrink, onboarding gets simpler, and you never chase another Ruff version mismatch. Opt-in now with `uv format --preview`. https://pydevtools.com/blog/uv-format-code-formatting-comes-to-uv-experimentally/

hackernews · 2 min read

Tools spotlight

ChartDB Cloud

Point ChartDB at any running database and get an interactive ER diagram in 30 seconds—no DDL spelunking required. Perfect for onboarding new hires, scoping refactors, or pasting into docs that executives actually read. Share links expire, so diagrams don’t accidentally leak schema. https://app.chartdb.io

Database visualization & onboarding

TypeScript · 41 stars

Debian hits 32 (0x20)

The quietest giant in open-source just celebrated its 32nd birthday. While flashy distros come and go, Debian’s volunteer governance and 6-year LTS cycles still underpin half the containers on Earth. If you want rock-solid base images that won’t surprise you with breaking updates, raise a glass to the community that refuses to rush. https://lists.debian.org/debian-devel-announce/2025/08/msg00006.html

Infrastructure stability

N/A · 88 stars

Research corner

GRAFT: charts and tables that LLMs can actually reason about

GRAFT is the first benchmark forcing models to parse charts/tables, do math, and emit valid JSON answers—skills your current RAG stack probably lies about. If you’re building finance dashboards or scientific copilots, the test set is free and the paper shows exactly where GPT-4o and Claude still stumble. https://arxiv.org/abs/2508.15690

Vision-language reasoning · Ziniu et al. · 12 min read

Mobile-Agent-v3: GUI automation that sees the screen

Alibaba’s 7 B-parameter vision model now drives Android, Windows, macOS, and web apps from screenshots alone. No accessibility APIs, no brittle XPath selectors—just natural language like “enable dark mode.” If you’re tired of flaky E2E tests, the open weights are Apache-2.0 and the examples run on consumer GPUs. https://arxiv.org/abs/2508.15144

GUI automation · Wang et al. · 15 min read

Browse the full archive · iliareingold.com