While working with text processing we might need to remove last N characters from a string. Programming languages provides various methods to do that. A table includes a links to...
While working with text processing we might need to remove first N characters from a string. Programming languages provides various methods to do that. A table includes a links to...
YOLO (You Only Look Once) is an object detection algorithm that allows to detect objects in an images in near real-time. YOLOv4 is 4th version of YOLO which introduced in...
TensorFlow Lite is an open-source library that enables to run machine learning models and do inference on end devices, such as mobile or embedded devices. We cannot train a model...
TensorFlow 2 provides the TFLiteConverter which allows converting a TensorFlow 2 model to TensorFlow Lite model. This model uses the .tflite file extension. TensorFlow Lite models can be executed using...
Ascii85, also called Base85, is an encoding and decoding scheme that is used to convert binary data to an printable ASCII text format, and vice versa. Ascii85 (Base85) uses 85...
While working with text processing we might need to replace all occurrences of a substring in a string. Programming languages provides various methods to do that. A table includes a...
CUID (Collision Resistant Unique Identifier) is an identifier that designed for applications which distributed across multiple machines. CUID is 25 characters long and consist of 5 parts: prefix (1 character...
Nano ID is a cryptographically strong identifier that can be used in URLs. By default, Nano ID is 21 characters long and uses A-Za-z0-9_- alphabet. Nano ID can be used...
ULID (Universally Unique Lexicographically Sortable Identifier) is a 128-bit identifier that consist of 48-bit timestamp and 80 random bits. ULID is encoded as a 26 character string. ULID can be...