Monday, September 14, 2026

OpenAI Response API vs Chat Completions

 OpenAI Response API vs Chat Completions: Which Should You Use for Your Next Build?


Chat Completions vs OpenAI Responses API: What Actually Changed - DEV Community


Migrate to the Responses API | OpenAI API

The Responses API is a unified interface for building powerful, agent-like applications. It contains:

The Responses API contains several benefits over Chat Completions:

  • Better performance: Using reasoning models, like GPT-5, with Responses will result in better model intelligence when compared to Chat Completions. Our internal evals reveal a 3% improvement in SWE-bench with same prompt and setup.
  • Agentic by default: The Responses API is an agentic loop, allowing the model to call multiple tools, like web_search, image_generation, file_search, code_interpreter, remote MCP servers, as well as your own custom functions, within the span of one API request.
  • Lower costs: Results in lower costs due to improved cache utilization (40% to 80% improvement when compared to Chat Completions in internal tests).
  • Stateful context: Use store: true to maintain state from turn to turn, preserving reasoning and tool context from turn-to-turn.
  • Flexible inputs: Pass a string with input or a list of messages; use instructions for system-level guidance.
  • Encrypted reasoning: Opt-out of statefulness while still benefiting from advanced reasoning.
  • Future-proof: Future-proofed for upcoming models.


SDKs and CLI | OpenAI API


Sunday, September 13, 2026

business story: Nike -80%

Nothing is permanent... Nike founding story was great, 
but recent strange business moves to make it hard to purchase,
and promote non-core values instead of quality and excellence,
came with cost of 80% stock value decline.
Not good.

Nike Stock Slips Premarket: Retail Calls Nike A 'Sinking Ship' After S&P 100 Exclusion @yahoo

Nike’s $200B Collapse - YouTube @all-in-podcast

Core Identity and Messaging Shift

The speakers argue that Nike lost its way by moving from a focus on mastery and excellence in athletics toward political and "woke" marketing campaigns.

  • Loss of Aspirational North Star: Historically, the brand was built on the achievements of legendary athletes like Michael Jordan, Tiger Woods, and Serena Williams, which inspired consumers to strive for personal improvement. The speakers feel the company traded this aspirational ethos for messages that felt disconnected from athletic performance and, in some cases, polarizing.
  • Controversial Marketing: The decision to feature figures and themes associated with political activism (such as the Colin Kaepernick campaign and the partnership with Dylan Mulvaney) was cited as a major turning point that alienated a significant portion of their traditional base.

Strategic and Operational Failures

Beyond the marketing narrative, the speakers highlighted operational issues that compounded the brand's struggles:

  1. Direct-to-Consumer (DTC) Pivot: Under CEO John Donahoe, the company aggressively pursued a DTC strategy, which involved pulling products from long-standing retail partners. This move alienated retail networks and opened the door for competitors like Hoka and On Running to capture market share.
  2. Product Quality Concerns: Some speakers noted that the actual quality of the products seemed to decline, making them feel less durable and reliable than in the past.
  3. Reorganization Issues: The shift from a sport-centric organizational structure to one based on gender and age categories was criticized as a change that undermined the company's deep ties to specific athletic disciplines.

Top alternative brands to Nike for walking shoes include New Balance, HOKA, Brooks, and ASICS. [1]
Leading Alternative Brands
  • New Balance: Highly recommended by podiatrists for all-day wear, offering dedicated walking and stability options (like the New Balance 608 v5) with extensive sizing and wide-width availability. [1]
  • HOKA: Known for maximalist, thick-cushion foam midsoles and rocker geometries that absorb impact, such as the HOKA Bondi 9 and slip-resistant HOKA Bondi SR for work and long walks. [1, 2]
  • Brooks: A favorite for supportive performance, featuring long-running stability and walking staples like the Brooks Addiction Walker 2 and Brooks Ghost Max 3. [1, 2]
  • ASICS: Renowned for durable cushioning and arch support, highlighted by models like the ASICS GT-2000 series for steady, long-distance walking comfort. [1, 2, 3]

Hydro: Rust distributed programming @AWS

 A Rust Framework to Simplify Distributed Systems - Software Engineering Daily

Hydro is a Rust-based framework developed to bring declarative, database-style querying to general-purpose distributed programming, aiming to make multi-machine software simpler and safer to build.


Key Highlights

  • Core Concept: Applies foundational database principles to general-purpose distributed systems to automate low-level challenges like race conditions, message ordering, and failure recovery.

  • Featured Guest: Joe Hellerstein, a former UC Berkeley researcher with 30 years of experience in database systems who is currently bringing this research into production at AWS.

  • Host: Sean Falconer, Head of AI at Confluent.

  • Target Audience: Developers building cloud infrastructure and large-scale distributed systems that require high reliability and scalability.

Official Hydro Project Links




Hydro is a high-level distributed programming framework for Rust. Hydro can help you quickly write scalable distributed services that are correct by construction. Much like Rust helps with memory safety, Hydro helps with distributed safety.

Hydro integrates naturally with standard Rust constructs and IDEs, providing types and programming constructs for ensuring distributed safety. Under the covers, Hydro is powered by the Dataflow Intermediate Representation (DFIR), a compiler and low-level runtime for stream processing. DFIR enables automatic vectorization and efficient scheduling without restricting your application logic.

Get started today at hydro.run





Based on the podcast episode, the key points about Hydro include:

Core Purpose & Vision

  • Declarative Distributed Programming: Hydro brings declarative, database-style query models into general-purpose distributed systems programming.

  • Simplifying Cloud Software: It automates low-level coordination tasks across multi-machine clusters—such as handling race conditions, message ordering, and failure recovery.

Technical Design & Ecosystem

  • Rust Integration: Written as a Rust library, Hydro leverages Rust's core benefits (performance, safety, type system) while extending them with distributed safety and optimization features.

  • Database Principles at Scale: Applies 30+ years of database research—pioneered by Joe Hellerstein at UC Berkeley—to give non-database cloud software the same automatic execution, scaling, and fault tolerance that traditional distributed databases enjoy.

Industry Application

  • AWS Production Push: Hellerstein is actively advancing the framework at AWS to help ensure the reliability and scale required for modern cloud infrastructure.