HackerNews Digest

June 28, 2026

Marfa Public Radio Puts You to Sleep

Marfa Public Radio operates continuously (24 hours a day, with interruptions only for lightning) and manages extensive behind‑the‑scenes functions such as fundraising, FCC compliance, journalistic‑ethics adherence, emergency response, and technical maintenance. To illustrate these operational details, the station produced a “sleep podcast” titled **Marfa Public Radio Puts You to Sleep**, which consists of reading internal documents (e.g., compliance manuals and ethics guidelines) intended to lull listeners. The podcast serves both as a transparency tool and a fundraising appeal, directing listeners to donate via atmarfapublicradio.org/donate. Accompanying the article are several images with alt text referencing local Texas infrastructure and NPR branding, but they do not add substantive content to the description.
Read full article →
The comments express overall enthusiasm for Marfa, highlighting its artistic community, friendly atmosphere and appeal as a unique desert getaway, while also noting its remote location. Opinions on sleep‑focused audio content are mixed: several users appreciate the calming, monotone voice approach for winding down, yet many request practical features such as simple controls, sleep tracking, and the ability to pause and resume without screen illumination. There is a shared preference for spoken word over music, with interest in varied but low‑stimulus material to aid relaxation.
Read all comments →

Show HN: Decomp Academy – Learn to decompile GameCube games into matching C

The page presents a GameCube decompilation example written in PowerPC assembly (MWCC GC/2.0). Each function follows a standard prologue: `stwu r1,-0x20(r1)`, saving the link register and callee‑saved register r31, then loading a structure pointer (`lwz r3,0x8(r31)`). It reads two float fields at offsets 0x40 and 0x44, squares them (`fmuls`), adds the squares (`fmadds`), and computes a fast reciprocal square root (`frsqrte`, followed by Newton‑Raphson refinements using `fmuls`, `fnmsubs`, `fmadds`). A conditional test on r4 (`cmplwi r4,0`) may skip subsequent code. An indexed load/store sequence (`rlwinm r0,r5,2,0,29`; `lwzx r6,r3,r0`; `add r6,r6,r0`; `stwx r6,r3,r0`) manipulates an array element, after which the function calls `Vec_Normalize`. The epilogue restores r31, the link register, and returns (`blr`). The snippet is repeated three times, illustrating a typical vector‑normalization routine in GameCube binaries.
Read full article →
The comments express strong interest in game decompilation and reverse‑engineering, coupled with enthusiasm for using large language models to automate parts of the process. Users note technical barriers such as a broken compiler service and the effort required to set up toolchains, which discourage participation. Legal and safety concerns about publishing decompiled code are frequently raised. While many are optimistic about the potential for incremental, bite‑sized analysis and community contributions, frustration over current platform limitations and uncertainty about licensing persists. Overall sentiment is cautiously hopeful but impeded by practical and legal obstacles.
Read all comments →

AMD Strix Halo RDMA Cluster Setup Guide

The guide details setting up a two‑node AMD Strix Halo cluster (Framework boards with Ryzen AI MAX+, 128 GB unified memory) linked by Intel E810 RoCE v2 (100 GbE) for distributed vLLM inference using Tensor Parallelism (TP = 2). Both nodes run Fedora 43 (kernel 6.18.x) with iGPU memory limited to 512 MB and kernel parameters `iommu=pt pci=realloc pcie_aspm=off amdgpu.gttsize=126976 ttm.pages_limit=32505856`. Required packages are `rdma-core`, `libibverbs-utils`, and `perftest`; the E810 driver (`ice`) and RDMA driver (`irdma`) are used. Static IPs 192.168.100.1/2, MTU 9000, and a trusted firewall zone are configured, and password‑less SSH is set up. The `refresh_toolbox.sh` script builds a Docker toolbox containing a custom `librccl.so` for gfx1151 RDMA support. RDMA latency (~5 µs, 50 Gbps) is verified with `compare_eth_vs_rdma.sh`. The TUI `start‑vllm‑cluster` launches a Ray head/worker cluster, sets NCCL (RCCL) interface, and runs vLLM Serve with model selection, context length, and optional eager mode. An alternative Thunderbolt 4 link is described for cases without 100 GbE. References include community contributions for gfx1151 RCCL support.
Read full article →
The discussion expresses strong enthusiasm for recent advances in local AI deployment, particularly the DS4 project and 4‑bit quantization on dual Strix Halo machines, while also noting current performance limitations with larger models. Contributors highlight the high cost and limited availability of consumer‑grade hardware, attributing price pressures to industry practices, and compare specifications and pricing of various platforms such as Framework boards, Mac Studio, and MacBook Pro. Technical considerations include memory bandwidth, PCIe and Ethernet networking options, and the potential for future hardware to support much larger models at practical speeds.
Read all comments →

Wayfinder Router: deterministic routing of queries between local and hosted LLM

