3D Boids — FlockingPopular500 agents in 3D space following Reynolds' rules: separation, alignment, cohesion. Emergent…
Ant Colony Pheromone Trails SimulationExplore the fascinating world of ant colonies as you observe how they use pheromone trails…
Pathfinding — A*, Dijkstra, BFSPopularDraw walls, generate mazes and watch A*, Dijkstra, Greedy Best-First and BFS explore the…
Genetic AlgorithmPopulation evolves via tournament selection, crossover and mutation. Two modes: classic…
Travelling Salesman — TSPThree algorithms compete on the same city set: Nearest Neighbour greedy, 2-opt local search,…
Maze GeneratorThis simulation demonstrates the principles of maze generation algorithms. It visually shows…
Sorting Algorithms — Visual & Audio12 sorting algorithms animated as bar charts with Web Audio tones. Compare speed,…
Langton's AntLangton's Ant: a two-dimensional Turing machine that creates complex emergent patterns from…
N-Queens ProblemPlace N queens on a chessboard with no shared row, column or diagonal, and watch…
Langton's Ant — Cellular Automaton that Builds HighwaysWatch Langton's ant, a simple Turing-complete automaton, spontaneously build a 'highway'…
Maze Generator — Recursive Backtracker, Prim, Wilson's AlgorithmWatch 4 maze algorithms build live: Recursive Backtracker, Randomized Prim, Wilson's…
Sorting Algorithms Visualizer — Bubble, Quick, Merge, HeapInteractive visualizer for 6 classic sorting algorithms: Bubble, Quick, Merge, Heap,…
Wolfram 1D Cellular Automata — Elementary Rules & Complex BehaviourExplore all 256 Wolfram elementary cellular automaton rules. See how simple rules on a 1D…
Hamming CodesFlip a bit in a Hamming-encoded word and watch the parity checks produce a syndrome that…
Turing MachineStep-by-step Turing machine simulator with animated scrolling tape, highlighted state…
Compiler PipelineNewWatch source code become machine code: lexing to tokens, recursive-descent parsing to an…
Binary Search Tree — Insert, Search & BalanceNewAnimated BST operations: insert, search, delete and in-order traversal. Switch to AVL mode…
Data StructuresNewInteractive visualisations of stacks, queues, linked lists and hash tables — insert, delete…
Stable MatchingNewRun the Gale–Shapley deferred-acceptance algorithm step by step: proposals, tentative…
A* Pathfinding on a Gridded EnvironmentNewExplore the A* algorithm as it dynamically calculates the shortest path across a grid,…
0/1 KnapsackNewMaximize value without exceeding capacity. Watch dynamic programming fill the dp table cell…
Huffman CodingNewBuild an optimal prefix-free code by merging the two rarest symbols again and again. Watch…
Quadtree Spatial Index SimulationNewExplore how a quadtree recursively divides space into quadrants, allowing you to manage and…
Barnes–Hut N-bodyNewThe Barnes–Hut algorithm approximates an N-body gravity simulation in O(n log n) using a…
Marching Squares Algorithm VisualizationNewExplore the marching squares algorithm in 2D, manipulating a scalar field to generate…
Convex HullNewCompute the smallest convex polygon enclosing a point set with Graham scan, Jarvis march or…
Minimax & Alpha-BetaNewDFS the game tree assuming the opponent plays optimally; alpha-beta pruning skips branches…
Kalman FilterNewOptimally fuse noisy measurements with a motion model. The covariance ellipse grows on…
Reed-Muller CodesNewChoose a Reed-Muller code variant, toggle message bits, then flip an encoded bit to inject…
CRC ChecksumNewPick a CRC-8/16/32 preset, type a message, then inject an error and watch the checksum catch…
LZ77 CompressionNewWatch the LZ77 sliding-window compression algorithm encode data by finding repeated patterns.
Tower of Hanoi — Recursive Solver & 2ⁿ−1 MovesNewWatch the Tower of Hanoi solve itself with optimal recursion on 1–10 disks, animated…
Gray Code — Reflected Binary & Hypercube PathNewExplore Gray code (g = b XOR b>>1), where each consecutive value flips one bit. Step the 2ⁿ…
Red-Black Tree — Self-Balancing BSTNewInsert and delete keys in a red-black tree and watch recolouring and rotations keep it…
B-Tree — Multi-Way Search TreeNewBuild a B-tree of order m by inserting keys: nodes fill, split at the median and push a key…
Skip List — Probabilistic Balanced SearchNewA skip list stacks express lanes over a sorted linked list: each node is promoted with…
Edit Distance — Levenshtein DP TableNewFill the Levenshtein dynamic-programming table cell by cell, then backtrack the cheapest…
Longest Common Subsequence — DP AlignmentNewCompute the longest common subsequence of two strings with a DP grid, then trace the…
KMP String Matching — Failure FunctionNewKnuth-Morris-Pratt searches text in O(n+m): a prefix failure function lets the pattern slide…
Union-Find — Disjoint Sets & Path CompressionNewMerge elements into disjoint sets and find their roots in near-constant time. Union by rank…
Simulated Annealing — Escaping Local MinimaNewSolve a travelling-salesman tour with simulated annealing: accept worse moves with…
Particle Swarm Optimization — Swarm IntelligenceNewA swarm of particles searches a 2D cost landscape, each pulled toward its personal best and…
Boolean Network — Kauffman NK ModelNewExplore Kauffman NK Boolean networks: N binary nodes with K random inputs. K controls…
DCT Image Compression (JPEG Principle)NewDiscrete Cosine Transform compresses an 8×8 pixel block like JPEG. DCT-II: X_k =…
Polar Codes — Channel CapacityNewPolar codes (Arıkan 2009) achieve Shannon capacity for binary-input symmetric channels.…
Differential Evolution OptimizerNewDifferential Evolution (DE/rand/1/bin): mutant v = x_r1 + F(x_r2 - x_r3), crossover at rate…
Aho–Corasick — Multi-Pattern String SearchNewBuild a trie of several patterns plus failure links, then scan text in a single O(n) pass,…
AVL Tree — Self-Balancing RotationsNewInsert and delete keys in an AVL tree and watch balance factors update after every change.…
Bellman-Ford Algorithm — Shortest Paths with Negative WeightsNewWatch Bellman-Ford relax every edge V−1 times to find shortest paths from a source, even…
Binary Heap — Priority QueueNewInsert and extract values from a binary min-heap stored as an array. Watch sift-up and…
Rabin–Karp — Rolling Hash String SearchNewSlide a window across the text, updating a polynomial rolling hash in O(1) per shift, and…
Segment Tree — Range Sum & Range Minimum QueriesNewBuild a segment tree over an array in O(n) and answer range-sum or range-min queries and…
Treap — Randomized Balanced BSTNewEach key in a treap gets a random priority; the tree stays a max-heap on priorities while…
Aho–Corasick Algorithm ExplainedNewInteractive automaton visualization matching multiple pattern strings against a scrolling…
AVL Tree Rotations ExplainedNewInteractive self-balancing binary search tree rendered in 3D that rotates nodes as values…
Bellman–Ford Algorithm ExplainedNew3D weighted graph, including negative-weight edges, where the sim animates edge relaxation…
K-D Trees: Fast Nearest-Neighbor Search in Multidimensional SpaceNewWatch a k-d tree's recursive splits partition a point set, then follow a nearest-neighbor…
LRU Cache: Evicting the Least Recently Used ItemNewExplore how a fixed-capacity cache decides what to throw away when it's full, using the…
Count-Min Sketch: Estimating Frequencies Without Storing EverythingNewLearn how the Count-Min Sketch estimates item frequencies in massive data streams using a…
HyperLogLog: Counting Billions of Unique Items in a Few KilobytesNewExplore how HyperLogLog estimates the number of distinct items in massive datasets using…
Splay Trees: The Self-Adjusting Binary Search TreeNewExplore how a splay tree reshapes itself with every access, using zig, zig-zig, and zig-zag…
Fenwick Trees (Binary Indexed Trees): Fast Running TotalsNewExplore how a Fenwick tree (binary indexed tree) keeps prefix sums of an array both easy to…
Tries: The Prefix Tree Behind AutocompleteNewExplore how a trie (prefix tree) stores strings so that words sharing a prefix share a path,…
The Closest Pair of Points Problem: A Classic Divide-and-Conquer AlgorithmNewExplore how the closest pair of points problem in computational geometry is solved…
The Line Sweep Algorithm: Solving Geometry Problems by Sweeping a Line Across the PlaneNewExplore the line sweep (plane sweep) technique in computational geometry, where a moving…
R-Trees: The Data Structure That Makes Map Queries FastNewLearn how the R-tree data structure indexes points, rectangles, and shapes on a map using…
Interval Trees: Finding Every Overlapping Time Range InstantlyNewExplore how interval trees use an augmented binary search tree to find every stored range…
Suffix Array: Fast Substring Search Made SimpleNewExplore the suffix array, a sorted index of all suffixes of a string that enables fast…
Rope: The Data Structure Behind Big Text EditorsNewExplore the rope data structure, a binary tree of string chunks that lets text editors…
Cuckoo Hashing: Evicting Your Way to Fast LookupsNewExplore cuckoo hashing, a hash table scheme where colliding keys evict each other between…
Van Emde Boas Tree: Beating Log N With Log Log NNewExplore the van Emde Boas tree, a recursive cluster-and-summary data structure that answers…
Locality-Sensitive Hashing: Making Similar Things CollideNewExplore locality-sensitive hashing, a technique that deliberately makes similar…
Roaring Bitmap: Compressed Sets for Fast DatabasesNewExplore roaring bitmaps, a compressed bitmap structure that adaptively picks array, bitset,…
B+ Tree Database IndexNewExplore how a B+ tree index stores all records in linked leaf nodes, letting databases scan…
LSM Tree: How Cassandra, RocksDB, and LevelDB Write FastNewExplore the Log-Structured Merge Tree, the write-optimized storage engine behind Cassandra,…
Cuckoo FilterNewExplore the cuckoo filter, a compact probabilistic structure that answers set-membership…
Suffix Automaton: The Compressed Map of Every SubstringNewExplore the suffix automaton, the smallest deterministic finite automaton that recognizes…
The Z-Algorithm for String MatchingNewExplore how the Z-algorithm builds the Z-array in linear time and uses it to find every…
Burrows-Wheeler Transform: The Reversible Shuffle Behind bzip2 and Genome SearchNewExplore the Burrows-Wheeler Transform, a reversible rearrangement of a string that clusters…
The Michael-Scott Lock-Free QueueNewExplore how the Michael-Scott algorithm builds a thread-safe FIFO queue from a singly linked…
Sliding Window Minimum via Monotonic DequeNewExplore how a monotonic deque tracks the minimum (or maximum) of the last K elements in a…
HAMT: Hash Array Mapped TrieNewExplore how Hash Array Mapped Tries let languages like Clojure and Scala implement immutable…
Link-Cut TreeNewExplore the link-cut tree, an advanced data structure that maintains a dynamic forest of…
Wavelet TreeNewExplore the wavelet tree, a succinct data structure that answers access, rank, and select…
Succinct Rank/Select BitvectorNewExplore how a bit array can be augmented with a tiny superblock/block index so that rank and…
Order-Statistics TreeNewExplore how augmenting a balanced binary search tree with subtree-size counters unlocks…
Skip Graph: Decentralized Ordered Search for Peer-to-Peer NetworksNewExplore how skip graphs generalize skip lists into a fully decentralized structure that…
Judy Array: The Cache-Conscious Adaptive TrieNewExplore the Judy array, a sparse associative array and sorted-integer-set structure that…
Bitboard Techniques: Encoding a Chessboard in 64 BitsNewExplore how chess engines represent an 8x8 board as 64-bit integers, using bitwise…
AMS Sketch: Estimating Stream Skew in a Sliver of MemoryNewExplore the AMS (Alon-Matias-Szegedy) Sketch, a randomized streaming algorithm that…
Karger's Randomized Min-Cut AlgorithmNewExplore how Karger's algorithm finds the global minimum cut of a graph by repeatedly…
Dinic's Algorithm for Maximum FlowNewExplore how Dinic's algorithm speeds up maximum flow computation by alternating BFS-built…
Fountain Codes and LT Codes: Rateless Erasure CodingNewWatch an LT fountain code turn a file into an endless stream of XOR-combined droplets, and…
Reed-Solomon Erasure Coding for Distributed StorageNewSee how Reed-Solomon codes shard data into data and parity blocks across storage nodes, then…
Fractional Cascading: One Binary Search Through Many ListsNewDiscover how fractional cascading searches the same key across a chain of sorted arrays by…
T-Digest: Streaming Quantile EstimationNewStream a large data distribution through the t-digest algorithm's adaptive centroid merging…
Piece Table: The Text Editor's Secret Edit BufferNewType and delete text in a simulated editor and watch its piece table track original and add…
Ant Colony Optimization Simulator — ACO, TSP & PathfindingNewThis simulation demonstrates the Ant Colony Optimization algorithm. Users can observe how…
Genetic Algorithm Visualizer: Evolution, TSP, and OptimizationNewThis simulation demonstrates the application of genetic algorithms to solve optimization…
A* Pathfinding Algorithm Visualizer - Dijkstra, BFS and Heuristic Graph SearchNewThis simulation visually represents the A* pathfinding algorithm. It demonstrates how…
Sorting Algorithm VisualizerNewThis simulation visually demonstrates various sorting algorithms, including bubble sort,…
Numerical Integrator Comparison SimulatorNewRun the same orbiting body under Euler, semi-implicit Euler and RK4 integration side by side…
Agricultural Robotics Fleet PlannerNewSize an autonomous field-robot fleet, estimate precision-agriculture yield gains and…
AI Guardrail Pipeline: Policies & ModerationNewWatch incoming requests flow through a live guardrail pipeline — policy engine, content…
Hyperparameter Search Landscape VisualizationNewWatch grid search, random search, a Bayesian-style explore/exploit strategy and a…
AI Safety Evaluation ArenaNewExplore how foundation models are evaluated for safety: sample AI test cases in a 3D…
AI Code Generation: Transformer Attention & Token Prediction VisualizerNewWatch a simplified transformer generate code token by token: multi-head self-attention lines…
EU AI Act Risk ClassifierNewClassify a hypothetical AI system under the EU AI Act's four-tier risk pyramid. Tune its…
AI Factory Digital Twin: Predictive Maintenance SimulatorNewA 3D digital-twin factory floor: an AI anomaly model reads simulated vibration and…
LLM Evaluation & BenchmarksNewSimulate how LLM benchmark scores (MMLU, HumanEval, BIG-Bench, Chatbot Arena) fluctuate with…
AI Mental Health Triage: From Signal to DiagnosisNewWatch simulated patient sessions flow through a live AI mental-health pipeline — signal…
Attention Mechanism ExplorerNewWatch a Transformer-style attention layer compute softmax attention weights between tokens…
Automata Theory: Finite-State Machine VisualizerNewStep a deterministic finite automaton through a binary input string one symbol at a time:…
Algorithm Design: Divide & Conquer vs Naive SortingNewA live 3D visualizer that runs Merge Sort, Quick Sort and Bubble Sort on the same bar-chart…
Sorting Algorithms 3D — Bubble, Insertion, Selection, Quick & Merge SortNewInteractive 3D visualization of core sorting algorithms — Bubble, Insertion, Selection,…
The Bias-Variance TradeoffNewRefit a polynomial regression model across resampled training sets in 3D and watch the…
Channel Capacity: The Shannon-Hartley TheoremNewAdjust bandwidth and signal-to-noise ratio to watch the Shannon-Hartley channel capacity C =…
How Convolution Kernels Transform ImagesNewA 3D visualization of 2D convolution: watch a kernel slide across an extruded pixel grid and…
Sobel, Laplacian and Canny: Edge Detection LabNewA 3D pixel-height grid where a sliding 3x3 kernel computes Sobel, Laplacian or Canny edge…
Corners, Blobs and Keypoints: Harris, SIFT & ORB LabNewTwo synthetic photos of the same scene, one rotated, scaled and made noisy, with live Harris…
Hierarchical Clustering and DendrogramsNewWatch agglomerative hierarchical clustering merge customer data points into a 3D dendrogram…
Origami Engine — Phase 0 prototype (Blintz Fold)NewInteractive simulation of Origami Engine — Phase 0 prototype (Blintz Fold).
Origami Engine — Phase 0/1 prototype (Double Blintz Base)NewInteractive simulation of Origami Engine — Phase 0/1 prototype (Double Blintz Base).
P2P Network: Chord Distributed Hash Table — Finger-Table RoutingNewNodes and keys are hashed onto a circular identifier ring. Watch Chord's O(log N)…
Rubik's Cube Auto-SolverNewThis simulation showcases an algorithm for automatically solving a Rubik's Cube. Users can…
Emergent Flock Dynamics with BoidsNewObserve the complex patterns generated as a group of 'boids' follows simple rules,…
Flocking Birds SimulationNewThis simulation models flocking behavior using simple rules. Users can observe how a group…
Algorithmic Urban Design ExperimentNewObserve how a generative algorithm creates complex cityscapes by controlling variables such…
Procedural Terrain GeneratorNewThis simulation generates realistic-looking terrain using a procedural algorithm. Users can…
3D Binary Search TreeNewThis simulation demonstrates the structure and operation of a binary search tree data…
3D Boids FlockingNewThis simulation demonstrates the emergent behavior of a group of 'boids' – simple agents…
3D Cellular Automaton 3DNewThis simulation demonstrates cellular automata, a computational model where simple rules…
3D Hash Table CollisionNewThis simulation provides a visual understanding of how collisions occur within a hash table…
3D Maze PathfindingNewObserve different algorithms used for solving maze problems in a 3D environment. This…
3D Pathfinding AlgorithmNewThis simulation demonstrates a pathfinding algorithm in three dimensions. Users can observe…
3D Rubiks CubeNewThis simulation provides an interactive 3D model of a Rubik's Cube. Users can manipulate the…
3D Sandpile CriticalityNewThis simulation models the classic sandpile problem in three dimensions. It visually…
3D Sorting Algorithm VisualizerNewThis simulation demonstrates the principles of sorting algorithms in a visually engaging 3D…
3D Terrain GeneratorNewThis simulation demonstrates the generation of realistic terrain using procedural…
Algorithmic Terrain Generation SystemNewWitness the dynamic creation of diverse terrains through algorithmic processes, where you…
Ant Colony Simulation: DecentralizedNewAnt Colony Simulation - this variant focuses on decentralized.
Rubik's Cube Algorithm VisualizationNewThis simulation displays a step-by-step visualization of solving a Rubik's cube using an…
Chess Battle - Strategic GameplayNewExperience a classic chess match against an AI opponent, adjusting camera speed and…
Ant Colony Pathfinding: Pheromone Trail DecayNewAnts lay and follow pheromone trails while the trails evaporate, so the colony converges on…
3D Cellular Automaton: 3d PatternsNew3D Cellular Automaton - this variant focuses on 3d patterns.
Metaball Blob MergeNewThis simulation explores the interaction of metaballs, demonstrating how they attract and…
Rubik's Cube Solving SimulationNewThis simulation demonstrates the process of solving a Rubik’s cube. It illustrates…
Ant Colony Pathfinding: Swarm IntelligenceNewAnt Colony Pathfinding - this variant focuses on swarm intelligence.
Rubik's Cube Solver Algorithm DemoNewThis simulation demonstrates a Rubik's cube solver algorithm, enabling users to observe the…
Advanced Algorithms - Comprehensive GuideNewThis simulation demonstrates various advanced algorithms and their applications. It explores…
Advanced Criminal Investigation SimulationNewThis advanced simulation allows users to hone their investigative skills by meticulously…
Advanced Optimization - Comprehensive GuideNewThis simulation demonstrates various optimization techniques, such as linear programming,…
Advanced Optimization Algorithms SimulationNewThis simulation allows you to experiment with advanced optimization algorithms like genetic…
Societal Systems Simulation: Building Software ModelsNewThis simulation explores how different architectural choices impact software development…
Societal Dynamics Simulation: A Complex SystemNewExplore the intricate relationships within a simulated society by adjusting parameters like…
Algorithmic Trading SimulatorNewThis simulation demonstrates how algorithmic trading strategies can be implemented and…
Ant colony pathfindingNewThis simulation allows you to observe and manipulate ant colony pathfinding in a dynamic 3D…
Ant Colony RoutesNewThis simulation models the complex navigation strategies employed by ant colonies. Users can…
Ant Colony Pathfinding SimulationNewExplore the fascinating world of ant colonies with this simulation! Observe how individual…
A* Pathfinding in a Gravitational SystemNewExplore how A* pathfinding algorithms adapt to realistic gravitational forces in a 2D…
Astar PathfindingNewThis simulation demonstrates the A* pathfinding algorithm visually. Users can manipulate…
Cellular AutomataNewThis simulation explores cellular automata, demonstrating the behavior of classic rules like…
Automata Theory — Finite Automata, Regular Languages, and Turing MachinesNewThis simulation demonstrates the core concepts of automata theory, including finite…
Biochemical Processes SimulationNewThis simulation allows you to explore the complex interplay of factors – temperature, pH,…
Boids Flock SimulationNewThis simulation showcases the emergent behavior of Boids – a flocking algorithm where simple…
Boids 3NewThis simulation demonstrates the Boids algorithm, a computational model for simulating…
Boids Flocking SimulationNewThis simulation demonstrates the principles of flocking behavior in Boids. Users can adjust…
Boids Flocking - Agent Collective BehaviorNewThis simulation demonstrates the emergent behavior of a group of agents following simple…
Boids 3DNewAn interactive 3D simulation showcasing the Boids algorithm, a model for simulating flocking…
Boids FlockingNewThis simulation showcases the emergent behavior of a flock of 'boids' governed by simple…
Cellular Automata SandNewAn interactive 2D simulation demonstrating how cellular automata can be used to generate…
Chemistry Computational Chemistry Research HubNewUsers can conduct research in computational chemistry by simulating molecular interactions…
Negotiation SimulationNewThis simulation models the process of negotiation, focusing on strategies for reaching…
Data Compression Algorithms - Comprehensive GuideNewThis simulation provides a hands-on introduction to data compression algorithms. Users will…
Computational Archaeology - Comprehensive GuideNewThis simulation introduces the application of computational methods in archaeological…
Computational ComplexityNewThis simulation demonstrates the concepts of computational complexity theory, focusing on…
Computational Law - Comprehensive GuideNewThis simulation introduces the concepts of computational law by demonstrating how algorithms…
Advanced Computational Linguistics - Comprehensive GuideNewThis simulation explores advanced computational linguistics by showcasing techniques for…
Computational Linguistics - Comprehensive GuideNewThis simulation demonstrates computational linguistics by visualizing how algorithms process…
Computational Literature - Comprehensive GuideNewThis simulation explores computational literature by demonstrating how algorithms are used…
Sorting Algorithms Computer Science SimulatorNewThis simulator allows you to visually explore sorting algorithms like Bubble Sort, Merge…
Computer Vision SimulationNewThis simulation explores the core principles behind computer vision, allowing you to…
Conways GameNewThis simulation implements Conway's Game of Life, a cellular automaton that demonstrates…
Conways Game Of LifeNewThis simulation demonstrates Conway's Game of Life, a cellular automaton that exhibits…
Creative Problem Solving SimulationNewThis simulation illustrates a structured approach to tackling creative challenges. It…
Creative Thinking SimulationNewThis simulation demonstrates various techniques for stimulating imaginative thought. It…
Data Visualization SimulationNewThis simulation demonstrates the creation of visualizations from data. Users can explore how…
Decision Tree SimulationNewThis simulation allows you to explore decision tree algorithms by visually constructing and…
Deepseek_Html_20260714_16F667NewThis simulation demonstrates the creation of a complex HTML structure using procedural…
Deepseek_Html_20260714_18Af90NewThis simulation demonstrates the creation of a complex HTML structure using procedural…
Deepseek_Html_20260714_2Ab591NewThis simulation demonstrates the creation of a complex HTML structure using procedural…
Deepseek_Html_20260714_3887AaNewThis simulation demonstrates the creation of a complex HTML structure using procedural…
Deepseek_Html_20260714_3Df370NewThis simulation demonstrates the creation of a complex HTML structure using procedural…
Deepseek_Html_20260714_6079E5NewThis simulation demonstrates the creation of a complex HTML structure using procedural…
Deepseek_Html_20260714_61Ba99NewThis simulation demonstrates the creation of a complex HTML structure using procedural…
Deepseek_Html_20260714_8Df9C4NewThis simulation demonstrates the creation of a complex HTML structure using procedural…
Deepseek_Html_20260714_907Ec7NewThis simulation demonstrates the creation of a complex HTML structure using procedural…
Deepseek_Html_20260715_B02028NewThis simulation represents an unknown system or experiment. Without further context, it's…
Agile Development SimulationNewThis simulation demonstrates the core principles of Agile development methodologies. Users…
Development Version Control SimulationNewThis simulation demonstrates the use of version control systems like Git for collaborative…
Economics Game Theory SimulationNewThis 2D simulation explores game theory concepts by simulating strategic interactions…
Edge Detection Demo - Computer VisionNewThis simulation demonstrates edge detection using computer vision principles. Users can…
Edge Detection DemoNewThis simulation illustrates the principles of edge detection in computer vision. Users can…
Edge Detection Demo - Computer Vision Interactive VisualizationNewThis simulation provides an interactive visualization of edge detection techniques using…
Elevator Traffic ControlNewThis simulation models the traffic control system within an elevator shaft. It demonstrates…
Evolutionary Computation SimulationNewThis simulation explores evolutionary computation, demonstrating how populations of…
Evolutionary Strategies - Comprehensive GuideNewThis interactive simulation provides a guided introduction to evolutionary strategies,…
Federated Learning - Comprehensive GuideNewThis simulation illustrates the principles of federated learning, where machine learning…
Boid Flock Dynamics SimulationNewExplore the fascinating world of Boid flock dynamics through our interactive simulation.…
Flocking SystemNewThis simulation demonstrates the mesmerizing behavior of flocks – like birds or fish – by…
Fractal Generation Through Iterative ZoomNewThis simulation demonstrates the iterative process of generating fractals by repeatedly…
Functionality Advanced SearchNewThis simulation demonstrates the advanced search functionality within the system, allowing…
Functionality DiagnosticNewThis simulation provides a diagnostic tool for identifying potential issues or errors within…
Game Theory Simulation: Strategic Interactions and Nash EquilibriaNewThis simulation explores the principles of game theory through interactive scenarios. It…
Game Theory Strategic Interactions SimulationNewThis simulation allows you to experiment with different game theory models, observing how…
Gameoflife: Game of LifeNewThis simulation explores the classic Game of Life, a cellular automaton where simple rules…
Games Entertainment Game Of Life SimulationNewThis simulation presents a simplified version of the 'Game of Life' concept, exploring how…
Genetic Algorithm SimulationNewThis simulation allows users to explore the core mechanics of genetic algorithms by…
Genetic Algorithm Population EvolutionNewThis simulation allows you to explore the core principles of genetic algorithms by observing…
Genetic Algorithm Simulation EnhancedNewThis simulation allows users to explore the core mechanics of genetic algorithms by…
Genetic Algorithm SimulatorNewThis simulation demonstrates the core functionality of a genetic algorithm, showcasing how…
Genetic Algorithms Simulation: Evolution in ActionNewThis simulation demonstrates the core principles of genetic algorithms by visually tracking…
Genetic Algorithms Simulation: Evolution ControlNewThis simulation allows you to explore the core mechanics of genetic algorithms by directly…
Genetic Programming Simulator: Evolutionary Algorithms and Automated ProgrammingNewThis simulation allows users to explore genetic programming – a technique where computer…
Git Version ControlNewThis simulation demonstrates the core concepts of Git version control, including branching,…
Graph Algorithms Visualizer BFS DFSNewThis interactive visualizer allows you to explore graph traversal using both Breadth-First…
High-Frequency Trading VisualizerNewThis simulation demonstrates the dynamic behavior of high-frequency trading systems through…
Hyperspectral Supply Chain Monitoring SimulationNewThis simulation demonstrates how hyperspectral imaging can be used to track goods throughout…
Modular System Design Simulation: Architecting SoftwareNewDesign and build complex software architectures by controlling elements such as code…
Data Indexing SimulationNewThis simulation demonstrates the basic principles of indexing and data retrieval within a…
Three.js Index VisualizationNewThis simulation is a 2D exploration of data indexing concepts, allowing users to visualize…
Index Data Structure VisualizationNewThis simulation explores basic indexing concepts, likely related to data structures or…
Water State SimulationNewThis 2D simulation presents an abstract puzzle or logic challenge, likely involving pattern…
Information Theory Explained — Entropy, Mutual Information, CodingNewThis simulation explores the core concepts of information theory – entropy, mutual…
Innovation Open Innovation SimulationNewThis simulation demonstrates the principles of open innovation. It explores how…
??????? ?????? ??? ?????????? ???????NewThis simulation explores the mechanics of a complex, abstract puzzle, likely involving…
L-System 2DNewThis simulation demonstrates the generation of fractals using L-systems, a formal grammar…
L-System FractalNewThis simulation visualizes a classic L-system fractal, demonstrating the iterative process…
Langtons AntNewThis simulation demonstrates the behavior of a Langton's ant, a classic computational model…
Langtons Ant MultiNewThis simulation extends the Langton's ant model to multiple ants, showcasing how complex…
Learning Learning Strategies SimulationNewThis simulation demonstrates various learning strategies and their impact on knowledge…
Linguistics Computational Linguistics SimulationNewThis simulation introduces users to computational linguistics by demonstrating how…
Lsystem ExplorerNewThis simulation provides a user-friendly interface for exploring L-systems and their…
Lsystem FractalNewThis simulation demonstrates the generation of fractals using L-systems, a formal grammar…
SEO Ab Testing MetaNewThis simulation illustrates the process of A/B testing to optimize website content for…
SEO Content CalendarNewThis simulation showcases the creation and management of a content calendar for search…
SEO Content Update CalendarNewThis simulation models the process of updating a content calendar with new information and…
SEO Structured Data AuditNewThis simulation demonstrates how to audit a website's structured data markup for search…
Marching Squares Volumetric Surface GenerationNewExplore this interactive 2D simulation that demonstrates the marching squares algorithm for…
Markov Chains Explained — States, Transitions, and StationarityNewThis simulation provides an interactive exploration of Markov chains, covering concepts like…
Interactive Matrix Digital Rain SimulationNewExplore the mesmerizing visual representation of matrices in motion, adjusting parameters to…
Maze Generation with DFS & BFSNewExplore different maze generation techniques, including Depth-First Search (DFS) and…
Maze SolverNewThis simulation demonstrates the principles of maze solving algorithms. It visually shows…
MinesweeperNewThis simulation demonstrates the principles of Minesweeper. It visually shows how a…
Monitoring 404 Core Web VitalsNewThis simulation demonstrates the importance of monitoring core web vitals for website…
Interactive 3D Rubik's Cube SolverNewUsers can interactively solve a Rubik's cube in 3D, adjusting the rotation speed and camera…
Card Deck ShuffleNewThis simulation models the shuffling of a standard deck of cards, demonstrating random…
Conway's Game of Life — 3DNewThis simulation implements Conway’s Game of Life, a cellular automaton that demonstrates…
Rubik's Cube Algorithm SimulationNewThis simulation allows users to observe a Rubik's cube being solved through an algorithm,…
N92 City Traffic GridNewThis simulation models a simplified city traffic grid, illustrating concepts like…
Plinko / Galton Board — Three.js SimulationNewThis simulation demonstrates the principles of a Galton board, also known as a Soddy column,…
Rubik's Cube Rotation Speed ControlNewThis simulation demonstrates an algorithm for solving a Rubik's cube automatically. It…
Decentralized Ant Colony Foraging SystemNewWitness the intricate workings of an ant colony as simulated ants collaboratively search for…
Rubik's Cube Auto-Solver: Step-by-Step AlgorithmNewScramble a cube and watch the solver work through it move by move, with the algorithm's…
Butterfly Migration SwarmNewThis simulation demonstrates the behavior of a butterfly migration swarm, illustrating…
Rubik's Cube Solver AlgorithmNewThis simulation demonstrates the step-by-step solution of a Rubik's Cube using an algorithm,…
Generative String ArtNewThis simulation allows users to create abstract art by generating patterns with strings. It…
Optimization Algorithm Optimization SimulationNewThis simulation demonstrates the application of optimization algorithms to solve a specific…
Optimization Cost Optimization SimulationNewThis simulation explores how optimization methods can be used to minimize costs in various…
Optimization Database Optimization SimulationNewThis simulation demonstrates techniques for optimizing database performance through…
Optimization Energy Optimization SimulationNewThis simulation explores how optimization algorithms can be used to minimize energy…
Optimization Methods Explained — Gradient Descent to NewtonNewThis simulation demonstrates the application of gradient descent and Newton's method for…
Optimization Network Optimization SimulationNewThis simulation explores optimization techniques within a network context, likely…
Optimization Process Optimization SimulationNewThis simulation showcases the process of optimizing a system or workflow, potentially…
Optimization Resource Optimization SimulationNewThis simulation demonstrates how to optimize resource allocation within a system, likely…
Particle Swarm SimulationNewThis simulation allows you to observe the dynamic behavior of a particle swarm as it…
Particle Interactions in a Simulated SystemNewThis simulation allows users to explore particle interactions through a dynamic environment…
Path Planning Algorithm VisualizerNewThis simulation provides an interactive visualization of various path planning algorithms.…
A* Pathfinding AlgorithmNewThis simulation allows you to explore various pathfinding algorithms in a dynamic 2D…
Pathfinding VisualizerNewThis simulation visually represents pathfinding algorithms like A*. Users can observe how…
Perceptron Neural Network TrainingNewThis simulation allows you to visually train a Perceptron 2 model by adjusting its weights…
PlinkoNewThis simulation demonstrates the physics of a weighted marble falling through a board with…
Procedural CityNewThis simulation generates a city environment using procedural algorithms, creating a dynamic…
Quadtree Spatial PartitioningNewThis simulation explores how quadtrees efficiently organize 2D space by recursively dividing…
Quality Code Quality SimulationNewThis simulation demonstrates the principles of software quality assurance through…
Quality Continuous Improvement SimulationNewThis simulation models continuous improvement methodologies like Lean and Six Sigma,…
Quality Performance Quality SimulationNewThis simulation demonstrates how performance metrics are used to assess and improve quality.…
Rail Yard DispatchNewThis simulation demonstrates a simplified model of train dispatching operations at a railway…
React Nextjs Fullstack DevelopmentNewThis simulation demonstrates the core concepts of React and Next.js web development through…
Factory Production Line SimulatorNewThis simulation models a factory production line, demonstrating concepts like throughput,…
Research Collaborative Research SimulationNewThis simulation explores the dynamics of collaborative research projects, examining factors…
Research-Global-Research-CollaborationsNewThis simulation illustrates the challenges and opportunities associated with global research…
Research Literature Review SimulationNewThis simulation demonstrates how researchers synthesize existing knowledge through a…
Research Peer Review SimulationNewThis simulation simulates the peer review process in scientific publishing, allowing users…
Resource Kriging CloudNewThis simulation demonstrates the application of kriging – a geostatistical technique – to…
S31 Neural Network FiringNewThis interactive simulation models the firing of neurons within a simplified artificial…
Rubik's Cube Puzzle ChallengeNewExplore the intricacies of solving this iconic puzzle through visual manipulation, testing…
Fish School Boid SimulationNewThis simulation uses the Boids algorithm to model a school of fish. It demonstrates how…
Sensor Fusion SorterNewThis simulation explores the concept of sensor fusion by allowing users to combine data from…
Rubik's Cube Auto-SolveNewThis simulation demonstrates an algorithm for solving a Rubik's Cube automatically. Users…
SLAM Mapping VisualizerNewThis simulation visualizes the principles of Simultaneous Localization and Mapping (SLAM), a…
Social Advanced Social Network Analysis SimulationNewAnalyze social connections and influence within a network. Players build and manage a social…
Software Engineering SimulatorNewThis simulation provides a hands-on experience with building software applications from…
Sorting Algorithms VisualizerNewThis simulation visually demonstrates how different sorting algorithms – such as bubble…
Visual Sorting Algorithm ExplorerNewThis simulation demonstrates the visual representation of sorting algorithms. Users can…
SortingNewThis simulation demonstrates the principles of sorting algorithms, visually illustrating how…
Sorting AlgorithmsNewThis simulation illustrates various sorting algorithms by visually displaying their…
Visual Sort Algorithm SimulatorNewThis simulation demonstrates the visual representation of sorting algorithms. Users can…
Sudoku Solver — BacktrackingNewThis simulation demonstrates the algorithmic approach of backtracking used to solve Sudoku…
Supply NetworkNewAn interactive 3D simulation visualizing the optimization of supply chains, considering…
Support Vector Machine (SVM) - Interactive Classification VisualizationNewThis simulation provides an interactive visualization of Support Vector Machines (SVMs), a…
SVM Interactive VisualizerNewThis simulation offers an interactive visualization of Support Vector Machines (SVMs),…
Swarm Intelligence - Comprehensive GuideNewThis simulation illustrates the principles of swarm intelligence, where decentralized…
Swarm Intelligence SimulationNewExplore the fascinating world of swarm intelligence by controlling a group of virtual agents…
Swarm Intelligence SimulatorNewThis simulation explores swarm intelligence principles by allowing users to control a…
Synaptic Network LabNewThis simulation explores the dynamics of artificial neural networks. Users can modify…
Technology Api Design SimulationNewThis simulation focuses on the design of Application Programming Interfaces (APIs),…
Terrain GenNewThis simulation illustrates the process of generating terrain using procedural algorithms.…
Theater Playwriting SimulationNewThis simulation offers an interactive environment for crafting theatrical scripts. It allows…
Theater Theater Direction SimulationNewExplore the nuances of directorial choices within a theater setting. This simulation focuses…
Transcendent Information Transcendence SimulationNewThis simulation explores the potential for a biological system to process and manipulate…
Traveling Salesperson Problem Visual RouteNewThis simulation visually demonstrates the Traveling Salesperson Problem (TSP) by allowing…
Tsp GeneticNewThis simulation uses genetic algorithms to solve the Traveling Salesperson Problem (TSP). It…
Tsp Solver VisualizerNewThis simulation demonstrates the visual process of solving the Traveling Salesperson Problem…
Model Tuning ChallengeNewThis simulation demonstrates the principles of optimization and iterative improvement. Users…
Model Tuning Challenge - Interactive ML Training GameNewThis simulation demonstrates the principles of optimization and iterative improvement. Users…
🧩 Wave Function Collapse (WFC)NewThis simulation demonstrates the Wave Function Collapse algorithm, showcasing how patterns…
Wireframe MorphingNewThis simulation demonstrates the visual transformation of wireframes through morphing…
Wolfram CaNewThis interactive exploration demonstrates the core concepts of Wolfram CA (Cellular…
Dynamic Programming: Coin Change SimulatorNewInteractive minimum-coin-change dynamic programming simulation: edit coin denominations,…
Boids Flock Dynamics SimulationNewAn interactive 2D simulation demonstrating the principles of flocking behavior using the…
Cellular Automaton 3DNewThis simulation visually represents a cellular automaton in three dimensions. It…
City Skyline GeneratorNewThis simulation demonstrates a procedural city generation algorithm, creating a dynamic…
Algorithms SimulationNewThis simulation explores the fundamental concepts of algorithms – step-by-step procedures…
Data Structures SimulationNewThis simulation explores the concept of data structures – methods for organizing and storing…
Parallel Computing SimulationNewThis simulation demonstrates the concept of parallel computing and its benefits for solving…
Flocking BoidsNewThis simulation is a variation of the Boids Flocking Simulation. It demonstrates how…
Learning Learning Styles SimulationNewThis simulation explores the concept of learning styles (e.g., visual, auditory,…
Maze Generator 3DNewThis simulation demonstrates a 3D maze generation algorithm, creating complex labyrinths…
Maze PathfindingNewThis simulation illustrates the problem of pathfinding through a maze. It demonstrates…
Rubiks CubeNewSolve the Rubik's Cube using an interactive algorithm. This simulation demonstrates various…
Rubik's Cube Algorithm SolverNewThis simulation provides a visual representation of solving a Rubik's Cube. It allows users…
Voxel WorldNewThis simulation explores a world constructed entirely of voxels, showcasing how 3D space can…
Agentic Tool-Use PipelineNewWatch tasks flow through a planner, a tool call, a verifier and a confidence gate that…
Tool-Using Agent Reliability ChainNewWatch a chained plan of tool calls run in 3D: tune per-tool success rate, retry budget and a…
12 per page