Sheets
/ʃiːts/
n. “Spreads, sums, and sanity in the cloud.”
Sheets, commonly referred to as Google Sheets, is a cloud-based spreadsheet application from Google designed to handle data, calculations, and collaboration without requiring a desktop office suite. It turns raw numbers, text, and formulas into structured grids that can compute, visualize, and communicate information instantly.
Docs
/dɑks/
n. “Collaborate without the chaos of attachments.”
Docs, commonly known as Google Docs, is an online word processor designed to make writing, editing, and sharing documents seamless. Unlike traditional software locked to a single machine, Docs exists entirely in the cloud, allowing multiple people to view and edit a document simultaneously without sending copies back and forth.
/ˈɡuːɡəl/
n. “Search, index, serve, repeat.”
Google is a technology company and search engine that has grown into a sprawling ecosystem of services, platforms, and innovations. At its core, the name represents the act of finding information: it indexes billions of web pages and returns results in milliseconds, translating queries into answers, links, and recommendations.
Completely Automated Public Turing test to tell Computers and Humans Apart
/ˈkæp.tʃə/
n. “Prove you are human… or at least persistent.”
CAPTCHA, short for Completely Automated Public Turing test to tell Computers and Humans Apart, is a system designed to distinguish humans from bots. It is the bouncer at the digital door, asking users to perform tasks that are easy for humans but challenging for automated scripts.
Cross-Origin Resource Sharing
/kɔːrz/
n. “You may speak… but only from where I recognize you.”
CORS, short for Cross-Origin Resource Sharing, is a browser-enforced security model that controls how web pages are allowed to request resources from origins other than their own. It exists because the web learned, the hard way, that letting any site freely read responses from any other site was a catastrophically bad idea.
Content Security Policy
/ˌsiː-ɛs-ˈpiː/
n. “Trust nothing by default. Especially the browser.”
CSP, short for Content Security Policy, is a defensive security mechanism built into modern browsers to reduce the damage caused by malicious or unintended content execution. It does not fix broken code. It does not sanitize input. What it does instead is draw very explicit boundaries around what a web page is allowed to load, execute, embed, or communicate with — and then enforces those boundaries with extreme prejudice.
Angular
/ˈæŋɡjələr/
n. “A framework that turns complexity into structured interactivity.”
Angular is a TypeScript-based front-end web application framework developed and maintained by Google. It allows developers to build dynamic, single-page applications (SPAs) using a component-driven architecture, reactive programming patterns, and declarative templates. Unlike libraries such as React, which focus on the view layer, Angular provides a complete ecosystem, including routing, forms, HTTP services, and dependency injection.
Next.js
/nɛkst dʒeɪ ɛs/
n. “The framework that makes React feel like magic.”
Next.js is a React-based framework designed to simplify building fast, scalable, and production-ready web applications. It extends React by providing built-in server-side rendering (SSR), static site generation (SSG), routing, and API routes — features that normally require additional configuration or libraries.
React
/riˈækt/
n. “A library that thinks fast and renders faster.”
React is a JavaScript library for building user interfaces, primarily for web applications. Created by Facebook, it allows developers to design complex, interactive UIs by breaking them down into reusable components. Each component manages its own state and renders efficiently when that state changes, providing a reactive user experience.
Document Object Model
/ˈdiː-ˈoʊ-ˈɛm/
n. “Where the browser meets your code.”
DOM, short for Document Object Model, is a programming interface for HTML and XML documents. It represents the page so scripts can change the document structure, style, and content dynamically. Think of it as a live map of the web page: every element, attribute, and text node is a node in this tree-like structure that can be accessed and manipulated.