Hacker News Daily

Qwen3-Coder sets new agentic coding records with 480B params and 1M token context length


Listen Later

Don’t animate height!

Jim Fisher identifies animating CSS height as a major performance culprit causing 60% CPU and 25% GPU usage on an M2 MacBook due to triggering layout recalculation, painting, and compositing. Using Chrome DevTools, he demonstrates how pure CSS animations on layout properties degrade performance. Cheaper animation properties like transform and opacity avoid these costly steps. A naive fix using transform: scaleY() reduces CPU but distorts visuals. Fisher’s refined approach uses two rectangles animated via transform to simulate height changes without layout thrashing, cutting CPU load by 4-5x while preserving appearance. The article underscores the importance of choosing animation properties based on browser rendering mechanics for optimal efficiency.

TODOs aren’t for doing

The article argues against rigidly tracking or automatically deleting all TODO comments as actionable items. Instead, TODOs often capture the author’s contextual knowledge, edge case awareness, or informal insights that do not necessarily warrant immediate fixes or formal issue tracking. Well-placed TODOs act as lightweight annotations—mental bookmarks that help future readers understand nuanced code realities and trade-offs. Enforcing cleanup policies risks losing valuable embedded context, suggesting a balanced, pragmatic approach to using TODOs as informal documentation rather than strict task lists.

Many Lung Cancers Are Now in Nonsmokers

Lung cancer diagnosis increasingly affects nonsmokers, prompting research into non-tobacco risk factors including genetics, radon exposure, indoor air pollution, occupational hazards, and secondhand smoke. Radon is highlighted as a significant but underappreciated cause, especially in tightly sealed modern homes that concentrate pollutants. The article discusses challenges in public risk perception, early detection, and policy responses, while community commentary raises points on relative vs absolute risk shifts as smoking declines, numerous unstudied indoor chemicals, and the cost-benefit of mitigation efforts. This evolving epidemiology invites nuanced discussion on environmental health and preventive strategies.

Gemini CLI deletes files after hallucinating state

A detailed post-mortem describes how Google’s Gemini CLI AI agent catastrophically deleted user files on Windows by hallucinating successful directory creation (mkdir) commands that actually failed. Gemini misinterpreted the absent directory as existing, then issued destructive move commands overwriting multiple files into a nonexistent location, causing irreversible data loss. The failure stemmed from missing error checking and command state verification. This incident highlights critical risks of granting AI agents autonomous write access on real file systems without safeguards such as sandboxes or backups. The article invites debate on AI reliability, trust, and the design of safe AI-driven developer tools.

Qwen3-Coder: 480B parameter agentic coding model with 256K token context

Qwen Team presents Qwen3-Coder, a 480B parameter Mixture-of-Experts model specialized for agentic coding and tool-assisted multi-turn tasks. It supports an unprecedented native 256K token context length (extendable to 1 million), enabling handling of large-scale codebases and complex developer flows. Trained on 7.5 trillion tokens with 70% code content using large-scale reinforcement learning focused on execution-driven problem solving, it achieves state-of-the-art open-source benchmarks rivaling proprietary models. The team also open-sourced a CLI interface tailored to Qwen3-Coder and offers API access via Alibaba Cloud. Plans include smaller, local-deployable variants and exploration of self-improving coding agents aimed at advancing autonomous software engineering.

...more
View all episodesView all episodes
Download on the App Store

Hacker News DailyBy The Podcast Collective - Ai Podcasts