SShortSingh.
0
ProgrammingDEV Community ·

Reader's Comment Exposed a Hidden Flaw in an AI Benchmark Comparison

A developer published results from a LoRA fine-tuning experiment comparing fine-tuned and prompted language models, initially concluding that fine-tuning offered little advantage. A reader named Max Quimby commented that the unequal performance drops between methods suggested the original test set was easier for the prompted model, prompting the author to investigate further. The author discovered a more fundamental flaw: the fine-tune row in the comparison table actually represented two different adapters trained on different datasets, making the five-point drop misleading. Running the original v1-trained adapter against the newer real-world test set revealed a 33-point drop, larger than any prompting method. The corrected data showed a clear pattern — the more a method had been fitted to the original data distribution, the more its accuracy fell when tested on real-world data.

0
ProgrammingDEV Community ·

Developer Advocate Reflects on Four Years at Esri, Expanding Beyond GIS

A Developer Advocate at Esri has completed their fourth year in the role, marking the anniversary with a reflection on how their work has evolved since 2022. Year Four was characterised less by new firsts and more by intentional application of skills built over the previous three years. The advocate spoke at multiple conferences, including React Alicante in Spain and All Things Open in Raleigh, North Carolina, covering topics such as AI, gamification, and hidden web app features. Their background in teaching continued to shape their work, particularly through hands-on workshops where they introduced React developers to mapping concepts. Interests expanded beyond GIS into areas like browser performance, mathematics, and open source, while maps remained a recurring thread across many topics.

0
ProgrammingDEV Community ·

How to Audit Your SEO Strategy During Google Ranking Volatility

No verified Google spam update has been officially announced, but concerns about search ranking disruptions have prompted SEO teams to reassess their workflows. Experts recommend maintaining a dated log of site changes — including redirects, content edits, and link campaigns — to distinguish genuine issues from normal search fluctuations. Rather than reacting to short-term ranking shifts, teams are advised to look for patterns across affected pages, templates, or query types before drawing conclusions. Content reviews should prioritize accuracy, originality, and clear audience intent over publishing volume or blanket URL consolidation. Broad site-wide changes are discouraged unless a specific technical defect, such as a broken canonical or accidental noindex directive, has been identified.

0
ProgrammingDEV Community ·

Developer Documents 94% CPU Steal on REGXA VPS Even With Zero Active Traffic

A developer migrated a standard workload to a REGXA KVM VPS with 2 vCPUs and 2 GB RAM, only to encounter severe performance degradation including slow TLS handshakes and HTTP 504 errors. Running mpstat revealed CPU steal consistently above 90%, meaning the virtual machine's vCPUs were ready to run but not being scheduled by the hypervisor. To rule out his own applications as the cause, the developer moved all production traffic off the server entirely, yet CPU steal actually worsened to around 94% with user CPU usage below 2%. Further testing via localhost HTTPS requests — eliminating all external network variables — showed four out of ten connections failing during the TLS handshake and successful ones taking up to 29 seconds. The developer stopped short of attributing intent to the provider, but concluded that the VM was consistently denied CPU time despite having runnable work queued.

0
ProgrammingDEV Community ·

French Fleet Software Firm Open-Sources Vehicle Tax Calculators for Developers

Lexio, a French fleet-management software company, has released four open-source TypeScript packages covering key vehicle-related tax and compliance calculations. The tools include a company-vehicle tax engine (TVS), a benefit-in-kind calculator for company cars, a rental-contract generator, and a fine-contestation letter builder. The packages were extracted from Lexio's internal codebase to provide dependency-free, framework-agnostic reference implementations that other developers can use or audit. The move was driven by the frequency of tax-rule changes in France and the tendency of payroll and fleet tools to implement subtly incorrect versions of the same calculations. The repositories, which include 72 regression tests validated against official French administration figures, are publicly available on GitHub under the lexio-rent-git organisation.

0
ProgrammingDEV Community ·

Telnyx Releases AI Call Router That Uses Speech to Replace Button Menus

Telnyx has published an open-source Python Flask example app that routes inbound phone calls using natural language instead of traditional touch-tone menus. When a caller speaks their request, the app transcribes the speech via Telnyx Call Control and classifies the intent using the Meta Llama 3.3-70B model through Telnyx AI Inference. The classified intent is then matched against a simple route table to transfer the caller to the appropriate team, such as billing, sales, or support. The app verifies all inbound webhooks using Ed25519 signature verification to ensure only legitimate Telnyx events trigger call actions. The source code is available on GitHub under the Telnyx code examples repository for developers to adapt for real-world contact center deployments.

0
ProgrammingDEV Community ·

