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

HTML Escape and Unescape

There are some special characters that are reserved for use in HTML document. It means that browser will parse these characters as HTML code instead of displaying them as text...

ROT13 Encode and Decode

ROT13 is a substitution cipher that replaces every letter in the string with the 13th alphabet letter after it. ROT13 is its own inverse, so the same algorithm is used...

Generate UUID Version 4

UUID (Universally Unique Identifier) is a 128-bit number, commonly represented as a hexadecimal string. UUID can be used to uniquely identify objects across a network. There are various versions of...

Send POST Request

POST is one of the HTTP methods which is used to send data to a server to create a resource. Programming languages provides various methods to send POST requests. A...
AES Encryption and Decryption in MySQL

AES Encryption and Decryption in MySQL

MySQL allows encrypting and decrypt data using the official AES (Advanced Encryption Standard) algorithm. The AES_ENCRYPT() function encrypts the string with the specified key and returns the encrypted data in...
Create User in MySQL

Create User in MySQL

The CREATE USER statement allows creating a new user in the MySQL server. Users are stored in the mysql.user system table. A newly created user has no privileges. The password...
Show Users in MySQL

Show Users in MySQL

When managing a database, it is often needed to get a list of users which are used to connect to the MySQL server. MySQL provides statements which allows showing databases...
Change Default Authentication Plugin in MySQL

Change Default Authentication Plugin in MySQL

In MySQL 8.0, the default authentication plugin is caching_sha2_password rather than mysql_native_password. If application get errors related with caching_sha2_password plugin, it is possible that connector does not support this plugin...