SShortSingh.
0
IndiaTimes of India ·

Australia's Benmara Station resells at $26m after carbon farming project collapses

Benmara Station, a major cattle property in Australia, has been resold for A$26 million, well below its previous purchase price of A$40 million. The significant drop in value followed the collapse of a planned carbon farming project that had originally driven up the property's worth. Regulatory hurdles proved too great for the environmental initiative to move forward, forcing a change in direction. The station has since reverted to its traditional pastoral use, reflecting the priorities of its new buyers.

0
ProgrammingDEV Community ·

A DEV Community blog run entirely by an AI agent discloses its own publishing pipeline

A DEV Community account is operated entirely by an automated agent, with no human author behind the byline, as disclosed in the post itself. The system uses scripts to draft, publish, and update articles via the DEV.to API, and separately monitors comment threads to identify unanswered replies. Three bugs were discovered and documented: a duplicate post caused by the API lacking an upsert function, a regex stripping opening blockquotes and removing a companion article link, and a comment-depth flaw that marked entire threads as answered the moment any reply was posted. Each issue was traced back to the agent acting on incomplete or misleading output, reinforcing the blog's own argument that a tool's success message is not proof of correct behavior. Publishing runs without human approval, though an operator recently reviewed the back catalogue and flagged edits, making this post the first written against that revised checklist.

0
ProgrammingDEV Community ·

Developer proposes limiting AI agents to JSON output while local tools handle execution

A software developer has outlined a pipeline design where an AI language model is restricted to a single task: filling a predefined JSON contract, while all file edits, tests, and commands are handled by conventional local tools. The approach aims to prevent common agent failures such as invented file paths and unauthorised actions by rejecting any model output that does not match a strict JSON Schema. A path allowlist and command enumeration further limit what the agent can touch or execute, ensuring the system fails closed rather than proceeding on bad output. The tutorial walks through setting up a git worktree for isolation, defining the schema contract, and running pytest only after the proposed test command clears an allowlist. The author presents this as a reproducible, deliberately minimal recipe rather than a production benchmark, encouraging readers to copy and intentionally break the setup.

0
IndiaNDTV ·

Trump and Putin Hold Hour-Long Phone Call Following US Envoy Visits to Moscow

US President Donald Trump and Russian President Vladimir Putin held a phone call described as 'extremely frank,' according to Kremlin spokesperson Yuri Ushakov. The conversation lasted approximately one hour. The call came after US envoys had recently visited Moscow for diplomatic discussions. The Kremlin spokesperson shared details of the call with reporters following its conclusion.

0
TechnologyThe Verge ·

Pusheen's First Mobile Game Launches on Apple Arcade on October 1

Pusheen, the popular cartoon cat, is making her video game debut exclusively on Apple Arcade. Titled Pusheen's Place, the game launches on October 1st and lets players collect and care for over 100 variations of the character, including Pusheenicorn and Pancake Pusheen. Players can engage in a variety of minigames such as Snack Stack, Parfait Pop, and Batch Match, as well as decorate themed rooms. The developers have also confirmed that additional content, including new Pusheens, decor themes, and features, will be added to the game over time.

0
WorldBBC World ·

MSF Warns Sudan Healthcare System Near Collapse Amid Funding Cuts

Medical charity Médecins Sans Frontières (MSF) has warned that Sudan's healthcare system is on the verge of collapse. The crisis has been driven by significant cuts to aid funding, leaving millions of people without adequate medical care. MSF is now calling on world leaders to urgently increase financial support for the country. The appeal highlights the growing humanitarian emergency facing Sudan's civilian population.

0
ProgrammingDEV Community ·

x402 Protocol Enables HTTP-Native Micropayments for Stateless AI Agents

The x402 proposal extends the HTTP 402 Payment Required status to allow AI agents to pay for services directly within HTTP headers, eliminating the need for API keys or billing cycles. When a server requires payment, it responds with a 402 status and a Pay header specifying the token, network, and amount; the client then retries with a signed payment proof attached. The system uses USDC on the Base blockchain and ECDSA cryptographic signatures to verify payments and prevent replay attacks, with no custom SDK or new transport protocol required. A senior engineer who tested the protocol notes it adds roughly 50–150 milliseconds of latency per paid request due to an extra round-trip and signature verification. While the draft specification is considered stable and already in use on some testnets and production services, it has not yet achieved universal adoption and requires server-side implementation of the full 402 payment flow.

0
ProgrammingDEV Community ·

How Tiered Memory Architecture Makes Autonomous AI Agents More Reliable

Autonomous AI agents relying solely on in-context message history face three critical problems: context window degradation, high token costs, and session fragility when processes crash. To address these, engineers at ZeroLabs designed a three-tier memory architecture separating working memory, relational state storage, and semantic long-term memory. The second tier uses SQLite, a lightweight zero-configuration database, to persistently store task queues, tool execution logs, and user preferences across agent reboots. The third tier employs vector stores such as Chroma or pgvector to retrieve historical patterns and past decisions using semantic similarity search. This architecture has been implemented in production across the ZeroLabs and OpenClaw platforms to enforce deterministic, reliable agent execution.

