Doctrine cli with multiple databases

When adding doctrine orm into your project – there is a cli commands present that allows you to do some operations, such as clear cache or update database schema from entities code etc. While typical instruction from doctrine docs talk about adding cli-config.php file into project root and then using vendor/bin/doctrine script – I find … Read more

Firefox in fedora 34 – very slow with pipewire here’s how to fix

Upon upgrading to Fedora 34 I’ve discovered much to my chagrin that … something is really really wrong with my favorite browser – which is firefox. Since I’ve initially updated via software center instead of fresh install that I usually use – initially suspected that and even continued to do a fresh full- wipe reinstall … Read more

Use Php code sniffer (phpcs) to keep code clean with consistent coding style

If you don’t use it already – I would highly recommend it for any new projects, especially if working on a project in a team environment. PHP code sniffer is an essential tool for php developers that helps us with keeping code clean and consistent. Which PHP coding style to select? There is only one … Read more

Using webpack 5 with Font Awesome 5

Both projects dont need any lengthy introductions for anyone familiar with web development. Most popular bundler and icons library out there at the time of the writing. Here’s how to use them together: Install Font Awesome 5 Install font-awesome using npm. This is the most maintainable way as npm update will refresh the dependencies for … Read more