SShortSingh.
0
IndiaTimes of India ·

West Bengal may fund schools separately to serve eggs amid Iskcon meal row

West Bengal's education department is exploring a model similar to Odisha's to resolve a controversy over midday meals managed by Iskcon, which follows a vegetarian-only menu. The proposed approach would provide schools with additional funds to procure eggs independently, ensuring children continue to receive them as part of their meals. The move comes after the government faced criticism for allegedly sidelining eggs, considered a dietary staple for many students. Officials are expected to hold discussions soon to finalise the new arrangements. The debate has highlighted tensions between nutritional needs and cultural or religious food preferences in school meal programmes.

0
IndiaTimes of India ·

Bangladeshi man hunted in Rome after family found dead, chilling post surfaces

Italian police are searching for 43-year-old Bangladeshi national Shahadat Hossain in connection with the deaths of three family members in Rome. A father, mother, and their young daughter were found dead in what authorities are treating as a triple homicide. Before the incident, Hossain posted an ominous message on social media reading 'A man does not die alone.' The post has become a key piece of evidence in the ongoing investigation. Authorities are conducting an extensive manhunt to locate the suspect.

0
ProgrammingDEV Community ·

How to Build Compliant AI Agents for Banking: A Developer's Architecture Guide

A software developer on DEV Community has outlined a practical architecture for building AI agents that can pass banking compliance audits, using loan underwriting as a case study. The guide emphasizes that roughly 70% of the effort in fintech AI projects goes into compliance infrastructure — including audit logging, explainability, and human-in-the-loop checkpoints — rather than the AI logic itself. A core requirement highlighted is that every agent decision must be fully traceable, with reasoning steps recorded in real time rather than reconstructed after the fact. The article includes working Python code demonstrating an 'AuditableDecision' class designed to capture inputs, reasoning chains, data sources, and human-readable explanations for each decision. The guide is aimed at developers who find that real-world regulated AI deployments take significantly longer than prototypes suggest.

0
ProgrammingDEV Community ·

How Large NPM Packages Quietly Drain Startup Revenue and Engineering Resources

Installing a single NPM package often pulls in hundreds of transitive dependencies, inflating JavaScript bundle sizes and slowing page load times for end users. Slower pages directly hurt business outcomes, as higher bounce rates and lower conversion rates erode returns on paid advertising spend. The financial impact extends beyond user experience: larger bundles increase CI/CD pipeline durations, deployment artifact sizes, and bandwidth costs that compound across millions of requests. Future maintenance also carries a hidden price tag, as dependency upgrades, security reviews, and breaking API changes consume engineering hours that carry real salary costs. Experienced developers are urged to weigh not just initial build speed but the multi-year total cost of every dependency added to a project.

0
ProgrammingDEV Community ·

Researcher Demonstrates Silent IPv6 Hijack Attack on Enterprise Network and Fix

A security researcher built a simulated dual-stack enterprise network using GNS3 to expose a critical but often overlooked IPv6 vulnerability. The project demonstrated how SLAAC — IPv6's Stateless Address Autoconfiguration protocol — can be abused by an attacker on the same network segment to silently intercept all IPv6 traffic without any privileges on victim machines. Using only a Python script running on Kali Linux, the researcher broadcast forged Router Advertisement packets that redirected traffic from multiple hosts through an attacker-controlled gateway. The attack was fully mitigated by deploying RA Guard, a Cisco switch policy that blocks unauthorized Router Advertisement messages with no changes required on victim devices. The project highlights that enterprises with strong IPv4 controls may still be exposed if IPv6 traffic on the same physical links goes unmonitored and unprotected.

0
SportsESPNcricinfo ·

Stokes admits exhaustion and burnout before Ashes Lord's Test incident

England Test captain Ben Stokes has revealed he was completely drained of energy and motivation even before the Lord's Test during the Ashes series. Stokes admitted he had no fight left in him at that point, suggesting his mental and physical reserves were fully depleted. His candid comments shed light on the circumstances surrounding the much-discussed nightclub episode that occurred around the time of the Lord's Test. The revelation indicates that the pressures of captaincy and the demands of the Ashes series had taken a significant toll on Stokes well before the incident came to public attention.

0
ProgrammingHacker News ·

Bash4LLM: A Single-File Bash Tool to Query LLM APIs Without Extra Runtimes

A developer has released Bash4LLM, a lightweight, single-file Bash wrapper that lets users interact with large language model APIs directly from the terminal. The tool requires no Python, Node.js, or additional runtimes, relying solely on Bash, curl, and jq. It supports features such as prompt submission, basic chat sessions, line-by-line file processing, output streaming, and JSON session metadata storage. Groq is the default supported provider, with the option to add other providers via dedicated scripts in an extras folder. The project was built with a focus on safety and predictability, avoiding the use of system temp directories and the eval command.

0
ProgrammingHacker News ·

Developer builds GPT-2-scale language model from scratch in pure C and CUDA

