AWS AI Partner Builder Day 2026 — Day 1

Summary Notes from day 1 of AWS AI Partner Builder Day 2026 (July 9–10). The sessions covered what’s new across three products — Amazon Bedrock, Amazon Bedrock AgentCore, and Strands Agents — followed by a workshop on AI agent patterns, agentic workflow patterns, and multi-tenant architectures. Notes Three stops: Amazon Bedrock Amazon Bedrock AgentCore Strands Agents I. What’s new in Amazon Bedrock New inference endpoint: bedrock-mantle — bedrock-mantle.{region}.api.aws Advantages over bedrock-runtime: ...

July 9, 2026 · 13 min

Rust Ownership: Mental Models That Finally Clicked

The Problem Rust Solves Memory bugs — use-after-free, double-free, dangling pointers — are the root of most systems security vulnerabilities. Rust eliminates them at compile time. The Three Rules Every value has exactly one owner. When the owner goes out of scope, the value is dropped. Ownership can be transferred (moved) or temporarily lent (borrowed). What Finally Clicked I stopped thinking about the borrow checker as a restriction and started thinking about it as a guarantee: there is always exactly one place responsible for cleanup. ...

June 10, 2026 · 1 min
pixel cat