MermaidJS Demos from Obsidian and React
Interactive flowchart visualizations of the Towers of Hanoi and iterative Fibonacci algorithms using MermaidJS, with implementations in Obsidian and React.
Related Articles
Fibonacci with LRUCache
Learn how to optimize recursive Fibonacci calculations using an LRUCache to cache previously computed results, reducing redundant computations and improving performance.
Software/Algorithms
D3.js Visualizations
Learn how to embed interactive D3.js visualizations directly in markdown. This guide covers the ::d3 directive syntax, parameters, and includes a complete bar chart example with scale configuration.
Projects/D3js
Search Engines - Recall versus Relevance
Learn how search engines balance recall and relevance to deliver effective results. This article covers recall, relevance, precision, F1 score, and other critical metrics for evaluating search engine performance.
Software
Breadth-First Algorithm
Learn how to implement Breadth-First Search in JavaScript with a complete working example. This guide covers graph representation as an adjacency list and step-by-step BFS traversal logic.
Software/Algorithms