Not sure that you properly configured resource compression at your web server or just wanna play with compression settings or check that all resources are compress as it intended?
The easies way to check it is via simple CLI command:
Small tips
WordPress and PHP updates with monitoring
Many people hate to update their software. Every time you have a risk to ruin an app, its data or even an entire system.
Blog platforms as WordPress are not an exception. Because of this you are guided to backup your files and database at the very beginning.
I had covered full WordPress backup from cli in a minute previously.
WordPress backup from CLI within a minute
All WordPress owners are struggling with WordPress platform updates or new plugin releases. And only really brave one deals with it without making a full backup of files and wordpress database.
Moving files from nested directories with Unix CLI
The following command flattens current subdirectories moving all files from them to the targetDirectory, keeping directories unchanged
find ./ -type f -mindepth 2 -exec mv -t targetDirectory {} +
Continue reading “Moving files from nested directories with Unix CLI”
How to install Homebrew (brew) on OS X El Capitan 10.11
Homebrew or simply brew is a package manager which helps install and manage lots of Unix tools and software on your OS X.
It doesn’t come with OS X El Capitan, but it can be installed manually.
Continue reading “How to install Homebrew (brew) on OS X El Capitan 10.11”