SShortSingh.
0
IndiaTimes of India ·

Dolly Parton, legendary country singer and songwriter, dies at 80

Born on January 19, 1946, in Tennessee, Parton grew up in a poor family and was one of 12 children. She began writing songs when she was about six years old. Her first known song, "Little Tiny Tasseltop", was about a corncob doll made with corn-silk hair. Parton was married to Carl Dean from 1966 until his death in 2025. He generally stayed away from the public spotlight.

0
ProgrammingDEV Community ·

Trusted Computing Group Sets TPM Standards for Post-Quantum Cryptography Era

The Trusted Computing Group has released new technical requirements to help organizations assess whether their Trusted Platform Modules are ready for post-quantum cryptography threats. The framework is built around the PC Client Platform TPM Profile 1.07, which serves as the minimum benchmark for quantum-safe hardware readiness. Two formal designations have been introduced — PQC-ready TPM for modules that already meet the 1.07 profile, and PQC-upgradable TPM for hardware capable of achieving compliance through future firmware updates. TCG president Joe Pennisi stressed that true quantum resilience requires a hardware-anchored root of trust, not merely swapping cryptographic algorithms. The move aims to eliminate vague vendor claims and bring standardized accountability to long-term security planning, especially as data secured today may need protection for decades to come.

0
ScienceWIRED ·

US Records First Two Measles Deaths of 2025 Amid Falling Vaccination Rates

The United States has recorded its first two measles-related deaths of the year, marking a concerning milestone in a country that had largely controlled the disease through vaccination. The fatalities come against a backdrop of declining immunization rates across the country. President Donald Trump has added to the controversy by calling for the combined MMR vaccine to be split into separate doses. Public health experts have long warned that reduced vaccine uptake raises the risk of measles outbreaks and associated deaths. The developments have intensified debate over vaccine policy and public health messaging in the US.

0
TechnologyThe Verge ·

Microsoft launches limited-edition translucent green Halo accessories for Xbox 25th anniversary

Microsoft has unveiled the Designed for Xbox 25th Anniversary collection, a limited-edition lineup of gaming accessories now available for pre-order. The collection pays tribute to the Halo special edition of the original Xbox, with most items featuring a translucent 'OG Green' design. It complements the Xbox Series X25 limited-edition console announced at E3 in June. The lineup includes Razer's Basilisk V3 Pro 35K mouse, BlackWidow V4 75% keyboard, and Hammerhead V3 X HyperSpeed earbuds in the signature color. An 8BitDo Ultimate charging dock for Xbox Series X/S and Xbox One controllers in translucent green is also part of the collection.

0
ProgrammingDEV Community ·

Email Reset Links Beat SMS OTP for Most SaaS Password Recovery Flows

For most SaaS platforms, an emailed single-use reset link is the recommended default for password recovery, as it keeps the login identifier, recovery channel, and support workflow in one place. SMS OTP may seem faster but introduces added complexity around phone-number verification, regional compliance, number reassignment, and delivery reliability. Developers are advised to model completed recoveries rather than raw message sends when comparing costs across the two methods. SMS should only be added when users genuinely lack email access or when the product already maintains continuously verified phone numbers — not simply because entering a short code feels smoother in a demo. Neither channel is a universal fallback, and the core goal remains safely returning the right person to their account without creating openings for account takeover.

0
ProgrammingDEV Community ·

Why retrying PostgreSQL serialization errors at the query level is always wrong

PostgreSQL's error code 40001 signals a serialization failure that aborts the entire transaction, not just the individual query that triggered it. Retrying only the failed query — a common developer instinct — is ineffective because the connection enters an aborted transaction state, causing all subsequent statements to fail with a different error code. The popular Node.js ORM ecosystem largely sidesteps the problem: a TypeORM feature request for automatic transaction retry has remained unimplemented since February 2023, and the widely used typeorm-transactional library offers no retry mechanism despite 188,000 weekly downloads. Further investigation revealed that where PostgreSQL surfaces the 40001 error is unpredictable, varying across versions and query plans — sometimes at commit, sometimes mid-transaction. The only correct approach is to wrap and retry the entire transaction from the start, not individual queries within it.

0
ProgrammingDEV Community ·

Directing AI Video Models: Why Every Frame Must Be Engineered, Not Captured

A developer documented hard-won lessons from producing a 10-episode AI-generated video series using image-to-video models. Unlike real cameras, these models have no spatial memory — they invent new pixels by statistically guessing what should fill any area outside the original still image. Continuity must be manually re-declared every clip, as the model has no awareness that consecutive shots share the same character or setting. The model also tends to hallucinate extra figures, clutter, and environmental details unless explicitly instructed otherwise in every prompt. The author concludes that directing such a model is less about choosing what to show and more about carefully restricting what the model is allowed to imagine.

0
IndiaNDTV ·

NSA Doval Arrives in Beijing for Two-Day Visit Amid India-China Ties Rebuild

National Security Advisor Ajit Doval arrived in Beijing on Monday for a two-day official visit. The trip is widely viewed as part of ongoing diplomatic efforts between India and China to restore bilateral relations. Ties between the two neighbours deteriorated sharply following the deadly Galwan Valley clashes in June 2020. Doval's visit signals continued engagement at the senior security level as both sides work to normalise the relationship.

0
ProgrammingDEV Community ·

FP8 quantization boosts Qwen3-8B throughput 1.5x with no factual accuracy loss

