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...
When implementing authentication in a web application, we may need to hash the user's password. This tutorial shows example how to generate the password hash in Laravel 9 application.
Laravel...
When working with Laravel application, there might be required to get the ID for the current session. This tutorial provides 2 methods how to get session ID in Laravel 9...