SShortSingh.
Back to feed

Unraveling the mysteries of habit formation

0
·3 views

Article URL: https://www.kyoto-u.ac.jp/en/research-news/2026-07-28 Comments URL: https://news.ycombinator.com/item?id=49139383 Points: 7 # 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 ·

Developer spends 10 hours tracing AWS timeout to a self-inflicted credentials bug

Developer Themis Lex deployed an AI-powered PDF assessment tool called Themis Lex to AWS Amplify for the Women in AI Accelerator Spring 2026 Build Challenge, only to encounter a 28-second timeout error immediately after launch. The app, which uses Claude via AWS Bedrock to generate role-specific AI guidance for court clerks, appeared to work perfectly in local development. The root cause turned out to be a hardcoded credentials object in the AWS SDK client that passed empty strings instead of omitting the field, effectively blocking the SDK's automatic credential provider chain. Because the failure occurred before any application logic ran, the try/catch block logged nothing, making the bug resemble a platform timeout rather than a code error. After ten and a half hours of debugging and a series of fixes including switching to response streaming and a lighter AI model, the app was successfully shipped.

0
ProgrammingDEV Community ·

Developers Can Now Mask Sensitive User Data in the Browser Using Transformers.js

A tutorial published on DEV Community demonstrates how to build a client-side privacy tool that detects and redacts personally identifiable information before it reaches any server. The approach uses Transformers.js and WebAssembly to run a BERT-based Named Entity Recognition model directly inside the user's browser. By processing data at the edge, sensitive details such as names, locations, and health identifiers are masked locally, meaning raw PII never leaves the device. The method is positioned as a practical compliance aid for developers building health-tech or fintech applications subject to regulations like GDPR and HIPAA. WebAssembly enables near-native performance for the in-browser model, keeping the user interface responsive throughout the masking process.

0
ProgrammingDEV Community ·

Kimi K3, Claude Opus 5, and Microsoft MAI Mark a Shift Toward Cost-Efficient AI

On July 28, 2026, three major AI announcements from Moonshot AI, Anthropic, and Microsoft collectively signaled a strategic shift in the industry toward open and cost-efficient models. Moonshot AI released the full weights of Kimi K3, a 2.8-trillion-parameter model on HuggingFace, making it the first 3T-class model publicly available and competitive with top closed-source alternatives. Anthropic launched Claude Opus 5, priced the same as its predecessor but delivering more than double the coding benchmark performance, positioning it as a practical daily-use model for most knowledge work. Microsoft disclosed that its in-house MAI model family has fully replaced OpenAI models across Bing, OneDrive, and PowerPoint, reporting GPU cost reductions of up to 89%. Together, the announcements suggest the AI industry is moving away from a race for raw capability toward one focused on deployment efficiency and reduced vendor dependence.

0
ProgrammingDEV Community ·

Smart diff curation cuts 136 Cloudflare API removal alerts down to 17 real breaks

A structural diff of two Cloudflare OpenAPI schema snapshots taken between March and July 2026 flagged 136 endpoint path removals, the most alarming type of API change. However, a curation layer with machine evidence found that 119 of those removals were not genuine breaks — 107 resulted from concrete routes collapsing into templated equivalents, 11 from parameter renames that leave the wire-level URL unchanged, and 1 from a route that gained methods rather than losing them. Only 17 removals were confirmed as truly client-breaking, where a runtime URL or HTTP method disappeared with no surviving successor. The findings highlight how raw spec diffs can massively over-report breaking changes if refactoring patterns are not accounted for. The audit system is designed to fail loudly if any exclusion lacks machine evidence, ensuring no real break is silently dropped.