Jul 11Sunday, July 12, 2026 · all days
1.Mesh LLM: distributed AI computing on iroh(iroh.computer)
276 points by tionis 14 hours ago | 64 comments | permalink
tl;dr: Mesh LLM pools GPUs across multiple machines into a single OpenAI-compatible endpoint (localhost:9337/v1), routing inference locally, to peers, or splitting large models across nodes via layer-range pipelines. It's built on iroh, which handles authenticated QUIC connections and NAT traversal between nodes identified by public keys, with a custom gossip layer on top for peer discovery and model routing. The catalog includes 40+ models ranging from laptop-sized to 235B MoE, enabling private or public meshes without central servers or vendor lock-in.
HN Discussion:
  • ~Users lack sufficient hardware/VRAM to realistically benefit from the mesh setup as pictured
  • Skeptical about performance since consumer networks are far slower than local RAM for split models
  • Interested in applying distributed inference to smaller purpose-built models beyond coding LLMs
  • ~Installation and compatibility have rough edges that prevent actual use
  • Curious whether there's a catch or asking for clarification/more info
2.Show HN: Ant – A JavaScript runtime and ecosystem(antjs.org)
287 points by theMackabu 17 hours ago | 128 comments | permalink
tl;dr: Summary not available
HN Discussion:
  • Skepticism about originality claims given prior AGPL codebase reuse
  • Naming conflict concerns with existing Apache Ant project
  • Impressed that a solo developer can build a full runtime ecosystem
  • Skeptical of performance and technical claims without evidence
  • Project scope is too broad and convoluted rather than focused
3.Nvidia, CoreWeave, and Nebius: Inside the Circular Financing of the GPU Boom(io-fund.com)
288 points by adletbalzhanov 20 hours ago | 113 comments | permalink
tl;dr: Neoclouds CoreWeave and Nebius are riding $120B+ in hyperscaler commitments from Microsoft and Meta, who prefer leasing GPU capacity to shift capex into opex while gaining faster access to Nvidia's latest chips and higher GPU utilization rates. However, both firms are burning cash aggressively—CoreWeave's Q1 capex ($7.7B) dwarfed revenue ($2.08B), with debt hitting $24.86B and interest consuming 26% of revenue. Nvidia's dual role as investor, supplier, and buyer-of-last-resort for unsold CoreWeave capacity creates a circular financing loop that raises questions about how much AI infrastructure demand is genuinely organic versus Nvidia-subsidized.
HN Discussion:
  • Nvidia's investment is too small relative to CoreWeave's capex to be genuinely circular financing
  • Circular financing framing is overplayed; profitability metrics like token ROI matter more
  • Circular financing isn't a problem since Nvidia is just deploying excess cash into interesting companies
  • The setup is a fragile financial house of cards that will eventually collapse
  • Slower datacenter rollout may limit damage when the AI bubble bursts
4.We scaled PgBouncer to 4x throughput(clickhouse.com)
220 points by saisrirampur 22 hours ago | 53 comments | permalink
tl;dr: ClickHouse scaled PgBouncer 4x (from ~87k to ~336k TPS on a 16-vCPU box) by running a fleet of PgBouncer processes sharing one port via SO_REUSEPORT, since PgBouncer is single-threaded and otherwise pins to one core. To make this work correctly, they use peering to forward Postgres cancel requests to the process owning the session, and divide connection limits (max_client_conn, max_db_connections) across the fleet to avoid oversubscribing Postgres.
HN Discussion:
  • Alternative tools like Odyssey or pgdog already solve this scaling problem
  • ~Running multiple PgBouncer instances via Kubernetes/HAProxy is a simpler existing solution
  • Curious questions about how peering and SO_REUSEPORT work in practice
  • Questioning why PgBouncer needs custom cancellation handling at all
  • General appreciation for PgBouncer and frustration with Postgres's connection model
5.Prefer strict tables in SQLite(evanhahn.com)
308 points by ingve 20 hours ago | 156 comments | permalink
tl;dr: SQLite's STRICT tables (added in 3.37.0) enforce rigid column typing, rejecting mismatched types on insert/update and disallowing bogus column types like DATETIME or JSON at table creation. The main downsides: you can't easily convert existing tables to strict, older SQLite versions can't read databases containing them, and the SQLite developers themselves argue flexible typing is a feature. Use ANY as the column type when you genuinely need flexibility within a strict table.
HN Discussion:
  • STRICT should be the default in SQLite, reinforcing the article's recommendation
  • Flexible typing causes real data corruption bugs that strict mode fixes
  • Contributed tooling to make converting to strict tables easier
  • Strict mode is harmful because it restricts custom type names useful for app-layer mapping
  • ~Strict mode has tradeoffs like missing types (Date), useful mainly for multi-app databases
