Coding

4. Jul 2026

Ornith 1.0: When the Model Writes Its Own Scaffold

DeepReinforce trains a coding model that learns its own agent harness. I tested the 9B and 35B locally on an M3 Max. The idea is strong, the benchmarks are self-reported, and the biggest stumbling block sits in the packaging.
KI · Coding · Apple Silicon
20. Jun 2026

Where the cloud usually sits

For the finale we place the local agent where Claude or ChatGPT usually sit inside Xcode. Apple showed the local provider slot at WWDC26, and we installed macOS 27 and Xcode 27 on purpose to put it to the test. How far does the borrowed small model get there? Article 13 of the series "A Local Coding Agent with apfel".
KI · Apple Silicon · Coding
19. Jun 2026

n8n Authenticates Against SAP BTP — OAuth Against a CAP Service

The series finale: n8n binds to its own service on SAP BTP with a real OAuth flow. Client Credentials against the xsuaa token endpoint, a CAP service as a SAP-native stand-in, the n8n OAuth2 credential, and a workflow that enriches a ticket with a case ID from BTP.
n8n · KI · Coding
15. Jun 2026

n8n or SAP Integration — Not an Either-Or

Eleven articles covered what n8n can do. This one places where it does not belong: against SAP Cloud Integration with its EAI heritage and the Edge Integration Cell with its data boundary. With a decision tree instead of a tool takedown.
n8n · KI · Coding
15. Jun 2026

n8n in Queue Mode — Main, Worker and Redis

Operation goes production-ready. This article moves the single-process instance to queue mode: main accepts webhooks and enqueues executions in Redis, workers run them. With worker scaling, queue metrics, a production checklist, and a note on what queue mode does not do.
n8n · KI · Coding
14. Jun 2026

CSS Gets Real Functions: The @function Rule

With @function you define your own CSS functions. The real novelty is not that CSS rebuilds Sass, but that a CSS function decides in the browser instead of at build time.
Coding
13. Jun 2026

n8n Meets SAP — the Bridge over OData and HTTP

The pipeline now enriches its tickets with master data from a SAP backend. This article shows the OData binding over HTTP, SAP's own error format, graceful degradation on an unknown customer, and where AIF stays complementary.
n8n · KI · Coding
13. Jun 2026

Container machine: Apple's Quiet Shot at Docker Desktop

With the Containerization architecture and the new Container machine, Apple has spent two years building a native Docker alternative for the Mac. A technical analysis of who is really under attack.
Apple Silicon · Coding
12. Jun 2026

The agent in the browser

The agent gets a third surface. Behind a Hummingbird server it streams its work into the browser over Server-Sent Events, confirmation by click included. The same core as in the terminal, only a different sink. Article 11 of the series "A Local Coding Agent with apfel".
KI · Apple Silicon · Coding
11. Jun 2026

Tools the agent doesn't write: MCP

MCP moves writing tools out of the agent into separate servers. We build a small MCP server, attach it to apfel, and measure what MCP solves and what it doesn't. Article 10 of the series "A Local Coding Agent with apfel".
KI · Apple Silicon · Coding
10. Jun 2026

Two Models, One Entry Point — Round-Robin and Failover over Local AI Backends

A single AI backend degrades to the rule-based emergency exit on failure. This article builds real redundancy from two local models: round-robin in normal operation, automatic failover on a single outage, rule-based only when both are down.
n8n · KI · Coding
10. Jun 2026

The interactive terminal session

The one-shot command becomes an interactive REPL session. The key to testability is the strict separation of render logic and terminal I/O. Article 9 of the series "A Local Coding Agent with apfel".
KI · Apple Silicon · Coding
10. Jun 2026

Claude Fable 5: Anthropic's Mythos Class Goes Public, With Caveats

Two months after warning that Mythos was too dangerous to release, Anthropic makes the Mythos class public. A look at Claude Fable 5 and Mythos 5 between benchmark records, pricing tactics, and 30-day data retention.
KI · Coding · claude · anthropic
9. Jun 2026

The agent loop with a done-check

