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.5 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.5 on Raspberry Pi
  6. Install Node.js 16 and npm on Raspberry Pi
Get npm Configuration File Location

Get npm Configuration File Location

When working with Node.js and npm, you may encounter situations where certain configuration values don't behave as expected. This usually happens because npm reads configs from multiple locations, and higher-precedence...
Deprecate Code in C++

Deprecate Code in C++

In software development, maintaining a large codebase often involves updating APIs, replacing old functions, or removing unsafe code. However, simply deleting old code can break existing programs that still rely...
Use Sccache with CMake

Use Sccache with CMake

Compiling large applications can take a lot of time, especially during development when small changes often trigger rebuilds. Sccache, a modern caching tool and an alternative to Ccache, helps mitigate...
Set Build Type using CMake

Set Build Type using CMake

When working with CMake-based projects, one important aspect to control is the build configuration. CMake supports multiple build types that influence compiler options, optimizations, and whether debug information is generated...