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
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...
Install TruffleHog on Ubuntu 24.04

Install TruffleHog on Ubuntu 24.04

TruffleHog is an open-source security scanner that digs through Git repositories and other sources to uncover secrets such as API keys, credentials, and tokens. It helps teams ensure that sensitive...
Suppress CMake Warnings

Suppress CMake Warnings

Warnings in build systems are often useful: they alert you to deprecated features, suspicious patterns, or potential future breakage. But not every warning is something you can address - especially...