1. Install Precompiled TensorFlow Lite 2.19 on Raspberry Pi
  2. Install Precompiled Dlib on Raspberry Pi
  3. Install Precompiled libfacedetection on Raspberry Pi
  4. Install Precompiled OpenCV 4.11 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.19 on Raspberry Pi
  2. Install Precompiled Dlib on Raspberry Pi
  3. Install Precompiled libfacedetection on Raspberry Pi
  4. Install Precompiled OpenCV 4.11 on Raspberry Pi
  5. Install PHP 8.4 on Raspberry Pi
  6. Install Node.js 16 and npm on Raspberry Pi

Write Data to CSV File

CSV (Comma Separated Values) file is a plain text file that contains data fields separated by commas. CSV file is commonly used for saving tabular data. Each line of the...

Generate Whirlpool Hash

Whirlpool is a cryptographic hash function that accepts a string of any length and returns a 512-bit fixed-length digest value, commonly represented as a sequence of 128 hexadecimal digits. Whirlpool...

Split String into Array

Working with text sometimes we need to split a string into an array using a delimiter. It can be comma, space, hyphen, etc. Programming languages provides various methods to do...
Change User Password in MySQL

Change User Password in MySQL

The SET PASSWORD statement allows changing the password for a user in the MySQL server. Provided password is interpreted as a clear text string. The password is passed to the...

Generate SHA-1 Hash

SHA-1 is a cryptographic hash function that accepts a string of any length and returns a 160-bit fixed-length digest value, commonly represented as a sequence of 40 hexadecimal digits. SHA-1...

Calculate Adler-32 Checksum

Adler-32 is a checksum calculation algorithm which is commonly used to validate data integrity. It allows to detect data corruption. Adler-32 is used by zlib compression library. Adler-32 checksum is...