Wayfinder‑router is a deterministic, offline CLI and gateway for routing LLM queries between a low‑cost local model and a higher‑cost hosted model. It scores prompts in microseconds by analyzing structural features (length, headings, lists, code) and optional lexical cues (proofs, math symbols, constraints), producing a 0‑1 complexity score that is compared to a user‑defined threshold or tiered cut‑points. No external model calls, API keys, or network traffic are required for the decision, ensuring zero latency and reproducible routing. The tool ships as a pure‑Python package with optional extras for a web UI, Docker deployment, and OpenAI‑compatible gateway. Configuration (`wayfinder-router.toml`) defines local and cloud endpoints (any OpenAI‑style API) and weight settings; secrets are read from environment variables or command‑line fetchers at request time. It supports binary, tiered, or classifier‑based routing, calibration from labeled JSONL data, cost‑aware objectives, and a feedback loop for continuous re‑calibration. Responses include `x‑wayfinder‑router-*` headers indicating the chosen model, score, and routing mode. Wayfinder integrates transparently with existing OpenAI clients, IDE assistants, or agent frameworks, enabling cost‑effective LLM usage without code changes.
Read full article →
None
Read all comments →

Anonymous GitHub account mass-dropping undisclosed 0-days

The repository “exploitarium” aggregates public proof‑of‑concept (PoC) exploits and vulnerability write‑ups previously hosted in separate GitHub projects. It preserves original README files and tracked source files, while repository‑level metadata (stars, issues, pull requests) remains in the original histories. A verification process on 23 June 2026 compared fresh clones of the former repos to the consolidated folders using Git tree data, confirming identical paths, object types, modes, and blob IDs for 12 repos and 96 entries with zero mismatches. The collection includes PoCs for diverse components such as c‑ares TCP use‑after‑free, FFmpeg RASC‑DLTA integer overflow, Firefox SmartWindow URL exfiltration, Floci API‑gateway VTL remote code execution, libssh2 CVE‑2026‑55200, libssh2 public‑key list overflow, nghttp2 upgrade‑queue poisoning, Nmap IPv6 extlen wrap, PHP 8.5.7 stream‑bucket SOAP RCE, RustDesk session permission bypass, and SystemInformer PHSvc trusted‑host LPE, among others. The author notes AI assistance was used for fuzzing harnesses and README generation but PoCs were handwritten. A disclaimer warns against malicious use, emphasizing the work is intended for open‑disclosure and educational purposes.
Read full article →
The comments collectively view most of the reported issues as low‑severity bugs or already‑known flaws rather than true zero‑days, criticizing the inflated use of the term and noting that many findings appear trivial, require dangerous user actions, or stem from AI‑generated noise. While a few examples are seen as technically interesting, overall sentiment stresses skepticism about the repository’s value, concerns about responsible disclosure, and the potential risk of aggregating such data, alongside acknowledgement that AI tools are inflating report volumes without substantially improving security.
Read all comments →

OpenRA

OpenRA’s latest playtest (20260222) introduces random map generators for Red Alert, Tiberian Dawn, and Dune 2000, allowing players to select biome, player count, symmetry and resources for both skirmish and multiplayer maps. Dune 2000 receives visual upgrades (Sonic Tank effects, damaged‑structure visuals) and “bulk purchase” logic for the Starport, alongside a community‑driven balance overhaul for all modes and difficulty tweaks for the single‑player campaign. The Tiberian Dawn HD mod now supports C&C Remastered Collection assets, adding HD sprites for the remaining custom assets and a content manager that toggles between remastered and classic artwork, audio, and music; integration into core OpenRA is planned for a future release. Map‑making tools are expanded with UI improvements and a Path Tiler for cliffs, beaches, and roads. Additional changes include a new “Other RTS” mouse mode, timed auto‑save, bots building expansion bases, groundwork for localisation, new missions for Red Alert and Tiberian Dawn, plus assorted bug fixes and performance optimizations.
Read full article →
The comments convey strong overall enthusiasm for OpenRA, highlighting its improved balance, added features, cross‑platform support, and faithful recreation of classic strategy titles. Users frequently recall nostalgic experiences, appreciate the open‑source development model, and enjoy playing with friends online or via LAN. Common criticisms include occasional toxicity in multiplayer, the absence of certain games such as Generals or Tiberian Sun, and a desire for better AI, UI refinements, and continued community moderation. The sentiment is largely positive with modest requests for further enhancements.
Read all comments →

Choosing a Public DNS Resolver

