SShortSingh.
Back to feed

ChatGPT Surpasses 50 Million Paid Subscribers and 900 Million Weekly Users

0
·3 views

OpenAI announced on February 27, 2026, that ChatGPT has exceeded 50 million consumer subscribers and 900 million weekly active users. The subscriber figure spans ChatGPT Plus and related consumer plans priced at $20 per month, and is not limited to Plus-only accounts. Third-party credit card panel data cited by Earnest Analytics suggests roughly 89% of paying users remained after one quarter and 74% after three quarters, though OpenAI has not officially confirmed retention rates. The milestone signals that paid AI has moved well beyond early adopters, reflecting a broad willingness among consumers to pay for ongoing access. Analysts note, however, that subscriber scale alone does not guarantee business value — measurable workflow impact remains the more meaningful benchmark for organizations evaluating AI investment.

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 ·

Why Every Production Webhook Endpoint Becomes a Tiny Distributed System

A webhook endpoint may start as a simple Rails controller action, but production requirements quickly layer on complexity including signature verification, background jobs, and retry logic. Security comes first: providers like GitHub and Stripe sign their payloads with HMAC-SHA256, and the raw request body must be verified before any parsing occurs. Duplicate event delivery, out-of-order processing, and concurrent workers introduce the same challenges found in large-scale distributed systems. The article walks through a minimal Rails implementation that handles signature validation using a shared secret and Rails' timing-safe secure_compare. The author argues that a single HTTP webhook endpoint, once hardened for production, mirrors the core concerns of distributed architecture in miniature.

0
ProgrammingDEV Community ·

Tutorial: Build a Real-Time Stress Detector Using Python, Scikit-Learn, and WebSockets

A new developer tutorial on DEV Community walks through building a real-time Heart Rate Variability (HRV) anomaly detection system using Python and machine learning. The system uses Scikit-learn's Isolation Forest algorithm, which requires no labeled training data, to identify stress-related anomalies in a continuous biometric data stream. FastAPI handles live WebSocket connections from wearable devices, enabling low-latency data ingestion compared to traditional REST APIs. When the model detects an anomalous HRV reading, it triggers a mindfulness alert and updates a D3.js dashboard that visually flags the stress event in real time. The tutorial targets developers with Python 3.9 or later and covers the full pipeline from wearable data simulation to browser-based visualization.

0
ProgrammingDEV Community ·

Developer's Web Scraping Project Reveals Surprisingly Complex Bot Detection Systems

An independent researcher documenting their web information retrieval journey set out to build a web scraper as a hands-on foundation before diving into academic literature. The project hit an unexpected obstacle when the scraper was repeatedly blocked, particularly when using a headless browser. Investigating the cause led the researcher into the world of anti-bot mechanisms, which turned out to be far more sophisticated than simple checks like User-Agent strings or request frequency. Modern bot detection systems can inspect dozens of browser signals simultaneously — including WebGL, Canvas fingerprinting, audio APIs, and even battery status — combining them to distinguish real users from automated tools. The researcher now plans to study open-source bot-detection code in depth before pursuing original contributions at the intersection of cybersecurity and software engineering.

0
ProgrammingDEV Community ·

How a Werkzeug version mismatch can silently break Flask on Ubuntu 24.04

A developer running Flask 3.0.3 on an Ubuntu 24.04 staging server traced a severe memory-swap incident to a version conflict between Werkzeug 2.x and Flask 3.x, which require Werkzeug 3.0 for API compatibility. Ubuntu 24.04's apt package manager pins an older Werkzeug build, meaning installing Flask via apt can create an environment where imports succeed but routing fails under production load. The recommended fix is to use a Python 3.12 virtual environment and pin dependencies explicitly with a constraints file, bypassing the system-managed package directory entirely. A verification script is also advised to confirm correct versions and flag environments consuming over 150MB of RSS memory at import time. The article emphasises that Flask itself is not a production WSGI server and must be paired with a properly configured server such as uWSGI or Gunicorn for deployment.