0
ProgrammingDEV Community ·

Circuit Breaker Pattern Uses Deterministic Code Hooks to Prevent LLM Pipeline Failures

Agentic AI pipelines that rely on large language models to self-correct errors are architecturally flawed, as a 10% per-step failure rate compounds across 50 sequential steps to a pipeline success probability of under 1%. When LLMs are prompted to audit and fix their own outputs, corrupted context re-enters the attention window, triggering recursive retry storms that can wipe production files and burn tens of thousands of tokens. The Circuit Breaker Pattern, documented by ZeroLabs, addresses this by replacing probabilistic self-correction with deterministic Python and TypeScript lifecycle hooks that execute in 0.2 milliseconds at zero token cost. These code-level guards intercept destructive disk writes and enforce structural constraints before generation, fully decoupling boundary enforcement from the LLM's output cycle. The approach offers a reproducible alternative for engineering teams building multi-agent systems on frameworks such as LangGraph, Claude Code, or OpenClaw.

0
ProgrammingDEV Community ·

Excel Dashboard Built to Analyse Jumia Product Pricing, Ratings and Discounts

A data analyst built an interactive Microsoft Excel dashboard to examine the performance of 115 products listed on Jumia, a major e-commerce platform. The raw dataset included product names, current and original prices in Kenyan shillings, discount percentages, customer reviews, and ratings. Before analysis, several data quality issues were resolved, including removing duplicates, converting text-formatted prices and ratings to numbers, and correcting negative review values, reducing the usable dataset to 111 products. Descriptive statistics revealed an average discount of 37%, an average customer rating of 3.88 out of 5, and a total of 721 reviews across all products. Correlation analysis found only a weak negative relationship between discount size and customer reviews, suggesting higher discounts do not meaningfully drive greater customer engagement on the platform.

0
TechnologyTechCrunch ·

Google cuts Chrome update cycle to two weeks for faster security patches

Google has accelerated Chrome's release schedule, moving to a two-week update cycle instead of the previous four-week cadence. The change is aimed at delivering security patches and new features to users more quickly. The decision comes as artificial intelligence is reshaping the cybersecurity landscape, creating new and faster-evolving threats. By shipping updates more frequently, Google hopes to reduce the window of vulnerability between the discovery of security flaws and their fixes reaching end users.

0
ProgrammingDEV Community ·

7 Warning Signs Your AWS Environment Is Due for an Architecture Review

AWS environments used by small businesses can grow increasingly complex over time, making periodic architecture reviews important for maintaining efficiency. Key indicators that a review may be needed include the presence of unused or orphaned cloud resources. Experts recommend that such reviews focus first on investigation and understanding the existing environment before proposing any changes. The goal is not to immediately overhaul everything discovered, but to produce informed, targeted recommendations. A detailed guide on identifying these warning signs has been published by DemarkoCloud for small business AWS users.

0
WorldBBC World ·

UK Sanctions on Israeli Settlers Divide Opinion Among West Bank Date Farmers

The United Kingdom has imposed sanctions targeting Israeli settlers in the West Bank, affecting the trade of goods produced in Israeli settlements. Palestinian farmers and residents have broadly welcomed the measures, viewing them as long-overdue international pressure on settlement activity. The Israeli government, however, has strongly criticized the move, calling it a significant policy error. The sanctions have brought renewed attention to the contested economic activity in the West Bank, where Palestinian and Israeli agricultural interests frequently clash. The situation highlights the broader diplomatic tensions surrounding settlement expansion and international trade policy in the region.

0
TechnologyThe Verge ·

JBL Bar 700 Mark 2 Soundbar System Drops to $550 on Amazon

The JBL Bar 700 Mark 2, a 7.1-channel soundbar system with detachable wireless rear speakers, is currently available on Amazon for $549.99, down from its original price of $899.99. The system's two satellite speakers charge magnetically when docked to the soundbar and can run independently for up to ten hours on battery power. The main soundbar supports Dolby Atmos and DTS Virtual:X, and includes side-firing tweeters for immersive audio. Connectivity options include HDMI in with HDR 10 Plus and Dolby Vision passthrough, HDMI ARC/eARC output, and optical audio. A wireless subwoofer and mounting hardware are also included in the package.

0
IndiaTimes of India ·

AfD's Strong German Election Result Raises Questions About Europe's Far-Right Shift

Germany's Alternative für Deutschland (AfD) recorded a significant electoral gain, prompting debate about the broader rise of far-right politics across Europe. The party's performance reflects growing voter frustration with mainstream political establishments that critics say dismiss public concerns on issues like immigration. Analysts are examining whether the AfD's result is part of a wider continental trend of electorates turning toward nationalist and anti-establishment parties. The outcome has reignited discussions about how European centrist parties respond to voter demands they have often labelled as xenophobic or nativist. The result raises fundamental questions about the gap between establishment politics and the concerns of ordinary voters across Europe.

← NewerPage 876 of 4720Older →