Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How is IQ calculated? #5

Open
ML-Chen opened this issue Oct 25, 2019 · 2 comments
Open

How is IQ calculated? #5

ML-Chen opened this issue Oct 25, 2019 · 2 comments

Comments

@ML-Chen
Copy link

ML-Chen commented Oct 25, 2019

I got an IQ of 27 :( which is pretty funny but also very unrealistic. Is it just a randomly generated number below 100?

@shanepelletier
Copy link

I got 83 and my actually tested (as a child) IQ was in the 98th percentile. Almost everything else seemed about right and fairly average, other than apparently I'm narcissistic (not even close).

@shanepelletier
Copy link

The relevant bit for the IQ seems to be this bit of JS that's in the live version of the website but not the repo:

if (null !== dogPos && null !== menPos && null !== womenPos && null !== whiteNegative && null !== nonWhiteNegative && null !== kanyePos) {
    const e = 5e-4;
    i = .05;
    t = -((dogPos + Math.abs(menPos - womenPos) + Math.abs(whiteNegative - nonWhiteNegative) + kanyePos) / 4 - e) / i;
    iq = Math.floor(15 * t + 100), iq < 1 && (iq = game.rnd.integerInRange(1, 20)), K_INSTALLATION_MODE && socket.emit("iq", [iq])
}

I may do a full analysis later, but it seems like here are the list of things that correlate with a lower IQ:

  • Liking dogs
  • Being sexist
  • Being racist
  • Liking Kanye, but only a little bit

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants