Documentation hub — YouTube

Updates

Blog

Practical notes on AI, programming, and building in public.

Jul 10, 2026

Getting Started with SQL

SQL is how you ask structured questions of tables. Whether you use Postgres, SQLite, or a warehouse, the core verbs stay the same. This post has you build a ...

Jul 10, 2026

Getting Started with PyTorch for LLMs

PyTorch is the default dialect for research-flavored deep learning. If you can shape tensors, write a forward, and run a training step, you can follow almost...

Jul 10, 2026

Getting Started with the Linux Shell

The shell is how you talk to the machine without a mouse. Every serious ML and backend workflow eventually lands here: datasets, logs, Docker, SSH, CI. This ...

Jul 10, 2026

Getting Started with JavaScript

JavaScript runs in the browser and on the server (Node). Start in the browser console (F12 → Console), then move to a file once a snippet outgrows one line. ...

Jul 10, 2026

Getting Started with Git (without the fear)

Git is a time machine for your files. Most “Git anxiety” comes from never having deliberately broken something and fixed it. This post has you create a real ...

Jul 10, 2026

Getting Started with FastAPI

FastAPI is a pleasant way to wrap models and scripts behind HTTP. Auto docs, type hints, and Pydantic validation make it a strong default for LLM demos and i...

Jul 10, 2026

Getting Started with Docker

Docker packages “it works on my machine” into something you can ship. For ML and APIs, that means: same Python, same system libraries, same entrypoint — on y...

Dec 11, 2025

DSA Patterns Part 2

Leetcode post by https://leetcode.com/u/saiganesh_reddy/ Essential Graph patterns 13 DP Patterns for Interview Preparation 10 Dijkstra Variations for Int...

Sep 13, 2025

How LLM works and summarizes the input

Description Today we learn how the LLM summarize the document. -An encoder–decoder model (also called a sequence-to-sequence model) is a neural network archi...

Aug 7, 2025

Low Level Design Snake Game

Snake Game https://leetcode.com/problems/design-snake-game/description/ 353. Design Snake Game Design a Snake game that is played on a device with screen siz...

Jul 17, 2025

Rate Limiter

// # Create a Rate Limiting Rule Class/Function that will take in a rule which will be evaluated against incoming messages. // # The rule must contain: // #...

Jul 3, 2025

My First Blog Post

Welcome to my first blog post on Sharda Learning Center! 🚀