SShortSingh.
0
ProgrammingDEV Community ·

Developer warns AI agents can silently post to wrong accounts with no error raised

A developer building an AI-powered social media publishing tool discovered that once an agent has write access, failures become nearly invisible rather than loudly obvious. The agent posted content to the wrong social account because the language model generated a plausible-looking but incorrect platform ID, and the API executed the request without complaint. Similar silent failures emerged with timezone mismatches and media-less posts queued for platforms like Instagram that require attachments, with errors only surfacing at publish time. To reduce risk, the developer now enforces a rule requiring agents to call a list_connections function first and copy platform IDs verbatim, never guessing them. The post also highlights MCP tool annotations such as destructiveHint as a low-effort way for servers to signal to clients which actions warrant a confirmation step before execution.

0
ProgrammingDEV Community ·

Open-source tool makes proprietary mobile SDKs optional at build time

Integrating vendor-supplied binary SDKs into iOS and Android apps poses persistent challenges, including version control conflicts, CI credential issues, and build failures when binaries are absent. On iOS, the gap between CocoaPods and Swift Package Manager means a missing .xcframework can silently break the entire SPM dependency graph, not just the affected target. On Android, placing a local .aar inside a library module causes AGP to reject the build, as transitive dependencies are stripped without warning. A developer has published an open-source generator called binary-sdk-bridge that produces an SPM package and a Gradle module wrapping the vendor binary, keeping it out of version control and making it optional at build time. The tool also addresses a subtle SwiftPM manifest-caching bug where Package.swift filesystem checks can produce false green builds after the binary is removed.

0
IndiaNDTV ·

Why Fanta in UK Has Far Less Sugar Than the Version Sold in India

A can of Fanta sold in the United Kingdom contains only 63 calories, while the same drink sold in India has roughly three times the sugar content. This stark difference has drawn attention from nutrition experts, prompting debate about varying product standards across markets. The UK introduced a sugar tax, formally known as the Soft Drinks Industry Levy, which incentivised beverage companies to significantly reduce sugar in their products. No equivalent policy exists in India, meaning manufacturers face little financial pressure to reformulate high-sugar drinks. Experts argue that such regulatory differences directly explain why the same branded product can have vastly different nutritional profiles depending on the country of sale.

0
IndiaTimes of India ·

Apollo 15's 'Genesis Rock' Offers Window Into Moon's 4-Billion-Year-Old Crust

Apollo 15 astronauts discovered an unusually bright rock near Spur Crater on the lunar surface. The sample, called the Genesis Rock, is an anorthosite estimated to be approximately four billion years old. Scientists consider it a remnant of the Moon's original primordial crust. Its mineral composition provides important insights into the early geological history of the Moon. Researchers continue to study the ancient sample to better understand how the Moon formed and evolved.

0
ProgrammingHacker News ·

Netherlands Begins Cementing Shut Natural Gas Wells

The Netherlands is undertaking a process of permanently sealing natural gas wells with cement. The move appears related to the country's ongoing efforts to wind down its natural gas extraction operations. The Groningen gas field, one of Europe's largest, has been a central focus of Dutch energy policy changes in recent years, partly due to earthquakes linked to extraction. Further details about the scale, timeline, and specific locations of the well-sealing operations were not available from the provided source text.

0
ProgrammingDEV Community ·

Vincent: Open-Source Orchestrator Lets Developers Manage Multiple AI Coding Agents Locally

A developer has released Vincent, an open-source, MIT-licensed, local-first orchestrator designed to manage multiple AI coding agents from a single control plane. The tool sits above existing agents — including Claude Code, OpenAI Codex, and Cursor Agent — using their native CLIs without storing credentials or replacing them. Vincent uses YAML-based workflows that combine agentic steps with deterministic operations such as shell commands, tests, and verification checks, reducing unnecessary AI token usage. Each task runs in an isolated Git worktree with its own branch and execution state, preventing conflicts when multiple agents work on the same repository. The project also supports human approval gates and intervention points, giving developers oversight over otherwise unattended agent workloads.

0
IndiaNDTV ·

Indian-Origin US Couple Missing After Nepal Flash Floods During Kailash Yatra

An Indian-origin American couple, Deepak and Madhu Ahuja, have gone missing following flash floods in Nepal. The couple was last seen in Saga, Tibet, where they had met with Sadhguru as part of a Kailash Yatra group. After the meeting, they departed southward toward the Nepalese border before losing contact. Authorities are currently working to locate the missing couple amid the flood-affected region.

0
IndiaTimes of India ·

Rescued Platypuses Readapt Swiftly After Drought-Driven Relocation, Study Finds

