Notes / tag / reference

#reference

82 notes across 28 topics

# Agentic Ai Projects And Mastery

All Agentic Ai Projects And Mastery notes →

What is LangGraph

LangChain's graph-based orchestration library — agents as a StateGraph of nodes and edges, with durable checkpointing and human-in-the-loop interrupts as native graph mechanics rather than bolted-on features.

agentic-ai-projects-and-mastery reference tool
Aug 10, 2026

LlamaIndex Workflows

The API surface behind LlamaIndex's event-driven orchestration layer — Workflow/Step/Event class mechanics, Context state and fan-out/fan-in, and how a Workflow sits directly on top of the existing Index/QueryEngine retrieval stack.

agentic-ai-projects-and-mastery reference tool
Aug 10, 2026

OpenAI Agents SDK

Python SDK for OpenAI's Agents framework — the concrete API surface: Agent/Runner construction, the function_tool and handoff() call shapes, Session-backed state, guardrail decorators, and built-in tracing.

agentic-ai-projects-and-mastery reference tool
Aug 10, 2026

Agentic AI: Projects & Engineering Mastery

A book-shaped table of contents for Agentic AI: Projects & Engineering Mastery: hands-on practitioner builds, Principal/Staff-level technical leadership, and the lookup appendices and vendor/framework reference notes for the whole series. Book 6 of the AI Systems Engineering series.

agentic-ai-projects-and-mastery book reference maang-prep

AutoGen

Microsoft's open-source framework for conversational multi-agent systems — the concrete API surface: AssistantAgent/UserProxyAgent setup, GroupChat/GroupChatManager wiring, tool registration, and the parameters that actually terminate a run.

agentic-ai-projects-and-mastery reference tool

Haystack Agents

Haystack's Agent component and Pipeline/Tool wiring — the API surface: how a Pipeline gets built and connected, how Agent slots in as one more Component, and how ComponentTool turns an existing retriever into a tool with no re-integration work.

agentic-ai-projects-and-mastery reference tool

Semantic Kernel

Microsoft's SDK for adding tool-calling and planning to an existing .NET or Python application — the API surface: Kernel construction, KernelFunction/plugin registration, the automatic-function-calling planner, and where .NET/Python SDK parity actually diverges.

agentic-ai-projects-and-mastery reference tool

# Data Structures Algorithms

All Data Structures Algorithms notes →

Practice Patterns — Full Source Catalogue 1

The complete pattern-printing drill corpus behind the Pattern Practice & Loops chapter — every triangle, pyramid, rhombus, letter-art, and name-banner function as runnable Python, grouped by shape family.

data-structures-algorithms python-foundations reference
Aug 3, 2026

Practice Patterns — Full Source Catalogue 2

The complete pattern-printing drill corpus behind the Pattern Practice & Loops chapter — every triangle, pyramid, rhombus, letter-art, and name-banner function as runnable Python, grouped by shape family.

data-structures-algorithms python-foundations reference
Aug 3, 2026

Practice: Math & Random

The raw practice snippets behind the Math & Random chapter — a run-and-print tour of the math module (roots, logs, trig, gcd/lcm/factorial) and the random module (uniform draws, sampling, shuffling, seeding).

data-structures-algorithms python-foundations reference
Aug 3, 2026

Practice: itertools & functools

The raw itertools and functools practice script behind the itertools & functools chapter — one function walks permutations, combinations, product, chain, cycle/count/repeat, accumulate, compress, dropwhile/takewhile, and groupby; the other covers lru_cache memoization, reduce, partial, and wraps.

data-structures-algorithms python-foundations reference
Aug 3, 2026

Practice: Python Algorithm Idioms

The raw sort, search, count, group, and filter-map-reduce practice functions behind the Python Algorithm Idioms chapter — five standalone drills demonstrating each pattern before the chapter contrasts hand-rolled versions against their idiomatic standard-library equivalents.

data-structures-algorithms python-foundations reference
Aug 3, 2026

Practice: Control Flow

The runnable practice source behind the Control Flow chapter — if/elif/else and nested if, the ternary expression, match/case structural pattern matching, for and while loops with enumerate/zip/dict iteration, break/continue/pass, the loop's else clause, and nested-loop early exit.

data-structures-algorithms python-foundations reference
Aug 3, 2026

Practice: Functions

The raw practice source behind the Functions chapter — runnable demonstrations of default/positional-only/keyword-only arguments, *args and **kwargs, lambdas, closures, decorators, and first-class function patterns, including the classic mutable-default-argument trap.

data-structures-algorithms python-foundations reference
Aug 3, 2026

Practice: Classes & OOP

The raw practice corpus behind the Classes & OOP chapter — runnable Python covering instance vs. class attributes, classmethods/staticmethods, inheritance, super(), dunder methods, properties, dataclasses, and multiple inheritance/MRO.

data-structures-algorithms python-foundations reference
Aug 3, 2026

Practice: Error Handling