Engineers tested whether switching Qwen3-8B inference from BF16 to FP8 quantization degraded output quality on an RTX PRO 6000 Blackwell GPU using vLLM, achieving a throughput jump from 1,725 to 2,597 tokens per second at concurrency 32. A structured 20-prompt benchmark spanning reasoning, math, code, and summarization tasks was run under greedy decoding to isolate any differences caused purely by numeric precision. Of the 20 outputs compared, 7 were byte-identical, 9 showed only minor wording or formatting variation, and 3 had small stylistic regressions such as a repeated word or a slightly off-topic list item. Critically, zero prompts produced a factual or numerical error in FP8 that BF16 had answered correctly, clearing the team's defined acceptance threshold. The authors caution that this validation applies only to the tested prompt profile and workload, and that different domains, longer contexts, or sampled decoding would each require a separate review pass.

0
IndiaNDTV ·

Kerala Officially Renamed Keralam After Centre Notifies State's Request

The Indian state of Kerala has been officially renamed Keralam following a central government notification. The name change reflects the state's original Malayalam pronunciation and identity. The Kerala state Assembly had earlier passed a resolution in favour of the new name. The state government forwarded this resolution to the central government in June 2024. The Centre has now formally notified the new name, making it official.

0
ProgrammingDEV Community ·

Dev Setup Lets You Run GPT Sol and Claude Opus Free via OmniRoute and Pi Agent

A developer has shared a method to access frontier AI models like GPT Sol and Claude Opus at no cost by combining two tools: Pi, an npm-based coding agent, and OmniRoute, a locally hosted gateway. OmniRoute routes requests across hundreds of AI providers, automatically selecting free-tier options and falling back if one hits a rate limit or goes offline. The setup requires installing both tools via npm, configuring Pi to point to OmniRoute's local endpoint, and editing two JSON config files to set the default provider and model. Once configured, users can switch between models using a single command-line flag without managing separate API keys or accounts. The author also flags two known issues: OmniRoute's built-in Pi integration writes to the wrong config file, and bare OpenAI model names fail without the required namespace prefix.

0
ProgrammingDEV Community ·

How to properly verify OmniRoute AI gateway works before connecting coding agents

OmniRoute is a locally hosted AI gateway that exposes a single OpenAI-compatible endpoint and routes requests across hundreds of providers with automatic fallback. A DEV Community guide outlines a structured checklist to confirm a fresh install is fully functional, not just running. The verification process covers health checks via the built-in 'omniroute doctor' command, confirming provider connectivity, and testing basic chat completions using curl. Developers are also advised to validate streaming responses and tool/function calling, as failures in either can break most AI agent workflows. The guide emphasizes that a gateway merely starting up is not sufficient proof it will hold up under real-world conditions like provider outages or complex request types.

0
ProgrammingDEV Community ·

Web Scraping Tools Compared: When to Use ScrapingBee, Firecrawl, BuiltWith, or a Lightweight API

A developer who maintains the Web Metadata & Contact Extractor API has published a pricing and feature comparison of four data-extraction tools as of August 2026. The comparison covers ScrapingBee, Firecrawl, BuiltWith, and the author's own API, noting that each solves a distinct problem rather than competing directly. The author's API targets simple, server-rendered pages and extracts SEO metadata, tech stack, and contact signals for as little as $5.99 per month, while ScrapingBee handles JavaScript-heavy pages with a headless browser starting at $49 per month. Firecrawl is positioned for full-site crawling to feed LLM or RAG pipelines, and BuiltWith functions as a historical technology database rather than a live URL fetcher, with plans starting at $295 per month. The author explicitly acknowledges their tool's limitations and directs users to alternatives when JavaScript rendering or site-wide crawling is required.

0
ProgrammingDEV Community ·

React Native Developers Are the New Target: A Guide to Securing Your Own Machine

A detailed security guide highlights that React Native developers themselves—not just end users—have become the primary targets of supply chain attacks. The guide warns that routine commands like yarn install execute untrusted code with full user privileges, capable of accessing SSH keys, keychains, and environment files without any sandboxing. Configuration files such as metro.config.js, Podfile, and build.gradle are actually executable programs that run automatically on build or project open, creating silent attack surfaces. Real-world incidents like nx/s1ngularity, Shai-Hulud, and GlassWorm demonstrate that these threats are active, with one attack hiding malicious payloads in invisible Unicode characters that evaded code review entirely. The guide also flags AI agent MCP servers as an emerging risk, with over 30% found to carry exploitable vulnerabilities that have already been used to steal private SSH keys.

0
IndiaNDTV ·

Delhi's Signature Bridge Audit Reveals Rusted Steel and Faulty Sensors

An audit of Delhi's iconic Signature Bridge has uncovered significant structural concerns, including rusted steel components and damaged sensors. The findings have raised questions about the maintenance standards of the cable-stayed bridge. In response, the Public Works Department has initiated the process of drawing up a dedicated maintenance and rehabilitation plan. The audit signals the need for urgent remedial action to preserve the integrity of the landmark structure.

0
IndiaNDTV ·

India and China Agree to Pursue Political Resolution on Border Dispute

Indian National Security Advisor Ajit Doval arrived in Beijing on Monday for a two-day visit aimed at advancing bilateral ties between India and China. The visit is widely viewed as part of continued diplomatic efforts to restore the relationship between the two nations. Ties between India and China had deteriorated sharply following the deadly clashes in the Galwan Valley in 2020. Both sides have now agreed to seek a political settlement to their long-standing border dispute.

← NewerPage 341 of 3461Older →