Glossary

The terms that show up in quotes

So nobody has to nod along without knowing what is meant.

FAQ
A–Z

Look it up

Kept short. If you want to know more, just ask us.

A

API

Interface

A defined interface through which two programs talk to each other. Instead of exporting data by hand, one system fetches it directly from the other.

B

Backend

The part of an application nobody sees: database, domain logic, interfaces. This is where the actual work happens.

Backup

A copy kept separately from the original and tested regularly. A copy on the same drive is not a backup.

C

CI/CD

Automation

Automated steps that check and ship new code. They stop anyone from accidentally putting a broken version live.

Cloud

Servers somebody else runs, paid for by usage. Convenient, as long as you know which data sits where.

Custom software

Software built for one specific business, rather than bending a business around an off-the-shelf tool. Costlier up front, often cheaper to run.

F

Frontend

Everything visible in the browser. Interface, interaction, and how it looks on different devices.

G

GDPR

Legal

The European data protection regulation. It governs how personal data must be collected, stored and deleted.

I

Interface

API

The point where two systems exchange data. Usually also the point where projects take longer than planned.

M

Maintenance

Keeping dependencies current, applying security updates and making small adjustments. Without it even good software ages.

Monitoring

Continuous observation of a system. Good monitoring reports the fault before the first phone call.

MVP

The smallest version that is genuinely useful. Meant for learning early, not for leaving features out and charging full price anyway.

R

Repository

The versioned home of the source code. Every change is traceable and reversible.

S

SaaS

Software as a Service: software you rent rather than buy, running at the provider.

Staging

A copy of the live system for testing. This is where you notice what still worked on the developer's machine.

T

Technical debt

Shortcuts in the code that save time today and charge interest later. Sometimes sensible, as long as you take them on knowingly.

W

Webhook

A message one system sends another automatically as soon as something happens. The reverse direction of a classic query.