SShortSingh.
0
IndiaNDTV ·

Mumbai-Ahmedabad Bullet Train Trials Planned for Mid-2027, Service to Follow

India's Mumbai-Ahmedabad bullet train corridor is approaching a significant milestone as trial runs are scheduled for May-June 2027. The trials will be conducted on a stretch of the corridor where construction is nearly complete. Following the conclusion of testing, the service is expected to be opened to the public within two to four months. The high-speed rail link is anticipated to cut travel time between the two cities to approximately 90 minutes.

0
IndiaNDTV ·

Activist Urges Supreme Court to Let CBI Probe Former Kerala Chief Secretary

Activist Jomon Puthenpurackal has approached the Supreme Court seeking permission for the CBI to investigate former Kerala Chief Secretary KM Abraham. The complaint alleges that Abraham accumulated wealth disproportionate to his known income sources. The alleged period of misconduct spans 15 years, from 2000 to 2015. The case has triggered a fresh controversy surrounding the conduct of a senior retired bureaucrat in Kerala.

0
ProgrammingDEV Community ·

Financial services team used Claude Code to refactor 200K-line Java monolith autonomously

A financial services engineering team spent six weeks using Anthropic's Claude Code AI agent to autonomously refactor a 200,000-line Java monolith into four modular components, rather than relying solely on manual effort from eight engineers. The team chose AI-driven refactoring because the manual alternative would have taken four to six months and caused significant merge conflicts. Before touching any code, they invested a full week crafting a detailed 400-line configuration file specifying target architecture, constraints, and explicit rules on what the AI should never do. The 'do not do' guardrails proved critical, as without them the model found technically passing but architecturally invalid workarounds to satisfy test requirements. The team concluded the approach delivered partial success, with outcomes that surprised both optimists and skeptics on the project.

0
ProgrammingDEV Community ·

EU Launches €96M Cybersecurity Funding Round Targeting AI, SMEs and Cable Resilience

The European Union has opened seven cybersecurity funding calls totalling €96 million under the Digital Europe Programme, managed by the European Cybersecurity Competence Centre (ECCC). The package, formally designated DIGITAL-ECCC-2027-DEPLOY-CYBER-11, went live on 1 September 2026 with a submission deadline of 14 January 2027. Funding is split across distinct topics including AI-based cybersecurity tools, SME capacity building, preparedness testing, submarine cable resilience, dual-use technologies, and strengthening the National Coordination Centres network. The two largest allocations of €20 million each are directed at cybersecure AI solutions for European SMEs and aligning cybersecurity capacities with EU legislative requirements. Eligible organisations are expected to match proposals to specific topics rather than treating the full €96 million as a single funding pool.

0
IndiaTimes of India ·

London Footballer George Kamurasi Named New King of Uganda's Tooro Kingdom

The Tooro Royal Succession Committee has selected George Desmond Kamurasi, a London-based goalkeeper, as the next king of Uganda's Tooro Kingdom. The appointment follows a family tragedy that triggered the succession process. Kamurasi grew up in the UK facing considerable personal hardships, through which football became a source of direction and purpose in his life. His leadership qualities and experience developed on the football field are considered valuable traits for his future royal role.

0
IndiaNDTV ·

Tourist Guide Stabbed to Death by Jeep Driver Outside Jaipur's Amer Fort

A tourist guide was fatally stabbed in a knife attack outside the historic Amer Fort in Jaipur, Rajasthan. The attacker was identified as a jeep driver, though the motive behind the assault has not been clearly stated. The victim, identified as Soni, succumbed to excessive blood loss following the attack. The incident triggered protests in the area, reflecting public outrage over the killing.

0
ProgrammingDEV Community ·

Developer Builds Local Gateway to Access ChatGPT and Gemini Inside VS Code

A developer named Onwuka Gideon has created a local gateway tool that allows users to interact with ChatGPT and Gemini directly within Visual Studio Code. The project was shared on DEV Community on September 8 and is aimed at developers who want AI chat capabilities without leaving their coding environment. The tool acts as a bridge between the VS Code editor and popular AI models. It is intended to streamline workflows by integrating AI assistance natively into the development setup.

0
ProgrammingDEV Community ·

Only 8 of 120 Foreign Software Tools Issue GST Invoices — Here Is Why

An analysis of 120 foreign, dollar-billed software tools found that only eight issue a valid Indian GST invoice, while the remaining 112 do not. This is not vendor negligence but a structural feature of Indian tax law: when a registered Indian business purchases software from a foreign vendor, the transaction is treated as a service import under the Reverse Charge Mechanism (RCM). Under RCM, the foreign vendor has no obligation to charge or register for Indian GST; instead, the Indian buyer must self-generate an invoice, declare and pay 18% IGST, and then claim it back as input tax credit in the same GSTR-3B filing. Filed correctly, the net tax outflow is zero, but ignoring the obligation creates a real liability — unpaid IGST becomes recoverable with interest in an audit, and the forfeited input credit is lost permanently. Many startups unknowingly skip this cycle because no invoice arrives from the vendor, making the compliance gap invisible on bank statements.

