Saltar al contenido

#engineering

4 approved public terms with this tag.

Idempotency

/aɪˌdempəˈtənsi/noun
Technology

Borrador de traduccion automatica (Spanish) for "Idempotency": The property of an operation where performing it multiple times produces the same result as performing it once. Idempotent API endpoints are critical for safe retries — if a network error occurs, the client can re-send the request without fear of duplicating side effects like charges or database records.

Ejemplo en borrador: Pass an idempotency key with payment requests so retries don't charge the customer twice.

CI/CD

/siː aɪ siː diː/noun
Technology

Borrador de traduccion automatica (Spanish) for "CI/CD": Continuous Integration / Continuous Delivery — a set of software engineering practices and tools that automate the process of testing, building, and deploying code changes. CI automatically validates every commit; CD deploys validated code to production frequently and reliably without manual intervention.

Ejemplo en borrador: The team ships 20 times a day safely because their CI/CD pipeline catches regressions automatically.

Borrador de traduccion automatica (Spanish) for "DevOps": A set of practices, tools, and cultural philosophies that unite software development (Dev) and IT operations (Ops) teams. DevOps breaks down silos, automates repetitive tasks, and instills shared responsibility for the full software lifecycle from code to production monitoring.

Ejemplo en borrador: After adopting DevOps, their release cycle went from monthly to daily.

API-First

/eɪ piː aɪ fɜːrst/adjective
Technology

Borrador de traduccion automatica (Spanish) for "API-First": A design philosophy where the API contract is defined and agreed upon before any implementation begins. API-first teams treat the API as the product — writing the specification first (e.g., in OpenAPI), getting feedback from consumers, then building both client and server simultaneously against the agreed contract.

Ejemplo en borrador: Their API-first approach meant the mobile app team could start building against the spec before the backend was done.