The guide evaluates public DNS resolvers against transport security, DNSSEC support, IPv6, jurisdiction, and operator type. Research highlights include: - **Performance**: Plain DNS (Do53) has the lowest latency; encrypted DoH/DoT adds modest overhead but page‑load times remain comparable, while on lossy or high‑latency links plain DNS still wins. Speed varies by provider and region. - **Tamper resistance**: Encrypted DNS greatly reduces query interception; however ~25 % of DoT services served invalid TLS certificates, so well‑operated providers are preferred. - **Privacy**: Encryption hides queries from the network but not the resolver; no‑logging operators or Oblivious DNS (ODoH, e.g., Cloudflare, Apple) separate identity from queries. Traffic analysis can still infer visited sites; padding is insufficient. - **DNSSEC**: Validating resolvers (Google, Cloudflare, Quad9) prevent spoofed records and successfully handled the root‑key rollover. - **ECS**: EDNS Client Subnet improves CDN routing (used by Google/OpenDNS) but leaks part of the client IP; providers like Cloudflare omit it for privacy. - **Jurisdiction & centralization**: Legal location affects data‑access demands; a few providers dominate global recursive traffic, raising control concerns. - **Transport advances**: DNS‑over‑QUIC is the fastest encrypted option (supported by Quad9, AdGuard, NextDNS, etc.), while DNSCrypt remains an older, key‑based solution with limited usage data. - **Resolver behavior**: Diagnostic error reporting differs widely (94 % disagreement in 2023 study); Cloudflare was most accurate. Additional niche resolvers (DNS4all, BlahDNS, LibreDNS, Dismail.de) are listed, and legacy services such as Oracle Dyn and Level3 are flagged for avoidance.
Read full article →
Comments reflect experienced users’ pragmatic view of public DNS options: many consider self‑hosting or configurable services preferable for privacy and control, noting concerns about jurisdiction‑linked regulations, especially Chinese‑operated resolvers, and limited transparency of some providers. Frustration is expressed over captive‑portal Wi‑Fi requiring DNS changes, while tools such as Unbound, NextDNS, DNScryptProxy, and Quad9 receive praise for configurability and reliability. Requests for speed‑comparison metrics and support for EDNS client subnet are common, alongside observations that performance can vary depending on resolver integration with CDNs.
Read all comments →

Ford hired AI and sacked humans. It backfired badly

Ford acknowledged that its recent AI‑driven inspection systems caused costly quality failures, prompting the company to rehire more than 350 veteran engineers—internally called “gray beards”—over the past three years. The engineers are tasked with leading quality reviews and assisting in training the AI models. COO Kumar Galhotra said reliance on automated quality checks did not yield the expected results, and the new staff will identify failure points before parts enter production. After the rehiring, Ford’s quality metrics improved, with the J.D. Power Initial Quality Survey ranking the automaker top among mainstream brands for the first time in 16 years. Despite the gains, Ford remains the most recalled automaker in the U.S., a situation executives attribute to legacy automation issues rather than the recent human re‑engagement. The company plans to continue using AI but with integrated human oversight, emphasizing that AI effectiveness depends on the quality of its training data and the expertise of seasoned engineers.
Read full article →
The comments express broad skepticism toward the hype that AI will universally solve business challenges, emphasizing that AI should be treated as one tool among many rather than a panacea. Critics highlight historical examples such as Ford’s quality decline despite AI‑focused initiatives and caution that organizations often repeat mistakes without learning from past failures. There is a recurring view that speed must not outrank quality, that human involvement remains essential for effective AI deployment, and that overly confident “tech‑bro” rhetoric is viewed unfavorably.
Read all comments →

Ancient Tablets Show Markets Worked 4k Years Before Economists Explained Them

The page consists solely of a verification notice. It displays the title “One moment, please…” followed by the message “Please wait while your request is being verified…”. No additional text, navigation, or content is provided. The purpose of the page is to pause user interaction while a backend process—commonly an anti‑bot, security, or session‑validation check—confirms the request before granting access to the intended resource. No technical details, data, or actionable information are presented beyond the waiting prompt. The page serves as a temporary placeholder pending completion of the verification step.
Read full article →
The commentary challenges the article’s implication that sophisticated commerce and market concepts are uniquely modern, citing Bronze‑Age evidence such as a cuneiform complaint tablet to demonstrate early complex trade and customer service. It emphasizes that theoretical frameworks—whether economic, linguistic, or musical—typically follow preexisting practices, noting that Adam Smith described established market behaviors rather than inventing them. The tone is critical of the piece’s writing quality and its conflation of general commerce with later‑era capitalism, arguing that markets existed long before the term “capitalism” was coined.
Read all comments →

Space Shuttle Endeavour's 20-story vertical display

None
Read full article →
The comments express strong enthusiasm for the upcoming shuttle exhibit, highlighting anticipation of viewing the shuttle in various configurations and appreciating the large‑scale display and supporting structures. There is reference to personal experiences visiting the shuttle before its recent changes and interest in the inclusion of boosters and fuel‑tank components. The tone is upbeat and speculative, with humorous pop‑culture references and a tongue‑in‑cheek suggestion about SpaceX, but overall the sentiment remains positive and eager.
Read all comments →