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

Install PyCharm on Ubuntu 24.04

PyCharm is an integrated development environment (IDE) developed by JetBrains for Python development. It offers smart code assistance, debugging, and support for web frameworks, making it a top choice for...
Install PhpStorm on Ubuntu 24.04

Install PhpStorm on Ubuntu 24.04

PhpStorm is an integrated development environment (IDE) specifically designed for PHP development, created by JetBrains. It's known for its deep understanding of the PHP language and its seamless integration with...
Regenerate Build Files using CMake

Regenerate Build Files using CMake

When working on CMake-based projects, modifying the CMakeLists.txt files is a common task. Sometimes, these changes don't take effect because CMake caches values and settings from earlier runs. This tutorial...
Use AddressSanitizer with CMake

Use AddressSanitizer with CMake

Memory bugs like buffer overflows or use-after-free errors can be tricky to debug and may lead to undefined behavior or security vulnerabilities. Fortunately, AddressSanitizer is a useful tool built into...
Install Exiv2 on Ubuntu 24.04

Install Exiv2 on Ubuntu 24.04

Exiv2 is a C++ library and command line tool for managing image metadata, specifically designed to handle EXIF, IPTC, and XMP data embedded in image files. It allows developers and...
Install ExifTool on Ubuntu 24.04

Install ExifTool on Ubuntu 24.04

ExifTool is a command line application used for reading, writing, and editing metadata in a wide variety of file types, especially images, audio, and video files. It supports numerous metadata...
Clean Build Directory using CMake

Clean Build Directory using CMake

When working with CMake, keeping the build directory clean is important to avoid stale or conflicting object files, especially when switching build configurations. Instead of manually deleting the build directory...