1. Install Precompiled TensorFlow Lite 2.19 on Raspberry Pi
  2. Install Precompiled Dlib on Raspberry Pi
  3. Install Precompiled libfacedetection on Raspberry Pi
  4. Install Precompiled OpenCV 4.11 on Raspberry Pi
  5. Install PHP 8.4 on Raspberry Pi
  6. Install Node.js 16 and npm on Raspberry Pi
  1. Install Precompiled TensorFlow Lite 2.19 on Raspberry Pi
  2. Install Precompiled Dlib on Raspberry Pi
  3. Install Precompiled libfacedetection on Raspberry Pi
  4. Install Precompiled OpenCV 4.11 on Raspberry Pi
  5. Install PHP 8.4 on Raspberry Pi
  6. Install Node.js 16 and npm on Raspberry Pi
Install ioping on Ubuntu 24.04

Install ioping on Ubuntu 24.04

The ioping is a tool that allows to monitor I/O latency via command line. The ioping displays latency of a storage device in the same way as ping command displays...
Check Linux Kernel Version

Check Linux Kernel Version

Linux kernel is the main component of the Linux operating system. To determine which Linux kernel version is running on the system can be useful when troubleshooting issues. This tutorial...
Enums in PHP 8.1

Enums in PHP 8.1

Since PHP 8.1, we can use enumerations also called enums. Enum defines a custom type that contains a fixed set of related values. Enum is declared using the enum keyword...
Intersection Types in PHP 8.1

Intersection Types in PHP 8.1

Since PHP 8.0, we can use union types which allows providing two or more types for parameters, return values, and properties. The given value should be one of the specified...
First-class Callable Syntax in PHP 8.1

First-class Callable Syntax in PHP 8.1

PHP offers Closure::fromCallable static method which allows creating a new anonymous function also known as Closure from specified callback using the current scope. For example, if we want to return...