The bug that only showed up once strangers could paste a schema

albertoarena.it - submitted by Alberto Arena

A schema viewer that had only ever read a live database connection was quietly relying on that connection being trustworthy. Letting people paste a mysqldump instead turned up three assumptions that broke silently: identifiers written straight into the diagram definition, unrecognised statements skipped without a word, and relationship inference presenting a guess as a fact. Plus a fourth bug that the regex-based tests could not see, because a regex has no concept of a tag still being open ten lines later.

Read more [albertoarena.it]

Context Engineering: The Discipline That Keeps AI From Writing Slop

albertoarena.it - submitted by Alberto Arena

Most AI slop is a context problem, not a model problem: the same model, given no rules file, no memory and no record of past decisions, invents something plausible instead of something consistent. This covers the four ways context fails, and three checks you can actually enforce: a line budget in CI, a drift check on your context files, and a small set of golden tasks you re-run.

Read more [albertoarena.it]

Claude Code Auto Mode: What Still Needs a Human

albertoarena.it - submitted by Alberto Arena

On August 14 auto mode becomes the default in Claude Code. Anthropic's own test found it catches 89% of dangerous commands versus 13.6% for human reviewers, and still calls it not risk-free. This is the practical playbook: the permission rules, the PreToolUse hook that blocks a push on red tests, and the review habits that keep it honest, with the actual config.

Read more [albertoarena.it]

Why we need cross-CMS conferences?

maciekpalmowski.dev - submitted by Maciek Palmowski

Every CMS tribe (WordPress, Drupal, Statamic, Sanity, pick your poison) has quietly cracked problems the others don't even know exist, but none of that wisdom leaks out because everyone's heads-down in their own bubble. AI just torched the cost of switching stacks, so staying fluent in only one CMS dialect isn't cozy anymore; it's a liability.

Read more [maciekpalmowski.dev]

Laravel Truss 1.6: theme the dashboard and export your schema

albertoarena.it - submitted by Alberto Arena

Laravel Truss 1.6 lets you theme the dashboard to match your app: your own palette under truss.theme, light and dark, with a live theme builder. It also adds truss:export, which writes your database structure to DBML, JSON, CSV, Markdown, or Mermaid, with a --check flag that fails CI when a committed schema file drifts. Structure only, never row data.

Read more [albertoarena.it]