6.Female US rower completes historic solo journey from California to Hawaii(theguardian.com)
300 points by speckx 20 hours ago | 101 comments | permalink
tl;dr: Kelsey Pfendler, a Grand Canyon river-rafting guide, rowed solo from Monterey, California to Honolulu in under 44 days, becoming the first US woman to complete the 2,400-mile crossing. Her time appears to break both the previous women's record (86 days) and men's record (52 days), per the Ocean Rowing Society International. She documented the journey on social media, sharing challenges like blistered hands, sleep deprivation, and unfavorable currents.
HN Discussion:
  • Awe at the physical and mental endurance required for such a crossing
  • Emphasizing she beat the overall record, not just the women's record
  • Curiosity about the logistics: boat, food, water, and supplies
  • Noting related record-holders and context for ocean rowing
  • ~Questioning her motivations or personal circumstances for the journey
7.Show HN: Getting GLM 5.2 running on my slow computer(github.com)
902 points by vforno 3 days ago | 230 comments | permalink
tl;dr: Colibrì is a dependency-free C engine that runs GLM-5.2 (744B-parameter MoE) on ~25GB RAM by keeping the dense ~17B params resident at int4 and streaming the 21,504 routed experts (~370GB) from NVMe on demand, with LRU caching, learned pinning, and MTP speculative decoding. Performance is disk-bound: ~0.05-0.1 tok/s on the author's WSL2 dev box, but community benchmarks show up to ~1 tok/s on an M5 Max and 0.4 tok/s on a Framework 13 once the expert cache warms. An optional CUDA tier pins hot experts in VRAM.
HN Discussion:
  • The AI-generated writing style in the post (overuse of 'honest') is noticeable and off-putting
  • ~Reported performance of 0.05-0.1 tok/s is too slow to be practically useful
  • Others are working on similar streaming/memory-efficient inference approaches, validating the direction
  • llama.cpp already supports mmap and quantization, questioning whether this adds real value
  • This approach points to a promising future of SSD-based inference reducing RAM dependency
8.What xAI's Grok Build CLI Actually Sends to xAI(gist.github.com)
294 points by jhoho 12 hours ago | 134 comments | permalink
tl;dr: A wire-level analysis of xAI's Grok Build CLI (v0.2.93) shows it transmits read file contents—including unredacted `.env` secrets—to xAI via `/v1/responses`, and separately uploads the entire repository as a git bundle to a Google Cloud Storage bucket (`grok-code-session-traces`) via `/v1/storage`, including files the agent was explicitly told not to read. Testing on a 12GB repo of never-read files showed 5.10 GiB uploaded successfully, and toggling "Improve the model" off does not disable the upload. The mechanism is not surfaced in the CLI's setup materials.
HN Discussion:
  • Sandboxing and separating coding tools from LLM providers is essential protection against this behavior
  • Distrust of Elon Musk and xAI is confirmed by these findings
  • Proprietary coding agents are inherently risky due to opaque updates and hidden behaviors
  • This behavior is expected since agents have access to the workspace and secrets shouldn't be there anyway
  • Speculation that xAI is using uploaded code to steal IP for other Musk projects
9.QuadRF can spot drones and see WiFi through my wall(jeffgeerling.com)
736 points by speckx 1 day ago | 231 comments | permalink
tl;dr: QuadRF is an open-source handheld phased-array SDR built on a Raspberry Pi 5 and FPGA, covering 4.9–6 GHz and using the Pi's MIPI lanes for >5 Gbps I/Q streaming. It can visualize WiFi signals through walls in AR, track drones in flight, and daisy-chain with other modules—part of a larger project aiming at a Moon-scale antenna array for EME experiments. Available on Crowd Supply starting at $499; the UI is rough but the hardware reportedly works impressively well.
HN Discussion:
  • Creator engages with community, offers demos and acknowledges UI improvements needed
  • Concern about surveillance implications and government capabilities using such tech
  • Interest in extending the concept to other domains like acoustic sensing
  • Excitement about practical applications like drone defense, hidden camera detection, and EMC testing
  • Desire for expanded form factors and frequency coverage (smart glasses, more bands)
10.Show HN: 18 Words(18words.com)
1130 points by pompomsheep 3 days ago | 355 comments | permalink
tl;dr: Summary not available
HN Discussion:
  • ~The timer detracts from enjoyment; a relaxed/untimed mode would improve the experience
  • ~Players should progress through all 18 words with a cumulative score rather than losing early
  • A shuffle/scramble button would help players break out of mental locks on letter pairings
  • The game has bugs or unfair word choices, like rejecting valid anagrams or using obscure slang
  • The game reveals interesting cognitive/linguistic patterns, especially for non-native speakers
