SShortSingh.
0
IndiaTimes of India ·

Bank of Maharashtra Widow Loses Pension Claim Despite Receiving PF and Gratuity

The Bank of Maharashtra introduced a one-time pension scheme option on April 27, 2010, open to serving employees, retirees, and families of deceased employees under specific conditions. A widow whose husband passed away in 2006 sought to enroll in the scheme and claim pension benefits. Although she had already received provident fund and gratuity settlements following her husband's death, she pursued a separate pension entitlement. The High Court examined her eligibility under the prescribed terms of the 2010 scheme and ultimately rejected her pension claim. The ruling highlighted that meeting certain conditions was mandatory for enrollment, and the widow's case did not satisfy those requirements.

0
IndiaNDTV ·

India Says Eiffel Tower Hindu Group Dispute Is a Private Matter

India's Foreign Ministry spokesperson Randhir Jaiswal addressed questions about an incident involving a Hindu religious group's visit to the Eiffel Tower in Paris. Reports emerged that female employees were allegedly removed from the Eiffel Tower premises during the group's visit. Jaiswal described the situation as a matter between the parties involved, distancing the Indian government from the controversy. The incident drew attention amid broader discussions about religious practices and public spaces in France.

0
IndiaTimes of India ·

Ponting warns T20 boom may push ODI cricket to the sidelines

Former Australia captain Ricky Ponting has voiced concern that ODI cricket could be played less frequently as T20 leagues continue to grow in global popularity. He sees this shift as an inevitable part of how the sport is evolving, though it leaves him disheartened about the future of the 50-over format. Despite his worries about ODIs, Ponting remains hopeful about the long-term health of Test cricket. He believes the longest format will continue to thrive, given that major cricketing nations still hold it in high regard.

0
ProgrammingDEV Community ·

How to Build a Cloud Spend Circuit Breaker That Stops AWS Costs in Real Time

Standard AWS budget alerts are reactive, notifying users only after spending limits have already been breached due to 8-hour billing metric delays and slow email delivery. A more effective approach combines AWS Budgets, CloudWatch, SNS, and Lambda into a closed-loop system that can actively throttle or shut down workloads before costs spiral. The setup uses three alert thresholds — 80% and 100% of actual spend, plus a 110% forecasted spend trigger — giving teams an early warning lane rather than a single too-late notification. The forecasted threshold acts as the true circuit breaker, firing while budget runway still exists to take corrective action. The entire infrastructure can be provisioned using Terraform, enabling automated remediation and stakeholder notifications via Slack or PagerDuty.

0
ProgrammingDEV Community ·

One Developer Tested 8 AI Coding Tools for Two Months — Here Are the Results

A working developer with ten years of experience spent August and September testing eight AI coding assistants — GitHub Copilot, Cursor, Codeium, Tabnine, Replit AI, v0, Bolt, and Lovable — on real tasks including building a React dashboard and maintaining a legacy Python service. The self-funded experiment cost around $190 in subscriptions and was designed to evaluate how each tool performed beyond the initial novelty period in a daily workflow. GitHub Copilot emerged as the safest default option, praised for fast, unobtrusive completions and an improved chat feature, though it tends to agree with the user rather than challenge architectural decisions. Cursor was rated the most capable tool, particularly for its agent mode that can make reviewable multi-file edits, though its best features require a paid Pro plan. No-code app builders like Bolt, Lovable, and v0 were not suited to the reviewer's IDE-based workflow but were acknowledged as genuinely useful for non-developers.

0
ProgrammingHacker News ·

2016 Research Paper Examines Unofficial Standards Governing C Programming Language

A 2016 academic paper published via ACM explores the informal, de facto standards that have shaped the C programming language beyond its official specifications. The research delves into the deeper, often undocumented behaviors and conventions that C programmers and compilers rely upon in practice. The paper was recently shared on Hacker News, where it received modest engagement with 4 points and 1 comment. Such work is relevant to compiler developers, systems programmers, and language researchers seeking to understand C's complex and sometimes ambiguous behavior.

