~/TechPurAI
~/tutorials

All tutorials

Hands-on lessons across JavaScript, Python, backend engineering, and deployment — written to be followed along with, not skimmed.

/tutorialsshowing 28 of 28
beginnergoogle analytics
series

What GA4 actually measures, and how it differs from Universal Analytics

The real shift from session-based to event-based measurement, why GA4 exists as the successor to the now-retired Universal Analytics, and how this series connects directly to the tracking already covered in this site's Google Ads and Meta Ads series. Part 1 of a 22-part Google Analytics series.

3 min readpart 1 of 22
beginnercontent marketing
series

What content marketing actually is, and how it differs from advertising

The real distinction between earning attention with valuable content and buying it with an ad, why content marketing compounds while ad spend doesn't, and this site's own tutorials as a live example. Part 1 of a 22-part content marketing series.

3 min readpart 1 of 22
beginnermeta ads
series

How Meta Ads actually works: the auction and delivery system

What happens between an ad being approved and it actually appearing in someone's feed — the Meta auction, estimated action rate, and why relevance beats bid amount here too. Part 1 of a 22-part series mastering Facebook and Instagram advertising.

3 min readpart 1 of 22
beginnergoogle ads
series

How Google Ads actually works: the auction and Quality Score

What actually happens in the milliseconds between a search and an ad appearing — the auction, Ad Rank, and why the highest bidder doesn't always win. Part 1 of a 22-part series mastering Google Ads with real campaign examples.

3 min readpart 1 of 22
beginnerseo
series

How search engines actually work: crawling, indexing, and ranking

The three-stage pipeline every search engine runs — crawling, indexing, and ranking — and why understanding it changes which SEO advice is actually worth following. Part 1 of a 22-part SEO series.

3 min readpart 1 of 22
beginnerjavascript
series

Creating a Next.js project: the App Router folder structure

Scaffold a new Next.js project with create-next-app, understand every generated file, and run the dev server — part 1 of a 22-part series building a real blog.

2 min readpart 1 of 22
intermediateai
series

What Are Embeddings in AI?

A real, precise explanation of embeddings — how AI turns real text into numerical vectors that capture meaning, why 'closeness' between vectors means semantic similarity, and the real foundation every technique in this series builds on.

4 min readpart 1 of 22
beginnerhtml
series

What HTML actually is, and how the browser turns it into a page

Write and open your first real HTML file, understand what a browser is actually doing when it renders it, and see why HTML is a structure language, not a design language — part 1 of a 22-part series building a real website.

3 min readpart 1 of 22
beginnerpython
series

Installing Django REST Framework and setting up the project

Install DRF, register it in INSTALLED_APPS, and create the Task model this 22-part series builds a real API around.

3 min readpart 1 of 22
beginnercss
series

What CSS actually is, and the three ways to apply it

Write your first real stylesheet for Bright Leaf Coffee's homepage, and understand the real difference between inline, internal, and external CSS — and why only one of the three is actually right for a real production site.

3 min readpart 1 of 22
intermediateai
series

What Is an AI Agent?

A complete, precise definition of an AI agent — the real, defining loop of reasoning, acting, and observing that separates it from a plain chatbot — and why the term gets used so loosely across real, current AI products.

3 min readpart 1 of 22
beginnerpython
series

Setting Up a Real Python AI Project

The real, reusable project setup every tutorial in this series builds on — environment, dependencies, secure API key handling, and a shared client module — done once, correctly, instead of repeated in every part.

3 min readpart 1 of 22
beginnerai
series

What Is Artificial Intelligence? A Complete Beginner Guide

A real, honest definition of artificial intelligence — what it actually means, the real categories it's split into, and why 'AI' in 2026 usually means something much narrower than the term technically covers.

3 min readpart 1 of 22
beginnerpython
series

Starting a Django project: installation and project structure

Install Django, create a project with django-admin, and understand what every generated file actually does — part 1 of a 22-part series building a real blog application.

3 min readpart 1 of 22
beginnerpython
series

Planning a scraper: picking a target, and reading its robots.txt

Before writing a line of code — choosing a site you're allowed to scrape, reading robots.txt, and setting up the project this series builds across six parts.

3 min readpart 1 of 6
beginnerpython
standalone

Django template views: turning a URL into rendered HTML

Connect a URL to a view, render a template with context data, and move from a function-based view to Django's TemplateView — including template inheritance done right.

5 min readstandalone
beginnerpython
standalone

The Python Requests Library: GET, POST, and the Footguns Nobody Warns You About

GET, POST, timeouts, sessions, retries, and error handling with Python's requests library — plus the default that silently hangs production code.

8 min readstandalone
intermediatepython
standalone

Python compiler vs. interpreter: what actually happens when you run a .py file

Python does have a compiler — most people never see it. Trace source to bytecode with py_compile and dis, and see why that two-step process actually matters.

6 min readstandalone
beginnerpython
standalone

BeautifulSoup basics: pulling structured data out of messy HTML

Parse real-world HTML with BeautifulSoup — select by tag, class, and CSS selector, handle missing elements, and pair it with requests to scrape a page.

6 min readstandalone
beginnerpython
standalone

Exception handling in Python, done properly

try, except, else, and finally — what each block is actually for, and the two mistakes that turn error handling into a liability instead of a safety net.

6 min readstandalone
intermediatenetworking
standalone

How DNS actually works, traced step by step

Follow a domain name through the exact chain of servers it hits before your browser gets an IP address — using dig, not diagrams.

6 min readstandalone
beginnerpython
series

Installing Python and your first script

Get a working Python install, a project folder, and a virtual environment — then run the first version of the expense tracker you'll build across this series.

3 min readpart 1 of 6
beginnerpython
standalone

Virtual environments and pip, explained

Why every Python project needs its own environment, what pip actually does, and how to pin dependencies so your project still installs next year.

5 min readstandalone
intermediatepython
standalone

Python type hints that actually catch bugs

Add type hints to real code, run mypy to find the mistakes they expose, and learn which annotations earn their keep — and which are noise.

6 min readstandalone
beginnernode.js
series

Setting up the project

Initialize a Node.js project, install Express, and get a server responding before writing a single route.

2 min readpart 1 of 6
intermediatedocker
standalone

Getting started with Docker for web developers

Containerize a small app, write your first Dockerfile, and stop saying "works on my machine."

6 min readstandalone
beginnerjavascript
standalone

Understanding async/await in JavaScript

Why callbacks and promises fall short, and how async/await cleans up asynchronous code.

5 min readstandalone
beginnerpython
standalone

Python for data analysis: pandas basics

Load, clean, filter, merge, and reshape a real dataset using pandas — no prior data experience needed.

6 min readstandalone