SShortSingh.
0
SportsESPNcricinfo ·

Australia's Molineux eyes pressure game against must-win India in Women's T20 WC

Australia spinner Beth Molineux has expressed her team's intent to intensify pressure on India in their upcoming Women's T20 World Cup match. India are in a must-win situation, needing a victory to keep their semi-final qualification hopes alive. Australia, by contrast, have already secured their spot in the last four, giving them the freedom to play without pressure. Molineux indicated that Australia plan to exploit India's high-stakes position by ramping up the pressure during the contest.

0
ProgrammingDEV Community ·

Long CLAUDE.md files cause Claude Code to ignore rules, experts warn

Developers using Claude Code often find that adding too many rules to their CLAUDE.md file causes the AI to silently ignore some of them. Research suggests frontier models can reliably follow only around 150–200 instructions at once, meaning rule adherence degrades as more lines are added. Claude Code's own system prompt consumes part of that budget before any project-specific rules are even read, shrinking the effective limit further. Experts recommend treating CLAUDE.md as a strict attention budget rather than a wishlist, keeping only rules critical enough to bet on. For non-negotiable actions — such as never committing secrets — deterministic shell hooks are advised over prose instructions, as hooks fire automatically every time regardless of model behavior.

0
ProgrammingDEV Community ·

Kiponos Java SDK Lets Ops Tune Saga Timeouts Live Without Redeployment

Managing distributed checkout sagas across inventory, payment, and shipping services traditionally requires hardcoded timeouts scattered across multiple Spring Boot configuration files or Helm deployments. Kiponos.io addresses this by providing a shared, hierarchical config tree where every saga participant reads step timeouts, retry budgets, and compensation triggers from local in-memory cache. When operators update a value in the Kiponos dashboard, WebSocket deltas propagate the change to all connected JVMs instantly, eliminating the need to roll out new deployments across services. Each service reads only its relevant subtree locally, keeping the saga executor hot path fast while remaining responsive to live operational changes. This approach allows NOC and risk teams to adjust saga behavior — such as extending a payment timeout during a card processor slowdown — in real time without waiting for a deployment cycle.

0
ProgrammingDEV Community ·

Why letting AI agents publish to the web requires strict access controls

A developer working on AI agent workflows argues that giving an autonomous agent the ability to publish documents to the public internet introduces serious risks around access control, data exposure, and accountability. Unlike a human deliberately hitting publish, an agent may expose unfinished drafts, leave links live indefinitely, or leak sensitive information as a side effect of a larger automated task. The author outlines five key design principles for safer agent-driven publishing: private-by-default links, instant revocability, built-in link expiry, per-viewer analytics, and idempotent URL updates. Implementing these controls through a structured tool layer — such as via the Model Context Protocol — keeps policy enforcement separate from the AI model's decision-making. The author recommends that flipping a link to fully public always remain a deliberate, human-reviewable step rather than something the agent can do autonomously.

0
ProgrammingDEV Community ·

Multi-Agent AI Explained: How Coordinated AI Systems Outperform Solo Agents

Developer Maneshwar, creator of the open-source AI code review tool git-lrc, has published a guide explaining how multi-agent AI systems work and why they outperform single-agent setups. A single AI agent is defined as an autonomous system that designs its own workflow using available tools, powered by a large language model, but it faces clear limitations when handling complex, multi-step tasks simultaneously. Multi-agent systems address this by allowing multiple autonomous agents to cooperate within structured arrangements, ranging from flat peer networks to hierarchical supervisor models. Key advantages include flexibility, scalability, and specialization, where individual agents can be optimized for specific tasks such as research, computation, or web scraping. Notably, agents that share feedback and knowledge with one another tend to synthesize information at a significantly higher level than any single agent working alone.

0
Crypto & Web3CoinDesk ·

Bitcoin Falls With Gold and Silver as Fed Hawkishness Unwinds Hedge Trade

Bitcoin is declining alongside gold and silver as a broader market selloff hits traditional safe-haven assets. The cryptocurrency had long been grouped with precious metals as a hedge against a weakening US dollar. A more hawkish stance from the Federal Reserve has prompted investors to unwind that trade. As gold and silver retreat under pressure from the Fed's signals, bitcoin is following suit, undermining its perceived role as a dollar hedge.

0
IndiaNDTV ·

Tripura Man Kills Two Children After Domestic Dispute With Wife

