MOGWAI Finally Has a Step-by-Step Tutorial

Notebook with development task list beside laptop showing Python code and coffee cup

Since MOGWAI went open source, one question keeps coming back — on GitHub, in private messages, or just from my own experience showing it to colleagues — and it’s always the same: *”Okay, but where do I start?”* The existing documentation answers *”how does this primitive work”* or *”what’s the syntax for this structure”* very … Read more

Counting GitHub release downloads… in MOGWAI

Diagram showing data flow from input devices through HTTP request to JSON parsing, aggregation, and output visualization

MOGWAI recently gained its core HTTP primitives (http.get, http.post, http.put, http.patch, http.delete, http.head). The perfect excuse to put them through a real use case instead of a toy example: querying the GitHub API to see how many times MOGWAI’s CLI binaries have been downloaded, release by release. I didn’t write this script myself — Claude … Read more

MOGWAI Language Support for VS Code — v1.1.0

Visual Studio Code extension page showing Prettier code formatter with installation options and description

New update for the MOGWAI VS Code extension. This version brings a very practical everyday feature: a list of all functions declared in the current script. Function List and Navigation When working on a substantial .mog file with many declared functions, quickly finding a specific one can become tedious. v1.1.0 solves this with two complementary … Read more