Skip to content

Instantly share code, notes, and snippets.

View dmitri-b's full-sized avatar

Dmitry B dmitri-b

View GitHub Profile
@dmitri-b
dmitri-b / zellij-tab-indicators.md
Created April 24, 2026 12:35
Zellij tab status indicator convention for AI coding agents (Claude Code, OpenCode, Aider, Cursor, etc.) — use tab titles to show working/waiting/done + 2-word task label

Zellij Tab Status Indicators for Coding Agents

A small convention for AI coding agents (Claude Code, OpenCode, Aider, etc.) running inside Zellij to keep humans visually aware of what each tab is doing.

Each tab's title is rewritten on every turn as:

<emoji> <2-word task label>
@dmitri-b
dmitri-b / gist:2287aa6d76f4caf027afaca35080d985
Created October 20, 2024 22:06
test npy vs pickle timings
import timeit
import torch
import numpy as np
tensor = torch.randn(16, 90, 160)
def save_torch_pickle():
with open('tensor_pickle.pt', 'wb') as f:
torch.save(tensor, f)