0
IndiaNDTV ·

Tension at cremation of Punjab man who raised drug issue before minister

Gulzar Singh, a resident of Toor Banjara village in Punjab, died by suicide after previously confronting Finance Minister Harpal Cheema about drug problems at a local gathering. Tension erupted at his cremation, drawing political attention to the incident. The village falls within Finance Minister Cheema's assembly constituency, adding political sensitivity to the case. Opposition parties have seized on the incident to attack the ruling AAP government over its handling of the drug menace in Punjab.

0
ProgrammingDEV Community ·

Developer Builds Custom Linux Distribution From Scratch as Birthday Gift for Sister

A developer created a custom Linux distribution called Project Leviathan as a birthday gift for his sister, completing it within roughly a week. The project involved building core components from scratch, including a custom TTY, graphics stack, and window manager, using the Linux 6.8.0 kernel as a base. He wrote the user interface in Rust and integrated the apt package manager using debootstrap after resolving dependency issues. The distribution also featured a 3D Leviathan renderer, a birthday-themed cinematic intro with animated candles, and a custom 2D cat graphic. The developer, a first-time blogger, noted that the project was intentionally chosen to be challenging and is something he plans to continue developing beyond the initial gift.

0
ProgrammingDEV Community ·

Excel Dashboard Built to Analyse Pricing and Reviews for Jumia Products

A data analyst used Microsoft Excel to examine a dataset of products listed on Jumia, a major African e-commerce platform, focusing on how pricing, discounts, and customer reviews affect product performance. The raw dataset included columns for product names, current and old prices, discount percentages, review counts, and ratings, all of which required cleaning before analysis. Data preparation involved removing duplicates, correcting formatting errors, handling price ranges with averages, and fixing negative review values using the ABS formula. New columns were engineered to categorise products by discount level, price quartile, and rating quality, enabling richer trend and correlation analysis. The project concluded with an interactive dashboard designed to help answer practical business questions about discount effectiveness and pricing strategy.

0
IndiaTimes of India ·

Tyler Perry steps in to pay lien and save 81-year-old Illinois woman's home

Actor and filmmaker Tyler Perry has offered to pay a $17,827 property lien on behalf of an 81-year-old homeowner in Illinois. The elderly woman faced the threat of foreclosure after her insurer, Allstate, declined to cover damages caused by burst pipes at her property. Perry's intervention includes the lien payoff as well as additional financial assistance to help stabilize her situation. The philanthropic gesture has effectively prevented the woman from losing her home.

0
ProgrammingDEV Community ·

OpenSparrow v3.6 Launches External API Module with Encrypted Read-Only Keys

Open-source platform OpenSparrow has released version 3.6, introducing an External API module that allows administrators to expose selected database table data to external services. Each API key is tied to a specific table, a fixed set of columns, server-side filters, and a row limit, ensuring external callers cannot influence what data they receive. Keys are stored encrypted with HMAC-based lookup and are displayed only once upon generation, never retrievable from the browser afterward. The single endpoint at public/api/external.php handles Bearer token authentication and enforces per-key and per-IP rate limiting, returning standard HTTP error codes for invalid or disabled keys. All successful requests are logged in a new system table, giving admins visibility into key usage, while the update requires no database migration or configuration changes.

0
ProgrammingDEV Community ·

AI Speeds Up Coding but Shifts Bottleneck to Review and Validation

AI coding agents can dramatically accelerate the implementation stage of software development, but the downstream stages — review, testing, integration, and deployment — still operate at human speed. A software engineer writing for DEV Community observed that AI can help produce six changes a day versus the usual two, yet this only adds value if the broader engineering system can absorb and validate those changes. Red Hat has similarly noted that generating code faster does not automatically translate into delivering reliable software faster. As AI handles more of the writing, engineers are increasingly shifting from manual implementation to roles focused on design, orchestration, and critical judgment. The author argues that the more meaningful productivity question is not how much code is produced, but how quickly a well-validated idea can reach production.

