Hall’s Favorite Apps and Websites of 2022

For most people, hardly a day goes by without some sort of web search or social media scroll. Websites and apps keep us organized, informed, productive, and entertained. This year, our team has compiled a list of our favorite and most used sites and apps of 2022. Our Favorite Websites growth.design/case-studies – A collection of…

Preventing Symfony Process From Passing Laravel Environment Variables

Recently when working on an internal tool using Laravel, we encountered an issue where calling artisan commands in another application was using the wrong environment variables. After debugging, we determined that this was default behavior of the Symfony process class. The Symfony process class for PHP is able to call system processes from within your…

Optimize CSS with the :is() Pseudo-Class Selector

When styling aspects of your website, it’s not unusual to need to target numerous similar items at once. Your code can get lengthy, repetitive and complex. Fortunately, the :is() pseudo-class selector introduced in the Selectors Level 4 specification can help simplify it. Using the :is() Selector Example 1 A common scenario where you can use…