| 1. | DeepSeek V4 Pro 0813(openrouter.ai) |
| 1027 points by explosion-s 9 days ago | 446 comments | permalink | |
tl;dr: Summary not available | |
HN Discussion:
| |
| 2. | Tracking down the 16-year-old WAL-reset SQLite bug(tailscale.com) |
| 1199 points by ropbear 9 days ago | 232 comments | permalink | |
tl;dr: Tailscale spent six months chasing intermittent SQLite database corruption across their control plane shards, working with SQLite's core developers to eventually identify a 16-year-old data race between checkpoints and write transactions (dubbed the "WAL-Reset bug"). Their aggressive manual checkpointing—an unusual but supported configuration—made them uniquely likely to trigger it. The fix shipped in SQLite 3.51.3, and Tailscale later confirmed via instrumentation that the race condition was indeed occurring in production. | |
HN Discussion:
| |
| 3. | Qwen3.8-2.4T(huggingface.co) |
| 700 points by Philpax 9 days ago | 168 comments | permalink | |
tl;dr: Qwen3.8-2.4T-A95B is Alibaba's new flagship open-weight MoE model (2.4T total / 95B activated params, 92 layers, 512 experts) with a hybrid Gated DeltaNet + Gated Attention architecture, 262K native context extensible to ~1M tokens. It's a thinking-only text model with tunable reasoning_effort, targeting coding and long-horizon agentic tasks, and posts benchmarks competitive with Claude Opus 4.8 and GPT-5.6 on SWE-bench Pro, Terminal Bench, and PaperBench. Deployable via vLLM, SGLang, and TokenSpeed, with a hosted Qwen3.8-Max variant adding vision and built-in tools. | |
HN Discussion:
| |
| 4. | Delta(zed.dev) |
| 661 points by khy 9 days ago | 243 comments | permalink | |
tl;dr: Zed is launching Delta, a new multiplayer application (separate from the Zed editor) for collaborative coding with AI agents, now in private beta. It's built on DeltaDB, which replicates both conversations and the git worktree in real time, letting teammates comment on any line of code or conversation, join threads via browser (via Rust compiled to WebAssembly/WebGL), and integrate with tools like Claude Code. Rather than retrofitting Zed, the team built Delta from scratch to center the interface on the agent conversation rather than the editor. | |
HN Discussion:
| |
| 5. | 2026 Eclipse Webcams(jonty.github.io) |
| 507 points by zoenolan 9 days ago | 141 comments | permalink | |
tl;dr: Summary not available | |
HN Discussion:
| |
| 6. | uBlock Origin Is Giving Up the Fight to Keep Ads Off Facebook(digitalescapetools.com) |
| 685 points by Markoff 9 days ago | 843 comments | permalink | |
tl;dr: Summary not available | |
HN Discussion:
| |
| 7. | Tim King, AmigaDOS developer, has died(amiga-news.de) |
| 296 points by doener 9 days ago | 36 comments | permalink | |
tl;dr: Dr. Tim King, who developed the Tripos operating system at Cambridge and later adapted it into AmigaDOS after joining MetaComCo in 1984, has died at the end of July. He went on to found Perihelion in 1986, working on operating systems and transputer technology, and later launched the ISP UK Online. | |
HN Discussion:
| |
| 8. | HTML over WebSockets: real-time SPAs with barely any JavaScript(en.andros.dev) |
| 246 points by redbell 9 days ago | 193 comments | permalink | |
tl;dr: HTML over WebSockets (popularized by Phoenix LiveView) renders HTML on the server and pushes it to clients over a persistent bidirectional channel, eliminating the need for a JSON API, client-side rendering framework, or duplicated state. Advantages include a single language/codebase, real-time broadcast, and better XSS safety, at the cost of stateful servers, higher resource use per connection, and no offline support. The article surveys implementations across Elixir, Ruby, Python/Django, .NET, and PHP, and notes SSE as a cheaper one-way alternative when bidirectional communication isn't required. | |
HN Discussion:
| |
| 9. | Grok 4.6(x.ai) |
| 622 points by iLuddite 9 days ago | 607 comments | permalink | |
tl;dr: Grok 4.6 targets long-running agentic tasks, coding, and visual/interactive project generation, with xAI claiming it matches GPT-5.6 on the Artificial Analysis Intelligence Index and leads on benchmarks like Harvey LAB and CursorBench. It's available now via API, Cursor, Grok Build, OpenRouter, Vercel, and Cloudflare, priced at $2/M input and $6/M output tokens (2x for the fast variant), with 2x free usage in Cursor and Grok Build for the first week. | |
HN Discussion:
| |
| 10. | Why tiny JPEGs look different in Chrome(guillaumetech.github.io) |
| 332 points by gutechh 9 days ago | 68 comments | permalink | |
tl;dr: Chrome (via Skia and libjpeg-turbo) optimizes small JPEG rendering using partial IDCT scaling: instead of fully decoding a JPEG and downsampling, it decodes directly at fractions with denominator 8 by discarding high-frequency DCT coefficients, then does traditional scaling for the rest. For tiny images, this can mean only the constant (flat color) component of each 8×8 block survives, dropping edge detail and gradients—making icons look thicker or different than in Firefox. Lesson: don't use JPEG for icons; it's optimized for photos. | |
HN Discussion:
| |
| 11. | Someone is running mass vulnerability scans, spoofing AI bots like ClaudeBot(knownagents.com) |
| 300 points by gavinhking 9 days ago | 224 comments | permalink | |
tl;dr: Summary not available. | |
HN Discussion:
| |
| 12. | Shade Map(shademap.app) |
| 241 points by fredley 9 days ago | 60 comments | permalink | |
tl;dr: Summary not available | |
HN Discussion:
| |
| 13. | Show HN: Woxi - Open-source Mathematica / Wolfram Language reimplementation(woxi.ad-si.com) |
| 308 points by adius 9 days ago | 45 comments | permalink | |
tl;dr: Woxi is an open-source reimplementation of the Wolfram Language interpreter written in Rust, runnable entirely in the browser with no data sent to servers. It ships with multiple front-ends: an in-browser playground, a CLI tool (faster-starting than wolframscript, with shebang support), a Jupyter kernel (also available via JupyterLite), and Woxi Studio, a native notebook editor for `.nb` files with export to `.ipynb`, Markdown, LaTeX, Typst, and PDF. | |
HN Discussion:
| |
| 14. | AI is removing the middle class of software engineering?(blog.florianherrengt.com) |
| 965 points by florianherrengt 9 days ago | 892 comments | permalink | |
tl;dr: AI has removed the natural speed limit on bad engineering, letting weak developers generate massive PRs and architectural decisions faster than competent engineers can review or untangle them. Since reversing bad decisions (schema changes, unnecessary services) remains expensive while creating them is now trivial, technical debt compounds far faster than before. The result: good engineers with strong judgment become more valuable, while mediocre ones become liabilities—likely widening salary gaps across knowledge work generally. | |
HN Discussion:
| |
| 15. | License plate reader searches should require a warrant(andrewpwheeler.com) |
| 619 points by apwheele 9 days ago | 377 comments | permalink | |
tl;dr: A crime analyst and expert witness argues that historical searches of automated license plate reader (ALPR) data should require a warrant, since dense camera networks now enable tracking comparable to the cell-site data protected under Carpenter v. US. He contends that short data-retention policies (like New Hampshire's 3 minutes) don't actually prevent abuse—stalkers just re-query every cycle—while hampering legitimate long-term investigations. Instead, states should mandate warrants for historical searches, allow reasonable retention, and delegate audits and enforcement (including firing and banning abusers) to a third party rather than the police departments themselves. | |
HN Discussion:
| |
| 16. | The hardest working font in Manhattan (2025)(aresluna.org) |
| 378 points by dcminter 15 days ago | 58 comments | permalink | |
tl;dr: Marcin Wichary traces the history of "Gorton," an ugly, monoline sans-serif font originally created around 1894 by UK lens-maker Taylor, Taylor & Hobson for pantograph engraving machines, then licensed to George Gorton Machine Co. in Wisconsin. Despite having no clear designer, inconsistent naming, and amateurish letterforms, Gorton spread worldwide onto keyboards, elevators, intercoms, military equipment, and even Apollo spacecraft—thanks to its durability when carved into metal or plastic. The author documents its ubiquity in Manhattan through 100 miles of walks and 600 photos, arguing it's the city's hardest-working font, though it's slowly disappearing as signage gets modernized. | |
HN Discussion:
| |
| 17. | US hires over 2k video gamers as air traffic controllers(cbsnews.com) |
| 210 points by shagie 10 days ago | 159 comments | permalink | |
tl;dr: The FAA has hired over 2,000 video gamers to train as air traffic controllers, hitting 94% of its recruitment goal, with another 2,000+ candidates in the pipeline. Transportation Secretary Sean Duffy said gaming skills—quick thinking, focus, and managing multiple information streams—translate well to the job, which pays a median $144,580 annually. The push aims to address a significant controller shortage flagged by a December GAO report, especially given that historically fewer than 10% of applicants qualify for FAA training. | |
HN Discussion:
| |
| 18. | CFTC declares market emergency, orders Kalshi to continue to operate in New York(cftc.gov) |
| 224 points by michaefe 10 days ago | 193 comments | permalink | |
tl;dr: The CFTC invoked emergency authority to order KalshiEX to keep operating after NY AG Letitia James sued to block its event contracts nationwide and seek $36B in damages. Chairman Michael Selig argued state gaming laws can't regulate interstate derivatives markets, which fall under CFTC jurisdiction. The agency has now sued nine states (including NY, Illinois, and Connecticut) and filed amicus briefs in multiple courts to defend its authority over event contract exchanges. | |
HN Discussion:
| |
| 19. | What sort of maths are LLMs good at?(gowers.wordpress.com) |
| 259 points by ColinWright 9 days ago | 156 comments | permalink | |
tl;dr: Following OpenAI's announcement of ten major math/CS results solved by LLMs, Timothy Gowers observes that most headline successes involve finding (counter)examples rather than proving theorems, and explores why. He argues this likely isn't because LLMs favor existential statements, but because their strengths—broad knowledge and rapid brute-force search—suit certain example-finding strategies (off-the-shelf checks, just-do-it constructions, probabilistic/generic arguments). Humans may retain an edge on problems requiring a "nose" for pruning deep search trees toward surprising, conceptual proofs—though Gowers expects LLMs to close this gap soon. | |
HN Discussion:
| |
| 20. | Compression is prediction(ngrok.com) |
| 659 points by nikolay 10 days ago | 288 comments | permalink | |
tl;dr: Compression and language modeling are fundamentally the same problem: both rely on predicting symbol probabilities, where better predictions yield fewer bits per symbol (Shannon entropy). Entropy coders like arithmetic coding already hit near-optimal compression given a probability distribution, so gains now come from better models—and LLMs happen to be state-of-the-art predictors, trained to minimize cross-entropy (the same math). LLMs can compress dramatically better than gzip (e.g., GPT-2 hitting 10% vs. 24% on sample text), but their multi-gigabyte size and compute cost make them impractical for everyday use like HTTP responses. | |
HN Discussion:
| |