Here’s a quick tip on how to download and save entire website recursively using wget.
wget -r --no-parent https://this.is.example.com/site/

Free and Open Source blogger with an attitude
Here’s a quick tip on how to download and save entire website recursively using wget.
wget -r --no-parent https://this.is.example.com/site/
Brotli is a new compressed data format developed by Google for compressing web data. It is documented in RFC7932. Currently, almost all modern web browser support Brotli which compressed better and faster than Deflate.
Brotli is can be enabled in most popular web server including:
KeyCDN.com has provided a tool for testing whether your website supports Brotli compression.
You can go over the website and get your server tested. For nginx webserver, ngx_brotli will automatically downgrade to gzip if the browser does not support brotli encoding
Short on diskspace? You can use ‘du’ to find largest files in your linux server using ‘du’ tool.
du --total -sh /path/*
Additionally you can also include a ‘threshold’ parameter to list only file larger than the unit which you’ve specified, by using “-t” parameter.
Example, list files larger than 100MB
du --total -sh -t100M /path/*
You can use “M” for megabytes, “G” for gigabytes and “P” for Petabytes. Positive number denotes files must be at least the specified size. Negative number means the files must be at most the specified size.
‘fdupes’ is a handy tool to find and list duplicates file in GNU/Linux or Unix-like operating system.
In Ubuntu you can install fdupes using apt command-line tool
apt -y install fdupes
Usage of fdupes is simple enough, just write:
fdupes -r /path/to/files/
The command will list duplicate files in the “/path/to/files”directory, which is a prime candidate for deletion.
This XKCD strip explains what essentially Meltdown vulnerability which affects Intel microprocessor
For those who are seeking free web hosting to test their PHP / MySQL application can look into InfinityFree.net service which has interesting offers:
The main advantages which entice me to InfinityFree are their support for SSL Certificate, 99% uptime guarantees and support for adding own domain name with their own free DNS.
The support for SSL certificate means that you can host Telegram Bot, Google Map web application and web app which utilizes OAuth API!
A rare sight for a completely free web hosting provider.
The only downside for InfinityFree is the free hosting only support up to 50,000 hits on the web server, which is fair by me as the free hosting could provide a good playground for Students and Web App Enthusiast to experiment with their code.