0
ProgrammingDEV Community ·

After AI Fixes a Failing Test, QA Must Still Verify the Fix Is Meaningful

As AI-powered self-healing tools like mabl, Testim, and Applitools become common in software testing, a key question arises: does a passing test after an AI fix actually mean the problem was solved? QA engineers are cautioned to verify whether the repaired test still checks the same functionality and aligns with the original requirement. It is also important to determine whether the failure stemmed from a genuine UI change and whether the fix holds up across multiple subsequent runs. The concern is that AI may find an alternative path to a green result without truly addressing the underlying issue. Experts argue that the real value of AI self-healing lies not in faster fixes, but in freeing QA teams to make more informed, deliberate decisions about test validity.

0
ProgrammingDEV Community ·

TrustGraph 2.8 Launches with Async Architecture, Hybrid Retrieval and Structured AI Output

TrustGraph has released version 2.8 of its enterprise knowledge and AI platform, introducing a fully asynchronous messaging infrastructure that replaces the previous thread-per-consumer model, reducing resource overhead in multi-workspace deployments. The update adds hybrid document retrieval combining vector similarity search with BM25 keyword matching, merged via Reciprocal Rank Fusion, with SQLite FTS5 as the initial keyword-index backend. Structured output support now carries JSON schemas through to provider-native APIs across more than a dozen LLM backends, enabling typed, machine-readable responses without post-generation parsing. The release also introduces a pluggable image-to-text service, a Docling-powered document decoder supporting formats including PDF, DOCX, and PPTX, and expanded metrics coverage using a unified tg_ prefix across the platform. Audit logging has been strengthened with structured gateway and IAM events, including request and client-IP correlation for compliance and observability purposes.

0
IndiaTimes of India ·

Twins Who Had Under 10% Survival Odds Now Ready for First Day of School

Ruby and Scarlett Brameld were diagnosed with Twin-to-Twin Transfusion Syndrome at 16 weeks of pregnancy, giving them less than a 10% chance of survival. The twins underwent high-risk surgery and were born prematurely, facing serious health complications along the way. They spent a total of 300 days in hospital before being well enough to go home. Their mother, Hanna Brameld, is now celebrating a major milestone as her daughters prepare to attend school for the first time.

0
IndiaNDTV ·

India and Bangladesh Move Toward Resuming Cross-Border Rail Services

India and Bangladesh are taking steps to restart cross-border train operations between the two nations. The two countries hold an annual bilateral forum known as the Inter-Governmental Railway Meeting to address shared rail concerns. This platform brings together railway authorities and ministry officials from both sides. The meetings are used to deliberate on cross-border train services, rail infrastructure development, and freight transit arrangements.

0
IndiaTimes of India ·

Flipkart Widens Lead Over Amazon as Quick Commerce Arm Scales Up

Flipkart is expanding its user base at a faster pace than Amazon in India, significantly widening its lead in the country's online retail market. The gap between the two rivals has grown considerably over recent years, with Amazon seeing a contraction in its user numbers. Flipkart's quick-commerce service, Flipkart Minutes, is also gaining strong momentum, now processing millions of orders each day. The platform is closing in on more established players in the quick-commerce space as it continues to scale rapidly.

0
IndiaNDTV ·

Israel Shuts British Consulate, Expels Diplomats Over West Bank Sanctions

Israel has announced the closure of the British consulate in response to UK sanctions over West Bank settlements. Israeli authorities also declared they would expel British diplomats stationed at a centre overseeing the US-brokered Gaza ceasefire arrangement. Additionally, Israel said it would block British personnel from training Palestinian Authority security forces. The Israeli government also imposed entry bans on 12 British officials, barring them from entering the country. The measures represent a significant diplomatic escalation between Israel and the United Kingdom over the settlements issue.

← NewerPage 879 of 4725Older →