MMMax Martínez Cartagenainmaxmartinez.dev·Jul 25 · 5 min readThe frontend infrastructure we keep rebuildingConnecting a frontend to an API looks simple at first. Call fetch, parse the response, and show the result. Then the real requirements arrive. Requests need authentication. Expired tokens must be refr00
MMMax Martínez Cartagenainmaxmartinez.dev·Jul 25 · 6 min readBuilding a backend without giving your architecture to a frameworkMost backend services don’t begin with complicated architecture. They begin with an HTTP endpoint, some application logic, and a database call. Then requirements accumulate: authentication, transactio00
MMMax Martínez Cartagenainmaxmartinez.dev·Apr 20, 2025 · 11 min readThe 14 rules of CANDO-TESTArchitecture rarely collapses because a team makes one obviously disastrous decision. More often, it erodes through small exceptions that each seem reasonable: a selector placed directly in a test, a 00
MMMax Martínez Cartagenainmaxmartinez.dev·Apr 11, 2025 · 10 min readCANDO-TEST: A clearer architecture for UI test automationCANDO-TEST: A clearer architecture for UI test automation My wife’s move into test automation made me look again at a problem I had started to take for granted. She was entering the field without a ba00
MMMax Martínez Cartagenainmaxmartinez.dev·Dec 7, 2024 · 5 min readDebugging a Deno program with VSCodeIn this article, we will go through the entire process of set up Visual Studio Code for debugging “Deno” programs using “V8 Inspector Protocol”. Step-by-step, we will be learning how to configure VSCode to debug a Deno project. If you don’t know Deno...01C