A developer has released NanoEuler, a GPT-2-scale language model built entirely in C and CUDA without high-level frameworks. The project was motivated by a desire to deeply understand how large language models work at a low level, including the relationship between parameters, data, and GPU operations. Development began with a 23-million-parameter model trained on Shakespeare text, progressively scaling up while exploring training techniques such as supervised fine-tuning. The author chose raw CUDA to eliminate any abstraction layers between the model and its underlying computations. The project is open to community feedback and contributions.

0
ProgrammingDEV Community ·

Why AI-Generated WordPress Code Is Often Insecure and How to Fix It

General-purpose large language models frequently produce insecure WordPress plugin code because they are trained on vast internet text that includes outdated and vulnerable snippets from sources like early StackOverflow tutorials. These models predict statistically likely code rather than reasoning about security best practices, making them prone to skipping critical checks such as input sanitization, nonce verification, and user authorization. In WordPress specifically, a single missing security check can expose REST endpoints or AJAX handlers to unauthenticated users, making the consequences far more severe than in typical application code. To address this, developers built a multi-step agentic pipeline where specialized agents plan, generate, and audit code in sequence, treating security functions as mandatory requirements rather than optional additions. The approach replaces single-call text generation with a structured system designed to enforce non-negotiable security rules before code ever reaches a developer.

0
ProgrammingDEV Community ·

Developer releases open-source Nuxt-Supabase auth scaffold for reusable project setup

A developer has published a production-ready authentication scaffold built with Nuxt 4 and Supabase, designed to be reused across multiple projects without rebuilding auth from scratch each time. The scaffold includes email sign-up with optional confirmation, sign-in, password reset via email link, and full PKCE code exchange handling on a dedicated route. Protected routes are managed through Supabase redirect options alongside a guest middleware that redirects authenticated users away from auth pages. Additional features include live password strength feedback, dark mode based on system preference, and detailed error handling throughout. The project uses Nuxt UI 4, Zod for validation, and Tailwind CSS 4, with both a live demo and public repository available for review.

0
IndiaTimes of India ·

Ram Temple Donation Fraud: Investigators Eye Two Key Suspects as Masterminds

Investigators are focusing on Ram Shankar Yadav and Anukalp Mishra as the alleged masterminds behind the Ram Temple donation embezzlement case. Both individuals are believed to have had close ties to senior trust officials and direct access to the donation collection system. Authorities are examining how Yadav allegedly arranged for his nephew to be included in the operation, while Mishra is suspected of securing his brother-in-law's deployment within the setup. Police believe the two coordinated their efforts to systematically divert donated funds. The probe is ongoing as investigators work to establish the full extent of the alleged fraud.

0
ProgrammingDEV Community ·

Power BI Data Modeling Explained: Schemas, Relationships, and Joins

Effective Power BI reports depend less on the data itself and more on how tables are structured and connected to each other. The star schema — with a central fact table surrounded by dimension tables for customers, products, and dates — is the recommended standard for clean, fast models. Relationships between tables are built on primary and foreign keys, with one-to-many links being the most common, while many-to-many relationships require a bridge table to function correctly. Cross-filter direction controls how selections in one visual affect others, with single-direction filtering recommended as the default to avoid slowdowns or circular logic. Understanding these modeling fundamentals helps prevent incorrect calculations and makes it easier to build and expand reports over time.

0
IndiaTimes of India ·

Ram Temple theft suspect's assets probed amid Rs 15K salary mismatch

Authorities are investigating Anukalp Mishra, accused in the Ram Temple donation theft case, for allegedly accumulating assets far beyond his declared income. Investigators are examining a newly constructed farmhouse, a house in Ayodhya valued at Rs 65 lakh, and an attempted purchase of an SUV. Property documents seized from his residence are being reviewed alongside bank records and financial transaction histories. The probe aims to determine the sources of funds behind these and other recent acquisitions.

0
IndiaTimes of India ·

Supply Chain Crisis Leaves 63,000 Hyderabad Homes Stuck in Delivery Delays

Nearly 63,000 housing units in Hyderabad are facing significant delivery delays, with some projects pushed back by more than a year. Homebuyers who purchased properties years ago are still waiting to take possession of their homes. The delays are largely attributed to supply chain disruptions stemming from ongoing conflicts in the Middle East. Rising construction costs and a shortage of skilled labor have further compounded the problem for developers in the region.

0
SportsESPNcricinfo ·

Bryony Smith steers Surrey to narrow two-wicket victory over Somerset

Surrey edged past Somerset in a tightly contested women's cricket match, securing a two-wicket win. Bryony Smith played a leading role with the bat, driving Surrey's successful chase. Laura Harris proved crucial with the ball, claiming a three-wicket haul that helped restrict Somerset's total. Despite Harris's efforts, Somerset's Sophie Luff continued her impressive run of form with a notable contribution. The narrow margin reflected a competitive contest between the two sides.

0
Crypto & Web3CoinDesk ·

Binance Founder CZ Wants U.S. to Become Global Hub for Crypto

Binance founder Changpeng Zhao, known as CZ, shared his vision for the United States to become the world's leading center for cryptocurrency. He expressed these views in an exclusive interview with CoinDesk earlier this month. CZ covered a range of topics related to the crypto industry and its future direction. His comments come amid ongoing discussions about crypto regulation and adoption in the United States.

← NewerPage 89 of 183Older →