It's a big one
This week's newsletter aggregates eclectic links including blog posts, animal-themed images, and an updated Agentic Engineering Patterns guide. It offers a varied digest of tech observations and practical patterns for engineers.
The best of dev and AI, scored every day by an agent. Filtered, summarized, ranked. No color, no noise — just the substance.
This week's newsletter aggregates eclectic links including blog posts, animal-themed images, and an updated Agentic Engineering Patterns guide. It offers a varied digest of tech observations and practical patterns for engineers.
Honker brings Postgres NOTIFY/LISTEN semantics to SQLite via a Rust extension and bindings, enabling Python queues and Kafka-style durable streams. It exposes SQL helpers like notify and honker_stream_read_since, and uses WAL mode with near-real-time polling of the .db-wal to deliver transactions. It implements the transactional outbox pattern to ensure items enqueue only after a commit.
L’article montre que Claude Code a souffert d’une dégradation de qualité liée à trois soucis dans le harness. Le post-mortem d’Anthropic décrit un bug du 26 mars qui efface les anciennes idées dans les sessions inactives, provoquant l’oubli et la répétition à chaque tour. L’auteur insiste sur l’importance des bugs de harness pour les systèmes agentiques et invite à lire l’analyse complète.
Bluesky enables anyone to run a custom 'feed' implementation. spacecowboy's For You Feed serves ~72k users from a single Go process using SQLite on a gaming PC, storing 90 days of data (~419GB). Public traffic runs through a $7 OVH VPS via Tailscale; total cost is ~$30/month, and the system could scale to ~1M DAU with their cheapest algorithm.
DeepSeek-V4 introduces a million-token context window optimized for agent workloads, tackling the KV cache problem with a hybrid attention design (CSA and HCA) that alternates compressed and dense attention to reduce FLOPs and memory. It supports long-running tool-use trajectories and includes an agent-specific post-training recipe, yielding faster inference and far lower cache usage versus prior architectures.
L’article présente LiteParse, un outil open source qui extrait le texte de PDFs dans le navigateur sans modèles d’IA, en utilisant PDF.js et Tesseract.js. Il repose sur un parsing spatial robuste pour restituer l’ordre des textes dans les mises en page complexes (multi-colonnes). L’auteur montre comment passer le CLI Node.js existant en version web avec Claude Code.
L’article décrit la sortie de GPT‑5.5 intégré à OpenAI Codex et son déploiement prochain via l’API. Il expose un contournement « backdoor » via l’endpoint Codex permettant d’utiliser son abonnement ChatGPT avec llm-openai-via-codex. Le billet note aussi que GPT‑5.5 coûtera le double de GPT‑5.4 en API.
The episode surveys trends from AIE Europe and introduces Agent Labs' Thesis on Unsupervised Learning x Latent Space Crossover, exploring how latent representations can cross boundaries across models. It positions 2026 as a year for integrating unsupervised methods with latent space insights, ahead of the Cursor-xAI deal.
Simon Willison partage un retour d’expérience sur l’utilisation d’OpenAI via son projet Codex CLI, abordant les motivations, les limites et les gains de productivité. Le billet est un résumé synthétique et pratique destiné aux développeurs confrontés aux outils LLM.
The Pulse reports from 15 tech companies on the rapid rise in AI token spending and the varied responses. Vendors can't keep up with demand while morale at Meta sinks, highlighting growing operational and cost pressures as AI usage scales.
Flipdiscs est une plateforme qui propose une approche visuelle et interactive pour concevoir et gérer des workflows de transformation de données, en se concentrant sur la réduction de la complexité. L’outil permet de builder des pipelines par glisser-déposer, idéal pour prototyper rapidement des architectures ETL ou des orchestrateurs de données.
OpenAI's GPT-5.5 System Card outlines a model aimed at complex, real-world work from coding and online research to document generation and multi-tool orchestration. It emphasizes earlier task understanding, reduced need for guidance, and stronger safeguards, including red-teaming and a Preparedness Framework, with feedback from ~200 early partners. The card notes GPT-5.5 Pro variants and API deployment safeguards updated in April 2026.
Codex automations enable task automation through schedules and triggers to generate reports, summaries, and recurring workflows without manual input. The article outlines practical patterns to automate routine AI/Dev tasks, reducing toil and enabling repeatable processes.
Codex offers practical automation by turning inputs into outputs across tools, files, and workflows. This article lists 10 use cases to help teams automate tasks and rapidly generate deliverables with AI-assisted coding.
Cet article explique comment configurer les paramètres de Codex, notamment la personnalisation, le niveau de détail et les permissions, pour exécuter les tâches sans accroc et personnaliser votre flux de travail. Il met l'accent sur des ajustements concrets qui permettent d'optimiser l'expérience développeur et d'adapter Codex à vos besoins opérationnels.
An introductory guide to Codex that walks you through setting up projects, creating threads, and tackling your first tasks with step-by-step instructions. It emphasizes practical, hands-on onboarding to start coding with Codex quickly.
Learn how to configure a Codex workspace, create threads and projects, and manage files with a structured workflow. The guide emphasizes step-by-step guidance to start completing tasks efficiently.
Codex plugins and skills enable connecting tools, accessing data, and following repeatable workflows to automate tasks. The article explains how to leverage these capabilities to improve automation and results.
DeepSeek V4 is now available on Vercel AI Gateway with two variants: Pro and Flash, both featuring a 1M token context window. Pro focuses on agentic coding, formal reasoning, long-horizon workflows, and cross-stack tool use; Flash is lighter with faster responses for high-volume tasks. AI Gateway offers a unified API for models, usage tracking, retries, and observability.
L’article décrit comment intégrer Transformers.js dans une extension Chrome MV3, en détaillant l’architecture à trois contextes (arrière-plan, panneau latéral, script de contenu), la gestion des modèles et le contrat de messagerie. Il montre comment exécuter l’inférence localement en arrière-plan et synchroniser l’historique avec l’interface côté client. Destiné aux développeurs, il fournit les patterns pour héberger un moteur d’IA local dans une extension.