The naive agent loop ends when the model goes quiet, and that is just a self-report. We build a loop whose stop condition is a machine check, with an iteration limit and a context budget as guards. Article 8 of the series "A Local Coding Agent with apfel".
KI · Apple Silicon · Coding
9. Jun 2026

One Entry Point, Two Classifiers — Merging the AI Pipeline into the Live Path

Until now two separate paths ran side by side: the rule-based ingest and the AI classification. This article merges them into one pipeline, makes classification a swappable stage, and positions the rule-based classifier as a deliberate fallback behind the model.
n8n · KI · Coding
8. Jun 2026

Editing that works: constrained output instead of tool guessing

The naive file edit fails on the small model. We build the agent around that weakness, with constrained output and a two-stage edit workflow, and measure how much can be recovered. Article 7 of the series "A Local Coding Agent with apfel".
KI · Apple Silicon · Coding
8. Jun 2026

The local coding agent put to the eval

A reproducible eval of 15 tasks across five categories measures where the local Foundation Model carries as a coding agent and where it breaks. With a cloud sample and a separate measurement of what the model claims about its own success. Article 6 of the series "A Local Coding Agent with apfel".
KI · Apple Silicon · Coding
8. Jun 2026

When the Workflow Learns to Fail — Error Handling and Observability in n8n

The AI classifier runs, but what happens when the model goes down? A global error workflow with a Telegram alert, an observability stack of Prometheus, Loki and Grafana, and a silent fallback that wants to be made visible.
n8n · Coding · KI
7. Jun 2026

The first real tools: file system and shell

We build the first tools the agent uses to change things, and lock them down — a path sandbox, a confirmation gate, a diff before writing, and defense-in-depth for the shell. Article 5 of the series "A Local Coding Agent with apfel".
KI · Apple Silicon · Coding
7. Jun 2026

Understanding tool calling: from schema to round-trip

We teach the agent to call tools — the tool definition in the OpenAI schema, the round-trip of invocation, execution and continuation, and a tool abstraction in Swift. Article 4 of the series "A Local Coding Agent with apfel".
KI · Apple Silicon · Coding
6. Jun 2026

CSS Can Now Animate Between Pages: View Transitions Without JavaScript

Cross-document view transitions bring app-like navigation to classic multi-page sites — with a single CSS at-rule and no framework at all.
Coding · css
4. Jun 2026

The Swift client: first connection to the model

We set up a Swift package, build an async HTTP client against apfel --serve and process SSE streaming token by token — Article 3 of the series "A Local Coding Agent with apfel".
KI · Apple Silicon · Coding
3. Jun 2026

The serve mode and the OpenAI protocol

We start apfel as a local OpenAI-compatible server, walk through every endpoint and see where the protocol diverges from OpenAI — Article 2 of the series "A Local Coding Agent with apfel".
KI · Apple Silicon · Coding
3. Jun 2026

apfel from the command line

We install apfel, walk through the three modes (prompt, serve, chat), and see where the on-device model holds up and where it gives way — Article 1 of the series "A Local Coding Agent with apfel".
KI · Apple Silicon · Coding
2. Jun 2026

The Model Is Already There — A Prologue to the Local Coding Agent

A series takes a close look at the Foundation Model every Apple Silicon Mac running macOS 26 ships with — and builds on it a coding agent in Swift that runs locally.
KI · Apple Silicon · Coding
1. Jun 2026

GitHub got hacked. Not because of a zero-day. Because of trust.

The TeamPCP incident from May 2026 shows how a tampered VS Code extension led to the exfiltration of around 3,800 internal GitHub repositories — and why the problem is not GitHub but the trust model of modern developer environments.
Security · Coding
28. May 2026

Claude Opus 4.8: The Honesty Jump and Dynamic Workflows

Anthropic has released Claude Opus 4.8: same price as 4.7, a clear jump in coding and reasoning, a measurably lower tendency to let its own code flaws slip by, and dynamic workflows with hundreds of parallel subagents.
claude-code · AI · coding
27. May 2026

