PHP · Reads
Freek Van der Herten explores a conference session on writing PHP extensions using Go and FrankenPHP, then integrating them into Laravel and Symfony. The talk uses an in-memory LRU cache as a worked example to demonstrat…
PHP · Reads
A Tideways video featured on Freek Van der Herten’s blog shows that PHP 8.6 will make array_map faster when the callback is passed as a first-class callable. The short post is a useful pointer for developers tracking PHP…
PHP · Reads
A new Laravel tutorial walks through building a search endpoint with the HTTP QUERY method, using Laravel Scout's database driver and the Route::match(['QUERY']) workaround until Laravel 14 ships a dedicated Route::query…
PHP · Reads
A new package by Chris Keller lets teams migrate to Laravel one route at a time without forcing users to log in again at the boundary. It reads the legacy session cookie, decodes the payload from the legacy database, and…
PHP · Reads
Laravel 13.20.0 ships a first-party Illuminate\Image component for transforming images from uploads, URLs, storage disks, or bytes, backed by optional Intervention Image v4 drivers. The release also adds a #[WithoutMiddl…
DEV · Reads
Cloudflare discovered a race condition vulnerability in the hyper Rust HTTP library's HTTP/1 handling. The flaw affects concurrent request processing and warrants attention from teams using hyper in production systems. D…
DEV · Reads
GhostLock is a use-after-free (UAF) vulnerability affecting the kernel's I/O handling stack that persisted across all major Linux distributions for approximately 15 years. The flaw, detailed in security research, represe…
AI · Reads
This guide explores how generative AI agents can accelerate .NET development by automating boilerplate, testing, and documentation. It emphasizes a human-in-the-loop approach, treating AI as a productivity booster rather…
DEV · Reads
A humorous take on poor software architecture through the lens of furniture organization. The post examines common design mistakes and over-engineering pitfalls that developers encounter when structuring their codebase, …
AI · Reads
This tutorial shows how to set up a fully local healthcare AI assistant using MedGemma, Ollama and Open WebUI. It focuses on keeping sensitive patient data on-premises to satisfy privacy regulations and avoid cloud servi…
AI · Reads
The Hugging Face blog post presents a native-speed modeling backend for vLLM combined with transformers. Readers working on LLM inference will find concrete details about performance gains and integration paths. The piec…
DEV · Reads
This Reddit submission points to the official announcement for TypeScript version 7.0. Professional developers using TypeScript in web projects should read it to learn about the latest additions, potential breaking chang…
DEV · Reads
This short piece argues that many teams add extra databases, queues, caches, and services before they actually need them. It is worth reading for its practical framing of when Postgres can stay the center of a stack, and…
DEV · Reads
The post examines techniques for enabling partition pruning in PostgreSQL when queries filter on columns outside the partitioning key. It covers practical approaches to preserve performance gains from table partitioning …
DEV · Reads
Guide to deploying Umami, a privacy-focused analytics platform, across serverless and edge infrastructure. Covers practical setup on Cloudflare Workers, Fly.io, and Supabase, appealing to developers seeking vendor-indepe…
PHP · Reads
This piece looks at a Laravel package that adds passwordless authentication through magic links and one-time codes, with a handoff to Fortify for two-factor flows. It is worth reading if you work on login UX or security,…
PHP · Reads
Laravel 13.19.0 adds support for the HTTP QUERY verb with a new Http::query() client method and query/queryJson testing helpers. The release also includes a reduceInto collection method, a counted string helper, and bulk…
PHP · Reads
Freek Van der Herten argues that CLAUDE.md serves best as temporary working memory for AI coding sessions rather than growing into permanent project documentation. The post shares concise practices to keep the file focus…
PHP · Reads
Developers integrating AI into Laravel applications should read this to learn about Intercept, a package offering middleware that protects against prompt injection and PII exposure in the Laravel AI SDK. It provides an e…
PHP · Reads
Shift now integrates AI-powered code review into its Laravel upgrade workflow. The feature combines Shift's detailed migration comments with AI context for a second-pass analysis, improving upgrade accuracy and reducing …
DEV · Reads
The official jscrambler npm package was compromised at version 8.14.0, introducing malicious code into the dependency chain. Developers using this version should update immediately and audit their projects for potential …
AI · Reads
This tutorial is worth reading for developers working with local AI agents. It explains how to create an MCP server using FastMCP, connect the agent to its tools, and add support for remote MCP servers to extend function…
AI · Reads
This review examines how self-consistency enhances chain-of-thought prompting for LLM reasoning tasks. Rather than relying on a single reasoning path, the technique samples multiple diverse paths and aggregates results, …
PHP · Reads
A walkthrough of a developer's dotfile repository—shell aliases, functions, and CLI tools that enable rapid machine setup. Covers modern replacements for Unix utilities (eza, bat, ripgrep, fd, zoxide, delta) with transpa…
DEV · Reads
The Reddit thread explores reasons developers are moving from GitHub to Codeberg and self-hosted options. It highlights concerns around platform policies, pricing changes, data control, and the appeal of community-owned …
DEV · Reads
This short item is worth reading because it flags a serious Linux vulnerability affecting virtualized environments and notes a $250K reward tied to it. For developers running workloads in VMs or managing cloud infrastruc…
PHP · Reads
Jarred Sumner explains why the Bun team is moving parts of the runtime from Zig to Rust after repeated memory-safety problems in a codebase that combines garbage collection with manual memory management. The piece also d…
PHP · Reads
This article shows a real prompt-injection attack that extracts a Laravel AI support agent's system prompt and customer data. It then presents four practical defenses: hardened prompts, a local Ollama guard, tool-level a…