cd/sources/belderbos-auto-discovered· home sources Belderbos (auto-discovered)
cat /sources/belderbos-auto-discovered.feed | wc -l → 18

Belderbos (auto-discovered)

articles 18 domain belderbos.dev → feed RSS
00:00
2026-07-13
belderbos.dev
artificial-intelligence

Learning New Skills in the AI Era (vBrownBag)

A vBrownBag podcast episode featuring PyBites co-founder Julian Sequeira argues that deliberate friction is essential for learning new skills in the AI era, warning that AI agents can become a crutch …

00:00
2026-07-10
belderbos.dev
developer-tools

Rust, AI, and the Developer Mindset (Develpreneur Podcast)

On the Develpreneur podcast, Rust developer and educator discussed how Rust's strict compiler acts as a guardrail for AI coding agents, catching mistakes that models might miss. The conversation highl…

00:00
2026-07-08
belderbos.dev
artificial-intelligence

Judgment: The Skill AI Can't Give You

A developer argues that AI-generated code cannot replace human judgment, domain understanding, and system thinking, warning that overreliance on AI tools leads to skill atrophy and shallow solutions. …

00:00
2026-07-04
belderbos.dev
developer-tools

One Core, Two Interfaces, No Rewrites

Developer builds Ask the Canon with a functional core shared by CLI and web interfaces, using caching and pre-warming to avoid latency on first request. The architecture separates ranking logic from p…

00:00
2026-06-30
belderbos.dev
artificial-intelligence

Ask the Canon: Semantic Search Without a Vector Database

Developer built Ask the Canon, a semantic search engine over 100 public-domain books, using Hugging Face and NumPy without a vector database or external AI APIs. The system loads 79,292 passages as a …

00:00
2026-06-26
belderbos.dev
ai-agents

There Is No Magic: An AI Agent in 60 Lines of Python

An AI agent is not a new type of model but rather a small amount of plumbing around an LLM, consisting of Model, Instructions, Memory, Tools, and an Execution Loop. A minimal agent can be built from s…

00:00
2026-06-25
belderbos.dev
developer-tools

Python Is Not Enough: Why Pythonistas Love Rust (Podcast)

In a podcast episode of complexity.fm, Bas Steins and Michal Martinka discussed why Python developers are adopting Rust for tooling like Ruff, uv, and Polars, citing Rust's strictness and compiler gua…

00:00
2026-06-24
belderbos.dev
artificial-intelligence

AI Is an Accelerator, Not a Compass

A developer spent three days using AI to build an authentication system, only to realize the user flow was fundamentally wrong because no one had defined the requirements beforehand. Industry observer…

00:00
2026-06-09
belderbos.dev
artificial-intelligence

AI Doesn't Change What Software Engineering Is

Kelsey Hightower argued on the Pragmatic Engineer podcast that AI does not change what software engineering is, emphasizing that writing code is decision-making and that fundamentals remain essential.…

00:00
2026-06-03
belderbos.dev
developer-tools

How to Tell if Your Python Mock Is Actually Working

A Python test that mocks a third-party API call can pass for the wrong reason if the mock does not actually intercept the call. Developers can verify mock interception by adding `mock_get.assert_calle…

00:00
2026-06-02
belderbos.dev
developer-tools

Build the Simplest Thing That Works

Developer Bob Belderbos built a minimal CLI CRM using two Python files, two dependencies, and Markdown files, avoiding over-engineering by constraining the design to a single user, local files, and no…

00:00
2026-06-01
belderbos.dev
ai-agents

AI Human-in-the-loop: News Digest Triage Telegram Bot

A developer built a Telegram bot that uses AI to categorize tech news stories and lets users confirm or override the tags with a single tap, implementing a human-in-the-loop system to catch AI halluci…

00:00
2026-05-30
belderbos.dev
ai-agents

The control layer is the product, not the model

Gary Bernhardt argues that the control layer above AI models, not the models themselves, is the true product in agentic AI systems. He advocates for deterministic state machines, typed boundaries, and…

00:00
2026-05-22
belderbos.dev
ai-agents

What production AI agents actually require

Production AI agents require robust state management, idempotency, audit trails, and rollback capabilities, not just fluent LLM calls. A senior engineer argues that most agent demos fail in real workf…

00:00
2026-05-20
belderbos.dev
artificial-intelligence

How to Keep Your Developer Instincts When AI Writes the Code

Developers risk losing core engineering instincts by relying too heavily on AI coding tools, according to multiple experts. Lars Faye warns that agentic coding prevents junior developers from building…