XXH64 is a variant of xxHash non-cryptographic hash function that accepts a string of any length and returns a 64-bit fixed-length digest value, commonly represented as a sequence of 16...
XXH32 is a variant of xxHash non-cryptographic hash function that accepts a string of any length and returns a 32-bit fixed-length digest value, commonly represented as a sequence of 8...
MQTT protocol uses a publish/subscribe model. Client can publish message to a broker and other clients can subscribe to the topic of that message. The following table provides a links...
Unicode characters are represented by a unicode code points. Code point is an integer between 0 and 1114111 (10FFFF - hexadecimal number). Unicode code point is often represented as U+...
A time zone offset is the amount of time which defines how much a certain time zone differs from UTC. Learn how to get time zone offset in seconds by...
While working with data, we might need to generate specified quantity of unique random numbers in a range between minimum and maximum value, inclusive. A table includes a links to...
Unicode characters are represented by a unicode code points. Code point is an integer between 0 and 1114111 (10FFFF - hexadecimal number). Unicode code point is often represented as U+...
While working with data, we might need to perform various operations. For example, to count number of elements in an array. A table includes a links to posts with examples...
While working with text processing we might need to make the first letter uppercase and the rest lowercase in a string. A table includes a links to posts with examples...
While working with file system, we may need to clear contents of a file without deleting file itself. Programming languages provides various methods to do that. A table includes a...