Android Authority's Robert Triggs reports that the first-generation Chromecast HDMI dongle recently got an unexpected software update, despite being eight years old. He explains he still relies on the device because it casts content faster and more reliably than his TV's built-in Google TV casting features, which suffer from lag, bloat, and audio sync issues.
A federal judge in Delaware ruled that startup Operation Bluebird cannot use the name 'Twitter' for its new social network, siding with Elon Musk's X on that trademark. But the judge also found X likely abandoned rights to the word 'tweet' and the bluebird logo, letting the startup relaunch its site as Tweet.app and open to users, drawing over 172,000 handle requests before launch.
At IFA Berlin, iRobot demonstrated a prototype called the Roomba Duo, a wet-cleaning robot mothership that carries a smaller Roomba vacuum and lowers it onto the floor using a mechanical arm. In the demo, the main unit cleaned a spaghetti spill with steam and suction, then deployed the smaller robot to reach narrow spaces and corners it couldn't access. iRobot's chief engineer Adam Pope said the device is currently just a concept exploring ways to combine heavy-duty wet cleaning with nimble vacuuming.
A Denver resident filmed a newly built AI data center running its lawn sprinklers heavily enough to create standing puddles, even as Denver Water's Stage 1 drought restrictions limit residential and commercial lawn watering to twice a week through September, with a full ban starting October 1. The footage went viral and fueled anger, though it remains unclear whether the facility violated the rules, since the timing of the video, use of recycled non-potable water, or a special variance could all justify the watering.
CrowdStrike says the China-linked group OVERCAST PANDA physically entered hotel rooms of executives attending an agricultural conference on Hainan Island between March and May 2026, booting their unattended laptops from a USB drive to install the FlowCloud backdoor while the victims were at dinner. No phishing, credential theft, or network intrusion was involved—the attackers relied entirely on physical access to unlocked, unattended devices. CrowdStrike's OverWatch team detected and disrupted the intrusions and expects the group to keep using this method.
A Hacker News 'Ask HN' post questions whether Anthropic's Model Context Protocol, despite early hype, is actually being deployed in production systems. The poster asks respondents to share specific use cases and explain what benefits MCP offers over traditional APIs, direct tool integrations, or CLI-based workflows.
Kohler Health and startup Throne are marketing camera-equipped toilet attachments that use AI to scan urine and stool for color, consistency, and hydration markers, then generate daily 'gut health' scores through a companion app. Kohler's device costs $449 with a $130 annual membership, while Throne, which recently raised $10 million, charges $399 plus a $70 yearly fee. Both companies say their tools track what's normal for each user rather than issuing blanket health verdicts, unlike existing at-home microbiome test kits.
Apple emailed Mac App Store developers saying universal apps requiring macOS 13 or later can now remove Intel-based Mac support entirely and build for arm64 only. This follows Apple's completed six-year transition to its own silicon and its earlier statement that macOS 26 Tahoe would be the last major release supporting Intel Macs. Rosetta, the tool letting Apple-silicon Macs run older Intel apps, will lose general-purpose support after macOS 27.
Dallas has fitted 50 bulk-waste collection trucks with 100 AI-powered cameras that photograph properties along their routes and assign each one a 'blight score' from 1 to 4 based on detected issues like overgrown grass, litter and structural damage. Since testing began in April, the system has flagged possible violations at more than 21,000 properties, with some homeowners receiving code enforcement notices that could lead to fines. The cameras are run by a company called City Detect, which says it blurs faces and license plates but has no control over how the city enforces the data.
A blogger detailed how they replaced their static site's contact form backend with Cloudflare Pages Functions, combining reCAPTCHA v3 (or optionally Cloudflare Turnstile) with the Resend email service to block spam submissions. The setup collects a visitor's name, email and message, then routes it through a Worker to a custom email address for filtering. The approach was inspired by a prior migration guide from Netlify to Cloudflare by developer Sia Karamalegos.
Russian startup Mostik has developed a method allowing AI models to exchange information through their internal weight values rather than generated text, effectively letting a smaller model absorb capabilities from a larger one. The team demonstrated this by linking a 753-billion-parameter GLM-5.2 model with a 4-billion-parameter Qwen-3.5 model, producing a hybrid system that runs at one-twentieth the cost of the full-size model while performing roughly midway between the two in capability. Mostik also used a related technique to build a model that has topped the ARC-AGI 3 benchmark, though details remain undisclosed while the contest is ongoing.
A blog post highlights a handy jq trick from Sequoia McDowell that pretty-prints JSON copied to the clipboard and pastes it back automatically, using pbpaste and pbcopy on macOS. The author adapts this for Linux using xclip, then identifies a flaw: if the clipboard doesn't contain valid JSON, jq fails silently and wipes the clipboard content. The fix adds a fallback so the original clipboard text is preserved when jq errors out.