Webhooks, HTTP, and Credentials — the Production Entrance

How an n8n workflow gets an authenticated webhook endpoint, how credentials are stored securely, and how classifier logic is extracted into a sub-workflow.
n8n · Coding · SAP
26. May 2026

Nodes, Expressions, and the First Workflow Without AI

Building a rule-based ticket classifier in n8n: the item model in practice, writing expressions correctly, choosing between Set and Code nodes — and where the classifier predictably fails.
n8n · Coding · SAP
22. May 2026

Test Data, Because Real Data Is Off the Table

Why a real ticket dataset has no place in a public repo, and how a hybrid generator using local models and Claude produces realistic test data with a reproducible distribution.
n8n · Coding · SAP
21. May 2026

Self-Hosting with Docker Compose — n8n, Postgres, and Caddy

Self-hosting n8n in a production-grade setup: Docker Compose, Postgres instead of SQLite, Caddy with auto-HTTPS, persistent volumes, and the environment variables that actually matter.
n8n · coding · sap
20. May 2026

n8n in Overview — Architecture, Item Model, and Demo Repo

What n8n actually is under the hood: editor, execution engine, task runners, workflows as JSON. Plus the item array as the central data model and where n8n fits in the integration landscape.
n8n · coding · sap
20. May 2026

Benchmarks — Hummingbird against FastAPI and Fastify

Article 7 of the Hummingbird series. We measure the LLM gateway against functionally equivalent implementations in FastAPI and Fastify — with a fair middleware stack, a deterministic backend stub, and oha as the load generator. The results are both what you expect and somewhat surprising.
Hummingbird · Coding · KI
18. May 2026

Why n8n, why now — Prologue to the Getting-Started Series

SAP has taken a strategic stake in n8n and embedded it in Joule Studio. Mercedes-Benz is rolling out the platform globally. A prologue to the n8n getting-started series.
n8n · coding · sap
13. May 2026

ABAP Goes Agentic: MCP Server, VS Code, and the Price of AI Support

SAP announced the ABAP MCP Server at Sapphire 2026 — the technical foundation for plugging external AI agents like GitHub Copilot, Amazon Q, or Claude Code directly into ABAP development. A look at what the announcements mean technically, what they will cost, and where the gaps remain.
llm · coding
9. May 2026

What Agentic Coding Actually Means

Prologue · Series: Agentic Coding with Claude Code. Anyone reading tech newsletters, conference keynotes, and tool landing pages this year runs into two terms sold with identical promises: Vibe Coding and Agentic Coding. The future of programming, they say.
agentic-coding · claude-code · llm · coding · byhaushalt
2. May 2026

Migration with a CI Focus: From Plan to Execution

A step-by-step migration strategy away from GitHub, with a focus on CI pipelines. Concrete workflow translation, self-hosted runner setup, why OSS and proprietary builds must not share runners, and a checklist you can tick off.
coding · llm · privacy
29. Apr 2026

Alternatives Compared: Codeberg, Forgejo, Gogs, Launchpad and More

Which code hosting platforms operate without default-on data processing? Comparison table, platform profiles from Codeberg through Gogs and Launchpad to AWS CodeCommit, plus a concrete TDM opt-out implementation.
coding · llm · privacy
26. Apr 2026

Default-on Since April 24: GitHub Trains Copilot on User Code

Since April 24, 2026, GitHub uses Copilot data from Free, Pro and Pro+ accounts for AI training by default. What's behind the change and why it exposes the platform's two-class model.
llm · coding · politics
16. Apr 2026

Claude Opus 4.7: More Coding Power, More Pixels, and a Hint at Mythos

Anthropic releases Claude Opus 4.7 with significantly better coding performance, 3.75 megapixel vision, and a new xhigh effort level. An assessment of the benchmarks and the Mythos hint on the side.
llm · coding
4. Apr 2026

BookBridge: Bidirectional Sync Between Obsidian and BookStack

An Obsidian plugin for bidirectional synchronization with BookStack — built with Claude Code as a structured development partner.
coding · obsidian · project