Grok Build Beta: How xAI’s Terminal-Native Coding Agent Stacks Up Against ChatGPT Codex and Claude’s Coding Tools
By Peter Sigurdson | AI With Peter | June 2, 2026
If you live in the terminal — whether you’re a full-stack dev on WSL, a backend engineer wrangling microservices, an educator demoing live code, or a tinkerer building practical AI automations like my home fridge-monitoring robotic claw — the new Grok Build Beta feels like a genuine shift.
Launched in late May 2026 and currently in early access for SuperGrok and X Premium+ subscribers, Grok Build is a coding agent that runs directly from your terminal. It’s not another web chat with copy-paste friction. It edits your actual files, runs commands, manages git, spawns parallel subagents, and — most importantly — forces a structured Plan Mode with human approval before making changes.
Here’s what the interface looks like in action (subagent orchestration view):
The Current Coding Agent Landscape (Mid-2026)
Three major players dominate right now:
Claude (Anthropic) — Still the gold standard for clean architecture, production-ready code, and delightful live previews via Artifacts. It also has its own Claude Code CLI and computer-use capabilities.
ChatGPT / Codex lineage (OpenAI) — Excellent all-rounder with Canvas for side-by-side editing, o1-class reasoning for tough bugs, and strong code interpreter support. Very accessible and fast for everyday work.
Grok Build (xAI) — The new terminal-native entrant focused on agentic execution inside your local environment with strong safety guardrails.
ChatGPT Canvas offers a clean, dedicated coding workspace with live iteration.
Claude Artifacts turn conversations into instantly shareable, live-rendered apps and diagrams.
Optimal Uses: Head-to-Head Comparison Table
Here’s my practical breakdown of where each tool currently shines best for real developer workflows:
Use Case / Dimension
Grok Build (Terminal Agent)
ChatGPT (Canvas + o1 / Codex tools)
Claude (Artifacts + Code CLI + Computer Use)
Winner for This Job
Native local terminal & filesystem control
Excellent – Direct file edits, git, terminal execution, sandboxed runs
Moderate – Strong interpreter but often copy-paste or cloud sandbox
Good – Via CLI or simulated desktop actions
Grok Build
Parallel sub-agent orchestration
Excellent – Native subagents with isolated contexts & worktrees
Limited native support
Good tool-calling but less built-in parallel management
Excellent – Visible “Thought for Xs”, explicit plans, terminal-native
Very good
Very good
Grok Build
Everyday quick scripting & exploration
Strong
Excellent (fast & accessible)
Excellent
Tie (ChatGPT/Claude)
3 Winning Use Cases Where Grok Build Currently Excels
1. Safe Local Automation & Hardware-Adjacent Scripting (IoT, DevOps, Personal AI Projects) This is where Grok Build feels magical. Need to write a script that talks to serial ports, controls Docker, updates a database, or drives a small robotic arm? Describe the goal and it plans the changes, tests them in the terminal, and only applies edits after you approve. The safety example in the early interface (throwing SafetyError if route confidence < 0.9 before dispatching throttle commands) shows the guardrails in action. Perfect for anyone building real-world systems where you must stay in control.
2. Large-Scale Refactoring & Monorepo Modernization with Parallel Subagents Legacy codebase or sprawling monorepo slowing you down? Launch multiple specialized subagents in parallel — one for auth, one for CI, one for frontend performance, one for data layer — each with its own context window. They explore independently, then the main agent synthesizes a coherent migration plan (e.g., sessions → JWT with token rotation, as shown in xAI’s own demos). You review the full plan, tweak it, and let it execute with git integration. This parallel approach is a massive productivity multiplier for complex, multi-week refactors.
3. Teaching, Live Demos, and Transparent Agentic Workflows As someone who teaches full-stack web development, mobile apps, and data analytics (Power BI + Python) at Toronto-area colleges, this one stands out. The visible reasoning (“Thought for 2.5s”), explicit Plan Mode steps, and terminal-native flow make Grok Build an incredible teaching tool. Students don’t just see magic output — they see how an agent reasons, plans, checks safety, and safely edits real code. For teams, shared AGENTS.md files + skills/plugins mean everyone’s conventions are automatically respected. Headless mode even lets you script consistent onboarding or review tasks.
Bottom Line
Claude still leads when you want the most elegant, production-grade code with beautiful live previews. ChatGPT remains fantastic for speed, accessibility, and deep reasoning on thorny problems.
Grok Build wins when you want an AI collaborator that lives where you actually work — in the terminal — with strong orchestration (subagents), strong safety (Plan Mode + thresholds), and real execution power over your local files, git history, and shell.
It’s still early beta, but the direction is clear: the future of coding agents isn’t just chat or canvas. It’s agents that can safely do things in your environment at scale.
If you’re a SuperGrok or X Premium+ subscriber, install it today:
curl -fsSL https://x.ai/cli/install.sh | bash
(or the PowerShell version for Windows/WSL users).
Fire it up on a real project in Plan Mode and see how it feels. I’d love to hear what workflows you discover — especially anything creative in automation, education, or large-scale refactoring.
What’s your current daily driver for AI coding? Have you tried Grok Build yet? Let’s discuss in the comments.
Stay curious, keep building.
— Peter
Sources & further reading: Official xAI Grok Build announcement and CLI docs (May 2026), developer comparisons on Medium and Reddit, and hands-on interface exploration.
The Browser Is the Machine: Learning DOM Events, Chrome DevTools, and the New MVC of Web Intelligence
A practical lab book for understanding how HTML becomes an interactive system: DOM nodes, browser objects, user events, display control, and the shift from procedural programming to model–view–cognition.
Introduction to this Lab Book
Modern web development begins with a simple but powerful realization:
A web page is not just a document. It is a living object system.
When you open an HTML file in Chrome, the browser does not merely “show” the page. It reads the HTML, builds a structured memory representation of it, applies CSS rules, runs JavaScript, listens for user actions, and constantly updates what the user sees. The visible page is only the surface. Underneath that surface is a working system of browser objects, document objects, nodes, events, styles, layout rules, and runtime logic.
This lab book is designed to help students see that hidden machinery.
We are going to use Chromium DevTools not merely as a debugging tool, but as a learning microscope. DevTools allows us to inspect the live HTML document, expand DOM nodes, edit styles, run JavaScript commands in the console, observe event listeners, and understand how a browser turns code into interaction. The quick reference page for this lab identifies the core areas students will explore: the Browser Object Model, DOM node types, DOM events, querying and changing the DOM, Chrome DevTools inspection, and a modern AI-assisted workflow using Cursor AI.
Why This Matters
Many students learn HTML, CSS, and JavaScript as isolated topics:
HTML is structure. CSS is appearance. JavaScript is behavior.
That description is useful, but it is not enough.
A working web application is not three separate piles of code. It is a coordinated system. The HTML document becomes the Document Object Model, or DOM. Every heading, paragraph, button, image, form field, table row, and text fragment becomes part of a tree of objects. JavaScript does not simply “change the page.” JavaScript finds objects in that tree, reads their properties, changes their values, adds or removes classes, creates new nodes, and attaches event listeners.
A button on the screen is not just a button.
It is:
an HTML element,
a DOM node,
a browser object,
a visual box in the rendered page,
a possible event target,
a programmable interface between the user and the application.
That is the conceptual leap students need to make.
The Larger Wrapper: MVC as a Thinking Pattern
To understand why this matters, students also need to understand an older but still essential software design idea: Model–View–Controller, commonly called MVC.
MVC is one of the most important patterns in the history of application development because it teaches us to separate concerns.
Traditionally:
MVC Part
Meaning
Simple Example
Model
The data and business rules
A list of products, users, prices, grades, or messages
View
What the user sees
A web page, form, table, dashboard, or mobile screen
Controller
The logic that responds to input
Code that handles clicks, form submissions, searches, and updates
In older procedural programming, we often wrote code as a sequence of instructions:
If this happens, then do that. If the user clicks this button, run this function. If the value is greater than 10, show this message.
That kind of logic still matters. Students must understand it. But modern application development is moving into a larger pattern.
Today, MVC increasingly becomes something closer to:
Model – View – Cognition
The Model is no longer just a local variable or a small database table. The model may now be a JSON data structure, a cloud datastore, a vector database, a machine learning model, or an API response from an AI system.
The View is still the point of contact with the user. It is the page, the form, the dashboard, the chatbot interface, the mobile screen, or the visual component.
The Cognition is the layer where computation, inference, automation, and decision support increasingly happen. Instead of only writing procedural rules, developers now call APIs, send prompts, process JSON responses, and use computational intelligence to help the application decide what to display, recommend, summarize, classify, or generate.
That is why this lab matters.
When students learn the DOM, they are not just learning how to make a button change color. They are learning how the View layer of modern intelligent systems works.
The Model: Data Is Increasingly JSON
In modern web systems, the model is often carried as JSON.
JSON is important because it is lightweight, readable, portable, and widely used in APIs. When a browser communicates with a server, an AI model, a business system, or a cloud application, the data is often sent and received as JSON.
Example:
{
"studentName": "Aisha Khan",
"course": "Web Programming",
"progress": 82,
"recommendation": "Review DOM event bubbling before the next lab."
}
This JSON object is part of the Model.
It represents information the system knows.
But JSON by itself does not teach, persuade, guide, warn, or interact. It needs to be presented to the user. That is where the View comes in.
A JavaScript program might take that JSON and render it into the page:
const student = {
studentName: "Aisha Khan",
course: "Web Programming",
progress: 82,
recommendation: "Review DOM event bubbling before the next lab."
};
document.querySelector("#studentName").textContent = student.studentName;
document.querySelector("#course").textContent = student.course;
document.querySelector("#progress").textContent = `${student.progress}%`;
document.querySelector("#recommendation").textContent = student.recommendation;
Now the data has moved from the model into the view.
The DOM is the bridge.
The View: The Browser as the User’s Reality Layer
The View is what the user experiences.
In a web application, the view is constructed from HTML, CSS, and the DOM. But the view is not static. It responds.
A user clicks a button. A form field changes. A menu opens. A validation message appears. A table updates. A dashboard refreshes. A chatbot answer is inserted into the page.
Every one of these interactions depends on the browser’s event system.
For example:
const button = document.querySelector("#saveButton");
button.addEventListener("click", function(event) {
document.querySelector("#status").textContent = "Your work has been saved.";
});
This small example contains the essence of interactive software:
Find a DOM node.
Attach a listener.
Wait for the user.
Respond when the event happens.
Update the view.
That is the web programming loop.
The user does something. The browser detects it. JavaScript responds. The DOM changes. The screen updates.
The Controller: From Click Handlers to Intelligent Coordination
In traditional MVC, the controller handles user input.
In a simple web page, the controller might be a JavaScript event handler:
But in modern systems, this controller role is expanding. The code may now collect user input, package it as JSON, send it to an API, receive a response, and update the page.
Now we are no longer only writing “if this, then that.”
We are coordinating interaction between:
the user,
the DOM,
the browser,
JSON data,
server-side systems,
AI inference,
and the visual display.
That is why I describe the modern pattern as Model–View–Cognition.
The Cognition Layer: API Calls as Intelligent Behaviour
The cognition layer is where modern applications increasingly become intelligent.
In older systems, the application only did what the programmer explicitly told it to do. In newer systems, applications can call AI models that classify, summarize, translate, recommend, generate, explain, or infer.
For students, this is a massive shift.
They are not only learning how to write code. They are learning how to build systems that can cooperate with computational intelligence.
A modern application might do this:
The user types a question into a form.
JavaScript captures the input.
The input is converted into JSON.
The JSON is sent to an AI API.
The AI generates a response.
The response returns as JSON.
JavaScript inserts the answer into the DOM.
The user sees the result in the browser.
The DOM is still central.
Even in an AI-enabled application, the answer must appear somewhere. A paragraph node, a chat bubble, a card, a table row, a notification panel, or a dashboard widget must be created or updated.
The browser is the place where intelligence becomes usable.
Why Chrome DevTools Is the Perfect Learning Instrument
Students often believe the browser is a black box.
They write HTML and hope it works. They write CSS and hope it looks right. They write JavaScript and hope the button responds.
That is not professional development.
A professional developer inspects.
Chrome DevTools allows students to see the system while it is alive.
With DevTools, students can:
inspect the DOM tree,
select individual nodes,
edit HTML live,
turn CSS rules on and off,
view computed styles,
inspect the box model,
run JavaScript in the console,
examine event listeners,
test selectors,
debug why a click event is not firing,
observe how the page changes after JavaScript runs.
This turns web programming from guesswork into investigation.
It also teaches a deeper lesson:
The browser is not just displaying your code. The browser is executing, organizing, interpreting, and responding to your code.
That is a professional mental model.
The Core Learning Objective
By the end of this lab book, students should understand that a web page is an interactive runtime environment.
They should be able to say:
“When I click a button, the browser creates an event. JavaScript listens for that event. The event handler runs. The handler may read or change the model. It may call an API. It may receive JSON. Then it updates DOM nodes, and the browser re-renders the view.”
That sentence is worth gold.
It connects HTML, CSS, JavaScript, DOM, events, JSON, APIs, MVC, and modern AI-enabled application development into one clear conceptual map.
The Big Idea
The DOM is where the user interface becomes programmable.
HTML gives the page structure. CSS gives the page appearance. JavaScript gives the page behaviour. The browser turns all three into a living object system. DevTools lets us inspect that system. Events let the user interact with it. JSON lets data move through it. AI APIs increasingly give it cognition.
That is the new web development stack:
Data → View → Event → Cognition → Updated View
And that is why learning the DOM is not beginner trivia.
It is the foundation for building intelligent, interactive business systems.
By completing this lab book using the reference worksheet here below, you will have accomplished the equivalent learning of the first four sessions of an Ontario Community College Certificate Program in Fullstack Web Development.
Browser & DOM Quick Reference — Corporate Training Series
🌐
Browser & DOM Quick Reference
BOM · DOM Nodes · Events · Chrome DevTools · Cursor AI — Corporate Training Series
1Browser Object Model (BOM)
window — the global object
window.innerWidth
Viewport width in pixels
window.innerHeight
Viewport height in pixels
window.alert()
Show a popup dialog
window.setTimeout()
Run code after a delay
window.open()
Open a new browser tab
navigator — browser info
navigator.userAgent
Browser/OS identifier string
navigator.language
en-US
User’s language setting
navigator.onLine
true/false
Is device connected to the internet?
navigator.geolocation
Access GPS coordinates (with permission)
location — current URL
location.href
Full URL of the current page
location.hostname
Domain name only
location.pathname
/page/about
Path after the domain
location.reload()
Refresh the current page
history — navigation stack
history.back()
Go to previous page (like ← button)
history.forward()
Go to next page (like → button)
history.length
Number of pages in session history
2DOM Node Types
🔷 Structural Nodes — define content
1ELEMENT_NODEHTML tags: <div>, <p>, <table>
3TEXT_NODEThe actual text inside a tag
9DOCUMENT_NODERoot — the entire HTML page
11FRAGMENTVirtual container, not in DOM tree
🔴 Presentation Nodes — define appearance
2ATTR_NODEAttributes: class=, id=, style=
8COMMENT_NODE<!– notes –>, invisible to user
→CSSStyleDeclarationAll CSS on an element via el.style
→classList.add() .remove() .toggle() CSS classes
Key DOM Properties
.nodeType
Returns the node type number (1, 3, 9…)
.nodeName
Tag name: DIV, P, #text, #document
.nodeValue
Text content for TEXT_NODEs
.parentNode
The containing parent element
.childNodes
All child nodes (NodeList)
.innerHTML
HTML content as a string
.textContent
Text only — no HTML tags
3DOM Events — Types & Listeners
Mouse
click
dblclick
mouseenter
mouseleave
mousedown
mouseup
Keyboard
keydown
keyup
keypress
Form
submit
change
input
focus
blur
Window / Document
load
DOMContentLoaded
resize
scroll
error
Adding an Event Listener
// Select the elementconstbtn = document.querySelector('#myButton');
// Add the listenerbtn.addEventListener('click', (event) => {
console.log('Clicked!', event.target);
});
// Remove it laterbtn.removeEventListener('click', handler);
Event Bubbling
bubbling
Event travels UP: child → parent → body → window
event.stopPropagation()
Stop the event from bubbling up
event.preventDefault()
Block default action (e.g. form submit)
event.target
The element that was actually clicked
event.currentTarget
Element the listener is attached to
4Querying & Changing the DOM
Selecting Elements
getElementById()
Find 1 element by its id
querySelector()
First match by CSS selector
querySelectorAll()
All matches → returns a NodeList
getElementsByClassName()
All elements with a given class
Creating & Inserting Nodes
// Create a new elementconstp = document.createElement('p');
p.textContent = 'New paragraph!';
p.classList.add('highlight');
// Insert into the page
document.querySelector('#container')
.appendChild(p);
// Remove an elementp.remove();
Click any element on the page and choose Inspect. Jumps to that node in the DOM tree.
⌨️
Keyboard shortcut F12Ctrl+Shift+I
Opens DevTools in the last-used panel.
🔲
Dock position
Use the ⋮ menu to dock to the side, bottom, or open as a separate window.
Elements Panel — View DOM
🔍
Inspector cursor Ctrl+Shift+C
Hover any element to see its box model and DOM location instantly.
🌿
Expand the DOM tree
Click ▶ triangles to expand nodes. Alt+Click expands all children at once.
✏️
Edit live HTML
Double-click any node text to edit. Changes appear instantly but are not saved to file.
🎨
Styles panel (right side)
See all applied CSS rules. Check/uncheck them. Edit values live. View computed final styles.
Console Panel — Run JS
💻
Open Console Ctrl+`
Type any JavaScript and run it against the live page immediately.
// Inspect a node in Console
$0 // last clicked element
$('h1') // querySelector shortcut// Log node info
console.dir($0)
console.log($0.classList)
// Change it live
$0.style.background = 'red'
$0.textContent = 'Test!'
🔎
Search the DOM Ctrl+F
Search by text, CSS selector, or XPath inside the Elements panel.
📦 Box Model
Computed tab → visual diagram of margin, border, padding, and content dimensions.
👁️ Event Listeners
Select node → Event Listeners tab → see all attached events and jump to source.
⏸️ DOM Breakpoints
Right-click node → Break on subtree modifications to pause JS when DOM changes.
🔗 Properties Tab
Shows every JS property of the node — nodeType, nodeValue, all methods.
6Cursor AI IDE — DOM-Aware Development
What is Cursor?
Cursor
VS Code-based IDE with built-in AI chat and code completion
Cmd+K
Edit selected code with plain-English instructions inline
Cmd+L
Open the AI chat sidebar for questions and planning
Tab
Accept AI code suggestions as you type
@ symbol
Reference files, docs, or codebase context in chat
Asking Cursor About the DOM
// Example Cursor AI prompts:"Add a click event listener to
#submitBtn that validates the form""Find all querySelectorAll calls
and explain what each one selects""Refactor this to use classList
instead of inline style changes""Why is my event not firing?
Show me what bubbling might cause"
Cursor + DevTools Workflow
1️⃣
Inspect in DevTools
Find the DOM node and copy its class or id from the Elements panel.
2️⃣
Ask Cursor
Use Cmd+K: “target .nav-menu and toggle a .hidden class on click”.
3️⃣
Verify in Console
Paste the generated code into DevTools Console to test before saving to file.
As we navigate the technology landscape of 2026, the traditional paradigms of web development have fundamentally shifted due to the industrialization of AI cognition.
We are no longer designing digital systems solely for human eyes scrolling through visual layouts on a screen; instead, Service-Oriented Architectures (SOA) and decoupled API frameworks have become the essential foundation for a world where the primary consumer of your data is an AI agent.
Advanced cognitive engines—from developer-focused models to real-time information synthesizers like Perplexity Comet—constantly scrape, index, and reconstruct web data to answer user queries directly within their own interfaces.
To be a successful information systems developer today, you must treat structured, machine-readable data utility as your core product.
If your system cannot cleanly expose its intelligence via predictable, optimized endpoints, it becomes invisible to the AI ecosystem, effectively cutting your platform off from the very channels driving modern discovery and user interaction.
Every software engineer remembers the classic architectural crossroads: When does a website officially become a service? This week, we went on a deep-dive exploration of cloud architecture, security boundaries, and API integrations.
It all started with a common enterprise headache—a Google Workspace admin firewall blocking an account integration because of strict “Zero Trust” OAuth policies—and it evolved into an elegant architectural breakthrough.
To illustrate how modern platforms decouple their systems, we are rolling out the technical blueprint for our latest startup demo: PeopleChooser (internally code-named PeopleFinder).
PeopleChooser is a revolutionary utility that allows dogs to programmatically browse, vet, and select their humans based on real-time neighborhood metrics (like treat-dispensing frequency and fetch stamina).
Below is the comprehensive architectural guide, workflow breakdown, and production-ready source code to build a decoupled cloud service with a native, local client footprint.
Part 1: The Architectural Paradigm Shift
When you build a standard website, your backend server typically blends data processing with visual presentation. A user requests a page, the server fetches data from a database, mixes it into an HTML template, and ships a visual webpage back to a browser.
A Service, however, shifts its core purpose from displaying a layout to providing programmatic utility.
The Enterprise Firewall Analogy
This mirrors how ecosystems like Google Workspace manage application access. In a Google Workspace domain, the core ecosystem is locked down by default. When an external application requests access to account data, it initiates an OAuth handshake. Google doesn’t hand over your password; it issues a highly scoped, cryptographic token.
If your service isn’t explicitly approved or configured in the Google Admin Console, the corporate firewall shuts the door. Why? Because a service acts as an infrastructure layer capable of automated, programmatic data exchange.
By building PeopleChooser as a service, we decouple the visual frontend from the backend logic. The central engine lives in the cloud, exposing a highly performant API. The dogs don’t need a clunky web browser; they run a lightweight, compiled local client directly on their hardware (like a smart collar or an IoT dog door) that continuously queries our service via structured JSON payloads.
Part 2: System Workflows & Lifecycle
Before looking at the source code, let’s trace how data moves through the decoupled architecture during a real-time human-vetting request.
The Decoupled Interaction Lifecycle
Hardware Trigger: A dog approaches a human at the park. The local client (smart collar) captures the event or proximity.
API Request: The local client constructs an HTTP GET request containing its security credentials (API Key) and coordinates.
Authentication & Ingestion: The Cloud Service receives the request, validates the API key at the security gate, and processes the business logic.
Database Query: The service kitchen pulls the specific human’s historical review metrics from the persistent database pantry.
JSON Response: The service packages the raw data into a lightweight JSON payload and dispatches it back down the wire.
Local Execution: The local client parses the JSON and triggers an immediate physical hardware action (e.g., activating a speaker to bark approvingly or illuminating a green LED).
Part 3: Technical Implementation
To make this platform resilient, ultra-fast, and memory-efficient, we are building our backend server using a robust stack and implementing our high-performance local client using Go (Golang). Go is chosen for the local client because it compiles down to a single, dependency-free binary—perfect for low-power IoT hardware or local machines.
1. The Cloud Service Backend Engine
This server acts as our centralized service. It exposes a public API endpoint, processes incoming client requests, manages database structures, and outputs raw structured data.
Go
package main
import (
"encoding/json"
"fmt"
"log"
"net/http"
"time"
)
// HumanProfile represents the data structure in our service pantry
type HumanProfile struct {
ID string `json:"id"`
Name string `json:"name"`
TreatFrequency string `json:"treat_frequency"` // e.g., "High", "Low"
FetchStamina int `json:"fetch_stamina"` // Scale of 1-10
Neighborhood string `json:"neighborhood"`
LastVetted time.Time `json:"last_vetted"`
}
// Mocking our database storage layer
var humanDatabase = map[string]HumanProfile{
"human_01": {
ID: "human_01",
Name: "Peter",
TreatFrequency: "High",
FetchStamina: 9,
Neighborhood: "Toronto-Downtown",
LastVetted: time.Now(),
},
"human_02": {
ID: "human_02",
Name: "Unknown Walker",
TreatFrequency: "Low",
FetchStamina: 3,
Neighborhood: "Vaughan",
LastVetted: time.Now(),
},
}
// Security Gate Middleware to mimic enterprise API controls
func enforceAPIKey(next http.HandlerFunc) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
apiKey := r.Header.Get("X-PeopleChooser-Key")
if apiKey != "kibble_secure_token_2026" {
w.WriteHeader(http.StatusUnauthorized)
json.NewEncoder(w).Encode(map[string]string{"error": "Access Blocked: Unconfigured or Invalid Service Token"})
return
}
next.ServeHTTP(w, r)
}
}
// API Endpoint to serve raw data utility to clients
func getHumanReviewHandler(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "application/json")
humanID := r.URL.Query().Get("id")
if humanID == "" {
w.WriteHeader(http.StatusBadRequest)
json.NewEncoder(w).Encode(map[string]string{"error": "Missing human ID parameter"})
return
}
profile, exists := humanDatabase[humanID]
if !exists {
w.WriteHeader(http.StatusNotFound)
json.NewEncoder(w).Encode(map[string]string{"error": "Human profile not found in local index"})
return
}
// Ship pure JSON payload back to the client application
w.WriteHeader(http.StatusOK)
json.NewEncoder(w).Encode(profile)
}
func main() {
// Setup routing routes
http.HandleFunc("/api/v1/vet", enforceAPIKey(getHumanReviewHandler))
fmt.Println("🚀 PeopleChooser Cloud Service running smoothly on port :8080...")
log.Fatal(http.ListenAndServe(":8080", nil))
}
2. The High-Performance Go Local Client
This code runs locally on the edge device or client workstation. It handles network communication, manages secure authorization headers, reads data payloads, and executes local logic.
Go
package main
import (
"encoding/json"
"fmt"
"io"
"log"
"net/http"
"time"
)
// Structural map matching the remote service contracts
type VettedHuman struct {
Name string `json:"name"`
TreatFrequency string `json:"treat_frequency"`
FetchStamina int `json:"fetch_stamina"`
Neighborhood string `json:"neighborhood"`
LastVetted time.Time `json:"last_vetted"`
}
const (
serviceURL = "http://localhost:8080/api/v1/vet?id=human_01"
apiKey = "kibble_secure_token_2026"
)
func queryPeopleChooserService() {
// Initialize a localized network client with strict timeout parameters
client := &http.Client{
Timeout: 5 * time.Second,
}
req, err := http.NewRequest("GET", serviceURL, nil)
if err != nil {
log.Fatalf("Initialization Error: %v", err)
}
// Pass enterprise authentication tokens over secure network layers
req.Header.Set("X-PeopleChooser-Key", apiKey)
req.Header.Set("User-Agent", "PeopleChooser-CollarClient-v1.0")
fmt.Println("📡 Scanning environment... Querying central PeopleChooser database...")
resp, err := client.Do(req)
if err != nil {
fmt.Printf("❌ Network Error: Unable to reach central cloud service: %v\n", err)
return
}
defer resp.Body.Close()
if resp.StatusCode == http.StatusUnauthorized {
fmt.Println("🚨 Security Exception: Access Revoked by Cloud Administrator.")
return
}
body, err := io.ReadAll(resp.Body)
if err != nil {
log.Fatalf("Data Ingestion Error: %v", err)
}
// Parse the raw service utility payload into local objects
var human VettedHuman
err = json.Unmarshal(body, &human)
if err != nil {
log.Fatalf("JSON Deserialization Failure: %v", err)
}
// Trigger local physical/UI reactions based on service intelligence
fmt.Println("\n=============================================")
fmt.Printf("🎯 TARGET DETECTED: %s\n", human.Name)
fmt.Printf("📍 Location Region: %s\n", human.Neighborhood)
fmt.Printf("🍖 Treat Dispensing Habit: [%s]\n", human.TreatFrequency)
fmt.Printf("🎾 Ball Throwing Stamina: %d/10\n", human.FetchStamina)
fmt.Println("=============================================")
if human.TreatFrequency == "High" && human.FetchStamina >= 7 {
fmt.Println("🐾 LOCAL CLIENT RECOMMENDATION: Execute optimal eye-contact sequence immediately. High yield target.")
} else {
fmt.Println("🐾 LOCAL CLIENT RECOMMENDATION: Ignore and keep sniffing grass.")
}
}
func main() {
// Execute local polling routine
queryPeopleChooserService()
}
Part 4: Implementation and Verification Steps
Want to test this decoupled paradigm on your local environment? Follow these exact configuration steps:
Step 1: Set Up Your Development Workspace
Ensure you have Go installed on your machine. Create a clean project directory structure:
Bash
mkdir -p peoplechooser/{server,client}
Step 2: Spin Up the Cloud Service Engine
Navigate to your server folder, create a file named main.go, and paste the Cloud Service Backend Engine code inside.
Launch your service terminal and execute the application:
cd peoplechooser/server go run main.go
Your server is now actively listening on port 8080 acting as a localized cloud node.
Step 3: Launch the Local Client Application
Open a separate terminal window and navigate to your client folder.
Create a file named client.go and paste the Go Local Client code inside.
Compile and execute the local binary to query your cloud infrastructure:
cd peoplechooser/client go run client.go
Step 4: Verification and Policy Simulation
Successful Handshake: Upon running the client, your local terminal will immediately print Peter’s complete profile parameters, correctly identifying him as a high-yield target with a treat frequency of “High.”
Simulating an Admin Block:
To simulate what happens when an administrator flips an app integration to “Blocked” in an API dashboard, alter the apiKey string inside your client.go code to an invalid token.
Re-run your client. The system will throw an immediate security exception:
🚨 Security Exception: Access Revoked by Cloud Administrator.
The Future of Decentralized Canine Operations
Building standalone websites limits your utility to human eyes looking at screens.
By building an API-first service infrastructure, you unlock infinite scalability.
The exact same cloud engine code we launched today can scale to support mobile user interfaces, web apps, automated smart-doors, or globally distributed tracking collars.
Are your internal systems stuck inside legacy web frameworks, forcing users to manual web portals just to manipulate data? It’s time to modernize your organizational workflows.
📈 Ready to Take Control of Your Architecture?
Don’t let unvetted third-party apps compromise your company’s data boundaries, and don’t build software that can’t integrate outside its own browser window.
Subscribe to our technical framework newsletter today to receive production-ready deployment blueprints, system design masterclasses, and real-time updates on modern enterprise administration.
Power Query: The Missing Link Between Raw Data and Insight
Power Query is Microsoft’s built‑in engine for connecting to data, cleaning and transforming it, and then loading it into Excel, Power BI, and other tools for analysis. Think of it as a “no‑code ETL” (extract, transform, load) tool that automates the boring, repetitive parts of data prep so you can focus on analysis and storytelling.learn.
What Power Query Actually Is
Power Query is a data preparation engine that lets you connect to many different data sources, reshape the data with a graphical editor, and then load the results into a worksheet or data model. Under the hood, every transformation step you apply is stored as a step in a query using the Power Query formula language (also known as M), which can be refreshed anytime the underlying data changes.
In Excel, Power Query appears as the “Get & Transform Data” section on the Data tab, while in Power BI it’s the main interface you use to bring data into your model before you build visuals. The same engine also appears in other Microsoft services like Power Platform dataflows and Dataverse, which means skills you learn in Excel carry over to enterprise scenarios.
The Four Phases of a Power Query Workflow
Microsoft describes a typical Power Query workflow in four phases: Connect, Transform, Combine, and Load. These phases map directly to how analysts work with real‑world data and help structure your thinking around repeatable data preparation.
Connect You connect to one or more data sources, including Excel files, CSVs, databases, folders, web pages, and cloud services. Power Query keeps the connection definition so that when you refresh the query, it pulls updated data from the same source without re‑creating the steps.
Transform You “shape” the data to meet your needs: remove columns, filter rows, change data types, split or merge columns, pivot/unpivot, and add calculated columns. These transformations are non‑destructive; the original source remains unchanged while your query applies a repeatable series of steps.
Combine You merge (join) or append (stack) queries to bring multiple datasets together into a single view. This is where you can replace complex combinations of VLOOKUPs, INDEX/MATCH, or multiple copy‑paste steps with a few clicks in the Power Query Editor.
Load Finally, you load the shaped data into an Excel table, the Excel Data Model, or a Power BI model, and refresh it periodically to keep reports up to date. A single button click updates all the linked reports and charts when new data arrives.
Why Power Query Is a Game Changer
Power Query earned its reputation as a “game changer” because it turns messy, repetitive manual processes into automated, refreshable pipelines. Instead of copying and pasting new files every month, redoing filters, or rebuilding formulas, you define the steps once and simply click Refresh.
Key advantages include:
Automation of repetitive tasks: Tasks like cleaning exports, combining monthly files, or standardizing formats become one‑click operations after initial setup.
Consistency and reliability: Because transformations are scripted as steps, you reduce human error and ensure the same logic is applied every time.
No‑code data shaping: You get a graphical interface for tasks that would otherwise require SQL, scripting, or complex Excel formulas.
Scalability to larger models: The same skills transfer from simple Excel reports to more advanced Power BI and enterprise dataflows.
Key “Winning” Use Cases for Power Query
Power Query shines in scenarios where you repeatedly transform data from raw form into something analysis‑ready. Below are some of the most impactful use cases that resonate with analysts, finance teams, and BI professionals.
1. Automating Monthly and Weekly Reports
Many teams receive recurring files—monthly sales exports, weekly website stats, or periodic financial reports. Power Query can connect to a folder of files, automatically combine them, and apply the same cleaning and transformation steps every reporting cycle.
This turns static, copy‑paste‑driven workflows into dynamic models where a new file in the folder is automatically pulled into the consolidated dataset upon refresh.
2. Cleaning Messy Excel and CSV Data
Real‑world data often comes with blank rows, merged headers, extra header rows, inconsistent capitalization, and strange formatting. Power Query can remove blank rows, promote a specific row to headers, split and merge columns, and fix data types in a repeatable way.
By saving these cleaning steps in a query, you avoid redoing the same cleanup every time you get an updated file.
3. Combining and Reconciling Multiple Data Sources
Power Query’s merge and append features allow you to join tables based on common keys or stack similar tables. For example, you can combine sales transactions with customer master data, or append regional files into a single global dataset for analysis.
This greatly reduces the need for complex lookup formulas and manual reconciliations across workbooks.
4. Reshaping Data with Pivot and Unpivot
Analysis tools often prefer data in a “long” format (one row per event) instead of the wide, cross‑tab format people use in reports. Power Query’s unpivot feature converts wide tables into long format, making it easier to build pivot tables, charts, and Power BI visuals.
Similarly, you can pivot in Power Query to aggregate or reshape detailed data before it hits your report layer.
5. Building Self‑Service BI Pipelines
In Power BI and Excel, Power Query forms the front end of self‑service BI: business users can connect to data, apply transformations, and publish clean data models without heavy IT involvement. When combined with the Data Model or Power BI, Power Query becomes the bridge between raw data sources and reusable, governed datasets.
Detailed Hands‑On Lab: From Messy CSVs to a Refreshable Report
The rest of this article walks through a full lab you can follow in Excel (Microsoft 365 or recent versions with “Get & Transform Data”). The objective is to combine multiple monthly sales CSV files, clean them, enrich them, and build a refreshable report—all with Power Query.
Lab Overview
You will:
Prepare sample files and a folder.
Use Power Query to connect to the folder and combine files.
Clean and standardize the data.
Add calculated columns.
Merge with a lookup table.
Load the result into Excel and build a simple report.
Test the refresh by adding a new file.
This lab assumes you are comfortable navigating Excel but new to Power Query’s interface.
Step 1: Prepare Your Sample Data
Here’s a revised Step 1 you can drop into your article, with the synthetic‑data benefits called out explicitly.
Step 1: Prepare Your Sample Data
Before we dive into Power Query, we need a small set of sales data to work with. You have two options: use your own existing data (if you’re allowed to) or generate a synthetic dataset specifically for this lab.
Option A: Use Your Own Data (If It’s Safe to Share)
If you already have a simple sales export in CSV or Excel format, you can use that—provided it’s not confidential and you’re allowed to use it for learning or teaching. Create a folder on your machine called Sales_CSV, and copy a few monthly files into it (for example: Sales_2026_01.csv, Sales_2026_02.csv, Sales_2026_03.csv). Each file should have similar columns, such as:
Date
Region
CustomerID
Product
Quantity
UnitPrice
Make sure column names are consistent across files; this is what allows Power Query to combine them later.
Option B: Generate Synthetic Data with an AI Assistant
A safer and more flexible approach is to generate synthetic (fake but realistic) data using an AI assistant like ChatGPT. Synthetic data has two big benefits in this context:
Protecting confidentiality Real company data is often sensitive: it may include customer information, internal pricing, or other details you aren’t allowed to share or publish in a training context. Using synthetic data avoids any risk of exposing confidential or regulated information while still giving you realistic patterns to work with.
Introducing useful edge cases Synthetic data can be designed to include edge cases—unusual dates, unexpected regions, odd price points, missing values, or inconsistent formatting—that stress‑test your Power Query steps. These conditions could appear in real data, but might not show up in a single snapshot of production exports. Adding them intentionally gives you a richer learning experience and helps you build more robust transformations.
Here’s an example of a prompt you could use with an AI assistant:
“Create a realistic but synthetic monthly sales dataset for a retail company. I need three separate CSV files, one per month, each with 500–1,000 rows. Columns: Date (2026-01-01 format), Region (North, South, East, West), CustomerID, Product, Quantity, UnitPrice, and Currency (USD). Include some edge cases: a few missing values, an occasional out‑of‑range price, and a couple of unexpected region names that I can clean later. Output each month’s data as a separate CSV block I can copy into files named Sales_2026_01.csv, Sales_2026_02.csv, and Sales_2026_03.csv.”
Then:
Copy each CSV block into a separate text file and save as Sales_2026_01.csv, Sales_2026_02.csv, and Sales_2026_03.csv.
Place all three files into your Sales_CSV folder.
If you want a customer lookup table for the merge step later in the lab, you can follow up with another prompt:
“Based on the CustomerID values you used above, create a small customer master table with columns: CustomerID, CustomerName, and Segment (Consumer, Small Business, Enterprise). Output as a CSV I can paste into Excel.”
Paste that output into Excel, convert it to a table, and name the table Customers. You’ll use this as your lookup table when you practice merging data in Power Query.
Add a simple note in your blog such as: “The datasets in this article are synthetic and for training purposes only; they do not represent real customers or transactions.”
Step 2: Connect to the Folder with Power Query
In Excel, open a new workbook and go to the Data tab. In the Get & Transform Data section, choose Get Data > From File > From Folder, then browse to your Sales_CSV folder.microsoft+2
Excel will show a preview of all files in the folder. Click Transform Data instead of Load; this opens the Power Query Editor, where you’ll define how files are combined and cleaned.
Power Query will create a query listing all the files and, after a few guided steps, a sample query used to combine them. Accept the default “Combine & Transform” behavior, which uses the first file as a template for column structure.
Step 3: Inspect and Clean the Combined Data
You should now see a single query that represents the combined contents of all CSV files. At the right side of the Power Query Editor, the Applied Steps pane lists each transformation Power Query has already created (such as Source, Navigation, Promoted Headers, Changed Type).
Start by cleaning obvious issues:
Rename the query to something like Sales_Combined using the name field in the right‑hand pane.evalacademy+1
Check data types: ensure Date is a date type, Quantity is a whole number, and UnitPrice is a decimal number.chandoo+1
Remove unnecessary columns like file name or extra metadata unless you want them for debugging.microsoft+1
If there are blank rows or strange header rows, you can remove top rows, filter out blanks, or promote a specific row to headers using the ribbon. Each action you take adds another step in the Applied Steps list, and you can rename steps for clarity if desired.
Step 4: Add a Calculated Column (Sales Amount)
Next, calculate a SalesAmount column as Quantity × UnitPrice. In the Power Query Editor:
Go to the Add Column tab.
Choose Custom Column.
Enter a name, such as SalesAmount.
In the formula box, reference your columns, for example: [Quantity] * [UnitPrice].
Click OK, and Power Query will add a new column with this calculation. This calculation is now part of the query’s logic and will be applied automatically on every refresh.
Step 5: Standardize and Enrich Dimensions
To make your dataset more useful for analysis, standardize dimension values and optionally enrich them.
Standardize region names: If your Region field contains inconsistent values (e.g., “NA”, “North America”), you can use Replace Values or create a conditional column to map them to a standard set.
Derive date attributes: Use the Add Column > Date menu to extract Year, Month, or Month Name from the Date field.
Combine fields: If needed, you can create composite keys or friendly labels by concatenating columns using custom columns.
Each enrichment step keeps your model tidy and reduces the amount of calculation you have to do later in Excel or Power BI.
Step 6: Merge with a Customer Lookup Table
If you created a Customers table in another Excel file, you can merge it to add customer names and segments.linkedin+1
In Power Query, go to Home > New Source > Excel Workbook and select the workbook containing the Customers table.
Choose the Customers table from the Navigator to load it as a new query.
With Sales_Combined selected, click Home > Merge Queries.
Select Customers as the table to merge with, and choose CustomerID as the common column in both queries.
Leave the join type as Left Outer (default) to keep all sales records and bring in matching customers.
Power Query will add a new column containing nested tables, which you can expand to expose fields like CustomerName and Segment. You’ve now reproduced a relational join inside Excel without writing any SQL.
Step 7: Load the Cleaned Data into Excel
Once you’re satisfied with the transformations, click Home > Close & Load. Excel will create a new worksheet with a table containing your combined, cleaned, and enriched dataset.
If your dataset is large and you plan to build a more sophisticated analytical model, you can instead choose Close & Load To… and load the data directly into the Data Model. This approach works well when you plan to create Power Pivot measures or Power BI‑style models.learn.
Step 8: Build a Simple Report
Now that your data is in Excel, you can insert a PivotTable based on the Power Query output table. For example:
Place Region and Month on rows or columns.
Use SalesAmount as the values field.
Add Segment as a slicer for quick filtering.
Because the PivotTable sits on top of a refreshable query, any new files or updated data will flow through automatically when you refresh.youtubemicrosoft+1
Step 9: Test the Refresh
To prove the value of Power Query’s automation, add a new CSV file (for example, Sales_2026_04.csv) to your Sales_CSV folder with the same structure as the other files.
Then, back in Excel:
Go to the Data tab.
Click Refresh All.
Power Query will:
Detect the new file in the folder.
Combine it with the existing ones using the same transformation logic.
Recalculate the SalesAmount and any derived fields.
Update your PivotTable or report.
You’ve now built a small, self‑maintaining ETL pipeline entirely inside Excel, without a single formula or line of code.
Advanced Hot Buttons: Taking Power Query Further
Once you’re comfortable with the basics, Power Query has several advanced features that unlock even more value.
Parameters and conditional logic: You can create parameters to control things like date ranges or environments, and use them to change query behavior without editing steps.
Performance tuning: Understanding how merges, sorts, and filtering impact performance helps when working with large datasets.
M language editing: The Advanced Editor lets you fine‑tune the M code behind your steps or reuse patterns across queries.learn.
Integration with dataflows: In Power Platform, Power Query powers dataflows that centralize ETL logic for multi‑user BI environments.
These capabilities make Power Query a viable option not just for Excel power users, but also for professional data analysts and BI developers.
Bringing It All Together
Power Query fills a critical gap in the analytics stack: it gives you a friendly, repeatable way to connect, clean, and reshape data before it reaches your reports. With the lab in this article, you’ve seen how to turn a handful of messy CSVs into a refreshable, analysis‑ready dataset in Excel, all by capturing your data preparation steps as a query.
Stay tuned for a follow‑up article that focuses specifically on using the same Power Query techniques inside Power BI for building reusable data models.
If you work anywhere near design, product, or marketing, this change isn’t just “more tokens”—it’s more runway to think, explore, and ship with an AI partner that actually keeps up with you. With Claude Design now able to stay in the conversation twice as long, you can move from rough idea to polished deck, landing page, or prototype in a single continuous creative session instead of stopping when the meter runs out. That matters whether you’re the one pushing pixels, leading a cross‑functional team, or signing off on budgets: it directly affects how fast concepts turn into artifacts you can show to clients, executives, and stakeholders.
For hands‑on creatives, doubled limits mean you can explore more variations, push into higher‑fidelity work, and keep refining without constantly budgeting every prompt. For project leads and sponsors, it means AI design sprints that actually fit into real timelines: fewer stalled experiments, more usable outputs, and clearer evidence when you’re making the case for AI‑assisted workflows in your org. Understanding what “2x tokens” really unlocks is the difference between dabbling with AI design and treating it as a serious part of your production pipeline.
Meet Claude Design: Your AI-First Creative Studio | AI With Peter
AI With Peter — New Feature Deep-Dive
Meet Claude Design: Your AI-first Creative Studio
Anthropic just doubled the token limits on Claude Design across every plan. Here’s what that means for you — and how to start using it today.
P
Peter · AI With Peter · May 2026
🎉
Big News From Anthropic
Anthropic just announced they’re doubling token limits on Claude Design across every plan — Pro, Max, Team, and Enterprise. That means twice as many designs, iterations, and creative sessions before you hit your weekly cap. For power users who bumped into those limits early, this is a massive upgrade.
What is Claude Design?
Claude Design is an AI-powered design workspace built directly into Claude. Instead of opening Figma, Canva, or PowerPoint, you describe what you want in plain English — and Claude builds it live on a canvas next to your chat. Think websites, slide decks, one-pagers, dashboards, prototypes, and more. All from conversation.
01
Describe your goal
Type what you need — “a landing page for my tutoring service” or “a 10-slide pitch deck in dark mode.” No design experience required.
02
Watch it build live
A visual canvas on the right updates in real time. Claude generates layouts, colors, typography, and content — all from your words.
03
Refine through chat
Say “make the header bolder,” “add a pricing section,” or “use our brand colors.” Claude adjusts instantly — no tools, no dragging boxes.
04
Export & ship
Download as PDF, PPTX, or HTML. Or hand off directly to Claude Code to turn your design into a real, running website or app.
Who wins with doubled token limits?
More tokens means more room to experiment, iterate, and create without running out of runway. Here’s exactly how three key audiences benefit.
Students: You finally have a design tool that doesn’t require a design degree. Claude Design lets you create presentation-quality work — for assignments, portfolios, club projects, and scholarships — in a fraction of the time. With doubled limits, you can iterate freely across multiple projects without worrying about running out.
📊
Research presentations
Turn your essay or research notes into a polished slide deck. Describe your topic, paste your bullet points, and Claude builds a professional presentation complete with visual hierarchy and data sections.
💼
Portfolio websites
Create a personal portfolio site showcasing your projects, skills, and achievements — without knowing a line of code. Export as HTML and host it for free on GitHub Pages.
🗂️
Capstone one-pagers
Design executive summary one-pagers for capstone or thesis projects that actually look like they came from a professional agency — not a last-minute Word doc.
🎨
Club & event materials
Build flyers, event programs, sponsorship decks, and promotional pages for student organizations — all branded and consistent, generated in minutes.
Teachers & Educators: Stop spending your evenings reformatting slides. Claude Design lets you turn your lesson content into visually engaging materials that students actually want to look at. Doubled limits mean you can create for every unit, every class, every week — without burning through your quota by Wednesday.
📝
Lesson decks & visual notes
Paste your lesson outline and let Claude Design transform it into a classroom-ready slide deck with clear visuals, structured flow, and readable fonts — ready in minutes, not hours.
📣
Parent communication
Generate polished newsletters, event flyers, and classroom updates that look professional enough to build real trust and engagement with parents and guardians.
📚
Student-facing learning guides
Design visual study guides, infographic-style summaries, and illustrated explainers that help visual learners grasp complex topics faster than a wall of text.
🏆
Grant & funding proposals
Build compelling, visually strong grant proposal decks and one-pagers to pitch school programs, classroom initiatives, or extracurricular funding to administrators and donors.
Self-Employed Professionals: You’re the designer, marketer, and salesperson all in one. Claude Design gives you agency-quality creative output without the agency price tag. With doubled token limits, you can build out your full client pipeline — proposals, decks, websites, and reports — all from one AI workspace.
🤝
Client proposals & pitch decks
Generate impressive proposal decks tailored to each client in minutes. Describe the project scope, your approach, and pricing — Claude builds a professional deck you can send same-day.
🌐
Service landing pages
Build a landing page for your freelance services, consultancy, or small business without hiring a developer. Export to HTML or hand off to Claude Code to go live.
📈
Client reports & dashboards
Turn your project results into visually clean monthly reports or performance dashboards that make your work look as good as it actually is — and justify your rates.
🧩
Brand kits & design systems
Set up a design system once — with your colors, fonts, and component styles — and every future deck, page, or one-pager you generate will automatically match your brand.
💡 Pro Tips to Get the Most from Claude Design
Give Claude a screenshot or existing file to match — it’ll infer your brand style automatically.
Use the web capture tool to pull styling from a website you love, then apply it to your project.
Set up a design system once; every future project inherits your colors, fonts, and components.
Combine with Claude Code to turn a design into a live, running website in one seamless workflow.
Use inline comments on the canvas to ask targeted tweaks — “make this section more spacious” — rather than redescribing everything.
Doubled Limits: What It Means Per Plan
Claude Design has its own usage meter inside your paid Claude plan. Anthropic has now doubled what you get before hitting your weekly cap — across every tier. For heavy users who were running dry by midweek, this is the fix you’ve been waiting for.
Pro
2×
tokens now
Max
2×
tokens now
Team
2×
tokens now
Enterprise
2×
tokens now
Ready to start designing?
Claude Design is live now at claude.ai/design for all paid subscribers — Pro, Max, Team, and Enterprise. Start with a simple prompt and see what happens.
The Collapse and the Catalyst: Why This Moment in Learning Changes Everything
Something remarkable is happening simultaneously on two opposite ends of the educational spectrum — and if you’re paying attention, the tension between them points directly to the future of how we will train new entrants into the employment marketplace.
On one end, community college enrollment is in freefall. In Ontario and across virtually every jurisdiction in the developed world, administrators are staring at spreadsheets that keep getting worse. Programs are being quietly shuttered. Waiting lists have collapsed. The institutions that were supposed to be the great equalizers of opportunity — affordable, practical, career-focused — are losing students at a rate that is forcing board rooms into genuinely painful conversations about what survives and what doesn’t.
On the other end, something has been quietly detonating inside the learning experience itself.
ChatGPT, Claude, Gemini and their peers have crossed a threshold in the last two years that most commentary has dramatically undersold. We’re not talking about better search. We’re talking about a fundamental shift in the relationship between a curious human mind and a body of knowledge. These systems can now tutor, scaffold, challenge, encourage, re-explain, reframe, and adapt — in real time, in your language, at your pace, at eleven o’clock on a Tuesday night when no professor’s office hours are open. The cognitive horsepower they bring to a learning conversation has crossed into territory that genuinely warrants the word unprecedented.
These two dynamics — institutional contraction and AI-enabled expansion — are not coincidental. They are related. And the relationship is uncomfortable if you sit on the institutional side of it.
But here’s the critical nuance that gets lost in the breathless “AI will replace teachers” discourse: a learner who is new to a field has no map. They don’t yet know the vocabulary of the domain, the canonical questions worth asking, the shape of what they don’t know. A motivated but uninitiated person sitting in front of Claude or ChatGPT with zero orientation to, say, cloud architecture or financial modeling or network security isn’t going to unlock the system’s power — because they don’t yet know what to unlock. They’ll ask surface questions and get surface answers and walk away thinking they’ve learned something when they’ve only scratched the outermost layer.
This is precisely where formal accreditation — Ontario’s college system included — remains not just relevant but essential. A structured curriculum provides the learner’s first map. It gives you the vocabulary, the mental models, the sequencing, the “here is what matters and here is why” that transforms an AI from a magic 8-ball into a genuine accelerant. The professor’s irreplaceable gift is not information delivery. It never was. It is orientation — the psychological and intellectual framing that lets a newcomer know which questions are worth asking at all.
The tragedy is that most institutions are squandering this advantage by treating AI as a threat to manage rather than a force to harness.
Continuing to forbid or sideline AI tools in the curriculum isn’t rigor. It’s a rearguard action against the inevitable, and it is actively harming students. Every graduate who leaves a two-year program without fluency in how to collaborate with AI agents to extend their learning has been handed a credential and a handicap simultaneously. The students know it. Which is, not coincidentally, part of why enrollment is declining.
What I want to show you in this post is a different model entirely.
What you’re about to read is a lab report from a real session where I used ChatGPT Codex to design, build, test, and ship a working web application — a Tic-Tac-Toe game served by a Node.js server — and commit it to GitHub, all driven by natural language prompts. No boilerplate. No stack overflow rabbit holes. No three-hour environment setup. Just a clear intention, an AI capable of executing it, and the foundational knowledge to know what to ask for.
That last part is the whole point. The foundational knowledge to know what to ask.
This methodology — using a structured learning orientation as your launchpad, then using AI as your velocity engine — is not a workaround or a shortcut. It is the most powerful skills development loop available to any learner today. You learn the map from a program, a course, a mentor, a curriculum. Then you use AI to compress the distance between “I understand the concept” and “I have built a thing that works.” Then you extend your capability by challenging the AI further — in this case, I’ll be asking you to take what Codex built and push it one level deeper by making the computer play against you.
That loop — orient, build, extend, reflect — is a replicable framework for any domain you want to enter. Data analysis. Cybersecurity. UX design. Financial modeling. The AI doesn’t change the loop. It just makes each revolution of it dramatically faster and more powerful than anything available to learners a decade ago.
Ontario’s colleges have the orientation piece. The AI has the velocity piece. The learner who figures out how to combine both is going to outlearn, outbuild, and outrun any peer who uses only one or the other.
Let’s build something.
AI with Peter — I Let Codex Build My Tic-Tac-Toe Game
AI with Peter
Hands-on Labs & Tutorials
Lab Report · ChatGPT Codex Series
I Let Codex Build My Tic-Tac-Toe Game — And It Committed the Code to GitHub Too
A step-by-step account of using an AI coding agent to write, serve, and ship a full browser game without touching the terminal myself.
P
Peter · AI with Peter · May 17, 2026
I’ll be honest with you — the first time I heard about ChatGPT Codex I thought it was just a fancier autocomplete. A smarter tab-key. I was wrong. What I discovered when I actually sat down and gave it a real task — build me a Tic-Tac-Toe game, serve it locally with Node.js, and push it to GitHub — is something closer to a junior developer who doesn’t need lunch breaks.
Let me walk you through exactly what happened, what I asked, what it produced, and at the end I’ll give you a challenge to take this further yourself.
“I described the end result I wanted in plain English. Codex wrote every file, spun up the server, and pushed the commit — all before I finished my coffee.”
What Is ChatGPT Codex?
Codex is OpenAI’s AI software engineering agent, available inside ChatGPT. Unlike a plain chat model that just suggests code, Codex operates inside a sandboxed compute environment. It can read your repository, write files, run terminal commands, install packages, and — critically — interact with Git. It’s the difference between a model that gives you a recipe and one that actually cooks.
The prompt I used
Codex prompt
// What I typed into Codex — nothing more, nothing less"Create a Tic-Tac-Toe web game. The game should be served
by a Node.js HTTP server on localhost:3000. When the player
clicks a cell, it should alternate between placing an X and
an O. When someone wins, show a message. Include a reset
button. Commit everything to my GitHub repo."
That was it. No file names. No framework names. No boilerplate. I hit enter and watched Codex get to work.
What Codex Built
Within a couple of minutes, Codex had scaffolded a clean, minimal project with three files. Here’s a condensed look at the structure it produced:
project structure
tictactoe/
├── server.js← Node.js HTTP server, serves index.html
├── index.html← the full game: HTML + CSS + JS in one file
└── package.json← minimal, no external dependencies
Clean. No Express. No dependencies. Just Node’s built-in http and fs modules. Exactly what you’d want for a learning lab — nothing hidden in node_modules.
The game logic Codex wrote
The game logic inside index.html tracked whose turn it was with a boolean, checked all eight win conditions after each move, and reset state cleanly on button click. Here’s the key section:
Here’s the part that genuinely surprised me. After writing the files, Codex ran the Git commands on its own — git init, git add ., git commit -m "Initial tic-tac-toe game", and git push to my connected repo. No copy-pasting. No terminal hopping. The commit was there, in my GitHub repo, by the time I refreshed the browser.
💡
Want to try this yourself? You’ll need a ChatGPT account with Codex access, and you’ll need to connect your GitHub account inside the Codex workspace. Once connected, Codex can read, write, and push to any repo you authorise — treat it like granting access to a contractor.
What the Finished Game Looks Like
X
O
X
O
X
The current version alternates between Player X and Player O on each click. Two humans share the keyboard — or you click both sides yourself.
Your challenge: make one side the computer.
✦ ✦ ✦
Your Turn: Make the Computer Play
Here’s your lab challenge. Clone the repo, run it locally, then use Codex (or any AI coding tool) to upgrade the game so the human plays against the computer instead of two humans taking turns.
Clone the repo and start the server: node server.js — open localhost:3000 in your browser and confirm the base game works.
You are Player X. After you click a cell, the computer should automatically place an O in a remaining empty cell — no second human click needed.
Start with a random computer move: pick any available cell at random. Get that working first.
Stretch goal — make the computer smart. Implement the Minimax algorithm so it plays a perfect game. Codex can write this for you if you describe it — try it!
Commit your changes and share your repo link in the comments below.
You can see the finished result in my GitHUB – Codex offered to create, commit and push the code and did all the Devops details
Stuck? I’ve included progressive hints below. Try each step yourself before peeking — the learning is in the struggle.
Hint 1 — Where to add the computer move
In the cell click handler, after you update the board for the human (Player X), add a call to a new function — let’s call it computerMove(). That function will find available cells, pick one, update the board array and the DOM, and then check for a winner. Make sure to guard against the computer moving after the game is already won.
Hint 2 — Writing a random computer move
Collect all indices where board[i] === null into an array called available. Then pick a random index from that array with Math.floor(Math.random() * available.length). Place an 'O' at that board position and update the corresponding DOM cell’s textContent.
Hint 3 — Adding a brief delay so moves feel natural
Wrap your computerMove() call in a setTimeout(() => computerMove(), 300). This small 300ms pause makes the computer feel like it’s “thinking” rather than responding instantly, which dramatically improves the game feel.
Hint 4 — Minimax in plain English (for the stretch goal)
Minimax works by simulating every possible future game from the current position. For each empty cell, the algorithm pretends to place a piece, then recursively simulates the opponent’s response, then your response, and so on until the game ends. It scores terminal states: +10 for a computer win, -10 for a human win, 0 for a draw. The computer picks the move with the highest score. Ask Codex to “implement minimax for a tic-tac-toe board represented as a 9-element array” — it’ll write the whole thing.
What I Took Away From This
Codex didn’t just save me time. It changed how I think about starting a project. Instead of spending the first 20 minutes setting up a server and wiring up boilerplate, I described the outcome I wanted and started reading working code immediately. That shift — from authoring to reviewing — is significant.
The code Codex produced was readable, idiomatic, and well-commented. I would have written essentially the same thing myself, just slower. The Git integration was the real jaw-dropper: it treated version control as a first-class part of the workflow, not an afterthought.
“The shift is from authoring to reviewing. You spend your time thinking about what the code should do, not how to type it.”
If you’re teaching yourself to code, this is a powerful companion — not a shortcut around learning, but an accelerant that lets you see working examples instantly and then study, modify, and break them. If you’re an experienced developer, it’s a capable pair programmer for the parts of the job that are repetitive.
Drop your repo links in the comments when you complete the challenge — I’ll feature the best implementations in a follow-up post. Bonus points if you get Minimax working and the computer goes undefeated.
May 14, 2026 – A complete beginner-friendly lab for business users and data analysts
Today we’re not just talking about AI — we’re building something real together.
Imagine this:
You’re in the middle of a team meeting. The boss asks, “Can someone pull together a quick breakdown of last month’s sales by region and product — I need it before lunch?”
Instead of the usual silence, followed by “I’ll put in a ticket with informatics and we’ll have it next week,” you speak up calmly:
“Give me 10 minutes.”
You open your laptop, run one command, and a few moments later email over a polished PDF report with clean charts, key insights, and growth trends. The room goes quiet. Your manager’s eyebrows go up. A client leans in and says, “How did you do that so fast?”
That moment — where you become the go-to person who can answer ad-hoc questions instantly — is now possible.
All you need is BYOB: Bring Your Own Business domain knowledge. Grok Build, xAI’s new agentic command-line tool, does all the heavy lifting.
You stop waiting for tickets. You stop depending on overworked developers. You become the executive producer of your department’s data story — turning raw numbers into insights on demand, right in front of your team.
If you’ve never used a terminal, never touched code, and think “running software” is like opening Microsoft Word, this guide is written exactly for you.
ETL is a common data processing protocol:
Extract the data from its source, cleaning up and reformatting as needed.
Transfer the data from its source to the destination (processing) platform.
Load: the data into the final file or format for presentation to clients and users.
We’ll use Grok Build, xAI’s new agentic CLI tool (available to SuperGrok Heavy subscribers), to create a complete automated sales data ETL pipeline — Extract, Transform, Load + reporting.
By the end of this single lab, you will have:
A working Python application on your computer
A professional PDF report and charts from your data
The confidence to describe your own ideas and let Grok Build build them
From Microsoft Word Mindset to “Going to the Metal”
Your computer is like an office building:
Folders = filing cabinets (this is your file system)
Terminal = the service elevator that lets you talk directly to the building
Grok Build = your super-smart assistant who works inside one specific filing cabinet (project folder)
Everything we do stays visible in normal File Explorer or Finder. No magic black box.
Step 0: One-Time Setup (10 minutes)
Create Your Lab Folder
On your Desktop, right-click → New Folder → name it sales-etl-lab
Open that folder in File Explorer / Finder so you can watch files appear.
Open the Terminal Inside Your Folder
Windows:
Click in the address bar at the top of the Explorer window
Type powershell and press Enter
Mac:
Right-click the folder → New Terminal at Folder
You now have a window with a prompt like PS C:\Users\Peter\Desktop\sales-etl-lab> — this means you are “standing inside” your project folder.
Step 1: Install Grok Build (One Time Only)
In that terminal window, copy and paste this exact command, then press Enter:
curl -fsSL https://x.ai/cli/install.sh | bash
Wait for it to finish (it downloads the official program and adds it to your system).
Restart your terminal (close the window and open it again the same way).
Test it:
grok --version
You should see version information.
Step 2: Create Your Sample Sales Data (CSV)
We need some realistic data to work with.
In your terminal (still inside sales-etl-lab), type this command and press Enter:
notepad sample_sales.csv
(On Mac use nano sample_sales.csv or just use Notepad/TextEdit)
Copy the exact content below and paste it into the file:
Verify it exists: In terminal, type dir (Windows) or ls (Mac) — you should see sample_sales.csv.
Step 3: Launch Grok Build and Build Your Pipeline
In the same terminal, simply type:
grok
A beautiful full-screen interface will open. On first run it will ask you to log in with your SuperGrok Heavy account in the browser.
Once inside, copy and paste this exact prompt (ready to use):
Plan and build a complete automated ETL pipeline in Python.
1. Read sample_sales.csv (it already exists in this folder)
2. Clean the data (handle missing values, fix data types)
3. Perform analysis: total revenue, revenue by region and product, monthly trends
4. Create professional visualizations with matplotlib/seaborn (revenue trends line chart, regional pie chart, top products bar chart)
5. Generate a polished PDF summary report
6. Create a simple one-command runner: python run_pipeline.py
Use clean code, requirements.txt, good logging, and error handling. Start with a clear project plan and let me review it first.
Press Enter and let the magic happen.
What you’ll see:
Grok Build shows a clear plan with steps → review and approve
Multiple sub-agents work in parallel
You see clean diffs of every file created or changed
At the end: success message with exact command to run
Step 4: Run Your New Automated Pipeline
When Grok Build finishes, it will tell you to run:
python run_pipeline.py
(If it asks to install dependencies first, run pip install -r requirements.txt)
Watch the terminal: it will process your CSV, create charts, and generate sales_report.pdf in the folder.
Open the PDF — you now have a professional business report generated automatically from your data.
Pro move: Keep File Explorer open next to the terminal so you can literally watch new files (charts, PDF, Python scripts) appear as they are created.
What You Just Accomplished
You went from zero command-line experience to owning a working ETL Python application in one session.
This is the real power of Grok Build: it handles the heavy coding and DevOps details while you stay in control of the goal and the final files.
Next Steps & Confidence Boosters
Try changing the prompt: “Add monthly growth percentage calculations and email the report as PDF attachment”
Replace sample_sales.csv with your own real data (same columns or tell Grok Build to adapt)
Run the pipeline every morning — it becomes your personal data analyst assistant
You now understand folders, terminals, running commands, and how AI can build real software for you.
Ready to go further? Drop in the comments what you want your next pipeline to do (inventory analysis, marketing ROI, customer churn, etc.) and we’ll build the next lab together.
This is a complete turnkey lab. Everything you need is above. No prior experience required — just follow the steps exactly.
SuperGrok Heavy required for Grok Build access → https://x.ai/cli
You’ve got this. Welcome to the builder’s side of AI. 🚀
What did you build first? Share your screenshot of the generated PDF — I’d love to celebrate your win!
For years, the command terminal was treated like a dark cave where only developers, sysadmins, and the occasional Linux wizard dared to wander.
That era is ending.
Warp AI has been pushing the terminal into a new category: not just a place to type commands, but an agentic workbench where humans and AI collaborate on technical work, business data tasks, automation, debugging, workflow documentation, and process improvement.
This matters because the next wave of business advantage will not belong only to people who can code from memory. It will belong to people who can describe a business problem clearly, give the AI access to the right working environment, inspect the results, and turn rough workflows into repeatable execution systems.
That is exactly where Warp becomes interesting.
Warp is an agentic development environment born out of the terminal, supporting its own built-in agent and third-party CLI agents such as Claude Code, Codex, Gemini CLI, and others. (GitHub) Its AI layer, Oz, can work through multi-turn conversations, look up commands, execute tasks, fix bugs, and adapt to project workflows. (Warp)
For business and technical analysts, this is not just “developer tooling.” This is the beginning of the AI-powered analyst cockpit.
What’s New and Why It Matters
The visible change in the screenshot is important: Warp now has a dedicated Oz agent conversation interface. Instead of simply typing commands into a terminal, the user can start an agent conversation, ask for help, run tasks, debug problems, and keep the interaction organized as a workflow.
Warp separates Terminal Mode from Agent Mode.
Terminal Mode is the clean command-line workspace.
Agent Mode is a dedicated multi-turn conversation space with richer controls, including model selection, voice input, image attachments, and conversation history. (Warp)
That separation is brilliant.
Why? Because analysts do not just need random command suggestions. They need a working partner that can stay with the problem:
“Why did this CSV import fail?” “Clean these columns and generate a summary.” “Write a Python script that compares last month’s customer churn to this month.” “Document this workflow so another analyst can run it next week.” “Turn this messy process into a repeatable checklist.”
Recent Warp updates also added stronger agent workflow features: Oz agents can now ask clarifying questions during Agent Mode interactions, suggest follow-up steps when done, and use /skills support in CLI agent rich input. (Warp)
That means the terminal is becoming less like a dumb command box and more like a guided execution environment.
For analysts, this is the big shift:
Old Terminal
Warp AI Terminal
You must know the command
You can describe the outcome
Errors are cryptic
Errors become diagnostic conversations
Scripts are isolated
Scripts become repeatable workflows
Analysts depend on developers
Analysts can prototype and validate faster
Documentation happens later, maybe never
Documentation can be generated as you work
This is why I think business analysts, data analysts, and process analysts should be paying very close attention.
Use Case 1: Turn Messy CSV Files Into Business Intelligence Outputs
Every business has this problem.
Someone exports a CSV from a CRM, ERP, LMS, ticketing system, payroll tool, or sales platform. The columns are inconsistent. The dates are weird. The category names are messy. Some rows are blank. The business manager wants a clean answer by 3 PM.
This is where Warp AI can become a serious productivity weapon.
Scenario
You are a data analyst supporting a sales operations manager.
You receive a file called:
monthly_sales_export.csv
The manager wants:
Total sales by region
Top 10 customers
Month-over-month change
A cleaned version of the file
A short written summary for management
Workflow
First, place the CSV inside a project folder.
Example:
mkdir sales-analysis-may-2026
cd sales-analysis-may-2026
Then open Warp and start an Oz agent conversation.
Prompt:
I have a CSV file called monthly_sales_export.csv. Inspect the structure, identify data quality problems, and propose a cleaning plan before writing any code.
This is the right move. Do not begin by asking the AI to blindly “analyze the file.” Make it inspect first.
Then ask:
Create a Python script that:
1. Loads the CSV
2. Standardizes column names
3. Converts date columns to proper date format
4. Removes fully blank rows
5. Flags missing customer names or missing sales amounts
6. Saves a cleaned CSV
7. Produces a summary table by region
Warp can help generate the script, run it, read the error messages, and revise the code. If the script fails because the date column is called Order Date instead of order_date, the agent can diagnose that directly from the terminal output.
Next prompt:
Now generate a management summary in plain English. Include the top regions, top customers, any data quality warnings, and recommended follow-up questions.
Final prompt:
Create a README.md file explaining this workflow so another analyst can rerun it next month.
Business Value
This is not just faster spreadsheet work. This is a repeatable operating asset.
You now have:
A cleaned dataset
A Python script
A management summary
A documented workflow
A repeatable monthly reporting process
That is how analysts move from “spreadsheet firefighter” to business process engineer.
Use Case 2: Diagnose Broken Reports and Failed Automation Scripts
Here is where Warp becomes especially useful for technical business analysts.
Many organizations have fragile reporting workflows. A Power BI refresh fails. A Python script breaks. A scheduled export stops working. An API changes. A folder path is wrong. A column name changed silently.
The usual business response is panic, Slack messages, and the ancient ritual of “Who owns this thing?”
Warp gives analysts a better path.
Scenario
A daily reporting script is supposed to generate a sales performance file every morning.
Today it failed.
The terminal shows:
KeyError: 'customer_segment'
Classic. Somewhere in the pipeline, the expected column does not exist.
Workflow
Start by asking Warp:
Help me debug this script. The error is KeyError: 'customer_segment'. Inspect the project files, explain what likely went wrong, and do not change anything yet.
That “do not change anything yet” instruction matters. Analysts should treat AI like a junior assistant with superpowers: useful, fast, but still requiring supervision.
Then ask:
Find where customer_segment is referenced in the project. Show me each file and line where it appears.
Next:
Inspect the input CSV headers and compare them to the expected columns in the script.
The likely discovery:
The script expects customer_segment
The new export uses segment
Or the column was removed
Or the source system changed the name to Customer Segment
Then ask:
Update the script so it handles these possible column names:
customer_segment, Customer Segment, segment.
Add a clear warning if none of these columns exist.
Then:
Run the script again and summarize what changed.
Finally:
Create a troubleshooting note called REPORT_FAILURE_PLAYBOOK.md explaining:
1. What failed
2. Why it failed
3. How we fixed it
4. How to diagnose this type of issue next time
Business Value
This is where the analyst becomes dangerous — in the good way.
Not dangerous because they know every programming trick.
Dangerous because they can now:
Read error messages
Ask the AI to investigate
Compare expected vs actual data structures
Repair small scripts
Preserve the fix as documentation
Reduce future dependency on overloaded developers
That is a career upgrade.
For business process analysts, this is also a new way to study operational failure. Every broken script becomes evidence of a weak process boundary: unclear ownership, undocumented source-system changes, fragile assumptions, or missing validation.
Warp helps convert failure into institutional learning.
Use Case 3: Build a Process Automation Prototype From Plain English
This is the killer use case for business process analysts.
Most organizations are full of processes that live in email, Excel, shared drives, and “ask Sandra, she knows how it works.”
That is not a process. That is organizational folklore.
Warp can help turn folklore into executable workflow.
“That is not a process. That is organizational folklore.”
There is an old joke in IT circles:
There are 10 kinds of people in the world: those who understand binary, and those who don’t.
If you don’t get the joke, don’t worry. That is actually the point.
Every organization has its own version of that joke.
There are people who “get it” and people who don’t.
There are people who know how the workflow really works, and people who only know what the official procedure document claims. There are people who know which spreadsheet matters, which email thread contains the real answer, which folder has the latest file, which exception is allowed, which manager needs to be copied, and which approval step can quietly be skipped because “that’s how we’ve always done it.”
This creates a hidden knowledge hierarchy.
Officially, we say our organizations are process-driven. We say the work is documented. We say workflows are transparent.
But in real life, a lot of operational knowledge lives in human memory, informal relationships, inherited habits, and workplace folklore.
And human nature being what it is, some people do not rush to give that knowledge away.
The person who knows “how things really work” can become a kind of modern workplace courtier. Like the old courtiers who understood palace etiquette, they understand the unwritten etiquette of the organization: who to ask, how to phrase the request, which report matters, where the exception lives, and what the process document forgot to mention.
That knowledge gives them status.
It makes them harder to replace.
It gives them a subtle political advantage.
And that creates a serious management problem.
Because when important process knowledge is trapped inside a few people’s heads, newcomers struggle. Capable employees underperform. Managers get inconsistent execution. Teams become dependent on informal gatekeepers. The process may exist officially, but the real process remains hidden.
This is where AI-enabled tooling becomes a major organizational advantage.
Tools like Warp AI allow managers, analysts, and technical staff to start turning hidden process knowledge into shared operational knowledge. The goal is not to attack the people who understand the workflow. The goal is to extract, clarify, document, test, and standardize the process so everyone can operate from the same map.
That is the power move.
AI can help inspect the files, scripts, reports, data exports, folders, and recurring tasks that make up the real workflow. It can help ask the missing questions. It can help turn “ask Sandra, she knows” into a documented standard operating procedure. It can help convert scattered instructions into checklists, scripts, diagrams, and repeatable workflows.
For managers, this creates a more consistent level playing field of knowledge and understanding.
For newcomers, it lowers the barrier to competence.
For analysts, it creates a way to discover how the organization actually works.
For the organization, it reduces dependency on tribal memory and political gatekeeping.
That is why this matters.
AI-enabled workflow tools are not just about speed. They are about democratized insight. They help flatten understanding across the organization. They give more people access to the “binary joke” inside the business — the hidden logic that some people understand and others don’t.
And once more people understand the logic, the organization becomes easier to manage, easier to improve, and much harder to hold hostage to folklore.
Scenario
A business analyst is asked to improve a weekly operations review process.
Current process:
Download ticket data from the help desk system
Download customer data from CRM
Match tickets to customer accounts
Count open tickets by customer tier
Flag VIP customers with unresolved tickets older than 72 hours
Send summary to the operations manager
This is a perfect candidate for an AI-assisted prototype.
Workflow
Create a project folder:
mkdir weekly-ops-review
cd weekly-ops-review
Add sample files:
tickets.csv
customers.csv
Then ask Warp:
I am a business process analyst. I want to prototype a weekly operations review workflow using two CSV files: tickets.csv and customers.csv.
First, inspect the files and tell me what columns exist. Then propose a workflow for matching tickets to customers and identifying high-priority unresolved issues.
Then:
Create a Python script that:
1. Loads tickets.csv and customers.csv
2. Matches tickets to customers using customer_id
3. Filters unresolved tickets older than 72 hours
4. Groups results by customer tier
5. Creates a VIP escalation list
6. Exports results to weekly_ops_review.xlsx
Then:
Add comments to the script so a non-programmer analyst can understand each step.
Then:
Create a process map in Mermaid syntax showing the workflow from data export to management review.
Then:
Create a standard operating procedure document for this weekly process.
Business Value
This is the new analyst superpower:
Turn a messy human process into a prototype, a script, a report, a diagram, and an SOP.
That is not “playing with AI.”
That is business modernization.
Warp is especially powerful here because it lives close to the actual execution environment. The AI is not just writing theory in a chat window. It can help create files, run commands, inspect outputs, debug errors, and refine the workflow.
This is where AI becomes operational.
Why Business Users Should Care About a Terminal
Here is the mental shift.
A terminal is no longer just a programmer’s command line. It is becoming a control surface for work.
Business analysts already work with:
Files
Data exports
Reports
Dashboards
APIs
Automation scripts
Documentation
Business rules
Exception handling
Workflow diagrams
Warp brings many of those pieces into one AI-assisted operating environment.
The analyst does not need to become a full software engineer overnight. But the analyst does need to become technically conversant.
That means being able to say:
“Here is the file. Here is the business rule. Here is the expected output. Here is the error. Help me inspect, fix, document, and improve the workflow.”
That is the new literacy.
Not coding from memory.
Not worshipping at the altar of syntax.
But orchestrating AI, data, scripts, and process logic into useful business execution.
Practical Starter Prompts for Analysts
Here are prompts followers can start using immediately.
CSV Inspection Prompt
Inspect this CSV file. Identify the columns, data types, missing values, inconsistent naming, date problems, and any fields that may cause reporting errors. Do not write code yet. First give me a data quality assessment.
Script Builder Prompt
Create a Python script that cleans this dataset and exports:
1. A cleaned CSV
2. A summary table
3. A list of rows requiring human review
Add comments so a business analyst can understand the script.
Debugging Prompt
This script failed. Read the error message, explain it in plain English, identify the most likely cause, and suggest the safest fix. Do not modify files until I approve the plan.
Process Documentation Prompt
Based on the files and scripts in this folder, create a standard operating procedure for a non-technical analyst. Include purpose, inputs, outputs, steps, validation checks, and troubleshooting notes.
Management Summary Prompt
Turn the output of this analysis into a short management briefing. Include the business finding, operational risk, recommended action, and any data quality concerns.
The Bigger Point: Analysts Are Becoming AI Workflow Operators
The next professional advantage will not come from merely “knowing AI exists.”
That is already table stakes.
The advantage will come from knowing how to put AI into the workflow.
Warp AI is important because it sits at the crossroads of:
Terminal commands
AI agents
Local files
Cloud agents
Code review
Script execution
Debugging
Documentation
Process automation
Warp’s Oz platform also points toward larger-scale agent orchestration: Warp describes Oz as a cloud orchestration platform for spinning up parallel cloud agents that are programmable, auditable, and steerable. (Warp)
That is a major signal.
We are moving from “AI as chatbot” to AI as execution layer.
For data analysts, that means faster cleaning, reporting, debugging, and automation.
For business analysts, that means turning requirements into prototypes faster.
For business process analysts, that means converting informal procedures into documented, semi-automated workflows.
For managers, that means the bottleneck between “we should improve this process” and “we have a working prototype” gets dramatically smaller.
Final Takeaway
Warp AI is not just a cooler terminal.
It is a glimpse of the new business workbench.
The old world said:
“Learn the command before you can do the work.”
The new world says:
“Describe the work clearly, inspect the AI’s plan, run the workflow, validate the output, and document what you learned.”
That is a profound change.
My advice to business and technical analysts is simple:
Download Warp. Create a test folder. Drop in a messy CSV. Ask Oz to inspect it. Build a cleaning script. Debug it. Generate the summary. Document the workflow.
Do not wait for permission from the future.
The future has already opened a terminal window.
How to Start Using Warp AI Today
The beautiful thing about Warp is that you do not need to wait for your company to launch a massive AI transformation project. You can start using it today as your own private productivity lab.
Go to the official Warp download page and install the version for your system: Mac, Windows, or Linux. Warp supports macOS, Windows, and Linux, with installation options including the normal installer, Homebrew on Mac, WinGet on Windows, and Linux packages for common distributions. (Warp)
On Windows, the fast install path is:
winget install Warp.Warp
On Mac, the fast install path is:
brew install --cask warp
On Ubuntu or Debian Linux, you can download the .deb package from Warp and install it with:
sudo apt install ./warp-terminal.deb
Once Warp is installed, open it the same way you would open any other application. You will see a modern terminal window, but do not let the word “terminal” intimidate you. Think of it as a command centre for your computer, where you can work with files, folders, scripts, data, automation, and AI assistance in one place.
Warp lets you use a normal terminal session, but it also includes Agent Mode, where you can have a multi-turn conversation with its AI agent. Warp’s own documentation describes this as a split between a clean terminal for commands and a dedicated agent conversation space for deeper AI workflows. (Warp)
Here is the beginner’s path I recommend.
First, create a safe practice folder. Do not begin with mission-critical company files. Start with a copy of a spreadsheet export, a sample CSV, or a harmless test folder.
mkdir warp-practice-lab
cd warp-practice-lab
Then drop in a sample file such as:
sales_export.csv
Now open a new Warp agent conversation and ask:
I am a business analyst learning to use Warp. Inspect the files in this folder and explain what I can do with them. Do not make changes yet.
That last sentence matters: “Do not make changes yet.” This keeps you in control. AI is powerful, but professional users should work in a disciplined inspect-plan-act rhythm.
Next, ask Warp to help with a real but contained task:
Create a Python script that reads this CSV, summarizes the columns, identifies missing values, and exports a simple data quality report.
Then let Warp help you run the script. When errors appear — and they will, because errors are part of real work — ask:
Explain this error in plain English, identify the likely cause, and suggest the safest correction.
This is where Warp starts to feel different from a normal terminal. You are no longer stuck staring at cryptic red text. You can turn the error into a learning moment, a fix, and eventually a documented workflow.
After the script works, ask:
Create a README.md file explaining what this workflow does, what files it requires, how to run it, and how to interpret the output.
That is the analyst’s gold move.
You are not just creating a one-time result. You are creating a repeatable business process.
For business analysts, technical data analysts, and process improvement professionals, the goal is not to become a hardcore software developer overnight. The goal is to become fluent enough to use AI-assisted execution tools responsibly.
Start with these three habits:
Inspect before acting. Ask Warp to examine files and explain the situation before making changes.
Work on copies. Never experiment directly on the only version of an important file.
Document the workflow. Every useful script should come with a plain-English explanation.
Once you are comfortable, integrate Warp into your weekly work.
Use it to clean CSV files. Use it to generate Python scripts. Use it to troubleshoot broken reporting workflows. Use it to create process documentation. Use it to build small automation prototypes before asking IT for a larger system change.
That is the real power.
Warp is not merely a terminal. It is a practical bridge between business thinking and technical execution. It gives the analyst a place to say:
“Here is the business problem. Here are the files. Here is the desired output. Help me inspect, build, test, fix, and document the workflow.”
That sentence is the new professional literacy.
Do not wait until this becomes mandatory training. Download Warp, create a practice folder, drop in a sample dataset, and run your first AI-assisted workflow today. The people who learn to operate this way now will have a serious advantage in the next generation of business work.
Imagine the universe as the ultimate operating system—the invisible code that runs everything from your morning coffee to tomorrow’s trillion-dollar markets.
For decades, physicists have relied on the Standard Model as the clean, reliable manual for that OS.
But recent results from CERN’s Large Hadron Collider are showing small “glitches” in the code—rare particle decays that don’t quite add up.
These aren’t dramatic explosions or flashy new particles. They’re subtle. They’re called “penguin decays”—a whimsical name for a specific way short-lived B mesons transform into other particles.
The latest data from the LHCb experiment (published in spring 2026) shows a roughly 4-sigma tension with Standard Model predictions in an electroweak penguin process (B⁰ → K*⁰ μ⁺ μ⁻).
In plain business English: the ledger isn’t balancing perfectly. Something—possibly new forces, particles, or even a deeper layer of reality—is nudging the numbers.
This PowerPoint is from my course on how Computational Physics is the new Business Leadership Competency.
It’s not yet proof of “new physics,” but it’s one of the strongest hints in years that our foundational map of the universe might be missing entire chapters.
Inside the LHCb detector at CERN—where billions of collisions are sifted to spot these ultra-rare penguin decays.
Why This Matters for Executives, Investors, and Strategic Thinkers
You don’t need a PhD in quantum field theory to care.
Here’s the translation:
1. The bedrock of tomorrow’s technologies is shifting.
Quantum field theory underpins semiconductors, advanced materials, cryptography, and the simulations that power modern AI.
If new physics exists at these scales, it could unlock exotic quantum materials with properties we can’t yet engineer—think room-temperature superconductors, ultra-efficient energy storage, or processors that laugh at today’s heat and power limits. Companies betting on “known physics” for long-term infrastructure (pharma R&D, secure comms, advanced manufacturing) may face sudden disruption—or massive upside.
2. Quantum computing just got a strategic tailwind.
Google’s Willow quantum processor (105 qubits, breakthrough error correction) is already demonstrating verifiable quantum advantage on problems that would take classical supercomputers absurd amounts of time.
Better understanding of the universe’s “code” directly improves how we simulate quantum systems.
Willow’s early-access program (proposals due May 15, 2026) is open to research partners—exactly the kind of infrastructure that turns scientific anomalies into commercial breakthroughs.
Google’s Willow quantum chip—the hardware learning to speak the universe’s native language more fluently than ever.
3. Simulation theory stops being philosophy and starts being strategy -> Deeper Models of Reality as a competitive Asset.
Reality itself is looking more and more like a computational substrate.
Every time CERN tightens the screws on our models, we refine the algorithms that run AI, digital twins, and optimization engines.
For business leaders, this means the winners won’t just have better data—they’ll have deeper models of reality.
Think faster drug discovery, hyper-accurate financial risk modeling, supply-chain optimization that borders on clairvoyance, and AI systems that don’t just predict markets but understand the physical constraints shaping them.
Practical Takeaways for Investors and Managers
Watch the quantum-adjacent supply chain. Companies developing quantum materials, error-corrected hardware, or simulation software (Google Quantum AI, IBM, startups in topological qubits or neutral atoms) stand to benefit first. The market for quantum technologies is already doubling toward $3B+; foundational physics shifts accelerate that curve.
Risk and opportunity in cryptography and security. New physics could eventually impact post-quantum encryption timelines—something every board should have on its 3–5 year radar.
Talent and infrastructure bets. Nations and corporations investing in quantum talent pipelines and national labs will own the next layer of competitive intelligence.
For Students and Future Leaders: Calibrating Your Learning Path
If you’re in college or early career and want to thrive in this newly enabled world, don’t silo yourself.
The high-value intersection is interdisciplinary:
Quantum information science + business strategy
Computational physics + AI/machine learning
Philosophy of computation (simulation theory, emergent intelligence) + executive decision-making
Prioritize programs or electives that teach you to translate deep science into economic language.
The executives of 2030 will be the ones who can read a CERN paper and immediately see the balance-sheet implication.
Start building that muscle now—through online courses, research internships at quantum labs, or even following newsletters like this one: The Quantum Frontier Daily.
The famous “penguin” Feynman diagram—a visual shorthand for the rare decay process now showing unexpected behavior.
(The penguin name came from a 1970s bar bet among physicists—proof that even fundamental science has a sense of humor.)
Meta Insight: Reality as the Ultimate Competitive Arena
We are not merely building better computers.
We are iteratively debugging our interface with existence itself.
Google’s Willow and CERN’s anomalies are two sides of the same coin: one probes the hardware of the cosmos, the other builds silicon that can speak its language.
The structure of knowledge—how we measure, compute, and simulate—is becoming the invisible foundation for global competitiveness.
Leaders who treat foundational science as a leading indicator (not a lagging curiosity) will shape the platforms that define the next economy.
Today’s Compass (Shareable Executive Takeaway)
“New physics at CERN reminds us that the most valuable competitive advantage is not today’s technology, but tomorrow’s deeper understanding of the rules that govern it.”
What do you think—does this anomaly feel like a minor software patch or the start of an OS upgrade for reality itself?
Drop your take in the comments.
If you’re an executive, investor, or student navigating the quantum-AI frontier, I’d love to hear how you’re positioning yourself.
Stay curious, stay strategic, Peter
(This post expands on the Quantum Frontier Daily newsletter edition of May 13, 2026. All technical details drawn from publicly reported LHCb results and Google Quantum AI updates as of this date.)
This is the first lab in a six-part series that will take you from a single working iOS app all the way to production-ready, full-stack mobile development skills. In the coming labs we’ll show you how to pull entire iOS and Android apps from a Git repository, set up true Continuous Integration / Continuous Delivery pipelines, weave AI API calls directly into your business logic, and add powerful RAG functionality using Firebase and MongoDB. Stick with the full series and, in just a few hours per lab (spread over the next few months), you’ll have a portfolio of demonstrated, real-world projects that equals — and in many ways surpasses — the practical output of a full college diploma in full-stack development. When I first learned this material I had to spend hundreds of dollars on thick textbooks that were outdated by the time they arrived. You don’t have to. Start right now by creating a new NotebookLM notebook, copy and paste this entire lab (and each future one) into it, then ask Gemini to break everything down into bite-sized steps and help you troubleshoot on the spot. The university of today no longer has four walls — it has context windows and interactive conversations. Employers already understand that the old industrial factory-floor model of churning out graduates is breaking down.
The future belongs to those who take ownership of their own learning, starting today.
Modern IT work no longer lives only in browsers and back‑office systems; the most visible and valuable experiences now run in people’s hands, on phones they carry everywhere.
Whether you work in data, web, cloud, or traditional enterprise development, employers increasingly expect you to understand how ideas become mobile apps that feel native, perform well, and integrate securely with the rest of the stack.
A portfolio that includes concrete mobile work is one of the clearest signals that you can deliver end‑to‑end solutions instead of just isolated code fragments.
At the same time, tools like Claude Code and other AI assistants can generate large parts of an app for you—but only if you bring the right mental model to the conversation. You need to understand the hardware the app runs on, how frameworks like Angular, Ionic, and Capacitor layer on top of iOS, and what structure a real app must follow to satisfy a business domain: navigation flows, data passing, security, and deployment to simulators and devices. Without that high‑level comprehension, AI will happily produce code that “looks right” but can’t be built, signed, or shipped.
This lab is designed to close that gap. You will build a simple but complete iOS application from scratch using modern, code‑first practices: TypeScript and Angular for structure, Ionic for mobile‑grade UI, and Capacitor to bridge into the native iOS world. Along the way, you’ll see how the same skills you use for web development can produce an actual app running in the iOS Simulator and on a physical iPhone.
The goal is not just to finish a lab, but to add a tangible mobile artifact to your portfolio and to give you the conceptual grounding you need to guide AI tools effectively on future projects.
Below is a complete, copy‑pasteable lab you can use to build an IOS app using modern design practices. We assume that you are using macOS, and VS Code:
Build an Ionic + Angular + TypeScript app.
Create a Fahrenheit → Celsius converter with a slider.
Run it in the iOS Simulator.
Deploy it onto a physical iPhone.
Reflect on why Angular + Ionic + Capacitor is a powerful combination.
Citations reference official docs and tutorials.ionicframework+5
Lab: iOS Temperature Converter with Angular, Ionic, and Capacitor
Implement a Fahrenheit → Celsius converter using an Ionic slider.
Wrap the app with Capacitor and run it in the iOS Simulator.
Deploy the app to a physical iPhone for testing.
Understand the advantages of Angular + Ionic + Capacitor.
Each step ends with a “Success target” so you know what you should see before moving on.
Step 0 – Prerequisites and Setup (Mac)
0.1 – Required hardware and OS
You must have:
A Mac running a recent version of macOS that can install:
Xcode (from the Mac App Store).
Node.js (LTS version).
Optional but recommended:
An actual iPhone and a Lightning/USB‑C cable, or wireless debugging enabled.
iOS development requires macOS and Xcode; you cannot run the iOS Simulator on Windows or Linux.appmysite+1
0.2 – Install Xcode
Open the App Store on macOS.
Install Xcode.
After installation, open Xcode once:
Accept the license.
Allow any additional components to install.
Close Xcode.
Xcode provides the iOS Simulator you’ll use to run your app.ionic+1
0.3 – Install Node.js and Ionic CLI
Install Node.js (LTS) from the official website if it’s not already installed.
Open Terminal and run:bashnode -v npm -vBoth should print version numbers.
Install the Ionic CLI:bashnpm install -g @ionic/cli ionic --versionYou should see a version number for ionic.ionicframework+1
0.4 – Install Visual Studio Code
Download and install Visual Studio Code.
Open VS Code once to let it register with the system.
Step 0 – Success target
You can open Terminal and run:
bashnode -v
npm -v
ionic --version
All three commands print version numbers, and Xcode is installed on your Mac.
Step 1 – Create the Ionic Angular Project
You’ll create a new Ionic project using the Angular framework and a blank starter template.interserver+2
1.1 – Create project folder
In Terminal:
bashcd ~
ionic start temp-converter blank --type=angular
cd temp-converter
temp-converter is the project folder.
Choose Yes if the CLI asks to integrate Capacitor. If not, we’ll add it later.
1.2 – Open project in VS Code
bashcode .
VS Code should open with the temp-converter project.
1.3 – Run in the browser
In the same project folder, run:
bashionic serve
Ionic will start a development server and open your default browser.
You should see a basic Ionic starter page.
Step 1 – Success target
In your browser you see a starter Ionic page (e.g., “Ionic App”) running at a local address (like http://localhost:8100). You can edit files in VS Code, and the browser reloads.
Step 2 – Build the Temperature Converter UI
You’ll use Ionic’s range slider (ion-range) to select a Fahrenheit temperature and compute Celsius.ionicframework
2.1 – Locate the main page
In VS Code, open:
src/app/home/home.page.html
src/app/home/home.page.ts
src/app/home/home.module.ts
If the starter has a different main page, find the equivalent “Home” page referenced in app-routing.module.ts.
2.2 – Replace home.page.html
Replace the entire content of home.page.html with:
You wrote the UI and logic once in TypeScript + Angular + Ionic, and it runs:
In a browser (ionic serve).
In iOS Simulator.
On a physical iPhone.
Capacitor can also target Android using the same code.capacitorjs+2
Modern, component‑based UI
Ionic provides a full set of mobile‑style components (ion-range, ion-card, ion-toolbar, etc.) that automatically adapt to iOS and Android look‑and‑feel.kellton+2
Angular components and templates keep UI and logic organized and testable.
Native capabilities via plugins
Capacitor’s plugin system gives you access to camera, geolocation, filesystem, notifications, and more from TypeScript.capacitorjs+3
You can still drop into Swift/Objective‑C to create custom native plugins when needed.capacitorjs+1
Standard iOS toolchain
The generated iOS project is a normal Xcode project, so all native tooling still works:
iOS Simulator.
Device deployment.
Profiling and debugging.
App Store / TestFlight distribution.capacitorjs+1
Hard Targets (Checklist)
By the time you finish this lab, you should be able to say “yes” to all of the following:
Mac setup
I can run node -v, npm -v, and ionic --version on my Mac, and I have Xcode installed.
Web app working
I can run ionic serve and see a working Fahrenheit → Celsius converter with a slider in the browser.
Capacitor/iOS project generated
I have run npx cap init, npx cap add ios, and npx cap sync ios without errors.
There is an ios folder in my project.
iOS Simulator working
I have run npx cap open ios, selected a simulator, and launched the app in the iOS Simulator using Xcode.
Physical device deployment
I have configured signing in Xcode, selected my iPhone, and deployed the app to my device.
I can open the Temp Converter app and use it on my iPhone.
You’ve just seen the core advantages of building iOS apps with Angular + Ionic + Capacitor, and how this differs from traditional Xcode‑only development.
First, instead of wiring up Storyboards and dragging connections from UI widgets to IBOutlets and IBActions in Xcode, you designed your interface as code‑first UI using Ionic’s HTML templates and TypeScript. This approach is much friendlier to modern practices like version control, code review, and CI/CD pipelines, because your entire UI lives in readable, diff‑able source files rather than opaque Storyboard XML. It also lets you reuse your web skills across platforms and keep your layout logic close to your business logic, instead of split between Interface Builder and code.
Second, you experienced how navigation and screen transitions are handled declaratively with Angular’s router, not with ad‑hoc view controller wiring. Routes define which component shows for each URL, and Ionic’s ion-router-outlet adds mobile‑style transitions and a navigation stack on top. This means that pushing, popping, and passing data between screens follows clear, testable patterns you already know from Angular, while still feeling native on iOS.
Finally, by wrapping your Angular/Ionic app with Capacitor, you were able to run exactly the same code:
In a browser for fast iteration.
Inside a native iOS shell on the Simulator.
On a physical iPhone as a real app.
You did not have to rewrite your UI in Swift or SwiftUI to reach iOS; Capacitor took care of bridging your web app into a native container that Xcode, the Simulator, and real devices all understand.
You now have a working example of:
Code‑first UI with Ionic components.
Navigation powered by Angular’s router.
Cross‑platform delivery using Capacitor and Xcode.
These are the key wins that make Angular + Ionic + Capacitor a compelling option for modern iOS development and for integrating iOS into CI/CD‑driven, multi‑platform projects.