Cloud & AI Glossary
Explore 404 verified definitions across 12 architectural categories.
A
- Activation Checkpointing AI Fundamentals
A training memory optimization that discards intermediate layer activations, recalculating them during the backward pass.
- Activation Function AI Fundamentals
A mathematical formula introducing non-linear thresholds to model outputs, allowing networks to learn complex representations.
- Active Directory Domain Services Security
The identity backbone of enterprise Windows: directory, Kerberos authentication, and Group Policy — and the highest-value target on any corporate network.
- Active-Active Replication Databases
A database scaling strategy where write operations can be committed concurrently to multiple active nodes.
- ActiveMQ Cloud Fundamentals
The veteran JMS message broker — protocol-polyglot, deeply embedded in Java estates, and the 'Classic vs Artemis' fork every operator must understand.
- AdamW Optimizer AI Fundamentals
A variant of the Adam optimizer that decouples weight decay from gradient updates to improve regularization.
- AI Agent AI Fundamentals
An LLM system that plans, calls tools, observes results, and iterates in a loop to complete tasks rather than answering once.
- AI Observability AI Fundamentals
Tracing, logging, and monitoring for LLM systems — seeing what the model was asked, what it did, what it cost, and where it failed.
- ALPN Networking
A TLS handshake extension that negotiates the application protocol (like HTTP/2 vs HTTP/1.1) during the secure handshake itself — saving a round trip and enabling HTTP/2 on the web.
- Amazon CloudFront Networking
AWS's CDN: hundreds of edge locations caching your content near users, tightly integrated with S3 and the AWS security stack — with cache-hit ratio as the metric that decides everything.
- Amazon EKS Compute
Amazon's managed Kubernetes — AWS runs the control plane, you run (or don't) the nodes. Power and portability at the cost of Kubernetes's full operational weight.
- Amazon RDS Databases
AWS's managed relational database — Postgres, MySQL, and friends with backups, patching, and failover handled, so you run schemas instead of servers.
- Amazon Redshift Databases
AWS's petabyte-scale data warehouse — columnar, massively parallel analytics on data too big for a transactional database, and the wrong tool for anything transactional.
- Amazon Resource Name (ARN) Cloud Fundamentals
Amazon Resource Names — the globally unique addressing scheme for every AWS resource, and the string format that IAM policies are actually written against.
- Amazon Route 53 Networking
AWS's DNS service with a 100% availability SLA — where routing policies and health checks turn name resolution into a load-balancing and failover layer.
- Amazon SNS DevOps
AWS's managed pub/sub messaging — publish once, fan out to many subscribers (queues, functions, HTTP, email). The one-to-many complement to SQS's one-to-one queue.
- Amazon SQS DevOps
AWS's fully-managed message queue — a simple, durable buffer that decouples services and absorbs load spikes. Serverless, cheap, and the default first reach for async work in AWS.
- Ansible DevOps
An agentless configuration-management and automation tool — pushes changes over SSH using simple YAML playbooks. Popular for its low barrier to entry and broad reach.
- Anycast Routing Networking
One IP address announced from many locations, with the network routing each user to the nearest — the backbone of CDNs, global DNS, and DDoS absorption.
- Apache Kafka DevOps
A distributed event-streaming platform — a durable, replayable log of events that many consumers read independently. The backbone of event-driven data pipelines, not a task queue.
- API Gateway DevOps
A managed entry point that routes, secures, and monitors API traffic.
- API Key Authentication Security
A simple shared secret string that identifies and authorizes an application (not a user) calling an API — easy to use, easy to leak, and often misused for the wrong job.
- API Versioning DevOps
Evolving an API without breaking existing clients — the discipline that decides whether you can change your API or are held hostage by it.
- Apigee Networking
Google Cloud's enterprise API management platform — heavyweight gateway plus developer portal, analytics, and monetization, priced and positioned for large API programs.
- Application Load Balancer (ALB) Networking
A Layer-7 proxy routing HTTP/HTTPS request payloads dynamically based on content paths and headers.
- ArgoCD DevOps
A GitOps continuous-delivery tool for Kubernetes: your Git repo declares the desired cluster state, and ArgoCD makes reality match it.
- ArgoCD & GitOps DevOps
A declarative deployment loop syncing Git repository states to Kubernetes clusters.
- Athena Databases
AWS's serverless SQL engine that queries data directly in S3 — no clusters to run, billed at $5 per terabyte scanned, which makes file format your real query optimizer.
- Attention Head AI Fundamentals
An independent parallel compute sub-unit inside self-attention layers that tracks relationships between words.
- Attribute-Based Access Control (ABAC) Security
Authorization decided by policies over attributes — user, resource, and context — rather than static roles. Vastly more expressive, meaningfully harder to reason about.
- Aurora Serverless Databases
Amazon Aurora that scales its capacity up and down automatically — even to zero — instead of running a fixed instance. Great for spiky or intermittent loads, tricky for steady ones.
- Auth Code Flow with PKCE Security
The recommended OAuth 2.0 flow for browser and mobile apps — Authorization Code with PKCE adds a dynamic proof that stops an intercepted authorization code from being usable by an attacker.
- Auth0 Identity platform Security
A developer-focused identity platform (now part of Okta) for adding login, SSO, and user management to your own apps — customer identity (CIAM) via APIs and SDKs, so you don't build auth from scratch.
- Auto Scaling Compute
Automatically adjusting capacity to match demand — the cloud's core elasticity promise, and a discipline of choosing the right metric, limits, and reaction speed.
- Autoencoder AI Fundamentals
An unsupervised neural network designed to compress inputs into low-dimensional latent spaces and reconstruct them.
- AWS App Runner Compute
AWS's fully-managed container-to-URL service — push an image or repo, get a scaling HTTPS endpoint, skip the orchestration entirely.
- AWS CloudTrail Security
A security auditing service that records AWS API calls, user actions, and resource changes.
- AWS Config Cloud Fundamentals
An AWS service that continuously records your resource configurations and evaluates them against rules — answering 'what changed, when, and is it compliant?' for audit and drift detection.
- AWS Direct Connect Networking
A dedicated physical circuit from your data center into AWS — consistent latency and lower per-GB egress in exchange for weeks of provisioning and real commitment.
- AWS EC2 (Elastic Compute Cloud) Compute
AWS's foundational virtual servers — the instance-type catalog, pricing models, and the rent-vs-commit math that underpins most AWS bills.
- AWS Elastic Beanstalk Compute
AWS's original PaaS — deploy code and it provisions the EC2, load balancers, and scaling underneath, with the resources left visible for when you outgrow the abstraction.
- AWS Fargate Compute
AWS's serverless container runtime — run containers on ECS or EKS without managing the underlying servers, trading per-node control for zero cluster ops.
- AWS Lambda Compute
AWS's function-as-a-service — code that runs on demand in Firecracker microVMs, scales to zero, and bills per millisecond. The reference implementation of serverless.
- AWS Organizations Cloud Fundamentals
AWS's service for managing many accounts as one org — consolidated billing plus guardrails (SCPs) that cap what accounts can do. The foundation of a multi-account strategy.
- AWS PrivateLink Networking
Private, one-way connectivity to services across VPCs and accounts via interface endpoints — traffic that never touches the public internet or requires network peering.
- AWS PrivateLink Networking
A secure network service mapping endpoint targets privately inside a local subnet via network interface cards.
- AWS Secrets Manager Security
Managed storage, rotation, and audited retrieval of credentials — the antidote to passwords in environment variables and API keys in Git.
- Azure AD (Entra ID) Security
Microsoft's cloud identity platform (formerly Azure AD, now Entra ID) — the identity provider behind Microsoft 365 and countless enterprise apps. The identity backbone of the Microsoft ecosystem.
- Azure Kubernetes Service (AKS) Compute
Azure's managed Kubernetes — a free control plane and deep Entra ID integration, the natural K8s choice for Microsoft-centric enterprises.
- Azure Virtual Machines Compute
Microsoft Azure's virtual machines — the compute core for Windows, .NET, and hybrid enterprises, with hybrid licensing as a distinctive cost lever.
B
- Backpropagation AI Fundamentals
The algorithm that calculates loss gradients backwards through neural layers to update model weights.
- Bare Metal Server Compute
A dedicated physical server with no hypervisor between you and the hardware — maximum performance and control, at the cost of cloud elasticity.
- Bastion Host Security
The single hardened jump box that funnels admin access into private networks — a pattern now being replaced by session brokers that need no open ports at all.
- Batch Inference AI Fundamentals
Processing LLM requests asynchronously in bulk at ~50% discount — the right mode for any AI workload that doesn't need an answer in seconds.
- Bearer Token Security
An access token where mere possession grants access — like cash, whoever holds it can use it. Simple and ubiquitous in APIs, and dangerous if intercepted, so it lives and dies by TLS and short lifetimes.
- BF16 Precision AI Fundamentals
A 16-bit floating-point format that matches the dynamic range of FP32, preventing underflow issues.
- BGP (Border Gateway Protocol) Networking
The routing protocol that ties the internet's ~75,000 independent networks together — deciding how traffic finds its way between them. Foundational, trust-based, and famously fragile.
- BigQuery Databases
Google's serverless data warehouse — run SQL analytics over terabytes to petabytes with no infrastructure to manage, priced mainly by data scanned. Powerful for analytics, wrong for transactions.
- Bitbucket Pipelines DevOps
Atlassian's CI/CD built into Bitbucket — YAML pipelines next to your code, tightly integrated with Jira, priced by build minutes.
- bitsandbytes AI Fundamentals
A high-performance quantization library providing lightweight CUDA wrappers for 8-bit and 4-bit optimizers.
- Blue-Green Deployment DevOps
Running two identical production environments and flipping traffic from old to new all at once — instant cutover, instant rollback, double the infrastructure.
- Blue-Green Deployment DevOps
A deployment strategy utilizing two identical environments to eliminate release downtime.
- BM25 Retrieval AI Acronyms
A probabilistic term-matching keyword search algorithm widely used in information retrieval.
C
- Cache Invalidation Networking
Deciding when cached data is stale and must be refreshed or removed — famously one of computing's two hardest problems, because serving wrong data and re-fetching too often both hurt.
- Canary Deployment DevOps
A release strategy that rolls out updates to a small fraction of users to verify stability.
- Canary Release DevOps
Rolling out a new version to a small slice of real users first, watching the metrics, then widening — the strategy built to limit the blast radius of a bad deploy.
- Cassandra Databases
A wide-column database built for massive write throughput and no single point of failure — masterless, tunably consistent, and unforgiving of bad data modeling.
- Certificate Authority (CA) Security
The trusted third party that issues and vouches for TLS certificates — the root of the trust chain that lets your browser believe a site is really who it claims to be.
- Chain-of-Thought (CoT) AI Fundamentals
A prompting strategy instructing models to generate step-by-step reasoning paths before outputting final answers.
- Chain-of-Thought Reasoning AI Fundamentals
An emergent capability where models yield higher accuracy by breaking problems down into sequential reasoning steps.
- Chef DevOps
A veteran configuration-management tool that treats servers as code — but from an era of long-lived servers now largely displaced by immutable infrastructure and containers.
- CI/CD DevOps
Automating the path from code commit to production — continuous integration tests every change, continuous delivery ships it safely.
- CIDR Block Networking
The slash notation that defines IP address ranges — and the one networking decision that becomes permanent the moment two networks need to talk.
- CircleCI DevOps
A managed CI/CD platform built around reusable config (orbs), first-class caching, and per-credit pricing — where pipeline speed is the product.
- Circuit Breaker Pattern DevOps
A resilience pattern that stops calling a failing service to let it recover — 'tripping' after repeated failures instead of pounding a dead dependency and cascading the outage.
- Client Credentials Grant Security
The OAuth 2.0 flow for machine-to-machine authentication — a service authenticates as itself (not on behalf of a user) to get an access token. No human, no browser, no user consent.
- Cloud Interconnect Networking
Google Cloud's dedicated private connection between on-premises and GCP — the GCP equivalent of AWS Direct Connect and Azure ExpressRoute, in Dedicated and Partner flavors.
- Cloud Spanner Databases
Google's globally-distributed relational database that scales horizontally while keeping strong consistency and SQL — famously breaking the 'you must give up consistency to scale' assumption, at a premium.
- Cloud SQL Databases
Google Cloud's managed relational database (MySQL, PostgreSQL, SQL Server) — GCP's equivalent of Amazon RDS. You run schemas; Google runs the servers, backups, and failover.
- Cloudflare Workers Compute
Serverless that runs at the network edge in V8 isolates, not containers — near-zero cold starts and global-by-default, with a distinct execution model to design around.
- CloudFormation DevOps
AWS's native infrastructure-as-code service — declarative stacks with managed state and automatic rollback, at the cost of YAML verbosity and AWS lock-in.
- CloudTrail Logs Security
The audit log of every API call in your AWS account — who did what, when, from where. The difference between an incident report and a shrug.
- Cognito User Pools Security
AWS's managed user directory and authentication service — sign-up, sign-in, MFA, and OIDC token issuance without running your own identity stack.
- Cold Start Compute
The latency penalty when a serverless function runs after being idle — the defining performance tax of [serverless](/glossary/serverless/), and the thing every FaaS optimization targets.
- Configuration Drift DevOps
The gradual divergence of a system's real state from its intended, defined state as manual changes accumulate — the silent cause of 'works here but not there' failures and failed deploys.
- Connection Pooling Databases
Reusing a fixed set of established database connections instead of opening one per request — the difference between a database that scales and one that falls over at 100 connections.
- Consistent Hashing Databases
A hashing scheme where adding or removing a node reshuffles only a small fraction of keys — the distribution primitive behind sharded databases, caches, and CDNs.
- Consul Networking
HashiCorp's multi-purpose tool for service discovery, health checking, a distributed key-value store, and service mesh — the connective tissue for services across VMs, clouds, and Kubernetes.
- Container Compute
A lightweight, isolated package that runs an application and its dependencies.
- Content Delivery Network (CDN) Networking
A distributed network of edge servers that caches content closer to users.
- Context Engineering AI Fundamentals
The discipline of deciding what goes into an LLM's context window — instructions, retrieved data, memory, tool results — and what stays out.
- Context RAG Ranking AI Fundamentals
The ranking pipeline sorting external retrieval chunks to ensure high-density information fits in LLM context windows.
- Context Window Compression AI Fundamentals
The maximum amount of text (in tokens) an LLM can consider at once, covering the prompt, conversation history, and its own output.
- Continuous Batching AI Fundamentals
An iteration-level scheduling algorithm that groups active inference requests dynamically rather than waiting for full sequence completion.
- Control Tower Cloud Fundamentals
AWS's managed multi-account landing zone: automated account creation with guardrails, centralized logging, and organization-wide policy from day one.
- Cosine Similarity AI Fundamentals
A metric that measures the angular distance between two vectors in a high-dimensional space.
- Cosmos DB Databases
Azure's globally-distributed, multi-model database with turnkey global replication and five tunable consistency levels. Powerful and pricey — and the pricing punishes bad modeling.
- CQRS Pattern DevOps
Splitting a system's write model from its read model so each is optimized independently — powerful for complex, high-scale domains, overkill for ordinary CRUD.
- Cross-Account Access Security
How to let a principal in one AWS account securely act in another — via assumed IAM roles and temporary credentials, not shared long-lived keys. The backbone of multi-account AWS.
- Cross-Encoder Reranking AI Fundamentals
A secondary retrieval pipeline step that scores document-query pairs using deep attention classification.
- Cross-Origin Resource Sharing (CORS) Security
The browser mechanism that controls cross-origin requests — universally misunderstood as an error to disable, actually a security boundary to configure correctly.
- Cross-Origin Resource Sharing (CORS) Security
An HTTP header security mechanism that controls browser access to resources hosted on external domains.
- Cross-Site Scripting (XSS) Security
An attack that injects malicious JavaScript into a web page other users view — running in their browser with their privileges. Prevented by proper output encoding and CSP.
- CSRF Protection Security
Defending against attacks that trick a logged-in user's browser into making unwanted requests to a site they're authenticated to — using the browser's own cookies against them.
- CVE (Common Vulnerabilities and Exposures) Security
The universal ID system for publicly known security flaws — a CVE number gives everyone one unambiguous name for the same vulnerability, so the whole industry can coordinate.
- CVSS Score Security
The 0–10 standardized severity score for vulnerabilities — a useful common language for 'how bad in theory,' but a dangerous substitute for real risk prioritization in your environment.
D
- Dark Launching DevOps
Deploying a feature to production but keeping it hidden — running its code silently to test performance and correctness with real traffic before anyone sees it.
- Database Replication Databases
Keeping copies of a database on multiple servers for availability, read scaling, and disaster recovery — with consistency as the price of admission.
- Database Sharding Databases
Splitting one logical database across many machines by partitioning the data — the way past a single server's limits, and a decision that reshapes your entire application.
- Datadog DevOps
A commercial, all-in-one observability SaaS covering metrics, traces, logs, and more in one integrated platform. Fast to adopt, famously easy to overspend on.
- DDOS Attack mitigation Security
Defending against traffic floods designed to exhaust your capacity — absorbed at the edge, filtered by layer, and increasingly a cost problem as much as an uptime problem.
- Decoding Phase AI Fundamentals
The token-by-token generation stage of LLM inference — sequential, memory-bandwidth-bound, and the reason output tokens cost more than input.
- Defense in Depth Security
The security architecture principle that every control will eventually fail — so you layer independent controls such that no single failure is a breach.
- DHCP Server Networking
The service that automatically hands out IP addresses and network config to devices when they join a network — so you don't configure every device by hand. Invisible until it breaks.
- Direct Connect Gateway Networking
An AWS component that lets one Direct Connect private link reach VPCs in many regions and accounts — so you don't need a separate physical connection per region. The hub for private AWS connectivity.
- Direct Preference Optimization (DPO) AI Acronyms
An alignment algorithm that optimizes policy networks directly using pairwise preference data without reward model training.
- Direct Preference Optimization (DPO) AI Fundamentals
Direct Preference Optimization — preference tuning without a reward model or RL loop: train directly on chosen-vs-rejected response pairs.
- Direct Server Return (DSR) Networking
Direct Server Return — load-balanced requests arrive via the balancer, but responses bypass it entirely, straight from server to client. Huge asymmetric-traffic win, real operational sharp edges.
- Distance Metrics AI Fundamentals
Mathematical formulas used to calculate similarity scores between vector coordinates.
- DKIM Signature Security
A cryptographic signature proving an email really came from your domain and wasn't altered — one leg of the SPF/DKIM/DMARC tripod that decides deliverability.
- DMARC Policy Security
The policy layer that ties SPF and DKIM to the visible From: address and tells receivers what to do on failure — now mandatory for bulk senders.
- DNS Propagation Networking
The time window required for global DNS servers to update cached records with new IP targets.
- DNSSEC Security
A set of DNS extensions that cryptographically sign DNS records so resolvers can verify answers haven't been forged — closing DNS's original lack of authentication. Powerful but underdeployed and complex.
- Docker DevOps
The tool that popularized containers — packaging an app with all its dependencies into a portable image that runs the same everywhere. The unit modern deployment is built on.
- DocumentDB Databases
AWS's managed MongoDB-compatible database — Aurora-style storage with the Mongo API on top, and a compatibility asterisk you must test against.
- Domain Name System (DNS) Networking
The system that translates human-readable domain names into IP addresses.
- Domain-Driven Design (DDD) DevOps
An approach to modeling complex software around the business domain and its real language — bounded contexts, ubiquitous language. Its value is in the hard domains.
- Dynamic Application Security Testing (DAST) Security
Security testing that attacks the running application from the outside — catching the runtime and config flaws static analysis can't see, at the cost of coverage and speed.
- DynamoDB Databases
AWS's fully-managed key-value/document database — single-digit-millisecond latency at any scale, priced by throughput, and only fast if you model around its access patterns.
E
- Edge Cache Networking
A cache placed at CDN edge locations near users, so content is served from a nearby city instead of a distant origin — the core mechanism that makes CDNs fast.
- Edge Side Includes (ESI) Networking
A markup language that lets a CDN assemble a page from separately-cached fragments — caching the static shell aggressively while fetching only the dynamic bits. Powerful but niche and quirky.
- Elastic Block Store (EBS) Storage
AWS's network-attached block storage for EC2 — persistent virtual disks that live independently of the instance. The durable disk under your databases and boot volumes.
- Elastic File System (EFS) Storage
AWS's managed, elastic NFS — a shared filesystem many instances mount at once, growing and shrinking automatically, priced well above block or object storage.
- ElastiCache Databases
AWS's managed Redis and Memcached — in-memory caching that turns millisecond database queries into microsecond lookups, with cache-invalidation as the eternal catch.
- Encrypted SAML Assertion Security
A SAML identity assertion whose contents are encrypted, not just signed — so intermediaries can't read the personal data inside it, only the intended Service Provider can.
- Encryption at Rest Security
Encrypting stored data so a stolen disk or leaked backup is useless — nearly free, mostly a checkbox, and frequently mistaken for access control.
- Encryption in Transit Security
Protecting data as it moves between systems — table stakes on the public internet, and increasingly mandatory inside your own network too.
- Envoy Proxy Networking
A high-performance L7 proxy built for cloud-native networking — the data plane inside most service meshes and many API gateways, handling routing, load balancing, retries, and observability.
- Evals (LLM Evaluation) AI Fundamentals
Systematic testing of LLM outputs against defined criteria — the AI equivalent of a test suite, and the thing that separates demos from products.
- Event Sourcing Cloud Fundamentals
Storing state as an immutable log of events rather than current values — a perfect audit trail and time machine, bought with real complexity most systems don't need.
- Event-Driven Architecture Cloud Fundamentals
Systems that communicate by emitting and reacting to events rather than calling each other directly — loose coupling and scale, bought with eventual consistency and debugging difficulty.
- Exponential Backoff Cloud Fundamentals
The retry discipline that prevents failed calls from becoming outages: wait longer after each failure, add randomness, and give up on purpose.
- ExpressRoute Networking
Azure's dedicated private connection between on-premises and Azure — the Azure equivalent of AWS Direct Connect. Bypasses the public internet for consistent bandwidth, low latency, and compliance.
F
- Failover Routing Networking
A DNS routing policy that sends all traffic to a primary endpoint and automatically switches to a standby only when the primary fails a health check — active-passive disaster recovery at the DNS layer.
- Feature Flags DevOps
Runtime switches that decouple deploying code from releasing it — enabling canary rollouts, instant kill switches, and A/B tests without redeploying.
- Federated Identity Security
Letting users log into many services with one identity from a trusted provider — the basis of SSO and 'Sign in with Google.' Centralizes credentials where they can be secured.
- Feed-Forward Network (FFN) AI Fundamentals
A fully-connected neural network layer processing token vectors independently after attention calculations.
- Few-Shot Prompting AI Fundamentals
A prompting technique providing multiple input-output examples to guide model generation formatting.
- Fine-Tuning AI Fundamentals
Further training a pretrained model on your own examples to change its behavior, style, or task performance.
- FinOps Cloud Fundamentals
The discipline of making cloud spend an engineering metric — visibility, accountability, and optimization as a continuous loop, not a quarterly panic.
- FlashAttention AI Fundamentals
An IO-aware attention algorithm that computes exact attention without materializing the full N×N matrix — making long context windows computationally practical.
- FlashAttention-3 AI Fundamentals
An optimized self-attention algorithm designed for Hopper GPUs, exploiting asynchronous execution and FP8 precision.
- FluxCD DevOps
A GitOps operator for Kubernetes — it runs inside the cluster and continuously reconciles it to match config declared in Git. Automation-first, a peer to Argo CD.
- FP16 Precision AI Fundamentals
A half-precision 16-bit floating-point data format providing wide dynamic range for deep learning.
- FP8 Quantization AI Fundamentals
Compressing model weights to lower-precision numbers (8-bit, 4-bit) so models need less memory and run faster with minimal quality loss.
- Fully Sharded Data Parallel (FSDP) AI Fundamentals
A data-parallel training strategy that shards model states (parameters, gradients, and optimizer states) across distributed GPU pools.
G
- GeoDNS Networking
DNS that answers differently based on where the query comes from — routing users to the nearest or most appropriate region at the resolution layer.
- GitHub Actions DevOps
GitHub's built-in CI/CD — workflows in YAML in your repo, triggered by git events, with a huge marketplace of reusable actions. The default for anything already on GitHub.
- GitLab CI DevOps
GitLab's built-in CI/CD system — pipelines defined in a YAML file in your repo, tightly integrated with the whole GitLab platform. A single-vendor alternative to stitching tools together.
- GitOps DevOps
An operating model where Git is the single source of truth for infrastructure and deployments, and automation continuously makes the live system match what's in Git. Declarative, auditable, self-healing.
- Glacier Deep Archive Storage
AWS's cheapest storage tier — roughly $1 per terabyte per month — for data you must keep but almost never read, with retrieval measured in hours.
- Google App Engine Compute
Google's original PaaS — the pioneering 'just deploy your code' platform, now a mature elder alongside its serverless successors.
- Google Cloud Run Compute
Google's serverless container platform — deploy any container, scale to zero, pay per use. The middle path between functions and Kubernetes.
- Google Compute Engine (GCE) Compute
Google Cloud's virtual machines — live migration, sustained-use discounts, and per-second billing distinguish it from the EC2 model.
- Google Kubernetes Engine (GKE) Compute
Google's managed Kubernetes — from the company that created Kubernetes — with Autopilot mode offering the most hands-off managed-K8s experience available.
- Google Workspace Directory Security
Google Workspace's built-in user directory — the identity backbone that stores accounts and groups and acts as an identity provider for SSO across Google and third-party apps.
- GPU (AI Accelerators) AI Fundamentals
The parallel processors that train and serve AI models — and the supply-constrained line item that shapes every AI infrastructure decision.
- Gradient Accumulation AI Fundamentals
A training technique that aggregates gradients across multiple micro-batches before performing an optimization step.
- Gradient Clipping AI Fundamentals
A safety training strategy that caps maximum gradient values to prevent numerical instability.
- Grafana DevOps
The default open-source dashboarding and visualization layer — it turns metrics, logs, and traces from many sources into graphs and alerts. It stores nothing itself.
- GraphQL DevOps
A query language for APIs that lets the client ask for exactly the data it needs in one request — solving over- and under-fetching, at the cost of new complexity.
- Grouped-Query Attention (GQA) AI Fundamentals
An attention mechanism that groups query heads together to share single key-value projection heads, optimizing memory footprints.
- gRPC DevOps
A high-performance RPC framework using HTTP/2 and Protocol Buffers — fast, strongly-typed service-to-service calls. Great between backends, awkward from browsers.
- GuardDuty Threat Detection Security
AWS's managed threat detection — machine-analyzed CloudTrail, VPC, and DNS signals surfacing compromised credentials and instances without agents to deploy.
H
- Hallucination AI Fundamentals
When an LLM confidently generates false information — a statistical property of how these models work, not a bug that will be patched out.
- Hardware Security Module (HSM) Security
Tamper-resistant hardware that performs cryptography without ever exposing the keys — the root of trust behind KMS, PKI, and payment systems.
- Hierarchical Navigable Small World (HNSW) AI Fundamentals
Hierarchical Navigable Small World — the graph-based index behind most vector databases; logarithmic-feeling search across millions of embeddings, paid for in RAM.
- HNSW Index AI Fundamentals
An approximate nearest neighbor vector search index based on multi-layered graph networks.
- HTTP/2 Protocol Networking
The major HTTP upgrade that added multiplexing, header compression, and server push over a single connection — a big performance win over HTTP/1.1, itself now succeeded by HTTP/3.
- HTTP/3 (QUIC) Networking
The latest HTTP version, running over QUIC (a UDP-based transport) instead of TCP — eliminating head-of-line blocking and speeding up connection setup, especially on flaky mobile networks.
- Hybrid Search AI Fundamentals
A search technique combining keyword-based lexical retrieval (BM25) and vector-based semantic retrieval.
- Hypervisor Compute
The software layer that runs virtual machines by partitioning physical hardware — the invisible foundation every cloud instance depends on.
I
- IAM Permission Boundary Security
An AWS guardrail that caps the maximum permissions an IAM entity can have — it doesn't grant access, it limits it. Key to safely letting teams manage their own IAM without granting escalation.
- IAM Policy Security
A JSON definition block declaring permission scopes for specific cloud resources.
- IAM Role Security
An IAM identity that defines temporary credential configurations for cloud resources.
- IAM Role vs IAM User Security
The distinction that underpins secure AWS access: users hold permanent credentials, roles grant temporary ones on assumption — and roles should be your default.
- ICMP Ping Networking
The 'is this host reachable and how fast?' tool — ping uses ICMP echo request/reply to test connectivity and measure round-trip time. Ubiquitous for diagnostics, and often blocked or rate-limited.
- Idempotency Key DevOps
A unique client-supplied identifier that lets a server safely de-duplicate retried requests — so a payment or order sent twice (after a timeout) only happens once.
- Identity and Access Management (IAM) Security
Framework for defining who can access which cloud resources and how.
- Identity Provider (IdP) Security
The system that authenticates users and vouches for their identity to other applications — the trusted center of SSO and federated login. Compromise it and you compromise everything.
- Immutable Infrastructure DevOps
An approach where servers are never modified after deployment — to change anything you build a new image and replace them. Eliminates drift and 'works on my machine,' at the cost of a build pipeline.
- Implicit Grant Security
The OAuth flow that returned tokens directly in the browser URL — deprecated for a decade of good reasons, replaced everywhere by Authorization Code + PKCE.
- In-Context Learning AI Fundamentals
The capacity of LLMs to recognize patterns and adapt behaviors based on examples provided in the prompt.
- Incremental Static Regeneration (ISR) DevOps
A rendering strategy that serves pre-built static pages while regenerating them in the background — static-site speed with content that stays fresh.
- Inference AI Fundamentals
Running a trained model to produce outputs in production — where nearly all AI compute cost and latency engineering lives.
- InfluxDB Databases
A purpose-built time-series database for metrics and sensor data — fast timestamped ingestion and time-window queries, with cardinality as its defining constraint.
- Infrastructure as Code (IaC) AI Acronyms
Defining cloud infrastructure in version-controlled files instead of console clicks — reviewable, repeatable, and recoverable.
- Infrastructure as Code (IaC) DevOps
The methodology managing and provisioning cloud networks and compute units using configuration files.
- Ingress & Egress Networking
Traffic direction from your network's point of view — a vocabulary distinction that decides real money, because clouds let data in free and charge for every byte leaving.
- Inspector Vulnerability Assessment Security
AWS's automated, continuous vulnerability scanner for EC2, container images, and Lambda — it finds known CVEs and exposures in your workloads without you scheduling scans.
- INT8 Precision AI Fundamentals
An 8-bit integer data format used to reduce model VRAM footprints and accelerate compute stages.
- Internet Gateway Networking
The VPC component that makes two-way internet connectivity possible — horizontally scaled, free, and meaningful only through routing and public IPs.
- Inverted File Index (IVF) AI Acronyms
A vector search optimization that clusters vector spaces to limit search scopes.
- IP Rate Limiting Security
Limiting how many requests a single IP address can make in a time window — a simple, common first line of defense against abuse, brute-force, and scraping. Effective but easily evaded and prone to false positives.
- IPsec Tunnel Networking
An encrypted tunnel that securely connects two networks over the public internet at the IP layer — the classic technology behind site-to-site VPNs linking offices, data centers, and cloud VPCs.
- IPv4 Exhaustion Networking
The internet running out of unique IPv4 addresses years ago — the scarcity that gave us NAT, carrier-grade NAT, IP markets, and the slow push toward IPv6.
- IPv6 Address Space Networking
The vastly larger 128-bit address system built to replace IPv4, whose ~4 billion addresses ran out years ago. Adoption is real but slow because of workarounds like NAT.
- Istio Service Mesh Networking
A service mesh that moves inter-service networking — mTLS, retries, traffic splitting, telemetry — out of application code and into a uniform infrastructure layer.
- IVF-PQ Index AI Fundamentals
A vector search index combining Inverted File indexing and Product Quantization for memory efficiency.
J
- Jenkins DevOps
The veteran, plugin-heavy CI/CD automation server — enormously flexible and self-hosted, but showing its age against lighter, git-native tools like GitHub Actions and GitLab CI.
- Jitter Cloud Fundamentals
Deliberate randomness added to timing — retries, cron schedules, cache TTLs — to break the synchronization that turns many well-behaved clients into an accidental DDoS.
- JSON Web Key Set (JWKS) Security
A published set of public keys (as JSON) that lets anyone verify JWT signatures and lets services rotate signing keys without breaking every client.
- JSON Web Token (JWT) Security
A cryptographically signed, URL-safe data structure used to pass authentication claims between systems.
- JWT (JSON Web Token) Security
A signed, self-contained token carrying identity claims — verifiable by any service without a database call, and revocable by none of them.
K
- Kahneman-Tversky Optimization (KTO) AI Acronyms
An alignment algorithm that optimizes models using binary utility signals (good/bad) rather than pairwise preferences.
- Kahneman-Tversky Optimization (KTO) AI Fundamentals
Kahneman-Tversky Optimization — preference tuning from simple thumbs-up/down signals instead of paired comparisons, weighted asymmetrically like human loss aversion.
- Keep-Alive Connection Networking
Reusing one TCP (and TLS) connection for many requests — the difference between paying handshake latency once and paying it on every call.
- Key Management Service (KMS) Security
AWS's managed key service — envelope encryption backed by HSMs, where the master keys never leave and every use is logged.
- Key Rotation Policy Security
A defined schedule and process for regularly replacing cryptographic keys and secrets — limiting the damage window if a key is ever compromised. Only valuable if rotation is automated.
- KMS Key Policy Security
The resource policy that is the root authority over a KMS key — powerful enough to lock out even the account root, which is exactly how people brick keys.
- Knowledge Distillation AI Fundamentals
Training a small, cheap model to imitate a large one's outputs — the standard route to frontier-quality behavior on a narrow task at a fraction of the cost.
- Kong API Gateway DevOps
A popular open-source API gateway — the single entry point that sits in front of your services and handles auth, rate limiting, routing, and observability so each service doesn't have to.
- Kubernetes DevOps
An open-source platform for orchestrating containerized workloads at scale.
- Kubernetes Ingress Networking
An API object managing external application access to services inside a Kubernetes cluster.
- Kubernetes Service Mesh Networking
An infrastructure layer managing secure, observable service-to-service cluster communication.
- KV Cache AI Fundamentals
The attention key/value tensors an LLM stores per token during generation — the memory bottleneck of inference and the mechanism behind prompt caching discounts.
- KV Cache Eviction AI Fundamentals
An optimization strategy that discards low-attention key-value states to stay within VRAM bounds.
- KV Cache Quantization AI Fundamentals
Storing the KV cache in 8- or 4-bit precision instead of FP16 — the lever that decides how many long-context conversations fit on one GPU.
L
- Landing Zone Cloud Fundamentals
A pre-configured, secure, multi-account cloud foundation set up before you deploy workloads — accounts, networking, identity, logging, and guardrails done right from the start so you don't retrofit governance later.
- Latency-based Routing Networking
A DNS routing policy that sends each user to whichever region will respond fastest for them — improving performance for globally distributed apps. Routes by network latency, not geography.
- Layer Normalization AI Fundamentals
A regularization technique that normalizes activations across a single token's feature dimensions.
- LDAP Protocol Security
The directory protocol under Active Directory and enterprise auth — hierarchical, fast for reads, and the backend a surprising amount of infrastructure still binds against.
- Learning Rate Scheduler AI Fundamentals
A training framework that adjusts optimizer step sizes dynamically over training epochs.
- Least Privilege Security
Grant the minimum access required, for the minimum time — the principle every breach postmortem cites and every deadline erodes.
- Let's Encrypt Security
The free, automated certificate authority that made HTTPS universal — 90-day certificates issued via the ACME protocol, renewed by software instead of humans.
- Link Aggregation Control Protocol (LACP) Networking
The negotiation protocol that bonds multiple physical links into one logical pipe — more aggregate bandwidth and instant failover, with per-flow hashing as the catch.
- Linkerd Networking
A lightweight, security-focused service mesh for Kubernetes — deliberately simpler than Istio, using its own ultralight Rust micro-proxy to give mTLS, observability, and reliability with minimal overhead.
- LLM (Large Language Model) AI Fundamentals
A neural network trained on massive text corpora to predict the next token — the foundation under chatbots, coding assistants, and AI agents.
- LLM Guardrails AI Fundamentals
Programmatic checks around an LLM's inputs and outputs that enforce safety, format, and policy rules the model alone can't guarantee.
- Load Balancer Networking
Distributes incoming traffic across multiple servers or containers.
- Log-Structured Merge-Tree (LSM Tree) Databases
The write-optimized storage engine behind Cassandra, RocksDB, and most NoSQL — buffer writes in memory, flush to sorted files, compact in the background.
- LoRA Adapter AI Fundamentals
A trainable low-rank decomposition matrix injected into transformer attention layers during model tuning.
M
- MAC Address Networking
The hardware address burned into a network interface — used to deliver frames on the local network segment. Layer 2's addressing, distinct from the IP addresses that route globally.
- Macie Data Discovery Security
An AWS service that uses machine learning to find and classify sensitive data — PII, credentials, financial info — sitting in your S3 buckets, so you know where your risk lives.
- MCP (Model Context Protocol) AI Fundamentals
An open standard for connecting AI models to tools and data sources, replacing per-app custom integrations with one reusable interface.
- Memcached Databases
A bare-bones in-memory cache — pure key-value, multithreaded, no persistence, no data structures. Fast and simple, and that simplicity is the whole point.
- Message Queue Cloud Fundamentals
An asynchronous buffer between services: producers enqueue work, consumers process at their own pace — decoupling that turns traffic spikes into backlogs instead of outages.
- Microservices Compute
An architecture style where an application is split into small, independently deployable services.
- Mixed Precision Training AI Fundamentals
A training method combining half-precision (FP16/BF16) and single-precision (FP32) to speed up GPU operations.
- Mixture of Experts (MoE) AI Fundamentals
A sparse model architecture that uses a routing network to activate specific subset expert parameters per token.
- Model Pruning AI Fundamentals
A optimization technique that removes low-contribution weights from neural networks to reduce parameter counts.
- MongoDB Databases
The dominant document database — stores flexible JSON-like documents instead of rigid tables. Great when your schema evolves fast; a trap when you actually needed relational.
- Multi-AZ Deployment Databases
A database high-availability pattern maintaining synchronous standby database replicas in separate availability zones.
- Multi-Factor Authentication (MFA) Security
Requiring a second proof of identity beyond the password — with a factor hierarchy that matters enormously, because SMS and phishable codes are no longer enough.
- Multi-Query Attention (MQA) AI Fundamentals
An attention mechanism where all query heads share a single key-value head to minimize KV cache storage overhead.
- Multi-Tenancy SaaS
A single software instance serves multiple customers with isolated data and configuration.
- Multi-tenant SaaS SaaS
The SaaS architecture where one application instance serves many customers with isolated data — economies of scale on one side, a single fat-fingered query from a breach on the other.
- Multimodal AI AI Fundamentals
Models that process and generate multiple data types — text, images, audio, video — in a single system rather than text alone.
- Mutual TLS (mTLS) Security
A security protocol requiring both client and server to verify each other's certificates before establishing connections.
N
- NAT Gateway Networking
Managed outbound-only internet access for private subnets — and the quietly notorious line item on cloud bills, at $0.045 per gigabyte processed.
- Neo4j Databases
The leading graph database — stores relationships as first-class data so traversals that would be brutal multi-join queries in SQL become fast, natural graph walks.
- Netlify Functions DevOps
Netlify's serverless functions — backend code deployed alongside your frontend with no server management, wrapping AWS Lambda in a simpler developer experience for Jamstack apps.
- Network Access Control List (NACL) Security
The stateless subnet-level firewall in a VPC — numbered rules, explicit deny, and return-traffic gotchas that surprise everyone exactly once.
- Network Load Balancer (NLB) Networking
A high-performance Layer-4 proxy routing TCP/UDP connections at ultra-low latency.
- New Relic DevOps
A commercial all-in-one observability platform — metrics, traces, logs, and APM in one product. You pay to skip assembling the open-source stack yourself.
- NormalFloat 4 (NF4) AI Acronyms
An information-theoretically optimal quantile quantization data type designed to compress parameters.
- NoSQL Database Databases
Databases that trade SQL's relational model and strict consistency for horizontal scale, flexible schemas, or specialized data shapes.
O
- OAuth 2.0 Security
An authorization framework that lets apps access resources on behalf of a user without sharing passwords.
- Object Storage Storage
Cloud storage that keeps files as objects in flat buckets accessed over HTTP — cheap, effectively unlimited, and the backbone of cloud data.
- OCSP Stapling Security
A TLS optimization where the web server fetches and 'staples' a fresh proof that its certificate isn't revoked to the handshake — so clients don't have to check with the CA, fixing OCSP's speed and privacy flaws.
- Okta Integration Security
Okta is a leading vendor-neutral identity provider — its whole value is connecting to everything, so 'Okta integration' means wiring an app into Okta for SSO, provisioning, and centralized access control.
- OpenID Connect (OIDC) Security
An authentication layer built on top of OAuth 2.0 — it adds a standard identity token (JWT) so apps can actually know *who* the user is, not just what they can access.
- OpenTelemetry DevOps
The vendor-neutral standard for traces, metrics, and logs — instrument once, send anywhere, and finally escape observability-vendor lock-in.
- OpenVPN Networking
The veteran TLS-based VPN — runs anywhere, traverses anything, configurable to a fault — now the incumbent that WireGuard is steadily retiring.
- OSPF Routing Networking
The link-state interior routing protocol: every router learns the full network map and computes shortest paths — instant convergence math in exchange for design discipline.
- OWASP Top 10 Security
An awareness document ranking the ten most critical web-application security risks — the industry's common baseline for what to defend against. A starting point for security, not a complete checklist.
P
- PagedAttention AI Fundamentals
vLLM's virtual-memory trick for the KV cache: store attention state in fixed-size pages instead of contiguous blocks, eliminating the fragmentation that wasted most GPU memory.
- PagedAttention AI Fundamentals
A memory allocation algorithm that partitions the KV cache into non-contiguous virtual pages to prevent fragmentation.
- Parameter-Efficient Fine-Tuning (PEFT) AI Acronyms
A collection of fine-tuning techniques that adapt pre-trained models by modifying only a tiny fraction of parameters.
- Penetration Testing Security
An authorized simulated attack where skilled testers actively try to exploit a system's weaknesses — going beyond automated scanning to prove what an attacker could actually achieve.
- Pilot Light DR Cloud Fundamentals
A disaster recovery strategy keeping critical data replicated while compute resources remain inactive until failover.
- Pipeline Parallelism AI Fundamentals
A distributed training and inference model that partitions layer blocks sequentially across different GPU nodes.
- Post-Training Quantization (PTQ) AI Acronyms
An offline compression technique that converts weights to lower precision after model training finishes.
- Prefill Phase AI Fundamentals
The first stage of LLM inference: the entire prompt is processed in parallel to build the KV cache before any output token appears.
- Principle of Least Privilege Security
Grant every user, service, and process only the minimum access it needs to do its job — nothing more. The single most important access-control principle, and the hardest to actually maintain.
- Product Quantization (PQ) AI Acronyms
A lossy vector compression technique that reduces database RAM footprints.
- Prometheus DevOps
The de-facto open-source metrics system — pull-based scraping, a time-series database, and PromQL. It tells you your systems' vital signs; it is not for logs or traces.
- Proximal Policy Optimization (PPO) AI Acronyms
An on-policy reinforcement learning algorithm that restricts step updates to maintain training stability.
- Puppet DevOps
The declarative configuration-management veteran: agents continuously converge servers toward a cataloged desired state — still ruling large regulated fleets.
Q
R
- RabbitMQ DevOps
A mature message broker for routing tasks and events between services — flexible routing and per-message reliability. A queue for work, not a log for streaming like Kafka.
- RAG (Retrieval-Augmented Generation) AI Fundamentals
Architecture that fetches relevant external data at query time and injects it into an LLM's context before generating an answer.
- RAG Reranking AI Fundamentals
The second-stage filter in retrieval pipelines: a cross-encoder rescores the top candidates so only genuinely relevant chunks reach the LLM's context.
- Rate Limiting Networking
Capping how many requests a client can make in a window — the fundamental control that protects APIs from abuse, overload, and runaway costs.
- RBAC vs ABAC Security
Two models for deciding who can do what: RBAC grants access by assigned roles (simple, coarse), ABAC by evaluating attributes (flexible, fine-grained). Most real systems blend both.
- Read Replicas Databases
Read-only copies of a database that receive the primary's changes and serve read traffic — the first and simplest database scaling move, bounded by replication lag.
- Read Replicas Databases
An asynchronous replication pattern offloading read-heavy query loads to read-only database copies.
- Reasoning Model AI Fundamentals
An LLM trained to generate internal chain-of-thought before answering, trading latency and tokens for large gains on math, code, and planning.
- Redis Databases
The in-memory data-structures server that became infrastructure — cache, queue, rate limiter, session store, and leaderboard in one, with durability caveats to respect.
- Refresh Token Security
A long-lived credential used only to obtain new short-lived access tokens — so users stay logged in without keeping a powerful long-lived access token exposed. The high-value target you must protect.
- Reinforcement Learning from Human Feedback (RLHF) AI Acronyms
The post-training technique that turns a raw next-token predictor into a helpful assistant by optimizing against human preference judgments.
- Reranker Model AI Fundamentals
A specialized model that re-evaluates the relevance of document chunks retrieved by search stages.
- Resource Owner Password Credentials Security
The OAuth flow where the app collects the user's password directly — formally deprecated, kept alive only by legacy systems, and the anti-pattern worth knowing by name.
- Retry Mechanism DevOps
Automatically re-attempting a failed operation to ride out transient errors — essential for resilient distributed systems, and dangerous without backoff, jitter, and idempotency.
- Reverse Proxy Networking
A server that sits in front of backend apps and forwards client requests to them.
- Ring-AllReduce AI Fundamentals
A distributed training communication algorithm where GPUs share gradients in a logical ring topology, optimizing network bandwidth utilization.
- RLHF Reward Model AI Acronyms
A scoring model trained on human feedback to evaluate language model generation quality.
- Role-Based Access Control (RBAC) Security
Permissions granted through roles rather than to individuals — the access model that scales to thousands of users, until role explosion sends you toward ABAC.
- Rolling Update DevOps
Updating a service by replacing its instances a few at a time while the rest keep serving traffic — the default zero-downtime deployment, and Kubernetes's built-in strategy.
- Rotary Position Embeddings (RoPE) AI Fundamentals
Rotary Position Embeddings — the technique that tells transformers where tokens are by rotating query/key vectors, and the knob behind every context-window extension.
- Rotary Positional Embeddings (RoPE) AI Fundamentals
A positional encoding method that applies a rotation matrix to Query and Key vectors in self-attention layers.
- Route 53 Latency Routing Networking
A DNS routing policy redirecting query lookups to regions providing the lowest round-trip latency.
- Route Table Networking
The per-subnet decision list that determines where packets go — the actual mechanism behind 'public' and 'private' in cloud networks.
S
- S3 Object Lock Storage
A compliance storage parameter enforcing write-once-read-many retention windows on object storage buckets.
- SaaS Tenant Isolation SaaS
How a multi-tenant SaaS keeps each customer's data and activity walled off from every other customer's — the security foundation that determines trust, blast radius, and cost.
- SAML (Security Assertion Markup Language) Security
The XML-based federation standard behind most enterprise SSO — verbose, battle-tested, and full of signature-validation traps that became real CVEs.
- SCP (Service Control Policy) Security
An AWS Organizations guardrail that caps the maximum permissions for entire accounts — an org-wide ceiling that even account admins can't exceed. It limits, it never grants.
- Security Group Security
AWS's stateful instance-level firewall — allow-rules only, return traffic automatic, and the most common place cloud exposure actually happens.
- Security Hub Security
AWS's central dashboard that aggregates security findings from many AWS services and partner tools into one prioritized view, checked against best-practice standards.
- Self-Signed Certificate Security
A TLS certificate an entity issues to itself, with no trusted CA vouching for it — it encrypts traffic but proves no identity, which is why browsers warn on it.
- Semantic Caching AI Fundamentals
Caching LLM responses by meaning rather than exact text — similar questions hit the cache even when worded differently.
- Semantic Chunking AI Fundamentals
A dynamic text chunking method that splits documents based on semantic transitions rather than character counts.
- Separation of Duties Security
Splitting a sensitive process across multiple people so no single individual can complete it alone — the control that prevents both fraud and catastrophic single-actor mistakes.
- Server-Sent Events (SSE) DevOps
A dead-simple way to stream server-to-client updates over plain HTTP — one-directional, auto-reconnecting, and the natural fit for streaming LLM token output.
- Server-Side Rendering (SSR) DevOps
Generating a page's HTML on the server for each request rather than in the browser — better first-load performance and SEO, at the cost of server work. One point on a spectrum of rendering strategies.
- Serverless Compute
A cloud model where the provider runs your code on demand without you managing servers.
- Service Discovery Networking
How services find each other's current network locations in a dynamic environment where instances constantly appear, move, and disappear — the phone book for microservices.
- Service Provider (SP) Security
In federated login (SAML/SSO), the application the user is trying to access — it trusts an external Identity Provider to vouch for who the user is.
- Service Registry Networking
The live directory at the heart of service discovery — a constantly-updated database of which service instances exist and where. Powerful, and a single point of failure if you let it be.
- Session Timeout Security
How long a user session stays valid before requiring re-authentication — the balance between security (short sessions limit stolen-session damage) and usability (nobody wants to log in constantly).
- Shield Advanced Protection Security
AWS's paid, managed DDoS protection tier — adds 24/7 response team access, cost protection against attack-driven scaling bills, and advanced mitigations over free Shield Standard.
- Simple Storage Service (S3) Storage
AWS's foundational object store — eleven nines of durability, virtually unlimited scale, and the storage-class and egress decisions that decide your bill.
- Single Logout (SLO) Security
The SSO counterpart nobody implements well: ending a user's session everywhere at once — and why 'log out of all apps' is one of identity's genuinely hard problems.
- Single Sign-On (SSO) Security
One login for many applications — the productivity win that's also a security consolidation, concentrating both convenience and risk in the identity provider.
- Single-tenant SaaS SaaS
The SaaS model where each customer gets a dedicated, isolated stack — maximum isolation and per-customer flexibility, at the cost of the multi-tenant efficiencies that make SaaS cheap.
- SLA (Service Level Agreement) SaaS
A documented commitment to service availability, performance, or support response times.
- Sliding Window Chunking AI Fundamentals
A text chunking method that generates overlapping segments to preserve context across boundaries.
- SNI (Server Name Indication) Networking
A TLS handshake extension that tells the server which hostname the client wants — so one IP can host many HTTPS sites with different certificates. Also a privacy leak TLS is now closing.
- Softmax Saturation AI Fundamentals
A mathematical state where extremely large input logits result in near-zero gradients during training.
- Software Composition Analysis (SCA) Security
Scanning your dependencies for known vulnerabilities and license risks — where most real-world CVEs actually live, and the least glamorous, highest-yield security tool.
- Speculative Decoding AI Fundamentals
An inference acceleration technique that uses a small draft model to generate candidate tokens verified in parallel by a target model.
- SPF Record Security
A DNS record listing which mail servers are authorized to send email for your domain — one of the three pillars (with DKIM and DMARC) that stop spammers from forging your address.
- SQL Injection (SQLi) Security
An attack that smuggles malicious SQL into a query because user input was concatenated into it — decades old, still devastating, and fully preventable with parameterized queries.
- SSL/TLS Handshake Security
The negotiation that establishes an encrypted session before any data flows — the round trips behind 'HTTPS feels slow', and why TLS 1.3 cut them.
- SSL/TLS Termination Security
The process of decrypting SSL/TLS traffic at a proxy to reduce cryptographic compute overhead on backend nodes.
- SSRF Vulnerability Security
An attack that tricks a server into making requests to targets the attacker chooses — often internal systems and cloud metadata endpoints the attacker can't reach directly.
- Static Application Security Testing (SAST) Security
Automated code analysis that finds vulnerability patterns before anything runs — cheap, early, and only as valuable as your triage discipline.
- Static Site Generation (SSG) DevOps
Pre-rendering a whole site into static HTML at build time so it can be served as plain files from a CDN — the fastest, cheapest, most secure way to serve content that doesn't change per request.
- Stochastic Gradient Descent (SGD) AI Fundamentals
An optimization method that estimates gradients using mini-batches to update parameters iteratively.
- Streaming (LLM Responses) AI Fundamentals
Sending tokens to the client as the model generates them, so users see output immediately instead of waiting for the full response.
- Subnet Networking
A slice of a VPC bound to one availability zone — the unit where routing, exposure, and blast radius are actually decided.
- Subnet Mask Networking
The bitmask that splits an IP address into network and host portions — the arithmetic beneath every CIDR block, subnet, and routing decision.
- Subnets & CIDR Networking
The methodology partitioning IP spaces into smaller, isolated networks using subnet mask notation.
- Supervised Fine-Tuning (SFT) AI Fundamentals
Supervised Fine-Tuning — teaching a pretrained model to follow instructions by imitating curated example responses; the first and most accessible post-training stage.
- System Prompt AI Fundamentals
A high-priority context block defining the behavior, constraints, and operational persona of a language model.
- System Prompt Injection AI Fundamentals
An attack where malicious instructions hidden in content an LLM processes hijack the model's behavior — the top security risk for LLM applications.
T
- TCP/IP Stack Networking
The layered protocol family carrying essentially all internet traffic — and the layer model that tells you where latency, drops, and mysterious hangs actually live.
- Temperature (Sampling) AI Fundamentals
The parameter controlling randomness in LLM output — low values pick likely tokens for consistency, high values spread probability for variety.
- Tensor Parallelism AI Fundamentals
An intra-model parallelism technique that splits individual matrix multiplication weights across multiple GPUs within a single layer.
- TensorRT-LLM AI Fundamentals
NVIDIA's library for squeezing maximum LLM inference speed out of NVIDIA GPUs by compiling models into highly-optimized engines — top performance, at the cost of a heavier build step and NVIDIA lock-in.
- Terraform DevOps
The dominant infrastructure-as-code tool — declare cloud resources in config, and Terraform plans and applies the changes to reach that state. Cloud-agnostic, with state as its double-edged core.
- Terraform Provider DevOps
A plugin translating declarative HCL resource configs into specific cloud API commands.
- Threat Modeling Security
A structured exercise to find what could go wrong in a system before you build it — asking what you're protecting, who might attack it, and how, so you design defenses in.
- TimescaleDB Databases
A PostgreSQL extension purpose-built for time-series data — keeps full SQL and the Postgres ecosystem while adding automatic time-partitioning and massive ingest/query speedups for time-stamped data.
- TLS Handshake Session Resumption Networking
Skipping the full TLS negotiation on reconnection by reusing prior session keys — the optimization behind fast repeat HTTPS connections, culminating in TLS 1.3's 0-RTT.
- Token Revocation Security
Invalidating an access or refresh token before it expires — straightforward for stateful tokens, genuinely hard for stateless JWTs, and the gap attackers exploit.
- Tokens AI Fundamentals
The subword units LLMs read and write; the billing and capacity unit for context windows, API pricing, and rate limits.
- Tool Use (Function Calling) AI Fundamentals
The mechanism that lets an LLM invoke external functions — the model outputs a structured call, your code executes it, results return to the model.
- TPS (Tokens Per Second) AI Fundamentals
Tokens Per Second — LLM speed measured two ways: per-request streaming speed users see, and aggregate GPU throughput that sets your unit economics.
- Transit Gateway Networking
A cloud hub-and-spoke router connecting multiple virtual networks, on-premises environments, and accounts.
- Transport Layer Security (TLS) Security
Cryptographic protocol that encrypts data in transit between clients and servers.
- Travis CI DevOps
An early cloud CI pioneer that popularized YAML pipelines for open source — now a cautionary tale about platform decline and a security-incident case study.
- Triton Inference Server AI Fundamentals
NVIDIA's production inference server for serving any model from any framework at scale — a general-purpose serving platform, distinct from LLM-specialized engines like vLLM.
- TTFT (Time to First Token) AI Fundamentals
Time to First Token — the delay between sending a request and the first output token arriving; the metric users actually feel.
- Tyk Gateway Networking
An open-source API gateway written in Go — full-featured rate limiting, auth, and versioning without an enterprise paywall around the core.
U
V
- Vector Database AI Fundamentals
A database optimized for storing embeddings and finding nearest neighbors fast, using approximate indexes like HNSW.
- Vector Embeddings AI Fundamentals
Numeric vector representations of text, images, or code that place semantically similar items close together in vector space.
- Vector Embeddings AI Fundamentals
High-dimensional coordinate lists that capture the semantic meanings of words, sentences, or images.
- Vercel Edge Network DevOps
Vercel's global edge platform — a CDN plus edge compute that serves and runs your app close to users worldwide. The deploy-target side of the modern frontend/Jamstack stack.
- Virtual Machine (VM) Compute
A software emulation of a physical computer — the abstraction that made cloud computing possible, now sharing the stage with the lighter-weight container.
- Virtual Private Cloud (VPC) Networking
An isolated virtual network inside a public cloud where you control IP ranges and routing.
- Virtual Private Network (VPN) Networking
Encrypted tunnels over public networks — site-to-site links that stitch clouds to data centers, and the remote-access model zero trust is busily replacing.
- vLLM AI Fundamentals
The open-source LLM inference engine that made high-throughput serving practical — its PagedAttention manages the KV cache like virtual memory, dramatically raising GPU utilization.
- VPC Endpoint Networking
A private doorway that lets resources in your VPC reach AWS services (like S3) over Amazon's internal network instead of the public internet — more secure, and it can save on data costs.
- VPC Flow Logs Security
Network-level records of accepted and rejected traffic in your VPC — the forensic and debugging layer that answers 'did the packet even arrive?'
- VPC Peering Networking
A private link that merges routing between two VPCs — simple and free of hourly charges, but non-transitive by design, which is where every peering architecture eventually hurts.
- VPC Peering Connection Networking
A point-to-point network route enabling private communication between two virtual networks using internal IPs.
- Vulnerability Scanning Security
Automated tooling that inspects systems, code, containers, and dependencies for known security weaknesses — a continuous baseline of security hygiene, only useful if its findings drive action.
W
- Warm Standby DR Cloud Fundamentals
A disaster recovery pattern maintaining replicated data and minimally scaled compute resources for fast failover.
- Web Application Firewall (WAF) Security
An application-layer firewall that inspects HTTP requests for attacks — real value against common exploits, real limits against determined attackers, and a false-positive budget to manage.
- Webhook DevOps
An HTTP callback that sends real-time event notifications from one system to another.
- Webhooks DevOps
A reverse API: instead of you polling a service for changes, it calls your URL when something happens. Efficient and real-time — and a security surface you must lock down.
- WebSockets Networking
A protocol for a persistent, two-way connection between browser and server — real-time, low-overhead, bidirectional. The right tool for chat and live collaboration; overkill for one-way updates.
- Weight Initialization AI Fundamentals
The strategy of assigning initial random numeric values to neural weights to prevent gradient explosion.
- Weighted Routing Networking
A DNS routing policy that splits traffic across endpoints by percentages you set — the mechanism behind gradual rollouts, A/B tests, and controlled migrations between environments.
- Wildcard Certificate Security
A single TLS certificate that covers all first-level subdomains of a domain (*.example.com) — convenient for managing many subdomains, but concentrates risk in one shared private key.
- WireGuard Networking
The modern VPN protocol that made its predecessors feel obsolete — tiny codebase, kernel-speed, effortless roaming — and the engine under most 2026 mesh-networking products.
- Write-Ahead Logging (WAL) Databases
Write-Ahead Logging — record every change to a durable log *before* applying it, so a crash can always be recovered. The mechanism behind database durability itself.
Z
- Zero Day Vulnerability Security
A security flaw that's exploited before the vendor knows about it or has a patch — 'day zero' of the defenders' awareness. The hardest class of threat to defend against.
- Zero Redundancy Optimizer (ZeRO) AI Fundamentals
A memory optimization protocol that shards parameters, gradients, and optimizer states across data-parallel ranks.
- Zero Trust Security Security
Security model that verifies every access request regardless of network location.
- Zero-Shot Prompting AI Fundamentals
A prompting approach where a model generates answers directly without seeing task examples.
No definitions found
Try loosening your keyword search or switching to another category pill filter.