11.Einstein's relativity rules chemical bonds in heavy elements, new research shows(brown.edu)
394 points by hhs 1 day ago | 180 comments | permalink
tl;dr: Brown University chemists used photoelectron spectroscopy on carbon-bismuth molecules to show that triple bonds in heavy elements don't follow the textbook one-sigma-two-pi structure. Due to relativistic effects—electrons moving near light speed cause spin-orbit coupling—the bonds instead appear as one pi bond and two hybrid sigma-pi bonds. The finding, published in Science, could rewrite chemistry textbooks as heavy elements like bismuth gain interest for solar cells and quantum computing.
HN Discussion:
  • Sharing related fun facts about relativistic effects in heavy elements like mercury and gold
  • Questioning novelty since relativistic effects on heavy element chemistry were already known
  • Framing the finding as further experimental confirmation of Dirac/Einstein's theoretical work
  • Skepticism about the article's claim that lead is used in common solar panels
  • Asking theoretical questions about alternative frameworks (Bohmian, superfluids) applicability
12.Ghost Font: A font that humans can read but AI cannot(mixfont.com)
221 points by justswim 1 day ago | 164 comments | permalink
tl;dr: Ghost Font encodes text into the motion of dots in a video—readable to humans watching it play, but indistinguishable from background noise in any single frame, defeating screenshot-based OCR and current multimodal AI models like GPT and Claude. It also embeds a decoy message to fool agents with local code execution that might analyze dot motion directly. The creator sees potential applications in CAPTCHAs and as a benchmark for video-native AI perception, and plans to open-source the generator.
HN Discussion:
  • AI can already decode Ghost Font with simple prompting or temporal analysis techniques
  • The technique is algorithmically crackable with basic frame differencing or compression analysis
  • Humans struggle to read it too, questioning its practical usefulness
  • The underlying text is trivially accessible via the DOM, defeating the security premise
  • ~Interesting research concept even if imperfect, with related prior art in flickering illusions
13.GPT-5.6(openai.com)
1545 points by logickkk1 2 days ago | 1095 comments | permalink
tl;dr: Summary not available
HN Discussion:
  • Highlights useful developer guidance and semantic tips from the new model documentation
  • Mocks benchmark comparisons as cherry-picked or unfair to competitors like Fable
  • Notes impressive benchmark achievements like SOTA on ARC-AGI-3
  • Criticizes the confusing naming convention of Sol/Terra/Luna variants
  • ~Mixed real-world testing results suggest improvements are less dramatic than claimed
14.EU Parliament greenlights Chat Control 1.0(patrick-breyer.de)
1619 points by rapnie 3 days ago | 849 comments | permalink
tl;dr: The EU Parliament failed to block "Chat Control 1.0" — a motion to reject it got 314 votes to 276 but fell short of the required 361-vote absolute majority — allowing suspicionless scanning of private messages on platforms like Gmail, iCloud, Instagram, and Discord to continue until 2028. End-to-end encrypted services like WhatsApp remain exempt. Critics, including former MEP Patrick Breyer and abuse survivors, argue the scanning is ineffective (48% of alerts aren't criminally relevant per Germany's BKA) and removes pressure to negotiate a targeted permanent regulation ("Chat Control 2.0"), talks on which resume in September.
HN Discussion:
  • EU is undemocratic, using procedural tricks to pass unpopular surveillance legislation
  • This vote destroys the EU's credibility on digital privacy and human rights
  • Disillusionment with EU as a democratic institution after this betrayal
  • Historical/constitutional parallels justify opposing such mass surveillance laws
  • Nuanced clarification that E2E encrypted services remain exempt from scanning
15.New York City to ban deceptive subscription practices(theguardian.com)
632 points by randycupertino 1 day ago | 333 comments | permalink
tl;dr: Starting October 1, New York City will fine companies $525 per subscription for making cancellations difficult, requiring simple opt-out mechanisms for recurring charges like gyms and streaming services. A separate proposed rule would force sellers—including landlords, hotels, and rental agencies—to advertise total prices upfront including mandatory "junk fees," which is particularly significant in NYC's rental market where hidden fees often add hundreds to monthly costs. The moves follow the failure of similar Biden-era federal rules and are part of the Mamdani administration's affordability push.
HN Discussion:
  • ~Skepticism about enforcement effectiveness given loopholes seen in similar California laws
  • ~The law isn't as landmark as claimed since California already has similar rules
  • Sharing personal experiences of deceptive subscription/fee practices that validate the need for such regulation
  • This represents legitimate government advocating for consumers against exploitative companies
  • Questioning whether city-level regulation can meaningfully enforce these rules against national companies
