Skip to content

Instantly share code, notes, and snippets.

@tauzen
tauzen / hexstring.js
Last active September 9, 2024 18:13
Hex string to byte and other way round conversion functions.
function byteToHexString(uint8arr) {
if (!uint8arr) {
return '';
}
var hexStr = '';
for (var i = 0; i < uint8arr.length; i++) {
var hex = (uint8arr[i] & 0xff).toString(16);
hex = (hex.length === 1) ? '0' + hex : hex;
hexStr += hex;
@cowboy
cowboy / HEY-YOU.md
Last active September 2, 2024 04:03
jQuery Tiny Pub/Sub: A really, really, REALLY tiny pub/sub implementation for jQuery.