Platypuses that were removed from their habitats due to severe drought conditions were successfully reintroduced after a five-month recovery period. Researchers monitored the animals over an 18-month study to observe how they reintegrated into the wild. The platypuses demonstrated rapid adaptation, quickly resuming their natural movement patterns and returning to familiar foraging areas. The findings highlight the effectiveness of targeted conservation interventions in protecting aquatic wildlife during environmental crises.

0
ProgrammingDEV Community ·

Road511 Links Real-Time Weather Data to Traffic Incidents for Smarter Dispatch

Road511, a traffic data platform, has developed a system that automatically attaches roadside weather conditions to incident reports the moment they appear, giving dispatchers immediate environmental context. The platform draws on 4,082 active roadside weather stations across 37 U.S. states and Canadian provinces, capturing data such as road surface state, visibility, wind speed, and precipitation type. Previously, dispatchers had to mentally cross-reference separate incident and weather panels under time pressure, a process prone to error especially during overnight or severe-weather shifts. When a new incident is logged, Road511 identifies the nearest active weather station within 50 km and permanently links its most recent reading to the event record. The goal is to help operators distinguish between a minor, wait-and-see incident and one where dangerous conditions remain active and may cause further crashes nearby.

0
ProgrammingDEV Community ·

Docker port conflict silently split one app's database traffic across two PostgreSQL instances

A developer running a FastAPI app inside Docker discovered that their app and pgAdmin were each connecting to a different PostgreSQL database, despite both appearing to use localhost:5432. The app communicated with its containerised PostgreSQL directly over Docker's internal network using the service name, never touching the host machine's ports. Meanwhile, pgAdmin — running on Windows outside Docker — was quietly connecting to a forgotten PostgreSQL installation that had claimed port 5432 as a Windows background service at boot. The conflict was confirmed using netstat to identify which process owned the port, and resolved by remapping the container's published port to 5433 on the host side. Once pgAdmin was pointed at localhost:5433, the correct containerised database with all its tables appeared immediately, while the FastAPI app required no changes at all.

0
IndiaTimes of India ·

Moody's Chief Economist Flags US Debt Crisis as Deficit Hits $2 Trillion

Mark Zandi, chief economist at Moody's Analytics, has warned of a looming economic crisis in the United States. The country's debt-to-GDP ratio has surpassed 100%, with national debt exceeding $40 trillion and an annual budget deficit of $2 trillion. Investor confidence is weakening amid these mounting fiscal pressures. Rising interest rates and instability in the bond market are further deepening concerns about the country's financial outlook.

0
ProgrammingDEV Community ·

Developer runs browser automation in disposable VMs to isolate security and kernel conflicts

A developer built a browser automation system that runs inside disposable virtual machines launched on demand and destroyed after each job, hosted on a Raspberry Pi rather than a GPU machine to avoid competing for memory. The VM approach was originally motivated by a kernel page-size mismatch between Chromium's 4 KB expectation and the Pi's 16 KB kernel, since patching the host kernel broke Ethernet and took down the local DNS. Beyond the technical fix, the VM boundary also provides a security layer, containing any browser-level exploit within the guest and preventing it from affecting the host system. However, since NAT alone does not block a compromised guest from reaching the local network, a host-side firewall rule tied to the guest process's user ID is used to deny its traffic access to LAN address ranges. Separate VM profiles are maintained for anonymous and authenticated browsing sessions to avoid triggering session-security heuristics that flag accounts alternating between a home IP and a VPN exit.

0
ProgrammingDEV Community ·

Next.js Patches Two Critical Security Flaws in Versions 15.5.24 and 16.3.3

The Next.js team released security patches in August 2026 addressing two critical vulnerabilities affecting a wide range of versions. CVE-2026-75604 targets Next.js applications hosted on Windows filesystems, while a separate flaw involves remote code execution through malicious AVIF images processed via Next.js image optimization. Developers are advised to upgrade to version 15.5.24 or 16.3.3 depending on their release branch and verify the patched version is actually running in production, not just updated in package.json. A post-upgrade checklist includes running production builds, executing existing tests, and manually testing critical user flows such as login, uploads, and image-heavy pages. A CI script using the semver package is also recommended to automatically block deployments running vulnerable Next.js versions.

0
IndiaNDTV ·

Madhya Pradesh Maps 50 Snake Species and 16 High-Risk Bite Zones

Madhya Pradesh is home to approximately 50 recorded snake species, according to an ongoing census effort in the state. Of these, nine species are venomous, including the four medically significant snakes known as the 'Big Four.' Authorities have identified 16 hotspot zones where snakebite incidents are most frequently reported. The initiative aims to systematically map the distribution of the state's most dangerous reptiles across its territory.

← NewerPage 435 of 3638Older →