Building my own language model: Predicting the next token (Part 5)

So far, every token enters the model as an ID, becomes an embedding, receives position information, and passes through Transformer layers. At the end of that process, every token has a contextual vector. But a language model does not output text directly, it outputs probabilities. The final linear layer After the Transformer, we take the… Continue reading Building my own language model: Predicting the next token (Part 5)

Published
Categorized as AI

Productivity Is the Absence of Friction

Most organizations measure productivity the wrong way. They track lines of code, story points, ticket counts. They build dashboards full of motion that say nothing useful about whether teams are actually moving forward. Here is the honest definition: productivity is the absence of friction. It is the ability to deliver good outcomes quickly and safely.… Continue reading Productivity Is the Absence of Friction

Why Environment Architecture Matters More Than Ever for AI Readiness

I’ve been an engineer for over 25 years, and one thing I’ve realized only recently is that I’ve always cared deeply about something most people barely talk about: the development environment itself. Not just the code. Not just the system design. The environment. Since I started writing software, I’ve had this strange, almost quiet joy… Continue reading Why Environment Architecture Matters More Than Ever for AI Readiness

HTTP Is the New MCP

There’s a growing push to invent new protocols so AI agents can interact with services and execute tasks on a user’s behalf. While the motivation is right, the direction often feels familiar in an uncomfortable way. It looks a bit like we’re trying to rebuild the web. Every time the industry introduces a new “universal… Continue reading HTTP Is the New MCP

Published
Categorized as AI

ACP Hello World

To complete the picture, in this blog post we are going to build a hello world ACP application. As with the A2A demonstration, we will also create a simple server and client application to demonstrate the basic programming model with ACP. ACP does a good job in their getting quickstart guide: https://github.com/i-am-bee/acp Server This is… Continue reading ACP Hello World

Published
Categorized as AI

A2A Hello World

Let’s explore how A2A works in practice. In this blog post I’m demonstrating the basic usage of A2A, without using any AI. 🙂 Please note, this is a purely technical view, the challenges to build agents are not necessarily technical in nature, nonetheless I hope this post helps to get a basic understanding of A2A.… Continue reading A2A Hello World

Published
Categorized as AI