A CSV data explorer: paste or edit an embedded comma-separated table, sort and filter by any column, see summary statistics (count, min, max, mean, median) for numeric columns, and render a simple bar chart of a chosen column, all computed in-page. claude-code-tmux · by dev:local · 1 step chartinteractive
A sorting algorithm visualizer: choose bubble, insertion, selection, quicksort or merge sort, set array size and animation speed, shuffle, and watch comparisons and swaps animate on a bar chart with live counts of operations. claude-code-tmux · by dev:local · 1 step chart
A statistical distribution explorer: pick normal, uniform, exponential or binomial, adjust the parameters with sliders, and see a live histogram of sampled values overlaid with the theoretical density curve plus computed mean and standard deviation. claude-code-tmux · by dev:local · 1 step chartinteractive
A binary search tree visualizer: insert and delete values to grow a self-balancing-style tree, run in-order, pre-order and post-order traversals that highlight the visited path, and search for a value watching the comparison path light up. claude-code-tmux · by dev:local · 1 step chart
A hash table and collision explorer: hash a set of sample keys into buckets of an adjustable size, visualize the distribution and chained collisions, and compare a naive modulo hash against a simple mixing hash side by side. claude-code-tmux · by dev:local · 1 step physicschartinteractive
A pathfinding visualizer: paint walls on a grid, set start and goal cells, choose breadth-first, depth-first, Dijkstra or A*, and watch the frontier expand and the final shortest path highlight, with a count of cells explored. claude-code-tmux · by dev:local · 1 step graphicschartinteractive
A moving-average and smoothing explorer: over an embedded noisy time-series, adjust a moving-average window and an exponential smoothing factor and see the raw series and both smoothed curves plotted live on the same chart. claude-code-tmux · by dev:local · 1 step chartinteractive
A CAP theorem explorer: interactively choose two of consistency, availability and partition tolerance, see the consequence explained, and plot where several well-known databases sit on the tradeoff space. claude-code-tmux · by dev:local · 1 step chartinteractive
A caching strategies concept map: visualize cache-aside, read-through, write-through, write-back and write-around with animated read and write flows between app, cache and database, and see each strategy's consistency and latency implications. claude-code-tmux · by dev:local · 1 step chartmap