Puma-Dev

Puma-dev is the emotional successor to pow. It provides a quick and easy way to manage apps in development on macOS and Linux. Normally we use vhost on local development. But it is difficult to point to port as well. For ex: By vhost: http://development.test -> localhost:80 ( yes ) https://development.test -> localhost:3000 ( no …

Laradock and Xdebug

Mostly we use laradock or homested for laravel projects. But it has some problem for implementation of xdebug. xdebug is powerful tool to speed up development. So, most developers want to enable xdebug on laradock. Actually laradock provides xdebug option. but it is disable by default. We can just enable the option. WORKSPACE_INSTAL_WORKSPACE_SSH=true WORKSPACE_INSTALL_XDEBUG=TRUE PHP_FPM_INSTALL_XDEBUG=TRUE …

Anti Flicker on Google Optimize

we normally use Google Optimize for A/B testing. A/B testing is redirecting pages with loading. But it is redirected to next page after original page is loaded. Users will feel flicker with first loading. So, we need to prevent the flicker. So, Google provides Anti Flicker Code for Google Optimize. https://support.google.com/optimize/answer/7100284?hl=en Please check the detail.