A man in Tripura killed two of his children following a fight with his wife. The incident occurred at the family's residence in the state. The wife managed to flee the house along with one of their children, escaping the violence. Authorities have been informed and the case is under investigation. The motive appears to be linked to a domestic altercation between the couple.

0
IndiaTimes of India ·

Allahabad HC: Survivor's testimony outweighs hymen evidence in rape cases

The Allahabad High Court has upheld a rape conviction dating back to 1983, reinforcing that a survivor's credible testimony holds greater legal weight than medical findings. Justice Santosh Rai clarified that rape is a legal term, not a medical one, and that the condition of a hymen cannot automatically benefit the accused. The court ruled that a torn hymen alone is insufficient grounds to cast doubt on a survivor's account. In its ruling, the court also revised the original sentence, imposing a fine and ordering the convicted individual to surrender.

0
ProgrammingDEV Community ·

QuadBrain-Nexus: Open-Source Physics-Informed AI Targets Edge Anomaly Detection

A developer has released QuadBrain-Nexus, an open-source symbolic pattern learning framework designed to overcome key limitations of traditional machine learning in industrial edge environments. Unlike standard ML models, it embeds physical laws—such as fluid dynamics principles derived from Reynolds number theory—directly into its detection logic, removing the need for large training datasets. The system uses a four-engine concurrent architecture covering frequency analysis, spatial anomaly tracking, data ingestion, and Bayesian decision-making to deliver high-certainty alerts with minimal false positives. Built on vectorized math modules and native multiprocessing, it achieves sub-millisecond processing on resource-constrained hardware like NVIDIA Jetson nodes while bypassing Python's Global Interpreter Lock. The framework is designed to be hardware-agnostic and targets critical production systems such as fluid processing, robotics, and chemical distribution networks.

0
ProgrammingDEV Community ·

Dev Builds Submissions Page and Fixes Navbar for Open-Source App Ekehi

In the week ending 27 June 2026, a frontend developer on the Ekehi project — built with React and TanStack Router — reviewed and helped merge four teammates' pull requests covering detail pages for guides, training, templates, and a contributors layout. The developer then shipped their own feature, issue #148, a three-section Submissions page with a full data layer, client-side validation, and six automated tests. The form follows existing project conventions including Zod types, a shared API service, and a mutation hook that posts new opportunities to the backend as pending for review. A navbar visibility bug was also fixed, making the navigation bar theme-aware so it renders correctly on all pages beyond the home page, not just over the dark hero image. An earlier bug causing contributor card SVGs to disappear in production builds was resolved as well.

0
IndiaNDTV ·

CBI Attaches Rs 53 Crore Assets of Former Assam Police DIG in Graft Case

The Central Bureau of Investigation (CBI) has attached assets worth Rs 53 crore belonging to former Assam Police Deputy Inspector General (DIG) Prashanta Kumar Dutta. The action is part of an ongoing investigation into a disproportionate assets case against the retired senior officer. The attachment marks a significant step in the CBI's crackdown on alleged corruption within the ranks of law enforcement. Disproportionate assets cases typically involve public officials found to be in possession of wealth exceeding their known legitimate sources of income.

0
ProgrammingDEV Community ·

CarvePHP v0.1.2-alpha helps Laravel developers map monolith service boundaries

Developer Muhammad Waleed Khalil has released CarvePHP v0.1.2-alpha, an open-source Laravel package designed to help teams identify potential service boundaries within large monolithic applications. The tool combines static analysis and optional runtime tracing to map dependencies across routes, controllers, models, migrations, and database tables. It generates Markdown or JSON reports that highlight candidate boundaries, coupling signals, and extraction risks, but does not automate service splitting or database migration. CarvePHP is compatible with PHP 8.2+, Laravel 11–13, and Composer 2.x, and can be installed as a dev dependency via Composer. The project is in early alpha and the developer is actively seeking feedback from Laravel engineers experienced with large monoliths.

0
ProgrammingHacker News ·

How the Videx VideoTerm Card Transformed the Apple II Into a Business Machine

A recent article on Wiseowl.com examines the Videx VideoTerm, an expansion card that played a pivotal role in making the Apple II a credible business computer. The card addressed a major limitation of the Apple II, which originally lacked an 80-column display mode essential for professional software like word processors and spreadsheets. By adding 80-column text support, the VideoTerm opened the door for serious business applications on the platform. The piece is part of a series exploring FPGA recreations of classic Apple II hardware, highlighting renewed hobbyist interest in vintage computing.

