<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>learn.aathan.in</title>
    <link>https://learn.aathan.in</link>
    <description>Clear, technical write-ups on algorithms, AI agents, design, UX, psychology, and building things — by Aathan A.</description>
    <language>en</language>
    <atom:link href="https://learn.aathan.in/rss.xml" rel="self" type="application/rss+xml" />
    <lastBuildDate>Sun, 06 Sep 2026 04:04:34 GMT</lastBuildDate>
    <item>
      <title>Issues in Search Techniques: How Search Fails</title>
      <link>https://learn.aathan.in/docs/search-issues</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/search-issues</guid>
      <pubDate>Sun, 06 Sep 2026 09:30:00 GMT</pubDate>
      <description>Combinatorial explosion, cycles and redundant paths, local maxima, plateaux and ridges, inadmissible and inconsistent heuristics, and the four classic design questions — with a diagnostic table for telling which failure you are actually looking at.</description>
      <category>artificial-intelligence</category><category>search</category><category>combinatorial-explosion</category><category>local-maxima</category><category>plateau</category><category>ridge</category><category>hill-climbing</category><category>heuristics</category><category>admissibility</category><category>debugging</category>
    </item>
    <item>
      <title>State Space Search: Formulation, Trees vs Graphs, and Complexity</title>
      <link>https://learn.aathan.in/docs/state-space-search</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/state-space-search</guid>
      <pubDate>Sun, 06 Sep 2026 09:00:00 GMT</pubDate>
      <description>The formal five-part problem definition, why a small state space produces an infinite search tree, the difference between a node and a state, tree-search vs graph-search, and the completeness and complexity of every uninformed strategy.</description>
      <category>artificial-intelligence</category><category>state-space</category><category>search-tree</category><category>graph-search</category><category>bfs</category><category>dfs</category><category>iterative-deepening</category><category>complexity</category><category>problem-formulation</category>
    </item>
    <item>
      <title>Vacuum Cleaner World: Agents, Percepts and Rationality</title>
      <link>https://learn.aathan.in/docs/vacuum-cleaner-problem</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/vacuum-cleaner-problem</guid>
      <pubDate>Sat, 05 Sep 2026 10:30:00 GMT</pubDate>
      <description>The smallest AI problem there is — eight states, three actions. Used to define what an agent is, what makes one rational, and what happens when it can't see the whole world.</description>
      <category>artificial-intelligence</category><category>vacuum-world</category><category>agents</category><category>rationality</category><category>peas</category><category>partial-observability</category><category>reflex-agent</category>
    </item>
    <item>
      <title>The Monkey and Banana Problem: Means-Ends Analysis</title>
      <link>https://learn.aathan.in/docs/monkey-and-banana-problem</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/monkey-and-banana-problem</guid>
      <pubDate>Sat, 05 Sep 2026 10:20:00 GMT</pubDate>
      <description>A monkey, a box, and a banana hanging out of reach. The four-part state tuple, the operators, why this problem became the standard test for logical planning, and a full solver in Python and Prolog.</description>
      <category>artificial-intelligence</category><category>monkey-and-banana</category><category>planning</category><category>means-ends-analysis</category><category>prolog</category><category>state-space</category>
    </item>
    <item>
      <title>The Water Jug Problem: Production Rules and the Smallest State Space</title>
      <link>https://learn.aathan.in/docs/water-jug-problem</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/water-jug-problem</guid>
      <pubDate>Sat, 05 Sep 2026 10:10:00 GMT</pubDate>
      <description>Two unmarked jugs, no measuring marks, and a target volume. The six production rules, the complete 20-state graph drawn out, the number-theory result that says when it's solvable, and BFS code.</description>
      <category>artificial-intelligence</category><category>water-jug</category><category>production-rules</category><category>bfs</category><category>state-space</category><category>gcd</category><category>bezout</category>
    </item>
    <item>
      <title>4-Queens and 8-Queens: Backtracking and Constraint Search</title>
      <link>https://learn.aathan.in/docs/n-queens-problem</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/n-queens-problem</guid>
      <pubDate>Sat, 05 Sep 2026 10:00:00 GMT</pubDate>
      <description>Place N queens on an N×N board so none attack each other. The full 4-queens backtracking trace, why the naive space is 16 million and the smart one is 40,320, plus hill climbing and min-conflicts.</description>
      <category>artificial-intelligence</category><category>n-queens</category><category>8-queens</category><category>backtracking</category><category>constraint-satisfaction</category><category>hill-climbing</category><category>min-conflicts</category>
    </item>
    <item>
      <title>The Travelling Salesman Problem: When Search Explodes</title>
      <link>https://learn.aathan.in/docs/travelling-salesman-problem</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/travelling-salesman-problem</guid>
      <pubDate>Sat, 05 Sep 2026 09:50:00 GMT</pubDate>
      <description>Visit every city once, return home, minimise distance. Why brute force dies at 20 cities, how branch-and-bound and the MST heuristic help, and the approximation algorithms that actually ship.</description>
      <category>artificial-intelligence</category><category>travelling-salesman</category><category>tsp</category><category>np-hard</category><category>branch-and-bound</category><category>heuristics</category><category>optimisation</category>
    </item>
    <item>
      <title>Missionaries and Cannibals: Search Under Constraints</title>
      <link>https://learn.aathan.in/docs/missionaries-and-cannibals</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/missionaries-and-cannibals</guid>
      <pubDate>Sat, 05 Sep 2026 09:40:00 GMT</pubDate>
      <description>Three missionaries, three cannibals, one two-seat boat. The state representation that makes it tractable, why 12 of the 32 states are illegal, the full 11-move solution traced, and working BFS code.</description>
      <category>artificial-intelligence</category><category>missionaries-and-cannibals</category><category>river-crossing</category><category>bfs</category><category>constraints</category><category>state-space</category>
    </item>
    <item>
      <title>The Block World Problem: Planning with STRIPS</title>
      <link>https://learn.aathan.in/docs/block-world-problem</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/block-world-problem</guid>
      <pubDate>Sat, 05 Sep 2026 09:30:00 GMT</pubDate>
      <description>A robot arm stacking blocks — the problem that gave us predicate representation, the STRIPS planner, goal stacks, and the Sussman anomaly that broke naive planning for a decade.</description>
      <category>artificial-intelligence</category><category>block-world</category><category>strips</category><category>planning</category><category>predicate-logic</category><category>sussman-anomaly</category>
    </item>
    <item>
      <title>Tic-Tac-Toe: Minimax and Alpha-Beta Pruning</title>
      <link>https://learn.aathan.in/docs/tic-tac-toe</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/tic-tac-toe</guid>
      <pubDate>Sat, 05 Sep 2026 09:20:00 GMT</pubDate>
      <description>The classic two-player game as an AI problem — the game tree, why minimax guarantees perfect play, how alpha-beta pruning cuts the work by 90%, and a complete unbeatable player in Python.</description>
      <category>artificial-intelligence</category><category>tic-tac-toe</category><category>minimax</category><category>alpha-beta-pruning</category><category>game-tree</category><category>adversarial-search</category>
    </item>
    <item>
      <title>The 8-Puzzle: Sliding Tiles, Solved with A*</title>
      <link>https://learn.aathan.in/docs/8-puzzle</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/8-puzzle</guid>
      <pubDate>Sat, 05 Sep 2026 09:10:00 GMT</pubDate>
      <description>The canonical AI search problem. State representation, the four operators, why half of all boards are unsolvable, the misplaced-tiles and Manhattan-distance heuristics, and a full A* implementation with a traced solution.</description>
      <category>artificial-intelligence</category><category>8-puzzle</category><category>state-space</category><category>a-star</category><category>heuristics</category><category>manhattan-distance</category><category>bfs</category>
    </item>
    <item>
      <title>Problem Solving with AI: The State-Space Framework</title>
      <link>https://learn.aathan.in/docs/ai-problem-solving-overview</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/ai-problem-solving-overview</guid>
      <pubDate>Sat, 05 Sep 2026 09:00:00 GMT</pubDate>
      <description>Every classic AI problem — 8-puzzle, water jug, missionaries and cannibals, N-queens — is the same thing underneath: a state space you search. Here is the shared vocabulary, the search strategies, and how to pick one.</description>
      <category>artificial-intelligence</category><category>problem-solving</category><category>state-space</category><category>search</category><category>bfs</category><category>dfs</category><category>a-star</category><category>heuristics</category>
    </item>
    <item>
      <title>Evaluating Models: Metrics for Regression &amp; Classification</title>
      <link>https://learn.aathan.in/docs/ml-model-evaluation</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/ml-model-evaluation</guid>
      <pubDate>Thu, 20 Aug 2026 11:30:00 GMT</pubDate>
      <description>MAE, MSE, RMSE and R² for regression; the confusion matrix, precision, recall, F1 and ROC-AUC for classification — what each number means, when accuracy lies, and how to diagnose overfitting.</description>
      <category>machine-learning</category><category>metrics</category><category>evaluation</category><category>confusion-matrix</category><category>precision-recall</category><category>rmse</category><category>overfitting</category>
    </item>
    <item>
      <title>Classification Algorithms: Logistic Regression to Boosting</title>
      <link>https://learn.aathan.in/docs/ml-classification-algorithms</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/ml-classification-algorithms</guid>
      <pubDate>Thu, 20 Aug 2026 11:00:00 GMT</pubDate>
      <description>Every major classifier explained — logistic regression, KNN, naive Bayes, decision trees, random forests, SVM and gradient boosting — how each draws its decision boundary, when to use it, and the code.</description>
      <category>machine-learning</category><category>classification</category><category>logistic-regression</category><category>knn</category><category>svm</category><category>random-forest</category><category>naive-bayes</category>
    </item>
    <item>
      <title>Regression Algorithms Beyond the Straight Line</title>
      <link>https://learn.aathan.in/docs/ml-regression-algorithms</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/ml-regression-algorithms</guid>
      <pubDate>Thu, 20 Aug 2026 10:30:00 GMT</pubDate>
      <description>Polynomial regression, Ridge, Lasso and ElasticNet regularisation, decision tree and random forest regressors, gradient boosting and SVR — what each fixes, when to use it, and the code.</description>
      <category>machine-learning</category><category>regression</category><category>ridge</category><category>lasso</category><category>random-forest</category><category>xgboost</category><category>regularization</category>
    </item>
    <item>
      <title>Linear Regression: From the Maths to scikit-learn</title>
      <link>https://learn.aathan.in/docs/ml-linear-regression</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/ml-linear-regression</guid>
      <pubDate>Thu, 20 Aug 2026 10:00:00 GMT</pubDate>
      <description>The foundational regression algorithm — the best-fit line derived by hand, reproduced in scikit-learn, then a full real-dataset workflow with train/test split, standardisation and test-set metrics.</description>
      <category>machine-learning</category><category>linear-regression</category><category>regression</category><category>scikit-learn</category><category>rmse</category><category>least-squares</category>
    </item>
    <item>
      <title>Data Preprocessing for Machine Learning</title>
      <link>https://learn.aathan.in/docs/ml-data-preprocessing</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/ml-data-preprocessing</guid>
      <pubDate>Thu, 20 Aug 2026 09:30:00 GMT</pubDate>
      <description>Turning raw data into something a model accepts — splitting X and y, imputing missing values, one-hot and label encoding, the train/test split, and feature scaling — worked end to end on a real messy dataset.</description>
      <category>machine-learning</category><category>preprocessing</category><category>scikit-learn</category><category>encoding</category><category>imputation</category><category>train-test-split</category>
    </item>
    <item>
      <title>Supervised Learning: Classification vs Regression</title>
      <link>https://learn.aathan.in/docs/ml-supervised-overview</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/ml-supervised-overview</guid>
      <pubDate>Thu, 20 Aug 2026 09:00:00 GMT</pubDate>
      <description>The fundamental split in supervised learning — predicting a number versus predicting a category — with the full algorithm taxonomy, how to tell which problem you have, and the workflow every model follows.</description>
      <category>machine-learning</category><category>supervised-learning</category><category>classification</category><category>regression</category><category>scikit-learn</category>
    </item>
    <item>
      <title>Skewness &amp; Kurtosis: The Shape of a Distribution</title>
      <link>https://learn.aathan.in/docs/statistics-skewness-kurtosis</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/statistics-skewness-kurtosis</guid>
      <pubDate>Sun, 09 Aug 2026 09:30:00 GMT</pubDate>
      <description>The third and fourth moments explained with graphs — every skewness type (right, left, symmetric) and kurtosis type (lepto, meso, platy), their formulas, how to read the numbers, and how to fix skewed data.</description>
      <category>inferential-statistics</category><category>statistics</category><category>skewness</category><category>kurtosis</category><category>distribution</category><category>normal-distribution</category><category>outliers</category>
    </item>
    <item>
      <title>Statistics — Complete Study Notes</title>
      <link>https://learn.aathan.in/docs/statistics-overview</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/statistics-overview</guid>
      <pubDate>Sun, 09 Aug 2026 09:00:00 GMT</pubDate>
      <description>Complete notes from the Inferential Statistics sessions — descriptive statistics, central tendency, dispersion, quartiles, IQR and box plots, with worked examples and industry applications.</description>
      <category>inferential-statistics</category><category>statistics</category><category>study-notes</category><category>index</category>
    </item>
    <item>
      <title>Variable Types: The Full Taxonomy</title>
      <link>https://learn.aathan.in/docs/statistics-variable-types</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/statistics-variable-types</guid>
      <pubDate>Sun, 09 Aug 2026 09:00:00 GMT</pubDate>
      <description>Numerical vs categorical variables in full — discrete, continuous, nominal, ordinal, unstructured data — plus the two classification traps that catch everyone.</description>
      <category>inferential-statistics</category><category>statistics</category><category>variables</category><category>data-types</category><category>categorical</category><category>numerical</category>
    </item>
    <item>
      <title>Applying Statistics: Anomaly Detection, Feature Selection &amp; ML</title>
      <link>https://learn.aathan.in/docs/statistics-applications</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/statistics-applications</guid>
      <pubDate>Sun, 09 Aug 2026 09:00:00 GMT</pubDate>
      <description>Which measure to use when, outliers as anomaly detection vs noise, using standard deviation for feature selection, and where statistics sits in an AI/ML workflow.</description>
      <category>inferential-statistics</category><category>statistics</category><category>anomaly-detection</category><category>feature-selection</category><category>machine-learning</category>
    </item>
    <item>
      <title>Statistics Foundations: Descriptive vs Inferential</title>
      <link>https://learn.aathan.in/docs/statistics-foundations</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/statistics-foundations</guid>
      <pubDate>Sun, 09 Aug 2026 09:00:00 GMT</pubDate>
      <description>The split between descriptive and inferential statistics, worked classification examples, and why it matters in industry — A/B testing, feature engineering and AI bias detection.</description>
      <category>inferential-statistics</category><category>statistics</category><category>descriptive-statistics</category><category>ab-testing</category><category>ai-bias</category>
    </item>
    <item>
      <title>Measures of Central Tendency: Mean, Median &amp; Mode</title>
      <link>https://learn.aathan.in/docs/statistics-central-tendency</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/statistics-central-tendency</guid>
      <pubDate>Sun, 09 Aug 2026 09:00:00 GMT</pubDate>
      <description>Mean, median and mode — formulas, merits and demerits, which to use for missing values, what outliers destroy, and how skewness shifts the three apart.</description>
      <category>inferential-statistics</category><category>statistics</category><category>mean</category><category>median</category><category>mode</category><category>outliers</category><category>skewness</category>
    </item>
    <item>
      <title>Measures of Dispersion: Range, Variance &amp; Standard Deviation</title>
      <link>https://learn.aathan.in/docs/statistics-dispersion</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/statistics-dispersion</guid>
      <pubDate>Sun, 09 Aug 2026 09:00:00 GMT</pubDate>
      <description>Why the average alone is never enough — range, variance, standard deviation, the population vs sample (n-1) question, Excel walkthroughs, and the coefficient of variation.</description>
      <category>inferential-statistics</category><category>statistics</category><category>variance</category><category>standard-deviation</category><category>range</category><category>coefficient-of-variation</category>
    </item>
    <item>
      <title>Quartiles, IQR &amp; Box Plots</title>
      <link>https://learn.aathan.in/docs/statistics-quartiles-boxplots</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/statistics-quartiles-boxplots</guid>
      <pubDate>Sun, 09 Aug 2026 09:00:00 GMT</pubDate>
      <description>Quartiles and the interquartile range, the 1.5 x IQR outlier rule, the five-number summary, and how to build and read a box plot — with fully worked examples.</description>
      <category>inferential-statistics</category><category>statistics</category><category>quartiles</category><category>iqr</category><category>box-plot</category><category>five-number-summary</category><category>outliers</category>
    </item>
    <item>
      <title>Statistics Reference: Formula Sheet, Traps &amp; Key Takeaways</title>
      <link>https://learn.aathan.in/docs/statistics-reference</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/statistics-reference</guid>
      <pubDate>Sun, 09 Aug 2026 09:00:00 GMT</pubDate>
      <description>The complete formula sheet, every number used in class, the exam traps, student questions answered, and the ten things worth memorising.</description>
      <category>inferential-statistics</category><category>statistics</category><category>formula-sheet</category><category>revision</category><category>exam-prep</category>
    </item>
    <item>
      <title>Exploratory Data Analysis (EDA) &amp; Plotting in Python</title>
      <link>https://learn.aathan.in/docs/python-eda</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/python-eda</guid>
      <pubDate>Mon, 20 Jul 2026 10:30:00 GMT</pubDate>
      <description>What EDA is and why it comes before modelling — plotting with Pandas and Matplotlib (line, scatter, histogram), and the three levels of analysis: univariate, bivariate and multivariate.</description>
      <category>python</category><category>eda</category><category>matplotlib</category><category>visualization</category><category>data-science</category><category>pandas</category>
    </item>
    <item>
      <title>Pandas Basics: Series, DataFrames &amp; Data Cleaning</title>
      <link>https://learn.aathan.in/docs/python-pandas</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/python-pandas</guid>
      <pubDate>Mon, 20 Jul 2026 10:00:00 GMT</pubDate>
      <description>A complete introduction to Pandas — Series and DataFrames, loc vs iloc, reading CSV and JSON, inspecting data with head/tail/info, and the full data-cleaning workflow for empty cells, wrong data and duplicates.</description>
      <category>python</category><category>pandas</category><category>dataframe</category><category>data-cleaning</category><category>data-science</category><category>csv</category>
    </item>
    <item>
      <title>NumPy Basics: Arrays, Dimensions &amp; Slicing</title>
      <link>https://learn.aathan.in/docs/python-numpy</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/python-numpy</guid>
      <pubDate>Mon, 20 Jul 2026 09:30:00 GMT</pubDate>
      <description>Getting started with NumPy — why arrays beat lists (with real speed and memory measurements), creating ndarrays, dimensions, dtypes, indexing and slicing in 1-D and 2-D, and the array-generating helpers.</description>
      <category>python</category><category>numpy</category><category>arrays</category><category>ndarray</category><category>data-science</category><category>performance</category>
    </item>
    <item>
      <title>Python Sets: The Complete Guide</title>
      <link>https://learn.aathan.in/docs/python-sets</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/python-sets</guid>
      <pubDate>Mon, 20 Jul 2026 09:00:00 GMT</pubDate>
      <description>Everything about Python sets — creating them, why they're unordered and unique, add/update, the four ways to remove, all the set operations (union, intersection, difference), frozensets, and when to use a set instead of a list.</description>
      <category>python</category><category>sets</category><category>data-structures</category><category>basics</category><category>deduplication</category>
    </item>
    <item>
      <title>Python Tuples: The Complete Guide</title>
      <link>https://learn.aathan.in/docs/python-tuples</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/python-tuples</guid>
      <pubDate>Sun, 19 Jul 2026 09:30:00 GMT</pubDate>
      <description>Everything about Python tuples — creating (and the one-element comma trap), packing &amp; unpacking, immutability, slicing, the two methods, named tuples, when to use a tuple vs a list — with a runnable example for each.</description>
      <category>python</category><category>tuples</category><category>data-structures</category><category>unpacking</category><category>basics</category>
    </item>
    <item>
      <title>Python Lists &amp; Dicts: The Complete Guide</title>
      <link>https://learn.aathan.in/docs/python-lists-dicts</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/python-lists-dicts</guid>
      <pubDate>Sun, 19 Jul 2026 09:00:00 GMT</pubDate>
      <description>Everything about Python's two workhorse data structures — creating, indexing, slicing, every method, comprehensions, nesting, copying, performance, and the gotchas — with a runnable example for every concept.</description>
      <category>python</category><category>lists</category><category>dicts</category><category>data-structures</category><category>basics</category><category>comprehensions</category>
    </item>
    <item>
      <title>The Doppler Effect: Why the Siren Changes Pitch</title>
      <link>https://learn.aathan.in/docs/doppler-effect</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/doppler-effect</guid>
      <pubDate>Sat, 18 Jul 2026 10:00:00 GMT</pubDate>
      <description>The shift in wave frequency from relative motion — the intuition, the formulas for sound and light (with signs that actually make sense), worked examples, and where it shows up from radar guns to redshift.</description>
      <category>physics</category><category>waves</category><category>doppler</category><category>frequency</category><category>relativity</category><category>sound</category>
    </item>
    <item>
      <title>Logical Reasoning: Every Problem Type, With Worked Examples</title>
      <link>https://learn.aathan.in/docs/logical-reasoning</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/logical-reasoning</guid>
      <pubDate>Sat, 18 Jul 2026 09:30:00 GMT</pubDate>
      <description>A complete tour of logical reasoning problems — syllogisms, series, analogies, coding-decoding, blood relations, directions, seating arrangements, knights &amp; knaves, grid puzzles, and conditional logic — each solved step by step.</description>
      <category>math</category><category>logic</category><category>reasoning</category><category>aptitude</category><category>puzzles</category><category>problem-solving</category>
    </item>
    <item>
      <title>Fixed vs Growth Mindset: What Actually Changes Minds</title>
      <link>https://learn.aathan.in/docs/growth-mindset</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/growth-mindset</guid>
      <pubDate>Sat, 18 Jul 2026 09:00:00 GMT</pubDate>
      <description>Carol Dweck's mindset research explained clearly — what fixed and growth mindsets really are, how they play out in daily situations, what the evidence honestly shows, and how to actually shift yours.</description>
      <category>psychology</category><category>growth-mindset</category><category>fixed-mindset</category><category>learning</category><category>dweck</category><category>motivation</category>
    </item>
    <item>
      <title>Figma to Code: Worked Examples (Navbar, Cards, Stats Grid)</title>
      <link>https://learn.aathan.in/docs/figma-to-code-examples</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/figma-to-code-examples</guid>
      <pubDate>Fri, 17 Jul 2026 10:20:00 GMT</pubDate>
      <description>Three complete Figma-to-Tailwind conversions — a responsive navbar, a pricing card, and a dashboard stats grid — each from inspector specs to final HTML, plus the AI-assisted workflow.</description>
      <category>figma</category><category>tailwind</category><category>html</category><category>components</category><category>examples</category><category>frontend</category>
    </item>
    <item>
      <title>Figma to Tailwind: The Complete Conversion Workflow</title>
      <link>https://learn.aathan.in/docs/figma-to-tailwind</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/figma-to-tailwind</guid>
      <pubDate>Fri, 17 Jul 2026 10:00:00 GMT</pubDate>
      <description>How to turn a full Figma design into clean HTML + Tailwind CSS — reading Dev Mode, mapping tokens and Auto Layout to Tailwind, and a worked hero-section example with complete code.</description>
      <category>figma</category><category>tailwind</category><category>html</category><category>css</category><category>frontend</category><category>design-handoff</category>
    </item>
    <item>
      <title>Fast RAG: How Production Systems Cut Response Latency</title>
      <link>https://learn.aathan.in/docs/rag-latency</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/rag-latency</guid>
      <pubDate>Fri, 17 Jul 2026 09:20:00 GMT</pubDate>
      <description>The latest techniques behind fast RAG responses — streaming and TTFT, ANN indexes, quantized embeddings, semantic and prompt caching, parallel retrieval, and speculative decoding.</description>
      <category>ai-agents</category><category>rag</category><category>latency</category><category>caching</category><category>streaming</category><category>performance</category>
    </item>
    <item>
      <title>Modern RAG: Beyond Naive Retrieval</title>
      <link>https://learn.aathan.in/docs/rag-advanced</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/rag-advanced</guid>
      <pubDate>Fri, 17 Jul 2026 09:00:00 GMT</pubDate>
      <description>The techniques that separate a demo RAG pipeline from a production one — hybrid search, reranking, query transforms, contextual retrieval, GraphRAG, and agentic RAG.</description>
      <category>ai-agents</category><category>rag</category><category>hybrid-search</category><category>reranking</category><category>graphrag</category><category>retrieval</category>
    </item>
    <item>
      <title>UX Laws &amp; Cognitive Principles</title>
      <link>https://learn.aathan.in/docs/ux-laws</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/ux-laws</guid>
      <pubDate>Thu, 16 Jul 2026 17:20:00 GMT</pubDate>
      <description>The named psychological principles behind good interfaces — Hick's, Fitts's, Miller's, Jakob's, Zeigarnik, Peak–End and more — each with how to apply it and example UIs.</description>
      <category>ux</category><category>psychology</category><category>laws-of-ux</category><category>principles</category><category>usability</category>
    </item>
    <item>
      <title>How Users Actually Behave</title>
      <link>https://learn.aathan.in/docs/user-behavior</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/user-behavior</guid>
      <pubDate>Thu, 16 Jul 2026 17:10:00 GMT</pubDate>
      <description>People don't read, they scan; they don't optimize, they satisfice; they ignore what looks like an ad and never open the manual. Design for the real user, not the ideal one.</description>
      <category>ux</category><category>psychology</category><category>user-behavior</category><category>usability</category><category>patterns</category>
    </item>
    <item>
      <title>Mental Models in UX</title>
      <link>https://learn.aathan.in/docs/mental-models</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/mental-models</guid>
      <pubDate>Thu, 16 Jul 2026 17:00:00 GMT</pubDate>
      <description>Users arrive with a belief about how your interface works, formed by every app they've used before. Good design matches that belief instead of fighting it.</description>
      <category>ux</category><category>psychology</category><category>mental-models</category><category>design</category><category>usability</category>
    </item>
    <item>
      <title>Automate a Boring Chore</title>
      <link>https://learn.aathan.in/docs/diy-automate-a-chore</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/diy-automate-a-chore</guid>
      <pubDate>Thu, 16 Jul 2026 16:00:00 GMT</pubDate>
      <description>Make the robots do your repetitive busywork — saving attachments, sending reminders, syncing forms — by connecting apps in Zapier or Make. No code, big payoff.</description>
      <category>diy</category><category>no-code</category><category>zapier</category><category>make</category><category>automation</category><category>productivity</category>
    </item>
    <item>
      <title>Build a Real Web App From a Single Prompt</title>
      <link>https://learn.aathan.in/docs/diy-web-app-from-prompt</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/diy-web-app-from-prompt</guid>
      <pubDate>Thu, 16 Jul 2026 15:50:00 GMT</pubDate>
      <description>Describe an app — with logins and a database — in plain English, and Lovable builds and deploys the whole thing. The most ambitious no-code project, still no code.</description>
      <category>diy</category><category>no-code</category><category>lovable</category><category>full-stack</category><category>apps</category>
    </item>
    <item>
      <title>Turn a Google Sheet Into a Phone App</title>
      <link>https://learn.aathan.in/docs/diy-sheet-to-app</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/diy-sheet-to-app</guid>
      <pubDate>Thu, 16 Jul 2026 15:40:00 GMT</pubDate>
      <description>Put your data in a spreadsheet, connect it to Glide, and get a real installable phone app — habit tracker, collection catalog, expense log — with zero code.</description>
      <category>diy</category><category>no-code</category><category>glide</category><category>google-sheets</category><category>apps</category>
    </item>
    <item>
      <title>Build a Telegram Bot That Pings You Daily</title>
      <link>https://learn.aathan.in/docs/diy-telegram-bot</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/diy-telegram-bot</guid>
      <pubDate>Thu, 16 Jul 2026 15:30:00 GMT</pubDate>
      <description>A bot that messages you a quote, reminder, or weather update every morning — created with Telegram's BotFather and a no-code Make automation. No server, no code.</description>
      <category>diy</category><category>no-code</category><category>telegram</category><category>make</category><category>automation</category><category>bots</category>
    </item>
    <item>
      <title>Build &amp; Share a Browser Mini-Game</title>
      <link>https://learn.aathan.in/docs/diy-browser-game</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/diy-browser-game</guid>
      <pubDate>Thu, 16 Jul 2026 15:20:00 GMT</pubDate>
      <description>Describe a game in plain English, and Google AI Studio builds a real, playable web game you can deploy and send to friends. The same path used to build a game on games.aathan.in.</description>
      <category>diy</category><category>no-code</category><category>google-ai-studio</category><category>games</category><category>gemini</category>
    </item>
    <item>
      <title>Build a Personal Dashboard You'll Actually Use</title>
      <link>https://learn.aathan.in/docs/diy-personal-dashboard</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/diy-personal-dashboard</guid>
      <pubDate>Thu, 16 Jul 2026 15:10:00 GMT</pubDate>
      <description>A one-screen dashboard — clock, weather, to-dos, and a daily quote — built by just chatting with Claude. No code, about ten minutes.</description>
      <category>diy</category><category>no-code</category><category>claude-artifacts</category><category>dashboard</category><category>beginners</category>
    </item>
    <item>
      <title>DIY Projects: Build Something Yourself</title>
      <link>https://learn.aathan.in/docs/diy-overview</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/diy-overview</guid>
      <pubDate>Thu, 16 Jul 2026 15:00:00 GMT</pubDate>
      <description>You don't need to be a programmer to build real, working, genuinely useful things anymore. Here's the mindset, the toolbox, and a set of fun projects to build this weekend.</description>
      <category>diy</category><category>no-code</category><category>vibe-coding</category><category>projects</category><category>beginners</category>
    </item>
    <item>
      <title>Emotions &amp; Stress: The Operating System Underneath</title>
      <link>https://learn.aathan.in/docs/emotions-and-stress</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/emotions-and-stress</guid>
      <pubDate>Thu, 16 Jul 2026 14:50:00 GMT</pubDate>
      <description>What emotions actually are, how the stress response works, why the Yerkes–Dodson curve matters for performance, and the regulation strategies with real evidence — reappraisal, not suppression.</description>
      <category>psychology</category><category>emotions</category><category>stress</category><category>emotion-regulation</category><category>wellbeing</category>
    </item>
    <item>
      <title>Social Psychology: What Other People Do to Your Mind</title>
      <link>https://learn.aathan.in/docs/social-psychology</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/social-psychology</guid>
      <pubDate>Thu, 16 Jul 2026 14:40:00 GMT</pubDate>
      <description>Conformity, obedience, persuasion, and the attribution errors we all make — the classic experiments, what modern re-examination changed, and the defence kit.</description>
      <category>psychology</category><category>social-psychology</category><category>persuasion</category><category>conformity</category><category>influence</category>
    </item>
    <item>
      <title>Motivation &amp; Habits: Why You Do What You Do (and How to Change It)</title>
      <link>https://learn.aathan.in/docs/motivation-and-habits</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/motivation-and-habits</guid>
      <pubDate>Thu, 16 Jul 2026 14:30:00 GMT</pubDate>
      <description>Intrinsic vs extrinsic motivation, what dopamine actually does, the cue–routine–reward loop, and the evidence-backed mechanics of building habits that survive contact with real life.</description>
      <category>psychology</category><category>motivation</category><category>habits</category><category>dopamine</category><category>behavior-change</category>
    </item>
    <item>
      <title>Memory &amp; Learning: How to Actually Make Things Stick</title>
      <link>https://learn.aathan.in/docs/memory-and-learning</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/memory-and-learning</guid>
      <pubDate>Thu, 16 Jul 2026 14:20:00 GMT</pubDate>
      <description>The three-stage memory model, why working memory is the bottleneck, the forgetting curve, and the two techniques with the strongest evidence in all of psychology — spacing and retrieval practice.</description>
      <category>psychology</category><category>memory</category><category>learning</category><category>spaced-repetition</category><category>retrieval-practice</category>
    </item>
    <item>
      <title>Cognitive Biases: The Predictable Bugs in Human Thinking</title>
      <link>https://learn.aathan.in/docs/cognitive-biases</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/cognitive-biases</guid>
      <pubDate>Thu, 16 Jul 2026 14:10:00 GMT</pubDate>
      <description>System 1 vs System 2, the heuristics that usually serve us well, and the systematic errors they produce — anchoring, availability, loss aversion, confirmation bias, and how to actually debias.</description>
      <category>psychology</category><category>cognitive-biases</category><category>heuristics</category><category>kahneman</category><category>decision-making</category>
    </item>
    <item>
      <title>Psychology 101: A Map of How Minds Are Studied</title>
      <link>https://learn.aathan.in/docs/psychology-overview</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/psychology-overview</guid>
      <pubDate>Thu, 16 Jul 2026 14:00:00 GMT</pubDate>
      <description>What psychology actually is, the big schools of thought, the branches worth knowing, and how to read psychological claims without being fooled.</description>
      <category>psychology</category><category>cognitive-science</category><category>behaviorism</category><category>replication-crisis</category><category>basics</category>
    </item>
    <item>
      <title>Dashboards in the Wild: Best Examples</title>
      <link>https://learn.aathan.in/docs/dashboard-examples</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/dashboard-examples</guid>
      <pubDate>Thu, 16 Jul 2026 13:30:00 GMT</pubDate>
      <description>What to steal from the best real-world dashboards — Stripe, Linear, Vercel, Datadog, Grafana, Plausible and more — plus the anti-patterns to avoid.</description>
      <category>design</category><category>dashboards</category><category>ui-ux</category><category>case-studies</category><category>inspiration</category>
    </item>
    <item>
      <title>Dashboard Optimization: Tips &amp; Tricks</title>
      <link>https://learn.aathan.in/docs/dashboard-optimization</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/dashboard-optimization</guid>
      <pubDate>Thu, 16 Jul 2026 13:20:00 GMT</pubDate>
      <description>Practical UX and performance techniques that make a dashboard feel fast, calm, and effortless — from skeleton loaders to server-side aggregation.</description>
      <category>design</category><category>dashboards</category><category>performance</category><category>ui-ux</category><category>optimization</category>
    </item>
    <item>
      <title>Dashboard Design Principles</title>
      <link>https://learn.aathan.in/docs/dashboard-design-principles</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/dashboard-design-principles</guid>
      <pubDate>Thu, 16 Jul 2026 13:10:00 GMT</pubDate>
      <description>The core rules of dashboard UX — glanceability, visual hierarchy, layout patterns, choosing the right chart, and using color and numbers with intent.</description>
      <category>design</category><category>dashboards</category><category>ui-ux</category><category>data-viz</category><category>layout</category>
    </item>
    <item>
      <title>Dashboards: UI/UX &amp; How They've Evolved</title>
      <link>https://learn.aathan.in/docs/dashboards-evolution</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/dashboards-evolution</guid>
      <pubDate>Thu, 16 Jul 2026 13:00:00 GMT</pubDate>
      <description>What a dashboard really is, the three types, how dashboard UX evolved from static reports to real-time products, and where it's heading next.</description>
      <category>design</category><category>dashboards</category><category>ui-ux</category><category>data-viz</category><category>trends</category>
    </item>
    <item>
      <title>OmniParser: Turning Screenshots into Structured UI for Agents</title>
      <link>https://learn.aathan.in/docs/omniparser</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/omniparser</guid>
      <pubDate>Thu, 16 Jul 2026 13:00:00 GMT</pubDate>
      <description>Microsoft's OmniParser is the &quot;eyes&quot; of a GUI agent — a vision pipeline that converts a raw screenshot into a labelled map of clickable elements. Here's how it works and why it's fundamentally not an LLM.</description>
      <category>ai-agents</category><category>gui-agents</category><category>computer-use</category><category>vision</category><category>grounding</category><category>omniparser</category>
    </item>
    <item>
      <title>Context Engineering</title>
      <link>https://learn.aathan.in/docs/context-engineering</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/context-engineering</guid>
      <pubDate>Thu, 16 Jul 2026 11:40:00 GMT</pubDate>
      <description>The discipline of curating exactly what goes into an LLM's limited context window — the successor to prompt engineering.</description>
      <category>ai-agents</category><category>context</category><category>prompting</category><category>memory</category><category>tokens</category>
    </item>
    <item>
      <title>Multi-Agent Systems &amp; Orchestration</title>
      <link>https://learn.aathan.in/docs/multi-agent-systems</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/multi-agent-systems</guid>
      <pubDate>Thu, 16 Jul 2026 11:30:00 GMT</pubDate>
      <description>When one agent isn't enough — how orchestrators, specialized subagents, and handoffs divide work among many agents.</description>
      <category>ai-agents</category><category>multi-agent</category><category>orchestration</category><category>subagents</category>
    </item>
    <item>
      <title>The Agentic Loop (ReAct &amp; Tool Use)</title>
      <link>https://learn.aathan.in/docs/agentic-loop</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/agentic-loop</guid>
      <pubDate>Thu, 16 Jul 2026 11:20:00 GMT</pubDate>
      <description>The reason–act–observe cycle that turns a text-predicting model into an agent that gets things done.</description>
      <category>ai-agents</category><category>react</category><category>tool-use</category><category>reasoning</category><category>loops</category>
    </item>
    <item>
      <title>Retrieval-Augmented Generation (RAG)</title>
      <link>https://learn.aathan.in/docs/retrieval-augmented-generation</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/retrieval-augmented-generation</guid>
      <pubDate>Thu, 16 Jul 2026 11:10:00 GMT</pubDate>
      <description>Ground an LLM in your own data by retrieving relevant context and feeding it into the prompt — the standard cure for hallucination and stale knowledge.</description>
      <category>ai-agents</category><category>rag</category><category>embeddings</category><category>vector-search</category><category>retrieval</category>
    </item>
    <item>
      <title>Model Context Protocol (MCP)</title>
      <link>https://learn.aathan.in/docs/model-context-protocol</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/model-context-protocol</guid>
      <pubDate>Thu, 16 Jul 2026 11:00:00 GMT</pubDate>
      <description>The open standard that lets AI agents plug into tools and data — the &quot;USB-C port for AI&quot;.</description>
      <category>ai-agents</category><category>mcp</category><category>tools</category><category>integrations</category><category>anthropic</category>
    </item>
    <item>
      <title>AGENTS.md files: the open convention for coding agents</title>
      <link>https://learn.aathan.in/docs/agents-md-files</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/agents-md-files</guid>
      <pubDate>Thu, 16 Jul 2026 10:10:00 GMT</pubDate>
      <description>A practical guide to AGENTS.md — the plain-Markdown, cross-tool file that tells coding agents how to build, test, and follow conventions in your repo, with a full example and monorepo nesting rules.</description>
      <category>agents-md</category><category>ai-agents</category><category>open-standard</category><category>conventions</category><category>monorepo</category>
    </item>
    <item>
      <title>SKILL.md files: the format behind Claude Agent Skills</title>
      <link>https://learn.aathan.in/docs/skill-md-files</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/skill-md-files</guid>
      <pubDate>Thu, 16 Jul 2026 10:05:00 GMT</pubDate>
      <description>A deep dive into the SKILL.md format — YAML frontmatter fields, directory layout, bundled scripts, progressive disclosure, and invocation control, with copy-pasteable examples.</description>
      <category>claude</category><category>skills</category><category>skill-md</category><category>ai-agents</category><category>llm</category>
    </item>
    <item>
      <title>Agent Skills, SKILL.md, and AGENTS.md: an overview</title>
      <link>https://learn.aathan.in/docs/agent-skills-overview</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/agent-skills-overview</guid>
      <pubDate>Thu, 16 Jul 2026 10:00:00 GMT</pubDate>
      <description>What &quot;skills&quot; mean for AI coding agents, how SKILL.md and AGENTS.md differ, and when to reach for each.</description>
      <category>ai-agents</category><category>skills</category><category>agents-md</category><category>claude</category><category>llm</category>
    </item>
    <item>
      <title>Bellman–Ford Algorithm</title>
      <link>https://learn.aathan.in/docs/bellman-ford</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/bellman-ford</guid>
      <pubDate>Thu, 16 Jul 2026 09:50:00 GMT</pubDate>
      <description>The shortest-path algorithm that handles negative edge weights — and detects negative cycles.</description>
      <category>algorithms</category><category>graphs</category><category>shortest-path</category><category>bellman-ford</category>
    </item>
    <item>
      <title>A* Search</title>
      <link>https://learn.aathan.in/docs/a-star</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/a-star</guid>
      <pubDate>Thu, 16 Jul 2026 09:40:00 GMT</pubDate>
      <description>Dijkstra plus a heuristic — the point-to-point pathfinder behind game AI and map routing.</description>
      <category>algorithms</category><category>graphs</category><category>shortest-path</category><category>a-star</category><category>heuristics</category>
    </item>
    <item>
      <title>Bidirectional Dijkstra</title>
      <link>https://learn.aathan.in/docs/bidirectional-dijkstra</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/bidirectional-dijkstra</guid>
      <pubDate>Thu, 16 Jul 2026 09:30:00 GMT</pubDate>
      <description>Search from both ends at once and meet in the middle — often dramatically faster for single-pair queries.</description>
      <category>algorithms</category><category>graphs</category><category>shortest-path</category><category>dijkstra</category>
    </item>
    <item>
      <title>Dijkstra's Algorithm</title>
      <link>https://learn.aathan.in/docs/dijkstra</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/dijkstra</guid>
      <pubDate>Thu, 16 Jul 2026 09:20:00 GMT</pubDate>
      <description>The workhorse of shortest-path finding on weighted graphs — how it works, why it's correct, and a full worked example.</description>
      <category>algorithms</category><category>graphs</category><category>shortest-path</category><category>dijkstra</category>
    </item>
    <item>
      <title>BFS — Shortest Path in Unweighted Graphs</title>
      <link>https://learn.aathan.in/docs/bfs-shortest-path</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/bfs-shortest-path</guid>
      <pubDate>Thu, 16 Jul 2026 09:10:00 GMT</pubDate>
      <description>Breadth-first search finds the fewest-hops path, and it's the foundation every weighted algorithm builds on.</description>
      <category>algorithms</category><category>graphs</category><category>shortest-path</category><category>bfs</category>
    </item>
    <item>
      <title>Shortest Paths — Overview &amp; Map</title>
      <link>https://learn.aathan.in/docs/shortest-paths-overview</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/shortest-paths-overview</guid>
      <pubDate>Thu, 16 Jul 2026 09:00:00 GMT</pubDate>
      <description>The shortest-path problem, the family of algorithms that solve it, and how to pick the right one.</description>
      <category>algorithms</category><category>graphs</category><category>shortest-path</category>
    </item>
    <item>
      <title>How to Write a design.md File</title>
      <link>https://learn.aathan.in/docs/how-to-write-a-design-md</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/how-to-write-a-design-md</guid>
      <pubDate>Wed, 15 Jul 2026 15:00:00 GMT</pubDate>
      <description>A detailed guide to authoring a design.md — the single source of truth for a product's visual and interaction system.</description>
      <category>design</category><category>documentation</category><category>design-systems</category>
    </item>
    <item>
      <title>Eigenvalues of a Matrix</title>
      <link>https://learn.aathan.in/docs/eigenvalues</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/eigenvalues</guid>
      <pubDate>Wed, 15 Jul 2026 08:10:00 GMT</pubDate>
      <description>What eigenvalues actually mean, how to compute them by hand, and worked 2×2 and 3×3 examples.</description>
      <category>linear-algebra</category><category>eigenvalues</category>
    </item>
    <item>
      <title>Getting Started</title>
      <link>https://learn.aathan.in/docs/getting-started</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/getting-started</guid>
      <pubDate>Wed, 15 Jul 2026 07:20:00 GMT</pubDate>
      <description>What this space is and how it's organized.</description>
      <category>meta</category>
    </item>
    <item>
      <title>React Hooks Cheatsheet</title>
      <link>https://learn.aathan.in/docs/react-hooks</link>
      <guid isPermaLink="true">https://learn.aathan.in/docs/react-hooks</guid>
      <pubDate>Wed, 15 Jul 2026 07:20:00 GMT</pubDate>
      <description>Quick reference for the hooks I reach for most.</description>
      <category>react</category><category>hooks</category>
    </item>
  </channel>
</rss>