LogoBotmonster Tech
AI Smart Home Self-Hosting Coding Web Dev Hardware Bootpag Image2SVG Tags

Coding

Pragmatic notes on developer tools, languages, and workflows. Shortcuts, tricks, and lessons from actually shipping code.

DuckDB is absurdly good at crunching gigabytes with no database server

DuckDB is absurdly good at crunching gigabytes with no database server

DuckDB crunches gigabytes of CSV and Parquet with no database server, no import step, and no waiting around. You aim a SELECT straight at a file on disk and it answers. On 41 million rows of raw NYC taxi data, I clocked a full group-by aggregation in 20ms and a two-table join in another 20ms, read straight off Parquet with nothing loaded, copied, or indexed first. That is a multi-gigabyte analytical query returning before you lift your finger off Enter key! Every number in this post comes from a benchmark you can run yourself; the scripts and raw results live in a GitHub repo .

How uv and Ruff untangled our messy, slow Python monorepo

How uv and Ruff untangled our messy, slow Python monorepo

uv workspaces give Python a Cargo-style monorepo setup. You get one lockfile, one virtual environment, and auto-resolved inter-package dependencies. Cold installs finish in seconds, not minutes. Pair uv with Ruff for linting and formatting, and the pair replaces Poetry, Black, isort, flake8, and pip-tools in one shot. The rest of this post covers workspace setup, inter-package deps, Ruff config, CI, publishing, and the traps that snag teams moving off older tools.

An old open terminal sealed in a specimen jar beside a closed steel monolith labeled agy, with a developer crossing a bridge between them.

Gemini CLI Is Dead: Migrating to Antigravity CLI in 2026

Google shut down Gemini CLI on June 18, 2026, pushing free, Pro, and Ultra users onto the closed-source, Go-based Antigravity CLI . You can keep the open-source Gemini CLI running with a paid API key, but its separate quota pool is gone. Enterprise and Code Assist Standard licenses still work unchanged.

Key Takeaways

  • Gemini CLI stopped serving free, Pro, and Ultra accounts on June 18, 2026.
  • Its replacement, Antigravity CLI, is a closed-source Go binary, not open TypeScript.
  • You can still run Gemini CLI by feeding it a paid Gemini API key.
  • The catch: agy shares one usage pool, so quotas drain much faster.
  • Enterprise and Code Assist Standard licenses keep working unchanged.

What happened to Gemini CLI?

On June 18, 2026, Gemini CLI and the Gemini Code Assist IDE extensions stopped serving requests for free, Google AI Pro, and Ultra personal accounts. The Google Developers Blog announcement confirmed the cutoff and named the replacement: Antigravity CLI, run with the command agy.

Build a CLI Dashboard with Go and Bubble Tea

Build a CLI Dashboard with Go and Bubble Tea

The Charmbracelet Bubble Tea framework lets you build live terminal dashboards in Go using the Model-Update-View pattern from Elm. Pair it with Lip Gloss for styling and Bubbles for ready-made widgets. You get live panels, key navigation, and flex layouts. It all ships as one binary with zero runtime dependencies.

Terminal dashboards fill a niche that classic CLIs and web apps both miss. Think of a monitor that runs over SSH on a headless box. Think of a database explorer that starts in milliseconds with no browser. Think of a log viewer your ops team can reach with no auth layer to set up. These are the use cases where TUI dashboards shine. Bubble Tea now sits at v2 with over 41,000 GitHub stars and more than 18,000 apps built on it. It has become the go-to framework for this kind of work in Go.

Three racing robots on parallel tracks, one chrome and sealed, one open-framed with swappable engine modules, one screen-headed on wheels

OpenCode vs Claude Code vs Cursor: Model-Agnostic Verdict

OpenCode, Claude Code, and Cursor solve the same job three different ways. On one production-codebase test, Claude Code finished 45% faster while OpenCode wrote 29% more tests, and Cursor is the IDE-native option neither benchmark page even mentions. The real winner depends on the model you run and the budget you keep.

Key Takeaways

  • Claude Code is faster and polished; OpenCode runs any model you want.
  • On one test Claude finished 45% faster, but OpenCode wrote 29% more tests.
  • Cursor is the IDE pick; the other two live in your terminal.
  • Reddit’s verdict: the better tool depends on which model you run.
  • OpenCode plus a local model can cut your coding-agent bill to near zero.

What is the difference between OpenCode, Claude Code, and Cursor?

These three tools split along two lines: who picks your model, and where the agent lives. Claude Code is the managed option. It works out of the box. The catch is that it ties you to Anthropic models like Sonnet, Haiku, and Opus. It runs in your terminal and mostly “just works” with no setup.

Seven robotic hands reach for a glowing key, three chained to vendor vaults, two holding open rings of swappable model keys, two on short routed leashes, beside a cost-balance scale

Best AI Coding Agents in 2026: Cost, Autonomy, and Lock-In

The best AI coding agent in 2026 comes down to two numbers most reviews skip. The first is real cost per completed task. The second is how locked in you are to one vendor’s models. Get those two right and the rest is preference. Get them wrong and you either overpay every month or hand a single vendor control of your roadmap. This compares seven agents on exactly those axes: Claude Code, Codex CLI, Gemini CLI, Cursor, OpenCode, Pi, and GitHub Copilot.

  • ◀︎
  • 1
  • 2
  • 3
  • …
  • 5
  • ▶︎

Most Popular

Build Powerful TUI Apps in Python with Textual and Rich

Build Powerful TUI Apps in Python with Textual and Rich

Build professional terminal UIs with Textual: a Python framework with CSS styling, reactive widgets, and async events for dashboards and developer tools.

Three racing robots on parallel tracks, one chrome and sealed, one open-framed with swappable engine modules, one screen-headed on wheels

OpenCode vs Claude Code vs Cursor: Model-Agnostic Verdict

OpenCode vs Claude Code: Claude runs 45% faster, OpenCode writes 29% more tests, and the right pick depends on your model and budget. Cursor slots in too.

Seven robotic hands reach for a glowing key, three chained to vendor vaults, two holding open rings of swappable model keys, two on short routed leashes, beside a cost-balance scale

Best AI Coding Agents in 2026: Cost, Autonomy, and Lock-In

Compare the seven best AI coding agents in 2026 on real cost per finished task and model lock-in, covering Claude Code, Codex CLI, Gemini CLI, Cursor, OpenCode, Pi, and GitHub Copilot.

An old open terminal sealed in a specimen jar beside a closed steel monolith labeled agy, with a developer crossing a bridge between them.

Gemini CLI Is Dead: Migrating to Antigravity CLI in 2026

Gemini CLI shut down on June 18, 2026. Migrate to the closed-source Antigravity CLI, keep Gemini running with an API key, and see what the new quota costs.

Is the StarFive VisionFive 2 the Best RISC-V SBC for Developers?

Is the StarFive VisionFive 2 the Best RISC-V SBC for Developers?

StarFive VisionFive 2 brings RISC-V development within reach: JH7110 quad-core, Vulkan GPU, Debian 13, NVMe support, and Raspberry Pi GPIO compatibility.

Interactive Go CLIs with Cobra Command Trees and Bubble Tea

Interactive Go CLIs with Cobra Command Trees and Bubble Tea

Cobra and Bubble Tea combine argument parsing and rich terminal UIs into one Go binary that works as both a scriptable tool and a polished app.

Like what you read?

Subscribe to the Botmonster newsletter and get Linux, AI, and self-hosting posts weekly.

Privacy Policy  ·  Terms of Service
2026 Botmonster