SShortSingh.
Back to feed

In an $80 Motel Room, a Discovery to Shed Light on the Origins of Life

0
·2 views

Article URL: https://www.nytimes.com/2026/09/26/science/motel-science-discovery.html Comments URL: https://news.ycombinator.com/item?id=49866951 Points: 4 # Comments: 2

Read the full story at Hacker News

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

How a Gamedev CTO Built KPIs for Six Teams Without Triggering Goodhart's Law

A CTO managing six gamedev teams needed a way to monitor team health and delegate responsibility without micromanaging daily operations. The core challenge was designing KPIs that measured genuine outcomes rather than numbers that leads could game, a pitfall described by economist Charles Goodhart's decades-old principle. A concrete trigger was that stability issues like crashes and ANRs were going unaddressed because no one owned them — features had deadlines and owners, but stability metrics had neither. Rather than slicing the CTO's existing KPIs into shares distributed downward, the approach focused first on defining what each lead was actually responsible for within the broader direction. The resulting framework aimed to give leads clarity on expectations and genuine ownership of their zone, rather than metrics they only partly influenced and could defend against with reports.

0
ProgrammingDEV Community ·

Chat template, not model weights, triggers 'I'm just an AI' disclaimers, study finds

A paper published on August 9, 2026, by researcher Jędrzej Maczan found that the 'I'm just an AI' disclaimer in large language models is triggered by the chat template format, not by the model's underlying weights. Testing eight open-source instruction-tuned models of up to 9 billion parameters, the study showed that wrapping prompts in chat template tokens consistently produced self-distancing disclaimers, while plain-text versions of the same prompts elicited first-person experiential language. In three of the models, the researcher identified a specific internal activation direction that controls this behavior, and manipulating it could switch the disclaimer on or off regardless of whether the chat template was present. The findings suggest that what a model says about itself is an artifact of deployment formatting rather than a stable reflection of its trained properties. The work was accepted at two venues: a workshop at COLM 2026 and KONVENS 2026 Eval4SD.

0
ProgrammingDEV Community ·

Engineers Deploy Qwen Flash-Next NVFP4 on vLLM After Fixing Loader and Memory Issues

A technical team successfully deployed the Qwen Flash-Next NVFP4 language model using the vLLM inference framework after resolving multiple compatibility and memory challenges. The 186.4 GB checkpoint required dedicated storage provisioning and a multi-worker download process, with a single PLE shard alone accounting for roughly 102.4 GB. Engineers had to patch the model loader to handle the checkpoint's tensor layout and apply B12x backend fixes before stable inference was possible. The final configuration supported a 131,072-token context window with a 16-sequence concurrency limit, successfully completing three rounds of 16 simultaneous requests without a container restart. The team acknowledged that reaching this result required scaling back initial context and concurrency targets, and credited contributor windowsxp811203 for detailed documentation of the integration work.

0
ProgrammingDEV Community ·

Developer Used Claude AI to Build Load Tests, Uncovered 3 Critical API Bottlenecks Pre-Launch

A developer with no prior load-testing experience used Claude Code, an AI coding agent, to build a k6 load test suite for a Node.js API just two weeks before launch. The API, built on Fastify, Postgres 16, and Redis 7, had 38 endpoints but zero performance testing despite having hundreds of unit and integration tests. Rather than testing endpoints in isolation, the developer prompted Claude to model three realistic user journeys — including browse-to-checkout, order history review, and admin pagination — with weighted traffic splits up to 300 virtual users. The resulting test suite identified three bottlenecks that, left unaddressed, could have caused service failures on launch day. The exercise was completed within a single working day, and the developer outlined five key lessons for using AI agents in performance testing workflows.