Skip to content

Instantly share code, notes, and snippets.

@anvbis
anvbis / kitctfctf-2022_date.1.js
Last active December 12, 2022 00:02
kitctfctf-2022_date.js
let buf = new ArrayBuffer(8);
let f64 = new Float64Array(buf);
let i32 = new Uint32Array(buf);
let i64 = new BigUint64Array(buf);
const ftoi = x => {
f64[0] = x;
return i64[0];
};