1. Install Precompiled TensorFlow Lite 2.16 on Raspberry Pi
  2. Install Precompiled Dlib on Raspberry Pi
  3. Install Precompiled libfacedetection on Raspberry Pi
  4. Install Precompiled OpenCV 4.10 on Raspberry Pi
  5. Install PHP 8.3 on Raspberry Pi
  6. Install Node.js 16 and npm on Raspberry Pi
  1. Install Precompiled TensorFlow Lite 2.16 on Raspberry Pi
  2. Install Precompiled Dlib on Raspberry Pi
  3. Install Precompiled libfacedetection on Raspberry Pi
  4. Install Precompiled OpenCV 4.10 on Raspberry Pi
  5. Install PHP 8.3 on Raspberry Pi
  6. Install Node.js 16 and npm on Raspberry Pi
Using Stringable Interface in PHP 8.0

Using Stringable Interface in PHP 8.0

PHP supports magic methods that allow to perform various operations with objects. These methods names starts with two underscores (__). One of these methods is __toString magic method which allows...
Install PHP 8.3 on Raspberry Pi

Install PHP 8.3 on Raspberry Pi

PHP is a programming language that commonly used to create web applications and dynamic websites. With each release of PHP, new features and various changes are introduced. This tutorial shows...
Union Types in PHP 8.0

Union Types in PHP 8.0

In versions prior to PHP 8.0, we can specify a single type for parameters, return values, and properties. Since PHP 8.0, we can use union types. A union type allows...
Named Arguments in PHP 8.0

Named Arguments in PHP 8.0

PHP supports positional arguments. It means that we need to pass these arguments to a function or method based on the parameter position. The order of these arguments are important...