Technical Glossary
Your comprehensive guide to AI, automation, NetSuite, and technical terms that power modern business transformation.
Featured Terms
Agentic AI
π€ AI & Machine LearningAI systems that can autonomously plan, execute, and iterate on multi-step tasks with minimal human intervention.
Agile
π Project ManagementAn iterative approach to project management and software development that delivers work in small, incremental cycles with continuous feedback.
Business Intelligence(BI)
π Data & AnalyticsTechnologies and strategies for analyzing business data to support decision-making.
Business Process Automation(BPA)
β‘ Business AutomationUsing technology to execute recurring tasks or processes in a business where manual effort can be replaced.
Django
π Python EcosystemA high-level Python web framework that provides an ORM, admin interface, authentication, and 'batteries-included' approach to rapid web development.
ERP(ERP)
π NetSuite & ERPEnterprise Resource Planning β integrated software that manages core business processes including finance, HR, manufacturing, supply chain, and CRM.
A/B Testing
A method of comparing two versions of a webpage, email, or feature to determine which performs better based on statistical analysis.
ACID Properties
Atomicity, Consistency, Isolation, Durability β the four properties that guarantee database transactions are processed reliably.
Agentic AI
AI systems that can autonomously plan, execute, and iterate on multi-step tasks with minimal human intervention.
Agent Loop
The iterative cycle of an LLM agent: receive input β decide on action (often a tool call) β execute β observe result β decide next action β until the agent reaches a final response.
Agile
An iterative approach to project management and software development that delivers work in small, incremental cycles with continuous feedback.
AI Safety
The field focused on ensuring AI systems behave as intended, don't cause harm, and remain aligned with human values and goals.
API Gateway
Single entry point that manages, secures, and routes API requests.
API Key
A unique identifier used to authenticate and authorize API requests, typically passed as a header or query parameter.
API Mocking
Standing up a fake version of an API that returns canned or configurable responses β lets frontend, mobile, or downstream service teams develop in parallel with the real backend or test edge cases that are hard to reproduce live.
API Rate Limiting
Restricting the number of API requests a client can make in a given timeframe.
API Versioning
The practice of maintaining multiple versions of an API to allow gradual migration when breaking changes are introduced.
Approval Workflow
An automated process that routes a decision (purchase, refund, time off, contract) through one or more approvers based on rules β capturing the audit trail of who approved what and when.
asyncio
Python's built-in async/await framework for writing concurrent, single-threaded I/O-bound code β the foundation for modern async Python web frameworks (FastAPI, Starlette, Sanic).
Attention Mechanism
A neural network component that allows models to focus on the most relevant parts of the input when producing each part of the output.
Attribution Model
A rule or algorithm that assigns conversion credit across the marketing touchpoints that influenced a customer's decision β 'how do we credit a signup that saw a Facebook ad, then clicked a Google ad, then opened an email?'
Audit Trail
An immutable chronological log of every change made to a record or system β captures who changed what, when, and (ideally) why, supporting compliance, security, and forensic analysis.
Auto-Scaling Group
ASG
An AWS construct (or equivalent on other clouds) that automatically scales the number of compute instances up or down based on demand metrics β ensuring capacity matches load without manual intervention.
Backlink
A link from one website to another, serving as a 'vote of confidence' that signals content quality and authority to search engines.
Bearer Token
An HTTP authorization scheme that passes a token in the request's Authorization header (`Authorization: Bearer <token>`) β the dominant pattern for API authentication, including OAuth 2.0 access tokens.
Black
An opinionated, deterministic Python code formatter that reformats code to a consistent style with minimal configuration β eliminates style debates by giving developers no choices.
Blue-Green Deployment
A deployment strategy that maintains two identical production environments, routing traffic to the new version only after it's verified healthy.
BM25
BM25
A classical lexical (keyword-based) ranking function for full-text search β counts term occurrences with diminishing returns and document-length normalization. Still the strongest non-neural baseline for search.
Bounce Rate
The percentage of visitors who leave a website after viewing only one page without taking any further action.
Bug Bounty
A program in which an organization pays security researchers for responsibly reporting vulnerabilities β turns the global researcher community into an extension of the internal security team.
Business Intelligence
BI
Technologies and strategies for analyzing business data to support decision-making.
Business Process Automation
BPA
Using technology to execute recurring tasks or processes in a business where manual effort can be replaced.
Business Rules Engine
Software that executes business logic and decisions based on predefined rules, separating decision logic from application code.
Canonical Tag
An HTML element that tells search engines which version of a URL is the 'master' copy, preventing duplicate content issues.
Celery
A distributed task queue for Python that enables asynchronous processing and scheduled job execution.
Celery Beat
Celery's task scheduler β runs periodic tasks on cron-like or interval schedules, dispatching them to Celery workers for execution.
Chain-of-Thought Prompting
CoT
A prompting technique that instructs an LLM to show its step-by-step reasoning before answering β dramatically improves accuracy on multi-step problems by giving the model space to think.
Change Data Capture
CDC
A pattern for streaming row-level changes (inserts, updates, deletes) from a source database to downstream systems in near-real-time β typically by tailing the database's write-ahead log.
Chart of Accounts
COA
The complete listing of every account in an organization's general ledger, organized by category (assets, liabilities, equity, revenue, expenses).
CI/CD
CI/CD
Continuous Integration and Continuous Deployment - automated software delivery practices.
Classifications (Class/Department/Location)
NetSuite's three native dimensions for slicing GL transactions beyond the Chart of Accounts β supporting segment-level reporting, budgeting, and analysis without account proliferation.
Click-Through Rate
CTR
The percentage of people who click on a link after seeing it, commonly measured for search results, ads, and email campaigns.
Cohort Analysis
An analytics technique that groups users by a shared attribute (usually signup date or first purchase) and tracks how each cohort's behavior evolves over time β separates trends from compositional shifts.
Computer Vision
CV
AI systems that can interpret and understand visual information from images and video.
Conditional Logic
Decision rules in a workflow that branch behavior based on field values, prior steps, or external data β 'if X then do A, else do B' patterns that power dynamic, context-aware automation.
Container
A lightweight, standalone package that includes everything needed to run a piece of software β code, runtime, libraries, and settings.
Content Delivery Network
CDN
A distributed network of servers that delivers web content from locations geographically closest to each user.
Content Marketing
A strategic marketing approach focused on creating and distributing valuable, relevant content to attract and retain a clearly defined audience.
contextvars
Python's standard library module for context-local state β like thread-local variables but works correctly across asyncio tasks, where threading.local() doesn't.
Conversion Rate Optimization
CRO
The systematic process of increasing the percentage of website visitors who take a desired action (purchase, sign up, contact, etc.).
Core Web Vitals
CWV
A set of Google metrics measuring real-world user experience: loading performance (LCP), interactivity (INP), and visual stability (CLS).
Crawl Budget
The number of pages a search engine will crawl on your site within a given timeframe, determined by crawl rate and crawl demand.
Cron Job
A time-based task scheduler in Unix/Linux systems that executes commands or scripts at specified intervals.
Cross-Origin Resource Sharing
CORS
A browser security mechanism that controls which domains can make requests to your API, preventing unauthorized cross-origin access.
Cross-Site Request Forgery
CSRF
An attack that tricks authenticated users into performing unintended actions on a web application they're logged into.
Cross-Site Scripting
XSS
A web security vulnerability that allows attackers to inject malicious scripts into web pages viewed by other users.
Cube (OLAP Cube)
A multidimensional analytics structure that pre-aggregates measures across many dimensions β designed for fast slice-and-dice queries that would be slow against raw fact tables.
Custom Form
A NetSuite-specific layout for transaction or entity records that lets you control field visibility, ordering, and which subtabs appear for different user roles or business units.
Custom GL Plug-in
A SuiteScript-based extension that lets you customize how NetSuite posts to the General Ledger for specific transaction types β modifying or adding GL impact lines beyond what the standard accounting engine produces.
Custom Record
User-defined data structures in NetSuite for storing business-specific information.
Database Index
A data structure that speeds up query performance by creating a fast lookup path to rows based on specific column values.
Database Migration
A version-controlled change to a database schema β adding tables, modifying columns, or creating indexes β that can be applied and rolled back consistently.
Database Normalization
The process of organizing database tables to reduce data redundancy and improve data integrity by following normal form rules.
Database Sharding
Horizontally partitioning data across multiple database instances, distributing load and enabling storage beyond single-server limits.
Dataclass
A Python 3.7+ decorator (@dataclass) that auto-generates __init__, __repr__, __eq__, and other boilerplate for plain-data classes β eliminates manual code for value-object patterns.
Data Enrichment
Automatically appending additional data to a record from external sources β adding firmographic data (employee count, industry, revenue) to a lead from just their email or company name.
Data Lake
Centralized repository storing structured and unstructured data at scale.
Data Modeling
The process of creating a visual representation of data structures, relationships, and constraints for a database or system.
Data Pipeline
Automated workflow for moving and processing data from source to destination.
Data Serialization
The process of converting data structures into a format suitable for transmission or storage, such as JSON, XML, or Protocol Buffers.
Data Warehouse
A centralized repository optimized for analytical queries, storing structured historical data from multiple sources.
dbt
dbt
A SQL-first data transformation framework that brings software engineering practices (version control, testing, documentation, modular models) to analytics workflows β the 'T' in ELT pipelines.
DDoS Attack
DDoS
Distributed Denial of Service β coordinated attack that floods a target service with traffic from many sources, overwhelming capacity until legitimate users can't connect.
Digital Transformation
The strategic adoption of digital technologies to fundamentally change how a business operates, delivers value, and competes.
Django
A high-level Python web framework that provides an ORM, admin interface, authentication, and 'batteries-included' approach to rapid web development.
Django REST Framework
DRF
A powerful toolkit for building Web APIs in Django, providing serializers, viewsets, authentication, and browsable API documentation.
Domain Authority
A metric (developed by Moz) predicting how likely a website is to rank in search results, scored from 1 to 100 based on backlink profile.
Drip Campaign
A series of pre-written emails (or other messages) sent automatically on a schedule β each message 'dripped' over time at a defined interval after a trigger event.
Edge Computing
Processing data near the source rather than in centralized cloud servers.
E-E-A-T
Experience, Expertise, Authoritativeness, and Trustworthiness β Google's framework for evaluating content quality, especially for YMYL topics.
Egress
Network traffic leaving a network boundary β used in cloud billing to refer specifically to data leaving the cloud provider's network (often expensive) vs ingress (free in most clouds).
Embeddings
Numerical representations of text that capture semantic meaning for AI processing.
Encryption at Rest
Protecting stored data by converting it into an unreadable format that can only be decrypted with the correct key.
Environment Variable
A dynamic value stored outside the application code that configures behavior across different environments (development, staging, production).
ERP
ERP
Enterprise Resource Planning β integrated software that manages core business processes including finance, HR, manufacturing, supply chain, and CRM.
ETL
ETL
Extract, Transform, Load - process for moving data between systems.
Event-Driven Architecture
EDA
System design where actions are triggered by specific events or state changes.
FastAPI
A modern, high-performance Python web framework for building APIs, with automatic OpenAPI documentation and async support.
Featured Snippet
A special search result displayed above organic results ('Position 0') that directly answers a user's query with extracted content from a web page.
Few-shot Learning
Teaching AI models new tasks with just a few examples.
Fine-tuning
Adapting a pre-trained AI model to specific tasks or domains by training it on specialized data.
Framer Motion
A production-ready animation library for React that provides declarative animations, gestures, and layout transitions.
Function Calling
An LLM capability that allows the model to invoke predefined functions or APIs as part of its response, enabling it to take real-world actions.
Funnel Analysis
An analytics technique that measures user progression through a series of sequential steps (signup β activate β trial β convert β retain) β identifies where users drop off and what fixes would move the most volume.
Generative AI
GenAI
AI systems that can create new content including text, images, code, and data based on training patterns.
Google Analytics
GA4
Google's web analytics platform for tracking website traffic, user behavior, conversions, and marketing performance.
Google Search Console
GSC
Google's free tool for monitoring website performance in search, submitting sitemaps, and identifying indexing issues.
GraphQL
Query language and runtime for APIs that allows clients to request specific data.
Grover's Algorithm
A quantum search algorithm that finds a target item in an unsorted database in O(βN) operations vs the classical O(N) β a quadratic speedup for any problem expressible as 'search a space for an item satisfying some condition'.
gRPC
gRPC
A high-performance, language-agnostic RPC framework built by Google β uses HTTP/2 for transport and Protocol Buffers for binary message serialization, far faster than REST/JSON for service-to-service communication.
Gunicorn
A Python WSGI HTTP server for running Django and Flask applications in production, managing multiple worker processes.
Hallucination
When AI models generate false or nonsensical information that appears plausible.
Health Check
An API endpoint that reports whether a service is running and able to serve requests, used by load balancers and monitoring systems.
Horizontal Scaling
Adding more machines or instances to handle increased load, distributing traffic across multiple servers.
httpx
A modern Python HTTP client that supports both sync and async APIs β drop-in replacement for requests, with HTTP/2 support and seamless asyncio integration.
Hyperautomation
Combining multiple automation technologies β AI, RPA, process mining, low-code β to automate as many business processes as possible.
IAM Role
A cloud IAM (Identity and Access Management) construct that bundles permissions and can be temporarily 'assumed' by a user or service β eliminates the need to embed long-lived credentials in code or configuration.
Idempotency
A property where performing the same operation multiple times produces the same result, preventing duplicate processing.
Indexing
The process by which search engines add web pages to their database (index) so they can appear in search results.
Inference
The process of using a trained AI model to make predictions or generate outputs on new data β the 'production' phase of AI.
Infrastructure as Code
IaC
Managing infrastructure through machine-readable definition files.
Intelligent Document Processing
IDP
Using AI to extract, classify, and process information from unstructured documents.
Internal Linking
Links between pages on the same website that distribute page authority, establish content hierarchy, and help users and search engines navigate.
Inventory Item
A NetSuite item record for physical goods you stock β tracking on-hand quantity, cost, valuation method (FIFO/LIFO/Average), bin/location, and reorder points across warehouses.
iPaaS
iPaaS
Integration Platform as a Service - cloud platforms for building and deploying integrations.
Kanban
A visual workflow management method that uses boards and cards to track work items through stages from start to finish.
Key Performance Indicator
KPI
A measurable value that demonstrates how effectively an organization is achieving key business objectives.
Keyword Research
The process of discovering and analyzing search terms that people enter into search engines, to inform content strategy and SEO targeting.
Knowledge Distillation
A model-training technique where a small 'student' model learns to mimic the outputs of a large 'teacher' model β producing a much smaller model that retains most of the teacher's quality.
Kubernetes
K8s
Container orchestration platform for automating deployment and scaling.
Large Language Model
LLM
An AI model trained on vast amounts of text data capable of understanding and generating human-like text.
Lead Nurture
An automated sequence of touchpoints (email, ads, content) that progressively educates and qualifies a prospect over weeks or months until they're ready to talk to sales.
Lead Scoring
A model that assigns numeric scores to leads based on fit (firmographic data) and engagement (behavioral signals) β used to prioritize sales outreach to the highest-probability buyers.
Load Balancer
A system that distributes incoming network traffic across multiple servers to ensure no single server becomes overwhelmed.
Log Aggregation
Collecting, centralizing, and analyzing log data from multiple services and servers in a single searchable platform.
Long-Tail Keyword
A specific, multi-word search phrase with lower search volume but higher conversion intent than broad keywords.
LoRA (Low-Rank Adaptation)
LoRA
A parameter-efficient fine-tuning method that adds small trainable rank-decomposed matrices to a frozen pre-trained model β drastically reduces fine-tuning compute and storage vs full fine-tuning.
Low-Code/No-Code Platform
Development platforms that enable building applications with minimal or no hand-written code through visual interfaces and drag-and-drop components.
Managed Service
A cloud offering where the provider operates, scales, patches, backs up, and monitors a software service (database, message queue, container runtime) so the customer only configures and uses it.
Master Data Management
MDM
Ensuring consistency and accuracy of shared data across the organization.
Message Queue
An asynchronous communication mechanism that decouples systems by storing messages until the receiving system is ready to process them.
Meta Description
An HTML attribute providing a brief summary of a page's content, displayed as the snippet text in search engine results.
Microservices
Architectural pattern breaking applications into small, independent services.
Middleware
Software that connects two or more applications, translating data formats and managing communication between systems.
Minimum Viable Product
MVP
The simplest version of a product that delivers core value to early users and generates validated learning for further development.
Model Context Protocol
MCP
An open protocol developed by Anthropic for connecting LLMs to external data sources, tools, and systems β standardizes how AI applications discover and call capabilities provided by separate MCP servers.
Model Context Window
The maximum amount of text (measured in tokens) that a language model can process in a single request.
Model Quantization
A technique for reducing AI model size and computational requirements by using lower-precision numbers (e.g., 8-bit instead of 32-bit).
Monitoring and Observability
The practice of collecting, analyzing, and acting on data about system health, performance, and behavior in real-time.
mTLS (Mutual TLS)
mTLS
A TLS handshake where both client and server present and verify certificates β proves the identity of BOTH parties, not just the server. Common in zero-trust networks and service-to-service authentication.
Multi-Factor Authentication
MFA
A security method requiring two or more verification factors (password + phone code, biometric, hardware key) to access an account.
Multimodal AI
AI systems that can process and generate multiple types of data β text, images, audio, video β in a unified model.
Multi-Subsidiary
NetSuite's capability to manage multiple legal entities, brands, or business units within a single account with consolidated reporting.
Mypy
A static type checker for Python that uses type hints (PEP 484) to verify type correctness without running code β catches whole classes of bugs at lint time.
Natural Language Processing
NLP
The branch of AI focused on enabling computers to understand, interpret, and generate human language.
Next.js
Full-stack React framework with server-side rendering and API routes.
Noisy Intermediate-Scale Quantum
NISQ
A term coined by John Preskill in 2018 describing the current era of quantum computing β devices with 50β10,000 qubits but without error correction, capable of demonstrating quantum effects but not yet running cryptographically-significant algorithms.
NoSQL Database
A category of databases that store data in non-tabular formats β documents, key-value pairs, graphs, or wide columns β optimized for specific access patterns.
OAuth 2.0
Industry-standard protocol for authorization and API access delegation.
On-Page SEO
Optimization techniques applied directly to web page content and HTML source code to improve search engine rankings.
OpenAPI Spec
OpenAPI
A standard, language-agnostic interface description for HTTP APIs (formerly Swagger) β JSON or YAML document that describes endpoints, parameters, request/response schemas, and authentication. The contract for modern REST API design.
ORM
ORM
Object-Relational Mapping β a programming technique that lets you interact with a database using objects and methods instead of raw SQL.
OWASP Top 10
A regularly updated list of the ten most critical web application security risks, published by the Open Web Application Security Project.
PEFT (Parameter-Efficient Fine-Tuning)
PEFT
An umbrella term for techniques that fine-tune large pre-trained models by updating only a small subset of parameters β LoRA, adapters, prefix tuning, and prompt tuning all qualify.
Period Close
The structured NetSuite process that locks an accounting period after all transactions are recorded, reconciliations are complete, and financial statements are finalized.
Phishing
A social-engineering attack that tricks users into revealing credentials, clicking malicious links, or executing payloads β typically via spoofed email but increasingly via SMS (smishing), voice (vishing), and other channels.
pip
Python's default package installer that downloads and installs packages from the Python Package Index (PyPI).
Poetry
A Python dependency manager and packaging tool that uses pyproject.toml for declarative configuration, deterministic resolution via poetry.lock, and integrated virtualenv management.
PostgreSQL
An advanced open-source relational database known for reliability, extensibility, and standards compliance, widely used in production applications.
Postman Collection
A shareable bundle of saved HTTP requests organized into folders β Postman's primary unit of API documentation, testing, and team collaboration.
Principle of Least Privilege
PoLP
A security principle that every user, service, or process should have only the minimum permissions required to perform its function β and nothing more. Limits blast radius when credentials are compromised.
Process Mining
Using data from IT systems to discover, monitor, and improve real business processes by analyzing event logs.
Product Backlog
A prioritized list of features, enhancements, bug fixes, and technical debt that represents all planned work for a product.
Programmatic SEO
Creating large numbers of search-optimized pages automatically using templates and structured data, targeting long-tail keywords at scale.
Progressive Web App
PWA
Web applications that provide native app-like experiences.
Prompt Engineering
The practice of designing and optimizing input prompts to get desired outputs from AI models.
Prompt Injection
A security attack where malicious instructions are embedded in user input to manipulate an AI model into ignoring its system instructions.
Purchase Order
A NetSuite transaction that records a commitment to buy from a vendor β items, quantities, expected receipt dates, and per-item costs that flow into AP, inventory receipts, and accruals.
Pydantic
A Python data validation library that uses type hints to validate, serialize, and document data structures.
Pydantic Settings
An extension of Pydantic that loads application settings from environment variables, .env files, secrets backends, or CLI args β with full type validation and IDE autocomplete.
pytest
Python's most popular testing framework, supporting simple assertions, fixtures, parameterization, and plugin extensibility.
Quantum Circuit
A computational model for quantum computing that consists of qubits, quantum gates applied to those qubits, and measurement operations β the quantum analog of a classical logic circuit.
Quantum Entanglement
A quantum phenomenon where two or more qubits become correlated such that the state of one instantly determines the state of the others, regardless of distance β Einstein famously called it 'spooky action at a distance'.
Quantum Error Correction
QEC
Techniques for protecting quantum information from decoherence and gate errors by encoding logical qubits across many physical qubits β analogous to but vastly more complex than classical error correction.
Quantum Gate
A unitary operation that manipulates qubit states β the quantum analog of classical logic gates (AND, OR, NOT). Combinations of gates implement quantum algorithms.
Quantum Key Distribution
QKD
A cryptographic technique that uses quantum properties (typically photon polarization) to share a secret key between two parties with the guarantee that any eavesdropping attempt will be detected β provides information-theoretic security from the laws of physics.
Quantum Supremacy
A demonstration that a quantum computer can perform a specific computation faster than any classical computer β the milestone Google claimed in 2019 with Sycamore, though for a contrived benchmark task rather than a practical problem.
Qubit
The basic unit of quantum information β a two-state quantum system (like an electron's spin or a photon's polarization) that can exist in a superposition of 0 and 1 rather than just one or the other.
Query Optimization
The process of improving database query performance through better SQL, indexing, schema design, and execution plan analysis.
RAG
RAG
Retrieval-Augmented Generation - combining LLMs with external knowledge bases for more accurate responses.
Ransomware
Malicious software that encrypts a victim's files and demands payment (usually cryptocurrency) for the decryption key β one of the most damaging modern cybercrime categories.
RBAC (Role-Based Access Control)
RBAC
An authorization model where permissions are assigned to roles, and roles are assigned to users β instead of attaching individual permissions to each user, drastically simplifying access management at scale.
React
JavaScript library for building user interfaces with component-based architecture.
ReAct (Reasoning + Acting)
ReAct
An LLM agent pattern that interleaves reasoning steps with tool-use actions β 'Thought β Action β Observation β Thought β ...' β until the model arrives at a final answer.
Real-time Analytics
Processing and analyzing data immediately as it's generated.
Refresh Token
A long-lived OAuth 2.0 credential that the client uses to obtain new short-lived access tokens without re-prompting the user for credentials β separates session lifetime from token-leak blast radius.
Reinforcement Learning from Human Feedback
RLHF
A training technique where AI models are refined based on human preferences and evaluations of their outputs.
Relational Database
RDBMS
A database that organizes data into tables with rows and columns, using relationships (foreign keys) to connect related data across tables.
Reranking
A second-stage retrieval refinement that takes the top results from initial retrieval (often semantic search) and reorders them using a more accurate but slower model β usually a cross-encoder.
Reserved Instance
RI
A 1- or 3-year commitment to a specific amount of cloud compute capacity in exchange for a significant discount (typically 30-70%) vs on-demand pricing β trades flexibility for predictable savings.
Responsive Design
A web design approach that makes pages render well across all device sizes and screen orientations.
REST API
REST
Representational State Transfer - an architectural style for building web services.
RESTlet
Custom REST APIs built in NetSuite using SuiteScript.
Retrospective
A team meeting held after each sprint or project to reflect on what went well, what didn't, and how to improve processes.
Reverse ETL
A data integration pattern that moves data FROM the data warehouse INTO operational tools (CRM, marketing platforms, sales tools) β the opposite of traditional ETL, which moves data from operational systems into the warehouse.
Reverse Proxy
A server that sits in front of backend servers, forwarding client requests and returning responses on their behalf.
Robotic Process Automation
RPA
Software robots that mimic human actions to complete repetitive tasks across applications.
Round-Robin Assignment
An automated routing pattern that distributes incoming leads, tickets, or tasks evenly across a pool of assignees β typically using rotation or load-balancing logic.
Ruff
An extremely fast Python linter and formatter written in Rust β replaces flake8, isort, pylint, and Black with one tool, running 10-100Γ faster on the same codebase.
Sales Cadence
A pre-defined sequence of sales touches (emails, calls, LinkedIn messages, etc.) spread over days or weeks β designed to systematically work a prospect from cold contact to qualified opportunity.
Sales Order
A NetSuite transaction that records a customer's commitment to purchase β capturing items, quantities, pricing, fulfillment terms, and payment terms before fulfillment and invoicing.
SAML
SAML
Security Assertion Markup Language β an XML-based standard for exchanging authentication and authorization data between an identity provider (IdP) and a service provider (SP). The longstanding standard for enterprise SSO.
Saved Search
NetSuite's powerful reporting and data extraction tool.
Saved Search Mass Update
A NetSuite feature that uses a Saved Search to identify a set of records, then applies a bulk field update (often with a formula) across all matching records in one operation.
Schema Markup
Structured data vocabulary (schema.org) added to HTML that helps search engines understand page content and display rich results.
Scrum
An Agile framework using fixed-length sprints, defined roles (Product Owner, Scrum Master, Team), and ceremonies to manage complex projects.
Search Engine Optimization
SEO
The practice of optimizing websites and content to rank higher in search engine results pages, driving organic (non-paid) traffic.
Search Engine Results Page
SERP
The page displayed by a search engine in response to a user query, containing organic results, ads, featured snippets, and other SERP features.
Secrets Management
The practice of securely storing, distributing, and rotating sensitive credentials like API keys, database passwords, and encryption keys.
Semantic Search
A search approach that retrieves results based on meaning rather than keyword overlap β typically uses vector embeddings to find documents semantically similar to a query.
Serverless
Cloud computing model where providers manage infrastructure and automatically scale resources.
Server-Sent Events
SSE
A simpler alternative to WebSocket for server-to-client streaming over standard HTTP β text-only, server-push only (no client-to-server stream), but works through proxies/firewalls and reconnects automatically.
Server-Side Rendering
SSR
Generating the HTML content of a page on the server before sending it to the browser, improving initial load time and SEO.
Shor's Algorithm
A quantum algorithm that factors large integers in polynomial time β exponentially faster than the best known classical algorithms. The basis for quantum's threat to RSA encryption.
Single Page Application
SPA
A web application that loads a single HTML page and dynamically updates content without full page reloads.
Single Sign-On
SSO
An authentication scheme where a user logs in once to a central identity provider and gains access to multiple applications without re-entering credentials β reduces password sprawl while centralizing identity controls.
Slowly Changing Dimension
SCD
A dimensional modeling pattern for tracking how a dimension attribute (customer address, product price, employee manager) changes over time β preserving history for accurate point-in-time analytics.
Snowflake Schema
A variant of the Star Schema where dimension tables are normalized into multiple related tables β trades query simplicity and JOIN performance for reduced storage and easier dimension hierarchy updates.
Sparse vs Dense Retrieval
Two complementary approaches to information retrieval: sparse (lexical, keyword-based β BM25, TF-IDF) and dense (neural, embedding-based β vector search). Modern systems combine both for best results.
Spot Instance
A cloud compute instance offered at 50-90% discount vs on-demand pricing β but the provider can reclaim it with little notice (typically 2 minutes) when capacity is needed elsewhere.
Sprint
A fixed time period (usually 1-4 weeks) during which a Scrum team works to complete a set of committed backlog items.
SQLAlchemy
Python's de facto SQL toolkit and ORM β supports both a low-level expression language (Core) and a high-level object-relational mapper (ORM), with deep support for PostgreSQL, MySQL, SQLite, and most major databases.
SQL Injection
An attack that inserts malicious SQL code into application queries, potentially exposing or modifying database contents.
SSL/TLS Certificate
A digital certificate that enables encrypted HTTPS connections between browsers and web servers, verifying server identity.
Stakeholder
Any person or group with an interest in or influence over a project's outcome, including sponsors, users, developers, and leadership.
Standard Operating Procedure
SOP
A documented, repeatable set of step-by-step instructions for executing a recurring business process β the foundation for consistent execution, training, and automation.
Star Schema
A dimensional data modeling pattern for analytics warehouses β central fact tables (numeric measurements) surrounded by denormalized dimension tables (descriptive context) like a star.
State Management
Patterns and tools for managing shared data (state) across components in a frontend application.
Static Site Generation
SSG
Pre-rendering all pages at build time into static HTML files, resulting in the fastest possible page loads.
structlog
A structured logging library for Python that emits machine-parseable log events (JSON, key-value) instead of free-text β the foundation for log aggregation, search, and alerting.
Subnet
A subdivision of a VPC's IP address range β typically used to segment public-facing resources from private ones, and to distribute resources across multiple availability zones for resilience.
Subsidiary (NetSuite OneWorld)
A discrete business entity within NetSuite OneWorld that maintains its own currency, accounting books, taxes, and legal-entity hierarchy under a single shared NetSuite account.
SuiteAnalytics
NetSuite's business intelligence and reporting platform.
SuiteBundle
A package of NetSuite customizations β scripts, workflows, custom records, custom fields, saved searches, forms β that can be installed, versioned, and updated across multiple NetSuite accounts.
SuiteCloud Platform
NetSuite's comprehensive cloud development platform.
SuiteCommerce
NetSuite's native e-commerce platform that provides integrated online storefronts connected directly to ERP data.
SuiteFlow
NetSuite's visual workflow automation tool for creating business process workflows without coding.
SuiteScript
NetSuite's JavaScript-based customization platform for creating custom business logic.
SuiteTalk
NetSuite's SOAP-based web services API for integrating external applications.
Superposition
A fundamental quantum phenomenon where a system exists simultaneously in multiple states until measured β a qubit in superposition is both 0 and 1 with associated probabilities, collapsing to one definite value upon observation.
Supervised Learning
A machine learning approach where models learn from labeled training data β input-output pairs that teach the model the correct mapping.
Swagger UI
An open-source, browser-based interface that renders an OpenAPI spec as interactive, try-it-yourself API documentation β the de facto standard for API docs since 2011.
Tailwind CSS
A utility-first CSS framework that provides low-level utility classes for building custom designs directly in HTML markup.
Technical Debt
The accumulated cost of shortcuts, workarounds, and deferred maintenance in a codebase that makes future changes more difficult and risky.
Technical SEO
The practice of optimizing a website's infrastructure and architecture to help search engines crawl, index, and render content effectively.
Token
The basic unit of text that LLMs process, typically representing parts of words or punctuation.
Token-Based Authentication
TBA
NetSuite's secure authentication method for external integrations β uses OAuth 1.0a tokens instead of usernames/passwords, eliminating password rotation and reducing the attack surface for API access.
Tool Schema
The structured definition of a function (name, description, JSON-schema parameters) that an LLM can call β the contract that lets the model decide when and how to invoke external capabilities.
Topic Cluster
A content strategy that organizes pages into groups around a central pillar page, with related subtopic pages linking back to it.
Transfer Learning
Applying knowledge gained from training on one task to a different but related task, dramatically reducing training time and data requirements.
Transformer
A neural network architecture that uses self-attention to process sequential data, forming the backbone of all modern large language models.
Type Hints
Python syntax for declaring expected types of variables, function parameters, and return values, enabling static analysis and better tooling.
TypeScript
Typed superset of JavaScript that compiles to plain JavaScript.
Unsupervised Learning
A machine learning approach where models discover patterns and structure in data without labeled examples.
User Story
A short, simple description of a feature from the perspective of the end user, following the format: 'As a [user], I want [goal] so that [benefit].'
uv
An extremely fast Python package installer and resolver written in Rust, designed as a drop-in replacement for pip, pip-tools, and virtualenv.
Uvicorn
A lightning-fast ASGI server for running async Python frameworks like FastAPI and Starlette in production.
Variational Quantum Eigensolver
VQE
A hybrid quantum-classical algorithm that finds the minimum eigenvalue of a Hamiltonian β the workhorse for near-term quantum chemistry and material science applications, designed to be NISQ-friendly.
Vector Database
A specialized database optimized for storing and querying high-dimensional vectors (embeddings) for similarity search.
Virtual Environment
An isolated Python environment that contains its own packages and dependencies, preventing conflicts between projects.
Virtual Private Cloud
VPC
A logically isolated section of a cloud provider's network where you launch resources with full control over IP ranges, subnets, route tables, and network gateways β your own private network in the public cloud.
Vite
A modern frontend build tool that provides instant dev server startup and optimized production builds using native ES modules and Rollup.
Web Accessibility
A11y
Designing and developing websites that are usable by people with disabilities, following WCAG guidelines.
Web Application Firewall
WAF
A security system that monitors, filters, and blocks malicious HTTP traffic to and from a web application.
Webhook
HTTP callbacks that notify external systems when events occur.
Webhook vs Polling
Two approaches to detecting changes: webhooks push notifications instantly when events occur, while polling checks for changes at regular intervals.
WebSocket
A bidirectional, full-duplex communication protocol over a single long-lived TCP connection β enables real-time server-to-client push (chat, live dashboards, collaborative editing) without HTTP polling.
Workflow (NetSuite)
NetSuite's native automation engine that triggers actions on record events β approvals, field updates, emails, and custom logic β without writing SuiteScript.
Workflow Orchestration
Coordinating and managing automated tasks and processes across multiple systems and teams.
XML Sitemap
A file that lists all important URLs on a website, helping search engines discover and prioritize content for crawling and indexing.
Zapier
A no-code automation platform that connects 6,000+ apps through trigger-action workflows called 'Zaps.'
Zero-shot Learning
AI model's ability to perform tasks without specific training examples.
Zero Trust Architecture
A security model that requires strict identity verification for every person and device trying to access resources, regardless of network location.