More Context Can Make AI Answers Worse, Not Better, Research Shows

AI models advertise large context windows, but their effective working memory is significantly smaller than the stated limit. As more text is added to a prompt, attention — the mechanism models use to weigh relationships between tokens — gets diluted across more tokens, reducing focus on what matters most. Research by Liu et al. found that key information placed in the middle of a long prompt is retrieved far less accurately than content near the beginning or end. Additionally, when multiple similar documents are included, models struggle to distinguish the correct source from near-identical alternatives, causing accuracy to drop steadily with input length. Experts recommend sending fewer but higher-quality chunks, placing critical instructions at the top and bottom of prompts, and avoiding the habit of stuffing every available document into the context window.

0
TechnologyThe Verge ·

FTC and 22 states sue Amazon over alleged secret ad surcharge scheme

The Federal Trade Commission, joined by 22 state attorneys general, has filed a lawsuit accusing Amazon of secretly inflating advertising prices on its website and app. The complaint alleges Amazon manipulated its 'second price' ad auction system through an undisclosed surcharge, effectively making advertisers pay more than the rules indicated. FTC chairman Andrew Ferguson stated that the higher ad costs were largely passed on to American consumers. Amazon is accused of violating the FTC Act as well as more than a dozen state laws. This legal action follows Amazon's $2.5 billion settlement with the FTC nearly a year ago over its Prime subscription practices.

0
ProgrammingDEV Community ·

Archify Open-Source Tool Brings Validation and Structure to AI-Generated Architecture Diagrams

Archify is an open-source diagramming and validation engine built by developer tt-a1i to address reliability issues in architecture diagrams produced by AI coding agents like Claude Code, Cursor, and Codex CLI. Instead of generating unstructured markdown charts, it requires AI agents to output a typed JSON Intermediate Representation that is then compiled deterministically into interactive HTML and SVG files. The tool validates layout hierarchies, node boundaries, and structural relationships before rendering any visual artifact. Archify supports five diagram types — including architecture, workflow, sequence, data flow, and lifecycle — and enables side-by-side snapshot diffing during pull request reviews. It integrates with modern AI coding environments via a simple CLI command and exports diagrams in formats including SVG, PNG, and WebM animations.

0
ProgrammingDEV Community ·

Developer builds minimal distributed lock server in Go using buffered channels

A developer has released Locking-Center, a lightweight distributed lock server written in Go, designed to serialize access to shared resources across multiple services and machines. The tool uses a single buffered Go channel per key to represent lock state, where sending acquires the lock and receiving releases it. Crash safety is ensured through a write-ahead log with CRC32C checksums, and log compaction is handled via atomic file renames to prevent data loss during failures. The wire protocol is intentionally minimal — a single TCP connection per request with a one-byte response — making it straightforward to implement clients across nine languages including Go, Rust, Python, Java, and C. The project aims to offer a simpler alternative to Redis-based locking or full consensus systems for teams needing a standalone, dependency-light locking primitive.

0
ProgrammingDEV Community ·

Developer Builds Custom E-Ink Conference Badge with QR Code Social Links

A developer has created a personalized e-ink conference badge using the Badgeware Badger 2350, a device powered by an RP2350 chip with WiFi, a 1000mAh battery, and MicroPython support. The badge displays QR codes linking visitors to the creator's LinkedIn and personal website, making it easy to connect at events. Several hundred lines of Python code were written with AI assistance to power the badge's functionality. The Badgeware platform includes a desktop simulator, allowing developers to test their code locally before deploying it to the physical device via USB-C. The creator plans to showcase the badge at the Commit Your Code 2026 conference in Dallas.

0
ProgrammingDEV Community ·

Developer shares SQL impersonation method to verify Supabase Row Level Security in SaaS apps

A developer building a multi-tenant SaaS starter kit using Next.js, Supabase, and Stripe wanted to verify that Row Level Security (RLS) policies actually prevented one user from accessing another's data. Rather than assuming the Postgres-based policies were correct, they ran impersonation tests directly in the SQL editor by temporarily assuming a user's identity within a rolled-back transaction. The test confirmed that RLS silently filters out unauthorised rows — returning zero results instead of an error — which is the expected success signal. The same approach was applied to write operations, ensuring that delete attempts on another user's rows returned zero rows affected. The developer notes the test takes about two minutes and is particularly valuable for catching privacy failures before they reach production.

0
ProgrammingDEV Community ·

Six CI/CD Pipeline Mistakes That Silently Slow Down Your Team's Deploys

