The fd is a command line tool that allows to find files in a directory hierarchy. This tool can be used as an alternative to the find command.
This tutorial...
On DOS/Windows systems, different text file line endings are used than on the Unix/Linux systems. DOS/Windows uses line endings that represented as carriage return followed by line feed (CRLF or...
The cracklib-check is a tool that allows to check password strength via command line. It checks whether the password is based on a dictionary word, it is too short, it...
The iotop is a tool for monitoring I/O usage by each process via command line. This tool shows read and write speeds of a storage device, the percentage of time...
Ninja is a build system that allows to build binaries from source code. It can be used as alternative to the Make. Ninja is focused on speed. To achieve high...
The wttr.in is a weather forecast service that allows to view the weather forecast via command line. You don't need to install wttr.in in your system. All you need to...
There might be a case that the same variable should be passed to all Blade templates. It can be done on each controller. However, it is not a perfect solution...
By default, in Laravel application Blade templates are stored in the resources/views directory. There might be required to store the Blade templates in different location. This tutorial shows how to...
Hyperfine is a tool that enables to benchmark commands. This tool runs command several times and measures execution time of it.
This tutorial demonstrates how to install Hyperfine on Ubuntu...
When implementing authentication in a web application, we may need to check whether the user's password matches a given hash. This tutorial shows example how to verify that password matches...