16.Apple sues OpenAI, accuses ex-employees of stealing trade secrets(9to5mac.com)
1611 points by stock_toaster 1 day ago | 920 comments | permalink
tl;dr: Apple has sued OpenAI, io Products, and two former Apple employees—ex-VP of product design Tang Tan and engineer Chang Liu—alleging they stole trade secrets to benefit OpenAI's hardware efforts led by Jony Ive. The complaint claims Tan used insider knowledge to extract confidential info from Apple job candidates (including asking them to bring actual parts and CAD files to interviews), while Liu allegedly exploited a security bug to download thousands of pages of engineering documents. Apple says over 400 former employees now work at OpenAI and calls the alleged misconduct "the tip of the iceberg."
HN Discussion:
  • Evidence in the complaint appears damning and shows deliberate misconduct by OpenAI
  • OpenAI has a pattern of disregarding laws and IP, making it fundamentally untrustworthy
  • Businesses and users should avoid OpenAI products due to risk to their own IP
  • Apple's resources and discovery process could devastate OpenAI's hardware ambitions
  • This reflects a broader industry problem where AI companies are rewarded for theft
17.Successful companies go blind(ianreppel.org)
238 points by speckx 2 days ago | 82 comments | permalink
tl;dr: Successful companies develop "competence blindness" much like Mexican cavefish lose their eyes: in stable, low-competition environments, careful engineering becomes a vestigial trait that gets suppressed because the environment doesn't reward it. New hires learn the house style, staff hiring panels, and select for comfort with existing dysfunction, while sighted engineers who join either leave or gradually adapt to cave rules. The remedy isn't a top-down "center of excellence" (which suppresses the trait it claims to cultivate), but swimming into different waters where sight is expressed again.
HN Discussion:
  • Personal confirmation from working at large/older companies where bureaucracy stifles innovation
  • ~It's context/bureaucracy, not lost competence — people don't actually go blind
  • Big companies aren't blind; they're rationally optimizing monopoly extraction over innovation
  • The article shoehorns the metaphor — companies were never sighted to begin with
  • This is a known pattern (Innovator's Dilemma) and LLMs/VC culture accelerate it
18.An update on residential proxies and the scraper situation(lwn.net)
345 points by chmaynard 1 day ago | 372 comments | permalink
tl;dr: AI scraper traffic continues to overwhelm sites like LWN via "residential proxy" networks—millions of compromised phones, smart TVs, and devices running hijacked software, often installed via shady "free VPN" apps and SDKs from companies like Bright Data. Recent takedowns of networks like IPIDEA and NetNut brought temporary relief, but the arms race continues; LWN has deployed undisclosed defenses rather than adopting Anubis, arguing proof-of-work is trivial when attackers command millions of victim machines. Without industry accountability or app store scrutiny, the open web risks disappearing behind logins, paywalls, and CAPTCHAs.
HN Discussion:
  • Agrees proof-of-work defenses like Anubis are futile against botnets with millions of machines
  • ~Anti-scraping rhetoric risks harming the open web and empowering gatekeepers like Cloudflare; a better common crawl is the solution
  • App stores and mobile OSes enabling unrestricted network access are the root cause of residential proxy proliferation
  • ~Questions whether scraping volume is really from training data collection versus user-driven AI agents fetching pages
  • Residential proxy companies are essentially legalized botnets that escape punishment by operating openly
19.The vintage beauty of Soviet control rooms (2018)(designyoutrust.com)
205 points by mvdtnz 1 day ago | 66 comments | permalink
tl;dr: A photo collection showcasing Soviet-era control rooms, featuring the analog aesthetic of large buttons, dials, and switchboards that predated modern computer interfaces. Includes an image of Chernobyl's Reactor 4 control room by Cary Markerink.
HN Discussion:
  • This aesthetic isn't uniquely Soviet; pre-computer control rooms everywhere looked similar
  • These control rooms were actually superior to modern software observability in key ways
  • Sharing related content about control room design details like seafoam green color and lighting
  • Old machinery embodies beauty and inspiration that modern AI-driven design ignores
  • These control rooms aren't vintage—many are still operational in Russia today
20.GPT-5.6 Sol Ultra produces proof of the Cycle Double Cover Conjecture [pdf](cdn.openai.com)
521 points by scrlk 1 day ago | 429 comments | permalink
tl;dr: Summary not available
HN Discussion:
  • ~Prompt engineering overhead is notable, with much of prompt spent cajoling model rather than describing problem
  • ~Impressive milestone but concerns about methodology and how many problems were attempted before success
  • Major milestone in AI mathematical capability, comparable to chess engines surpassing humans
  • ~Proof's conciseness suggests a clever trick, but AI still lacks autonomous theory-building capability
  • Independent verification via another model and expert increases confidence in the result