Glossary

Glossary

AI Agent

What AI agents are, how they autonomously plan and execute tasks, and the architectural patterns that distinguish agents from simple …

Glossary

AI Gateway

A centralized proxy layer that routes, governs, monitors, and optimizes requests to LLM providers, serving as the control plane for …

Glossary

AI Hardware

Comparing GPUs, TPUs, and custom ASICs from NVIDIA, Google, Groq, and Cerebras for training and inference workloads.

Glossary

AI Literacy

What AI literacy means, why it matters for organizations adopting AI, and what competencies are required across technical and non-technical …

Glossary

AI Safety

What AI safety is, the categories of harm it addresses, and the technical and organizational approaches to preventing AI systems from …

Glossary

AIOps

What AIOps means, how AI-driven operations improve alerting, root cause analysis, and automated remediation, and when to adopt AIOps …

Glossary

ARIMA

Autoregressive Integrated Moving Average model for time series forecasting, including SARIMA for seasonal patterns.

Glossary

Data Lake

What a data lake is, how it stores raw data at scale, and when to use a data lake versus a data warehouse.

Glossary

Database Indexing

Data structures that improve query performance by providing fast lookup paths to rows in database tables, including B-tree, hash, and bitmap …

Glossary

DBSCAN

Density-Based Spatial Clustering of Applications with Noise, a clustering algorithm that discovers arbitrary-shape clusters and identifies …

Glossary

DevSecOps

What DevSecOps means, how it integrates security into every stage of CI/CD, and why shifting security left is essential for AI/ML systems …

Glossary

Edge Computing

What edge computing is, how it brings computation closer to data sources, and when edge deployment is appropriate for AI workloads.

Glossary

Feature Store

What a feature store is, how it serves as a centralized repository for ML features, and why it solves the training-serving skew problem.

Glossary

gRPC

What gRPC is, how Protocol Buffers and streaming RPCs work, and why gRPC is well-suited for high-performance ML inference services.

Glossary

Helm Chart

What Helm charts are, how they package Kubernetes deployments, and best practices for managing charts in production.

Glossary

HTTP and HTTPS

The foundational web protocols for transferring hypertext documents and resources, with HTTPS adding encryption via TLS for secure …

Glossary

Istio

What Istio is, how it implements a service mesh on Kubernetes, and when the operational overhead is justified.

Glossary

JAMstack

The web architecture pattern coined by Mathias Biilmann of Netlify in 2016, combining JavaScript, APIs, and Markup to deliver fast, secure, …

Glossary

Kiro

What Kiro is, how AWS's spec-driven AI IDE structures development through requirements, design, and task specifications, and how it differs …

Glossary

LLMOps - LLM Operations

The practices, tools, and infrastructure for deploying, monitoring, and managing large language model applications in production …

Glossary

Mocking

Test doubles for AI systems: mocks, stubs, fakes, and spies explained, with guidance on when to use each for testing AI applications.

Glossary

Monorepo

What a monorepo is, how Google's approach was documented in the landmark 2016 ACM paper, and how modern tools like Nx and Turborepo make …

Glossary

Next.js

The React framework created by Vercel (formerly Zeit) in 2016 that popularized server-side rendering, file-based routing, and hybrid …

Glossary

Node.js

The server-side JavaScript runtime created by Ryan Dahl in 2009, built on Chrome's V8 engine with an event-driven, non-blocking I/O …

Glossary

npm

The package manager for Node.js created by Isaac Schlueter in 2010, which established the registry model and semantic versioning conventions …

Glossary

OAuth

OAuth is an open standard for delegated authorization, originating from Blaine Cook and Chris Messina's work at Twitter in 2006-2007 and …

Glossary

OpenAPI

What the OpenAPI Specification is, how schema-first API design works, and why code generation from OpenAPI specs improves consistency for AI …

Glossary

OSI Model

The Open Systems Interconnection model, a seven-layer conceptual framework that standardizes how network communication functions are …

Glossary

Pagefind

What Pagefind is, how it provides static search for static sites using WebAssembly-based indexing, and why its chunked index design enables …

Glossary

RAG Evaluation

Methods and metrics for measuring the quality of Retrieval Augmented Generation systems, covering retrieval accuracy, generation …

Glossary

React

The declarative, component-based JavaScript UI library created at Facebook in 2013 that introduced the virtual DOM and fundamentally changed …

Glossary

React Router

The standard client-side routing library for React, created by Ryan Florence and Michael Jackson in 2014, which evolved from Ember-inspired …

Glossary

Recurrent Neural Network

How RNNs, LSTMs, and GRUs process sequential data, the vanishing gradient problem, and where recurrent models still apply.

Glossary

Redis

What Redis is, how it provides in-memory data storage, and common use cases for caching and real-time AI applications.

Glossary

Remix

The full-stack React framework created by Ryan Florence and Michael Jackson in 2021, built on web standards and the loader/action pattern …

Glossary

Remotion

Remotion is a React framework for creating videos programmatically, treating video as code and rendering MP4 files from JSX components using …

Glossary

ROC Curve

What ROC curves and AUC measure, how to interpret them, and when to use ROC versus precision-recall analysis.

Glossary

Sessionize

What Sessionize is, how it manages conference call-for-papers, speaker profiles, and schedule generation, and how its API enables …

Glossary

SLA, SLO, and SLI

What SLAs, SLOs, and SLIs are, how they relate to each other, and how to define them for AI services.

Glossary

Stackbit

The visual editing platform for Jamstack sites founded by Ohad Eder-Pressman in 2019, which pioneered real-time inline editing for headless …

Glossary

State Space Model

How structured state space models like Mamba and S4 achieve linear-time sequence modeling as an alternative to transformers.

Glossary

Subnet

What subnets are, how they segment VPC networks, and best practices for subnet architecture on AWS.

Glossary

TCP and UDP

The two primary transport-layer protocols of the Internet: TCP provides reliable, ordered delivery while UDP provides fast, connectionless …

Glossary

TCP/IP Model

The four-layer Internet protocol suite that defines how data is transmitted across networks, forming the architectural foundation of the …

Glossary

Test Fixture

What test fixtures are, how they provide predefined data and state for reproducible tests, and fixture patterns for AI systems.

Glossary

TinyML

How machine learning runs on microcontrollers and resource-constrained devices using TensorFlow Lite Micro and similar frameworks.

Glossary

TLS/SSL

Transport Layer Security and its predecessor Secure Sockets Layer, cryptographic protocols that provide encrypted communication and …

Glossary

Toil

What toil is in the SRE context, how to identify it, and strategies for reducing operational burden through automation.

Glossary

UML Overview

The Unified Modeling Language, a standardized visual notation for specifying, constructing, and documenting software systems through 14 …

Glossary

Use Case Diagram

A UML behavioral diagram that captures system functionality from the user's perspective, showing actors, use cases, and system boundaries.

Glossary

Virtual DOM

The Virtual DOM is an in-memory representation of the real DOM introduced by React in 2013, enabling efficient UI updates through a diffing …

Glossary

Vite

The next-generation frontend build tool created by Evan You in 2020 that leverages native ES modules for near-instant dev server startup and …

Glossary

Webhooks

Webhooks are user-defined HTTP callbacks that deliver real-time event notifications between web applications, a term coined by Jeff Lindsay …

Glossary

WebSocket

What WebSockets are, how they enable real-time bidirectional communication, and why they are used for streaming LLM token delivery to …

Glossary

Document Extraction

Definition of document extraction, the main techniques (OCR, NLP, template-based), AWS services used at each stage, and accuracy …