0
ProgrammingDEV Community ·

Why Replacing Engineers With AI Tokens Is a Flawed Financial Argument

A cost comparison circulating in corporate boardrooms pits the $250K fully-loaded annual cost of a senior US software engineer against roughly $20K in AI model token usage, making automation appear overwhelmingly cheaper. However, the analysis is misleading because the two figures measure fundamentally different things — one buys a complete professional, the other buys a portion of coding output. Writing code accounts for only 30–50% of an engineer's actual role, and AI agents currently cover an estimated 15–35% of the full job when factoring in non-coding responsibilities. AI-generated code still requires senior human review, consuming an estimated 0.3–0.5 of an engineer's time and adding $75K–$125K in human costs back into the equation. A more honest accounting shows AI tooling delivers a real but modest productivity gain of 15–35%, not a wholesale replacement of engineering headcount.

0
ProgrammingDEV Community ·

Developer Builds Self-Healing SEO System That Auto-Fixes Broken Links in Real Time

A solo developer has built a self-healing SEO system embedded directly into a website's codebase, designed to detect and fix technical issues automatically rather than waiting for periodic audit reports. The system runs a continuous control loop monitoring signals such as broken links, Core Web Vitals, schema validity, and rankings, attempting automated fixes before any ranking damage occurs. A key feature automatically converts recurring 404 errors into permanent 301 redirects by matching dead URLs against known slug history and applying fixes above a set confidence threshold. Unlike most SEO tools, which are third-party SaaS products layered on top of a site, this approach keeps all healing logic within the developer's own repository. The developer offers the monitoring as an optional managed subscription, but emphasizes that the underlying code remains in the client's codebase regardless.

0
ProgrammingDEV Community ·

Rust gains dedicated ErrorKind::TooManyOpenFiles variant for I/O error handling

A new variant, TooManyOpenFiles, has been added to Rust's io::ErrorKind enum via PR #158326, giving developers a clean, platform-agnostic way to handle file descriptor exhaustion errors. Previously, both the per-process EMFILE and system-wide ENFILE errno codes were decoded into the generic Uncategorized variant, forcing developers to inspect raw OS error codes directly. The change maps the relevant Unix, WASI, and Windows error codes to the new variant, enabling straightforward pattern matching on error kind alone. The variant is currently unstable and must be enabled with the feature flag io_error_too_many_open_files. This marks the contributor's second merged change to Rust's standard library I/O layer, continuing a focus on improving low-level reliability.

0
IndiaNDTV ·

Naga, Meitei Groups Demand Action After Kuki Body Apologises for 6 Hostage Deaths

Civil society groups in Manipur, including the United Naga Council (UNC) and the Meitei Alliance, have demanded swift action following an apology by the Kuki Zo Council (KZC) over the killing of six Naga civilians. KZC chairman Henlienthang Thanglet was captured on camera making remarks about the deaths of the six hostages. The UNC and Meitei Alliance expressed outrage and called on authorities to hold those responsible accountable. The incident has further heightened ethnic tensions in the conflict-ridden state of Manipur.

0
IndiaNDTV ·

Explosion and Gunfire in Karachi Kill 3 Army Rangers, Two Civilians Hurt

An explosion followed by gunfire erupted in Karachi, Pakistan, leaving at least three Army Rangers dead, according to local media reports. Two civilians were injured in the incident and transported to a nearby hospital. The information on the civilian casualties was confirmed by AFP, citing a statement from the Edhi Foundation, a Pakistani emergency relief organization. The exact location within Karachi and the identities of those responsible have not yet been officially confirmed. Authorities have not released an immediate statement detailing the circumstances or motive behind the attack.

0
IndiaTimes of India ·

Venezuela Twin Earthquakes Kill 1,430; Millions Without Food and Water

Twin earthquakes in Venezuela have killed at least 1,430 people, leaving thousands more injured and homeless. The government has reported hundreds missing, though opposition sources place the number of unaccounted individuals at over 54,000. The La Guaira region has suffered particularly severe damage from the disaster. International aid has begun arriving as rescue operations remain ongoing across affected areas. While electricity is gradually being restored in some parts of the country, access to food and clean water remains critically limited for many survivors.

← NewerPage 135 of 183Older →