SShortSingh.
Back to feed

ChatGPT Dominates AI Referrals but Traffic Proves Highly Volatile, Study Shows

0
·3 views

A Previsible report analyzing 6.77 million AI-driven sessions across 166 websites between November 2024 and May 2026 found that ChatGPT accounted for 92.4% of trackable standalone LLM referral traffic. Despite this dominance, the platform's referrals dropped by nearly half in a single month, falling from 448,412 sessions in October 2025 to 213,345 in November 2025. Google's AI surfaces, including AI Overviews and AI Mode, collectively drove even more AI-influenced traffic than all standalone LLMs combined, though standard referral tracking often fails to capture this fully. The study also noted that Claude and Gemini gained ground while Copilot and Perplexity declined, highlighting how quickly platform rankings can shift. Researchers concluded that over-reliance on any single AI referral source is risky, and businesses should treat AI discovery as a distributed, multi-channel environment.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

React Dev Shares How Image Fixes Delivered Faster Load Times Than JS Tweaks

A React developer discovered that images, not JavaScript bundles, were the biggest drag on their site's performance after inspecting it with Chrome DevTools. Key fixes included resizing images to match actual display dimensions, switching from JPEG to modern formats like WebP and AVIF for smaller file sizes without visible quality loss, and applying lazy loading to off-screen images like thumbnails and gallery photos. Hero images were treated differently — loaded eagerly with the fetchpriority attribute to improve Google's Largest Contentful Paint score. The developer also addressed Cumulative Layout Shift by setting explicit width, height, or CSS aspect-ratio values so browsers reserve space before images load. Using the srcSet attribute was highlighted as a way to serve appropriately sized images to mobile users instead of sending full desktop-resolution files.

0
ProgrammingDEV Community ·

LLVM Tutorial: How to Implement Loop-Invariant Code Motion Optimization

A developer tutorial on DEV Community walks through implementing Loop-Invariant Code Motion (LICM), a classic compiler optimization, using LLVM's pass infrastructure. LICM works by identifying computations inside a loop that produce the same result on every iteration and moving them outside the loop to avoid redundant recalculation. The tutorial builds on earlier articles covering LLVM analysis and transformation passes, including dead code elimination and constant propagation. The implementation centers on two key components: a run method that uses LLVM's LoopInfo analysis to locate loops and their preheaders, and an isLoopInvariant predicate that checks whether an instruction's operands are defined outside the loop. The author emphasizes practical, simplified code to demonstrate LLVM's facilities rather than providing a production-ready solution.

0
ProgrammingDEV Community ·

AI Development Shifts Toward Specialized Agent Teams Splitting Reasoning and Coding

A new approach to AI-assisted software development is emerging where multiple specialized agents divide the work instead of a single model handling everything. A powerful frontier model first analyzes the codebase, interprets the problem, and produces a detailed implementation plan, while a smaller or local model then carries out the actual coding. This division reflects a fundamental difference between reasoning tasks, such as understanding an unfamiliar architecture, and execution tasks, such as writing code within a well-defined plan. The approach can reduce inference costs while maintaining output quality, since the smaller model operates within clearly specified constraints set by the reasoning agent. The shift suggests that in agentic AI systems, the quality of the plan itself becomes as critical as the capability of the model doing the implementation.

0
ProgrammingDEV Community ·

Docxion: Open-Source Android and Web Viewer for Microsoft Office Documents

A developer has released Docxion, an open-source viewer for Microsoft Office formats including DOC, DOCX, XLS, XLSX, PPT, and PPTX, targeting Android and web platforms. The project combines a Kotlin/Jetpack Compose Android library with an underlying TypeScript/React rendering engine, communicating via an embedded WebView. Docxion is licensed under Apache 2.0, making it usable in both open-source and commercial applications without additional licensing costs. The tool aims to eliminate common integration hurdles such as reliance on external services, proprietary SDKs, or separate applications just to display Office files. The project is currently in early development, with rendering fidelity and format support still evolving.