Guide
Guides
Longer pieces on the things our short answers only introduce. Each one carries its sources, the method behind any number in it, and a plain statement of what it does not cover.
- Guide · 8 min · updated 23 August 2026Answer engines and how to get citedBeing cited by an answer engine has four preconditions you can actually check: the answer is short enough to quote, self-contained, carries something concrete, and exists in the HTML a crawler receives without running JavaScript. We ran the first three against our own 200 answers. 44% passed all three.
- Guide · 8 min · updated 24 August 2026Authentication, sessions and access rulesLogging someone in is the easy half. The hard half is deciding what they may touch, on every request, including the ones you add next year. This is the three layer arrangement we run: a cheap check at the Edge, an authoritative one on the server, and database rules underneath both.
- Guide · 9 min · updated 25 August 2026Core Web Vitals, measuredCore Web Vitals are LCP, INP and CLS, judged on real visitors at the 75th percentile over 28 days. A testing tool measures one simulated visit instead, so it can pass while the ranked number fails. The gap between the two is where most confusion about vitals lives.
- Guide · 7 min · updated 26 August 2026What website costs depend onWebsite quotes differ by multiples because the word covers everything from a five page brochure to a custom platform. Page count barely moves the number. Integrations, migrating existing content, bespoke design and anything that has to talk to a system you already run are what decide it.
- Guide · 6 min · updated 31 August 2026What a web design company doesA web design company turns a business goal into a site somebody can run without them. The visible part is design and build. The larger part is deciding what the site has to do, making it survive being edited, and handing over something you own outright.
- Guide · 6 min · updated 31 August 2026What web app development involvesWeb application development is what you do once a site holds state on a user's behalf. Accounts, permissions, stored data and concurrent edits each introduce failure modes a brochure site cannot have, and most of the extra cost is spent making those failures safe rather than adding screens.
- Guide · 6 min · updated 31 August 2026What makes a dashboard usableA usable dashboard answers one question on arrival, shows numbers against a baseline so they mean something, and is designed for its empty, loading and error states rather than only for the screenshot. Most failures are decisions skipped, not visual ones.
- Guide · 7 min · updated 26 August 2026What an AI feature needs besides a modelMost AI features fail on everything except the model. What data it can reach, what happens when it is confidently wrong, what it costs when traffic is not the demo, and how anybody would know it still works are the four decisions that decide whether the feature survives real use.
- Guide · 6 min · updated 31 August 2026How a payment gateway worksA payment gateway collects card details safely, asks the customer's bank to approve a charge, and later moves the money to your account. Approval and settlement are separate events days apart, and the browser redirect that follows a payment is a convenience rather than proof it happened.
- Guide · 6 min · updated 3 September 2026What a content model decidesA content model is the set of content types a site has and the fields inside each one. It is a separate decision from which CMS you use, it is made once at the start, and it decides what the site can become later far more than the design does.