Many engineering teams accept slow deployment pipelines as normal, but common misconfigurations are often the real cause of wasted time. Key issues include running full test suites for trivial changes, skipping dependency caching, and executing independent jobs sequentially instead of in parallel. Mismatched staging and production environments also force teams to add manual verification steps, compounding delays over time. Slow or complex rollback processes make teams hesitant to deploy frequently, which ironically increases risk by bundling more changes into each release. Experts recommend targeted fixes such as path-based triggers, infrastructure-as-code, and treating rollback as a standard pipeline action rather than an emergency procedure.

0
ProgrammingDEV Community ·

Essential Docker Commands Every Developer Should Know

A handy reference guide covers the most commonly used Docker commands for developers working with containers. Key commands include checking the installed Docker version, running a test image, and listing active or stopped containers. Users can also view all locally stored images along with their names, tags, sizes, and IDs. Additional commands allow developers to gracefully stop a running container or delete a stopped one using its container ID. For convenience, a single force-remove command can stop and delete a container in one step.

0
TechnologyBBC Tech ·

Amazon Faces US Lawsuit Alleging It Rigged Billions in Ad Pricing

A lawsuit filed by US states and the Federal Trade Commission alleges that Amazon manipulated its advertising pricing to the tune of billions of dollars. The legal action targets the way Amazon reportedly structured its ad marketplace to its own advantage. The case represents a significant regulatory challenge for the tech and e-commerce giant. Amazon has pushed back against the allegations, claiming the FTC fundamentally misunderstands how its advertising market operates.

0
IndiaTimes of India ·

IMD Forecasts Below-Normal Rainfall for India in September

India's meteorological department has predicted below-normal rainfall for September, likely ending the monsoon season on a deficient note. August was recorded as the warmest month ever, with multiple regions logging unusually high temperatures. Rainfall from June through August has fallen significantly short of expected levels, straining agricultural activity and driving up irrigation costs. Persistent El Niño conditions are anticipated to continue suppressing monsoon rainfall patterns. Additionally, a neutral Indian Ocean Dipole this year offers no compensating boost to monsoon performance.

0
ProgrammingDEV Community ·

Developer Builds Tool to Detect Lingering Access After Permissions Are Revoked

A developer created an open-source testing tool called Parallax, built for the All Things Agentic Hackathon, that simultaneously opens multiple isolated browser sessions to compare application behaviour across different user roles, locales, themes, and viewport sizes. The tool addresses a security blind spot: while companies log when access is revoked, no standard automated tool measures how long a previously authenticated session continues to function after removal. An already-open browser tab can retain loaded data, active WebSockets, and cached membership status for an unmeasured window of time even after an admin removes a user. OWASP's ASVS V3 standard requires all active sessions to be invalidated upon account disablement, but its own testing guide only describes manual verification methods. Microsoft's continuous-access documentation acknowledges propagation delays of up to 15 minutes, highlighting that this gap remains largely unaddressed by existing tooling.

0
TechnologyArs Technica ·

CDC Records Nearly 30,000 Cyclospora Cases as Trump Admin Halts Research

The United States is experiencing a record-breaking Cyclospora outbreak this summer, with the CDC tallying nearly 30,000 confirmed and probable cases. Despite the scale of the outbreak, the Trump administration has decided to shelve research related to the parasitic illness. Cyclospora is a microscopic parasite that causes intestinal illness, typically linked to contaminated fresh produce. The decision to pause research comes at a particularly concerning time given the unprecedented number of infections recorded. Public health experts have raised alarms over the potential impact of halting scientific work during an active and historic outbreak.

0
IndiaTimes of India ·

India's Economy Grows 7.8% in Q1, Driven by Manufacturing and Services

India's economy expanded by 7.8% in the April–June quarter, marking a strong performance for the period. The growth was primarily fueled by a robust manufacturing sector and a resilient services industry. Domestic demand also rose significantly, supported by higher levels of investment and increased exports. The economy demonstrated notable resilience despite ongoing global headwinds, including geopolitical tensions and adverse weather conditions. In response to the strong performance, the government has revised its growth estimates for previous financial years upward.

0
TechnologyThe Verge ·

Apple Vision Pro Streams MLB Games in VR, But the Experience Has Limits

A writer for The Verge tested Apple Vision Pro's new immersive virtual reality baseball streaming feature over the weekend. Apple and Major League Baseball selected the classic Boston Red Sox versus New York Yankees rivalry as the first of four planned games to be streamed on the device. The reviewer, a self-described regular baseball watcher, found the experience technically impressive and visually striking. However, despite the visual quality, the overall experience did not feel entirely practical or compelling as an everyday way to watch sports. The test raises broader questions about the future of live sports viewing through wearable technology like the Vision Pro.

← NewerPage 717 of 4147Older →