literally made me laugh out loud, well done
Same here! I love the absurdity of this one given the nature of cryptographic hash functions.
11–20 of 263 posts
literally made me laugh out loud, well done
nice, though I'm very disappointed the answer wasn't hunter2
Password is randomized on each load. Author has conveniently left a debugger statement in the code.
nice, though I'm very disappointed the answer wasn't hunter2
function randomPassword() {
let letters = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
let digits = '0123456789';
let punctuation = '!"#$%&\'()*+,-./:;?@[\\]^_`{|}~';
let s = letters.repeat(7) + digits.repeat(4) + punctuation.repeat(3);
let length = 14;
let res = Array.from({length}, (() => s[randomInt(s.length)])).join('');
debugger; // どうぞ
return res;
}nice, though I'm very disappointed the answer wasn't hunter2