The raw practice corpus behind the Error Handling chapter — runnable functions covering try/except basics, multiple except clauses, else/finally, raise and re-raise, custom exception hierarchies, and exception chaining.

data-structures-algorithms python-foundations reference
Aug 3, 2026

Practice: Comprehensions

Runnable source behind the Comprehensions chapter — list, nested, dict, set, and generator-expression drills, plus the walrus operator's use inside a comprehension's filter clause.

data-structures-algorithms python-foundations reference
Aug 3, 2026

Practice: Generators

The raw practice source behind the Generators chapter — iterator protocol, yield basics, infinite generators via itertools.islice, yield from delegation, two-way communication with send(), lazy pipelines, and a generator-vs-list memory comparison.

data-structures-algorithms python-foundations reference
Aug 3, 2026

Practice: Built-in Functions

The raw practice snippets behind the Built-in Functions chapter — sorted()/key=, aggregate reflexes, enumerate/reversed/range/zip, map()/filter(), and the numeric/identity/type-conversion builtins — each demoed with printed output for quick reference.

data-structures-algorithms python-foundations reference
Aug 3, 2026

Practice: Strings

The two-function practice script behind the Strings chapter — a quick-reference tour of str's built-in methods (case, search, split/join, format, slicing) and the string module's character-set constants, including the str.maketrans/translate pattern for bulk punctuation removal.

data-structures-algorithms python-foundations reference
Aug 3, 2026

Practice: Lists

The raw practice source behind the Lists chapter — creating, accessing, growing, shrinking, iterating, counting, sorting, slicing, copying, and unpacking a Python list, as the original runnable functions grouped by operation.

data-structures-algorithms python-foundations reference
Aug 3, 2026

Practice: Tuples

The raw practice source behind the Tuples chapter — tuple immutability, basic operations (concatenation, membership, aggregates), reversing/sorting, shallow vs. deep cloning, and packing/unpacking for multi-value returns, as runnable Python functions.

data-structures-algorithms python-foundations reference
Aug 3, 2026

Practice: Dictionaries

The raw practice corpus behind the Dictionaries chapter — creating, reading, updating, removing, sorting, aggregating over values, iterating, copying, and unpacking dicts as keyword arguments, as runnable Python grouped by topic.

data-structures-algorithms python-foundations reference
Aug 3, 2026

Practice Sets — Full Source Catalogue

The complete set-operations practice corpus behind the Sets chapter — creating, mutating, and iterating sets, subset/superset/disjoint checks, the full union/intersection/difference algebra, and frozensets, as runnable Python grouped by topic.

data-structures-algorithms python-foundations reference
Aug 3, 2026

Practice: Collections Module

The raw practice source behind the Collections Module chapter — runnable demos of defaultdict, Counter, deque, and namedtuple covering initialization, grouping, counting, multiset arithmetic, queue/stack patterns, and named-field records.

data-structures-algorithms python-foundations reference
Aug 3, 2026

Core Data Structures Practice — Full Source Catalogue

The raw practice corpus behind six Part 00 chapters — list, dict, set, tuple, the collections module (deque, Counter, defaultdict, OrderedDict, namedtuple), and heapq/bisect — as runnable Python, grouped by data-structure family instead of write order.

data-structures-algorithms python-foundations reference
Aug 3, 2026

Data Structures & Algorithms

A book-shaped table of contents for MAANG-interview DSA prep: Python language foundations, mathematical and algorithmic foundations, arrays/strings, linked structures, stacks/queues, trees, graphs, sorting/searching, dynamic programming, greedy algorithms, backtracking, bit manipulation, advanced data structures, advanced algorithms, interview problem patterns, and MAANG interview mastery — a book-length progression from fundamentals to Google/Meta/Amazon/Apple/Netflix/Microsoft (L4–L6) interview readiness.

data-structures-algorithms book reference maang-prep python

# Ai Architecture And System Design

All Ai Architecture And System Design notes →

# Building Agentic Systems

All Building Agentic Systems notes →

1 — Data Engineering Cheat Sheets

A consolidated quick-reference index across all the cheat sheets and checklists in this Part.

data-engineering reference book

10 — 100 MAANG Data Engineering Interview Questions

A consolidated list of 100 data engineering interview questions asked at MAANG-tier companies.

data-engineering reference book

2 — SQL Cheat Sheet

A quick-reference index of common SQL syntax, functions, and query patterns.

data-engineering reference book

3 — Spark Optimization Checklist

A checklist of Spark performance and cost optimization techniques to run through before shipping a job.

data-engineering reference book

4 — Kafka Cheat Sheet

A quick-reference index of Kafka concepts, CLI commands, and configuration patterns.

data-engineering reference book

5 — Airflow Best Practices

A checklist of Airflow DAG design and operational best practices.

data-engineering reference book

6 — Data Modeling Patterns

A reference catalog of recurring data modeling patterns across relational, dimensional, and event-based schemas.

data-engineering reference book

7 — Lakehouse Comparison (Delta vs Iceberg vs Hudi)

