1. Install Precompiled TensorFlow Lite 2.20 on Raspberry Pi
  2. Install Precompiled Dlib on Raspberry Pi
  3. Install Precompiled libfacedetection on Raspberry Pi
  4. Install Precompiled OpenCV 4.12 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.20 on Raspberry Pi
  2. Install Precompiled Dlib on Raspberry Pi
  3. Install Precompiled libfacedetection on Raspberry Pi
  4. Install Precompiled OpenCV 4.12 on Raspberry Pi
  5. Install PHP 8.4 on Raspberry Pi
  6. Install Node.js 16 and npm on Raspberry Pi
Just-In-Time (JIT) Compilation in PHP 8.0

Just-In-Time (JIT) Compilation in PHP 8.0

Just-in-time (JIT) compilation is a process that takes compilation of the code at run time. JIT compilation allows improving performance of interpreted programming languages. Since PHP 8.0, we can use...
Using Attributes in PHP 8.0

Using Attributes in PHP 8.0

PHP allows specifying doc comments on declarations in code, which can be retrieved using the Reflection API. However, doc comments are just strings that provide unstructured metadata information. There are...
Constructor Property Promotion in PHP 8.0

Constructor Property Promotion in PHP 8.0

Properties are class member variables that store values like strings, integers, boolean, etc. We can set properties via class constructor, setter method or directly if property is public. When we...
Using WeakMap in PHP 8.0

Using WeakMap in PHP 8.0

The SplObjectStorage class allows storing additional data about objects. Objects are stored as keys and associated data as values. In other words, this class allows creating a map from objects...