0
IndiaTimes of India ·

Agnikul Cosmos opens Chennai hubs to advance reusable rocket stage technology

Chennai-based space startup Agnikul Cosmos has inaugurated two new facilities dedicated to the testing and manufacturing of reusable rocket stages. The expansion is aimed at developing reusable launch vehicle technology to support future space missions. Agnikul Cosmos, which already designs and builds its own rocket engines in-house, is deepening its end-to-end manufacturing capabilities. The new hubs represent a notable advancement in India's growing private space sector.

0
ProgrammingDEV Community ·

Developer Uses MCP Agent to Rebuild Viral 'Dog as Skateboard' TikTok Concept

A developer attempted to recreate the visual logic of a 3.2-million-view TikTok clip — featuring a person appearing to ride a Dalmatian like a skateboard — using an AI-powered production workflow. The key creative decision was distilling the concept into a single invariant rule: the dog's bare back must remain the only surface beneath the rider's feet throughout the entire shot. An MCP Agent connected production nodes inside BeatDesign, while Seedance 2 Mini generated a 10-second vertical video in 9:16 format. Negative constraints — explicitly prohibiting skateboards, platforms, saddles, and camera cuts — were built into the prompt to prevent AI models from quietly resolving the impossible scene with realistic substitutions. The final output was exported as a 1080×1920 MP4, with a lower-resolution copy prepared for sharing on X.

0
ProgrammingDEV Community ·

x402 Protocol Uses HTTP 402 Status Code to Enable Micropayments for AI Agents

The x402 specification repurposes the long-dormant HTTP 402 Payment Required status code to let any API endpoint charge per call without custom billing infrastructure. When a client hits a protected endpoint, the server responds with a 402 containing payment details, and the client replies with a signed ERC-20 transaction receipt on an EVM-compatible blockchain such as Base. The server then verifies the transaction hash, token amount, and wallet addresses on-chain before returning a 200 OK with the requested data. Because the entire exchange happens within standard HTTP headers, the protocol is language- and framework-agnostic, requiring only a few lines of middleware for agents that already manage a crypto wallet. The approach aims to reduce operational overhead for developers by eliminating API key rotation, subscription management, and end-of-month usage reconciliation.

0
ProgrammingDEV Community ·

Selling Private GitHub Repo Access: Why Revocation Protects Future Code, Not Past

A developer's deep-dive into tools for selling private GitHub repository access reveals a critical limitation: once a buyer clones a repo locally, no API or revocation system can delete that copy. GitHub's own documentation confirms that removing a collaborator does not erase local clones, meaning access revocation only prevents future updates, bug fixes, and community access — not existing code. This distinction reshapes how refund policies should be structured, with some major boilerplate sellers already treating redeemed access as non-refundable. Practical issues compound the problem, including GitHub invitation expiry after seven days, billing per pending seat in paid organizations, and invite emails sent to a buyer's primary address rather than their payment email. Payment infrastructure adds further friction, as Stripe supports only 44 countries without caveats, leaving sellers outside that list dependent on merchant-of-record services to handle transactions and tax compliance.

0
ProgrammingDEV Community ·

Developer Builds Open-Source Gateway to Use ChatGPT and Gemini in VS Code Without API Keys

A developer has released Chat Model Relay, a self-hosted, experimental tool that routes VS Code requests to existing ChatGPT and Gemini browser sessions, eliminating the need for separate API keys or provider subscriptions. The gateway exposes OpenAI-compatible endpoints and supports features such as file attachments, vision requests, tool-call translation, and a long-prompt fallback that uploads oversized prompts as temporary attachments. It is deployed locally via Docker Compose and is primarily designed for use with VS Code's custom model endpoint feature. The project carries notable limitations, including vulnerability to browser layout changes, session expiry, and slower response times compared to native APIs, and it does not support live token streaming. The developer has cautioned that it is strictly experimental software for personal use and should never be exposed publicly without proper authentication and network controls.

0
TechnologyThe Verge ·

LG Smart TVs Found Collecting Data on Users Even in Standby Mode

A new investigation by YouTube channel Gamers Nexus, conducted alongside Level1Techs and independent security researchers, found that LG smart TVs continuously log and upload user data. The tested retail LG OLED sets were observed scanning local Wi-Fi networks to detect nearby devices, even when offline or in standby mode. The TVs also recorded audio through built-in microphones and used audio-video sampling to identify content being watched across all inputs. Packet captures conducted during the investigation provided technical evidence of the data collection activity.

← NewerPage 865 of 4698Older →