A side-by-side comparison of Delta Lake, Apache Iceberg, and Apache Hudi across features, ecosystem, and trade-offs.

data-engineering reference book

8 — Cloud Data Services Comparison (AWS vs Azure vs GCP)

A side-by-side comparison of AWS, Azure, and Google Cloud's data services by category.

data-engineering reference book

9 — Common Interview Pitfalls

The most common mistakes candidates make in data engineering interviews, and how to avoid them.

data-engineering reference book

Data Engineering

A book-shaped table of contents for data engineering: foundations and lifecycle, data modeling, storage systems, ingestion and CDC, distributed processing (Spark/Flink), SQL mastery, workflow orchestration, data quality, platform and cloud architecture, pipeline observability, security and governance, performance engineering, system design, and MAANG interview preparation through capstone builds — cross-linking the existing observability book instead of duplicating it.

data-engineering book reference maang-prep

# Infrastructure Platform Engineering

All Infrastructure Platform Engineering notes →

# Internal Developer Platforms

All Internal Developer Platforms notes →

# Kubernetes Platform Engineering

All Kubernetes Platform Engineering notes →

# Object Oriented Programming

All Object Oriented Programming notes →

1 — OpenTelemetry Semantic Conventions

A quick-reference index of OTel semantic convention attribute names by signal and domain.

observability reference book

10 — Production Readiness Checklist

A reference checklist for verifying a service has adequate observability coverage before a production launch.

observability reference book

2 — Promql Cheat Sheet

A quick-reference index of common PromQL functions and query patterns.

observability reference book

3 — Logql Cheat Sheet

A quick-reference index of common LogQL query patterns for Loki.

observability reference book

4 — Traceql Cheat Sheet

A quick-reference index of common TraceQL query patterns for Tempo.

observability reference book

5 — OTLP Reference

A quick-reference index of the OTLP protocol's message types and transport options.

observability reference book

6 — Kubernetes Telemetry Reference

A quick-reference index of Kubernetes-native telemetry sources and what each one exposes.

observability reference book

7 — Observability Design Patterns

A quick-reference index of recurring observability design patterns introduced throughout this book.

observability reference book

8 — Common Anti Patterns

A quick-reference index of common observability anti-patterns and the failure mode each one causes.

observability reference book

9 — Telemetry Cost Estimation

A worked reference for estimating telemetry ingest volume and cost from service count, request rate, and label cardinality.

observability reference book

Observability Engineering

A book-shaped table of contents for observability engineering: foundations through architecture, metrics, logging, tracing, profiling, OpenTelemetry, instrumentation, Kubernetes/cloud, data platforms, visualization, alerting, SRE integration, cost, security, platform engineering, AI-driven operations, and MAANG interview preparation — cross-linking existing prometheus/grafana-cloud/kubernetes/sre/platform-engineering notes instead of duplicating them.

observability book reference maang-prep

# Platform Engineering Fundamentals

All Platform Engineering Fundamentals notes →

# Production Agent Systems

All Production Agent Systems notes →

1 — Productivity Framework Cheat Sheets

One-page summaries of every named framework in this book — Eisenhower Matrix, GTD, PARA, Zettelkasten — for a fast lookup without re-reading the chapter.

productivity appendix reference

10 — Engineering Productivity Toolkit

A checklist of tools and defaults referenced across Part 11 — linters, snippet managers, local dev loop shortcuts — kept as a single reference list.

productivity appendix reference

2 — Planning Templates

The blank planning templates referenced across Part 02 and Part 14 — annual, quarterly, and weekly planning sheets in one place.

productivity appendix reference

3 — Weekly Review Checklist

A condensed checklist version of the Weekly Review template in Part 14, for a faster end-of-week pass.

productivity appendix reference

4 — Goal-Tracking Templates

Pointer to the Life Vision and Goal Progress journal templates in Part 02, the working goal-tracking artifacts this book actually uses.

productivity appendix reference

5 — Habit Tracker Templates

Pointer to the Habit Tracker journal template in Part 09, the working habit-tracking artifact this book actually uses.

productivity appendix reference

6 — Decision Journal Template

Pointer to the Decision Journal template in Part 08, the working decision-tracking artifact this book actually uses.

productivity appendix reference

8 — Reading Workflow

The end-to-end intake pipeline for a technical book — from queueing it to a note landing in the second brain — that Part 06's Reading Technical Books chapter assumes.

productivity appendix reference

9 — Knowledge Capture Workflow

The step-by-step path an idea takes from a fleeting capture to a linked, atomic note — the mechanical process underneath Part 05.

productivity appendix reference

Productivity for Knowledge Workers

A book-shaped table of contents for productivity as practiced by a knowledge worker: foundations, self-management, goal setting, time and deep work, personal knowledge management, learning, task systems, decision making, habits, digital productivity, engineering and career practice, health, review, and an advanced operating-system layer, plus reference appendices — cross-linking existing notes instead of duplicating them.

productivity book reference maang-prep