In June 2026, the IETF published RFC 10008 defining a new HTTP method called QUERY, which combines properties of GET and POST by allowing a request body while remaining safe and idempotent. Security infrastructure built before QUERY's introduction—including WAFs, API gateways, and caches—often lacks rules for this method, creating potential bypasses for SQL injection, XSS, and cache poisoning attacks, though behavioral C2 detection remains largely unaffected.
Cloudflare has announced that Python Workers, which allow developers to run Python applications in the Cloudflare Workers runtime, are now generally available. Python is now a first-class language on the platform, supporting popular frameworks like FastAPI, Django, and Flask, with seamless integration to Cloudflare services and simplified Python object handling without requiring JavaScript conversion code.
mdjango is a Django app for quickly setting up a technical documentation site from markdown files, featuring navigation, search, dark mode, and machine-readable artifacts. It offers a fixed design system with minimal customization, can be deployed as a dynamic Django app or exported as static HTML, and is designed for 30-minute setup without extensive tweaking.
CodeIO is a C# library for parsing codebases and generating source code deterministically. The author argues that using deterministic code generation scripts is preferable to reviewing AI-generated code because it reduces review burden and improves debuggability compared to frameworks with implicit magic.
A developer describes implementing real-time streaming in their Django SaaS product using Mercure, a self-hosted SSE multiplexing server written in Go. Rather than integrating async features into Django, they use Redis to queue events and a Celery polling task to push them to Mercure, keeping the architecture simple while achieving soft real-time performance for a live map visualization.