SShortSingh.
0
ProgrammingDEV Community ·

Automotive Grade Linux Offers Three Active Release Series in 2026, Each With Different Support Windows

As of August 2026, Automotive Grade Linux maintains three concurrent release series built on different Yocto Project baselines: Vibrant Vimba on Wrynose 6.0.x, Ultimate Unagi on Scarthgap 5.0.x, and the legacy Quirky Quillback on the now end-of-life Kirkstone 4.0.x. Vibrant Vimba is listed as the latest stable release and carries the longest upstream support horizon, running to April 2030, while Ultimate Unagi is supported until April 2028. A practical challenge exists because the project's announcements, product page, and release-notes wiki do not consistently point engineers to the same baseline, potentially leading teams to fetch a branch with a shorter support window. The choice of release series carries significant consequences for vehicle programmes, since automotive software lifecycles can outlast the upstream support periods of both active series. Engineers are advised to consult the release-notes wiki directly rather than relying on press releases to determine the appropriate branch for their project's longevity requirements.

0
ProgrammingDEV Community ·

VIDRAFT's AX-RAY Framework Detects Hidden Causal Leakage in AI Language Models

Korean AI safety startup VIDRAFT published a research paper on arXiv on August 24, 2026, introducing a diagnostic framework called AX-RAY designed to detect causal leakage in autoregressive language models. Causal leakage occurs when future token information illegitimately influences earlier positions in a model, undermining the correctness guarantees that such models rely on. The method works by running two nearly identical inputs through a model and comparing internal activations layer by layer, requiring no gradient computation or retraining. When tested on public models, the framework identified leakage in Nemotron-H-8B and Zamba2-1.2B, and successfully caught all 192 synthetic faults injected during validation. VIDRAFT has filed a Korean patent on the underlying technology and is positioning AX-RAY as a verification tool for government-backed AI security programs.

0
ProgrammingDEV Community ·

Picverce AI Launches Public API for Image Editing and Generation Tools

Picverce AI has released a Public API (v1.0.0) that lets developers access its image tools and generation models directly from their own backends via https://api.picverce.com. The API supports capabilities such as image enhancement, upscaling, restoration, colorization, background removal, and AI image generation from text prompts. Authentication uses server-side bearer keys, and the API intentionally omits CORS headers to prevent keys from being exposed in frontend JavaScript. Jobs are handled asynchronously — a create call returns a job ID immediately, which developers then poll until the task succeeds or fails. Access requires an active paid plan or a purchased credit pack, with free accounts unable to create API keys or call authenticated routes.

0
IndiaTimes of India ·

Two Pilots Killed as Training Aircraft Crashes Near Kanpur's Ganga Barrage

A twin-engine training aircraft operated by Garg Aviation crashed near Natthupurwa village close to the Ganga Barrage in Kanpur, killing both pilots on board. Emergency response teams were swiftly deployed to the crash site following the incident. Initial reports indicate the aircraft belonged to a local flying school called Garg Aviation. The crash comes just two months after a separate accident at the same facility, in which a cadet pilot was injured during a propeller strike following a night instructional sortie.

0
IndiaNDTV ·

US DOJ: Chinese Hackers Breached NASA, Senate and Multiple Federal Agencies

The US Department of Justice has revealed a major cybersecurity breach involving Chinese hackers targeting several high-profile American institutions. Victims include NASA, the Federal Reserve, the US Senate, and key federal departments such as Energy, Justice, and Health and Human Services. The intrusions are attributed to a hacking group identified as QTFY. The scale of the attack highlights significant vulnerabilities across critical US government and financial infrastructure.

0
ProgrammingDEV Community ·

Self-Hosted WhatsApp Stack Handled 89,479 Messages, Avoiding $604 Twilio Bill

A developer running five WhatsApp inboxes via self-hosted WAHA and Chatwoot processed 89,479 messages in 30 days without incurring any Twilio charges. A detailed cost analysis, based on figures pulled on August 27, 2026, calculated that the equivalent Twilio bill would have reached approximately $604. The breakdown required careful accounting of Meta's billing rules: since November 2024, non-template messages are free, and since July 2025, utility templates sent within an open 24-hour customer service window are also free. Of 43,916 outbound messages, only 29,602 — roughly 67% — fell outside an active conversation window and would have been billable. The analysis highlights that accurate WhatsApp cost modelling depends on tracking outbound messages with no inbound contact in the preceding 24 hours, not simply total message volume.

0
ProgrammingDEV Community ·

15 NLP Techniques Backend Developers Should Master for Production Systems

Natural language processing has shifted from a data science niche to core backend infrastructure, affecting any API that handles user-generated text. A technical guide outlines 15 NLP techniques — ranging from text tokenization and named entity recognition to sentiment analysis and intent classification — each paired with runnable Python code. The guide is aimed at backend developers building search endpoints, support ticket systems, or document parsers who may already be applying NLP without recognising it. Tools highlighted include SpaCy for tokenization and entity extraction, and Hugging Face Transformers for sentiment and zero-shot intent classification. The techniques are ordered from immediately practical to architecturally advanced, with the goal of serving as a production-ready reference for integrating NLP into backend services.

0
IndiaNDTV ·

Indian Envoy Highlights Sports, Tech and Start-Up Ties Strengthening India-Nepal Bonds

India's envoy to Nepal has outlined the key areas through which the two South Asian nations are deepening their bilateral relationship. Sports diplomacy, technology, and the start-up ecosystem were identified as major pillars of growing cooperation. The diplomat emphasized that there is a robust and ongoing exchange of people and ideas between the two neighboring countries. These engagements reflect India's broader effort to strengthen ties with Nepal across multiple sectors.

0
WorldBBC World ·

Lindsay Clancy Trial Nears End After Five Weeks of Testimony

The trial of Lindsay Clancy, accused of killing her children, is entering its final phase with closing arguments set to begin. The case has spanned five weeks and attracted widespread international attention. Central to the proceedings is the rare but severe mental health condition known as postpartum psychosis. The trial has sparked broader public discussion about the recognition and treatment of serious postpartum mental illness.

0
ProgrammingDEV Community ·

Java Service Steward offers open-source 64-bit Windows host for Java services

A developer has released Java Service Steward, a free and open-source Windows service host for Java applications, licensed under Apache-2.0 OR MIT. The project was created to address the lack of a 64-bit Windows build in the Community Edition of the Java Service Wrapper, without requiring a paid license or rewriting existing configurations. It reads the standard wrapper.conf format and replicates the same command-line interface, log layout, and service lifecycle behavior as the original tool. The distribution consists of just two files — a Rust-written executable and a Java 8-compatible JAR — with no native DLL or JNI dependencies. Applications using the supported launchers require no source changes, though those directly using the original Java API must migrate to the project's own Steward and ServiceListener classes.

0
ProgrammingDEV Community ·

Should AI Prompt Stores Control Model Selection? A .NET Developer's Take

A developer analysis questions whether tools like Langfuse should bundle model configuration—such as model name, token limits, and temperature—directly alongside prompt definitions in .NET applications using Microsoft.Extensions.AI. While the approach enables non-engineers to update prompts and model settings without redeployment, critics argue it mixes low-risk content decisions with high-stakes infrastructure choices in a single untyped JSON blob. This coupling means a typo or misconfiguration in the prompt store could silently cause failures or unintended behavior only when live traffic hits the system. Managing environment-specific model settings, such as using cheaper models in development versus production, also becomes cumbersome under this design. The post proposes separating model configuration into typed, validated application settings so errors surface at startup rather than at runtime.

← NewerPage 432 of 3633Older →