Symfony 4 puts a .env file in the repository root and reads it through Dotenv, which is convenient locally and is not how the framework expects production to…
Multi-document transactions arrived in June, and the interesting question is what their existence says about the schemas that wanted them. A document model that needs a transaction across…
A type-ahead search fires a request per keystroke, and the responses arrive out of order — so the results for “lap” can overwrite the results for “laptop”. Aborting…
A site where the new editor is right for pages and wrong for a heavily customised product type needs the decision per type rather than globally. This is…
Placing items with numeric line indexes works and becomes unreadable the moment a column is inserted, because every number after it shifts. Naming a line main-start and main-end…
A repository test against a mocked connection asserts that the code calls the methods you expected, which is a restatement of the code rather than a check on…
Consuming a paginated API meant a while loop with a mutable cursor and a manual termination condition, all of it in the caller. The pagination logic ends up…