HN user

Simon_says

650 karma
Posts0
Comments924
View on HN
No posts found.
Passwordle 4 years ago

The length of the password is 14.

  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;
  }

No, fast food is actually just disgusting lab-made pseudo-food, if you’re accustomed to fresh, whole, real food.

I loved fast food growing up, but after a couple year stint eating only fresh foods, I went back and literally couldn’t stomach it anymore. It tastes good going down. (At the time) I had no conditioning or preconceived beliefs that it was disgusting, but within an hour my stomach felt queasy and I threw it up. After half a dozen times experiencing that, I gave up on fast food entirely.