Jul 11Sunday, July 12, 2026 · all daysJul 13 · today »
1.Mesh LLM: distributed AI computing on iroh(iroh.computer)
344 points by tionis 60 days ago | 92 comments | permalink
tl;dr: Mesh LLM pools GPUs across multiple machines into a single OpenAI-compatible API endpoint (localhost:9337/v1), letting requests run locally, route to peers, or split large models pipeline-style across nodes by layer ranges. It's built on iroh for authenticated, NAT-traversing QUIC connections between nodes identified by public key, with no central server and a custom gossip layer over ALPN-negotiated streams. The 18MB client ships with 40+ models ranging from laptop-sized to 235B MoE, aimed at teams wanting to avoid API lock-in and use hardware they already own.
HN Discussion:
  • Ease of setup and joining the mesh worked flawlessly on first try
  • Network bandwidth makes distributed inference too slow for practical interactive use
  • ~Most users lack the hardware described in examples to meaningfully participate
  • ~Interest in applying this to smaller purpose-built models rather than large LLMs
  • ~Installation and compatibility have rough edges with older hardware
2.Show HN: Ant – A JavaScript runtime and ecosystem(antjs.org)
314 points by theMackabu 60 days ago | 144 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)
361 points by adletbalzhanov 60 days ago | 164 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)
234 points by saisrirampur 61 days ago | 55 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)
338 points by ingve 60 days ago | 171 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)
315 points by speckx 60 days ago | 106 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)
922 points by vforno 63 days ago | 238 comments | permalink
tl;dr: Colibrì is a dependency-free C engine that runs GLM-5.2 (744B-parameter MoE) on modest hardware (~25GB RAM, 12 cores) by keeping the ~17B dense parameters resident in int4 while streaming the 21,504 routed experts from disk (~370GB) via an LRU cache. It implements MLA attention, MTP speculative decoding, DSA sparse attention, and an OpenAI-compatible API, achieving ~0.05–0.1 tok/s on the author's WSL2 dev box, with community benchmarks reaching ~2 tok/s on an M5 Max and ~1 tok/s on a 430GB EPYC system. Performance scales with RAM (cache size), disk bandwidth, and matmul throughput.
HN Discussion:
  • The README appears AI-generated based on repeated use of 'honest' phrasing
  • The reported tok/s is too slow to be practically useful even for overnight tasks
  • Others are working on similar streaming/LRU weight approaches and share their parallel efforts
  • This points toward a future where fast SSDs replace expensive RAM for LLM inference
  • ~Questions whether this offers advantages over llama.cpp's existing mmap and quantization support
8.What xAI's Grok build CLI sends to xAI: A wire-level analysis(gist.github.com)
519 points by jhoho 60 days ago | 225 comments | permalink
tl;dr: A wire-level analysis of xAI's Grok Build CLI (v0.2.93) found it transmits .env secrets unredacted to xAI's /v1/responses endpoint and uploads entire repositories—including files the agent was explicitly told not to read, plus full git history—as git bundles to a GCS bucket named grok-code-session-traces. Testing showed 5.10 GiB uploaded from a 12GB repo of never-read files while the model channel moved only 192KB, and disabling "Improve the model" does not stop the uploads. The author notes this proves transmission and storage, not training, and that the mechanism isn't surfaced in the CLI's setup docs.
HN Discussion:
  • Provides mitigation steps and confirms the concerning behavior described in the article
  • Advocates sandboxing coding tools to prevent this kind of data exfiltration
  • Proprietary coding agents are inherently risky due to hidden behaviors like these
  • Expresses shock and cites this as reason to avoid xAI/Grok
  • Pushes back that uploading workspace contents is expected agent behavior, not scandalous
9.QuadRF can spot drones and see WiFi through my wall(jeffgeerling.com)
743 points by speckx 62 days ago | 234 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)
1143 points by pompomsheep 63 days ago | 357 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)
405 points by hhs 61 days ago | 184 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)
231 points by justswim 61 days ago | 170 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)
1549 points by logickkk1 62 days ago | 1101 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)
1624 points by rapnie 63 days ago | 853 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)
635 points by randycupertino 61 days ago | 337 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)
1632 points by stock_toaster 61 days ago | 941 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)
243 points by speckx 62 days ago | 84 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)
348 points by chmaynard 61 days ago | 377 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)
212 points by mvdtnz 61 days 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)
530 points by scrlk 61 days ago | 433 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