Page 288 - Mironsoft Blog
-
Maxim Mironjuk
-
April 05, 2025
Good API documentation is not what gets generated automatically from OpenAPI comments. It is what enables an external developer to make their first successful API call within 15 minutes and then keep integrating on their own, without opening a support ticket.
-
Maxim Mironjuk
-
April 05, 2025
Teams that spin up a separate Node or PHP backend for their Nuxt frontend often duplicate infrastructure unnecessarily. Nuxt Server Routes build on the Nitro server and deliver routing, validation, error handling and caching in the same codebase, deployed as a single artifact.
-
Maxim Mironjuk
-
April 05, 2025
Microsoft ties Bing search and Copilot chat together more tightly than Google currently ties Google Search and Gemini, and additionally uses IndexNow, a protocol that gets new content into the index considerably faster than classic crawling. Anyone who understands this technical integration can optimize for Bing Copilot on purpose, instead of treating Bing as a smaller Google clone.
-
Maxim Mironjuk
-
April 05, 2025
Anyone who changes a GraphQL schema without knowing the existing clients risks silent breakage in the frontend. Additive evolution, structured deprecations, and automated schema diffs with GraphQL Inspector make schema changes predictable instead of random.
-
Maxim Mironjuk
-
April 05, 2025
Subagents delegate focused subtasks to a separate Claude Code context with its own context window and its own system prompt. This helps with parallel codebase research and isolated review passes, but it adds coordination overhead that is not worth it for simple tasks, where a single agent often remains the better choice.
-
Maxim Mironjuk
-
April 05, 2025
The built-in Symfony Validator constraints cover standard cases, but business logic like unique slugs, domain-specific formats, or dependencies between fields calls for custom constraint classes. Implementing them correctly keeps validation logic testable, reusable, and cleanly separated from controllers.
-
Maxim Mironjuk
-
April 05, 2025
Any online shop that sells electrical devices, electronic accessories with a built-in battery, or loose batteries in Germany falls under the German Electrical and Electronic Equipment Act, known as ElektroG, and often additionally under the German Battery Act, known as BattG. Both laws require registration before the first sale and set out under which conditions customers may return old devices or used batteries free of charge. This article explains in plain language what these duties actually mean, who is affected and which steps make sense right now.
-
Maxim Mironjuk
-
April 04, 2025
env.php does not belong in the repository, and it does not belong in the build artifact. Ignore that rule and you end up with a release model that breaks at the first environment switch. This article explains how app/etc, shared directories, and config.php correctly work together in the symlink release model with GitLab CI/CD.
-
Maxim Mironjuk
-
April 04, 2025
When users increase the browser font size to 200 percent, a store must remain fully readable and usable, without content being cut off or requiring sideways scrolling. This article shows in practical terms how rem-based units, reflowing layouts, an unlocked viewport and targeted zoom tests make that reliable in Magento and Hyva stores, without costly special-case fixes.
-
Maxim Mironjuk
-
April 04, 2025
Anyone who ctrl clicks an imported type and lands in a generated .d.ts file instead of their own source code loses valuable debugging time. Declaration maps close exactly that gap and turn a TypeScript library into one that feels, inside the IDE, as if its source code lived right inside your own project.
-