Page 203 - Maxim Mironjuk
-
Maxim Mironjuk
-
August 01, 2025
PHP 8.4 bundles an unusually high number of language features into a single release: from property hooks to four new array functions to a rewritten DOM API. This overview places every one of the new PHP 8.4 features in context, shows real code, and flags what can actually break when upgrading to PHP 8.4.
-
Maxim Mironjuk
-
August 01, 2025
The extends property in nuxt.config.ts lets you reuse entire Nuxt projects as base layers, including components, composables, layouts, and configuration. For multi-brand setups with a shared core and brand-specific overrides, this is often a lighter-weight solution than a classic monorepo with separate npm packages.
-
Maxim Mironjuk
-
August 01, 2025
Anyone who only knows the has selector as a parent selecting tool is using a fraction of its potential. This collection shows concrete recipes for form validation, empty states, quantity queries and theme switching that previously required JavaScript and are now pure CSS.
-
Maxim Mironjuk
-
July 31, 2025
The url_rewrite table in Magento 2 connects every SEO-friendly URL to its internal target, and it keeps growing with every category change, every product move and every attribute edit. Anyone who maintains URL rewrites only through the admin interface quickly loses track once there are several thousand entries, risking redirect chains and 404 errors. This article shows how to generate URL rewrites programmatically via Service Contracts, maintain them in bulk via CSV import, and monitor them long term.
-
Maxim Mironjuk
-
July 31, 2025
Running every container in the default bridge network means giving up name resolution, isolation between projects and the ability to cut containers off from the internet on purpose. A dedicated bridge network per project solves exactly these three problems with a few lines of configuration.
-
Maxim Mironjuk
-
July 31, 2025
Playwright tests Vue applications as a whole in a real browser, with auto-waiting instead of fixed timeouts, network interception instead of a real backend, and parallel execution across multiple browser engines. That makes end to end tests predictable instead of a constant source of CI flakiness.
-
Maxim Mironjuk
-
July 31, 2025
The operator [[ $string =~ regex ]] evaluates regular expressions directly in Bash and, on a match, fills the BASH_REMATCH array with the full match and every capture group. Anyone who knows this mechanism can parse log lines, version numbers, or configuration values without starting a single external process, but also needs to keep the limits of the POSIX ERE dialect versus grep, sed, and PCRE in mind.
-
Maxim Mironjuk
-
July 31, 2025
Once a system exchanges asynchronous messages over RabbitMQ, Kafka, or WebSockets, a description like OpenAPI's is missing: which messages flow over which channel, in what format, with what payload structure. AsyncAPI closes exactly that gap, with a specification deliberately modeled after OpenAPI.
-
Maxim Mironjuk
-
July 31, 2025
The Performance Schema measures what actually happens inside a running MySQL instance: which statements run how often and for how long, which waits they get stuck on, and which stage consumes their time. Anyone who wants to find expensive query patterns in a Magento store systematically instead of by guesswork cannot avoid this instrumentation.
-
Maxim Mironjuk
-
July 31, 2025
Running the same store for Germany, Austria, and Switzerland almost inevitably produces near-identical content across several language variants. Without correctly set hreflang attributes, Google often treats these variants as confusing duplicate content, gives away visibility in individual country markets, and sometimes ranks the wrong version for the wrong audience.
-