Premium Only Content
Hitler's DNA: The truth no one will tell you except me. First reported here.
I worked out what markers they actually most likely used and are reporting on despite their efforts to keep it hidden. I have also written some code so you can learn some basic genetics yourself. This has not been reported anywhere else that I can find. I am the first to report it to my knowledge.
{
const data = [
[0.16, [0.01484, 0.214476, 0.770684]], // rs10994278
[-0.39, [0.00028, 0.01932, 0.9804]], // rs549656827
[-0.34, [0.002449, 0.089434, 0.908117]], // rs75459873
[0.22, [0.033494, 0.293006, 0.673500]] // rs3849810
], permutations = [], stack = [];
for(let i = 0; i < data.length;i++)stack.push(0);
while(true) {
let sum = 0, product = 1, probability = 1, carry = true;
for(let i = 0; i < data.length; i++) {
const [effect, probabilities] = data[i], offset = stack[i];
sum += offset * effect;
product *= effect ** offset;
probability *= probabilities[offset];
if(carry) {
if(offset === 2)
stack[i] = 0;
else {
stack[i]++;
carry = false;
}
}
}
permutations.push([sum, probability, product]);
if(carry)
break;
}
permutations.sort(([a], [b]) => a - b);
let sum = 0;
const lines = [], graph = [], min = permutations[0][0], diff = -(min - permutations.at(-1)[0]);
for(const permutation of permutations) {
const effect = permutation[0], ratio = (effect - min) / diff;
sum += permutation[1];
permutation.push(sum);
lines.push(`${(Math.floor(sum * 10000) / 100).toFixed(2)} ${effect.toFixed(2)} ${(ratio * 2).toFixed(2)}`);
graph.push('#'.repeat(Math.ceil(sum * 20)));
}
console.log(lines.join('\n'));
console.log(graph.join('\n'));
permutations;
}
-
3:40:00
As Of Late
22 days agoExploring PANDAS.
12 -
LIVE
Game On!
15 hours agoIt Was ALWAYS A Shedeur Thing! NFL Week 12 RECAP!
39 watching -
11:55
Upper Echelon Gamers
13 hours ago $4.11 earnedThe Malware Disaster on STEAM
10.5K -
25:35
Athlete & Artist Show
16 hours ago $0.35 earnedYOU WON'T FINISH THE GAME!
8.47K -
13:22
Silver Dragons
18 hours agoAre You Prepared for What SILVER Will Do Next?
12.9K3 -
9:20
Adam Does Movies
20 hours ago $0.83 earnedIT: Welcome To Derry Episode 4 Recap - What An Eyesore
3.88K1 -
1:30:15
LIVE WITH CHRIS'WORLD
12 hours agoTHE WAKE UP CALL - 11/24/2025 - Episode 12
3.8K6 -
LIVE
BEK TV
2 days agoTrent Loos in the Morning - 11/24/2025
144 watching -
LIVE
The Bubba Army
2 days agoF1'S NEWEST DRIVER? - Bubba the Love Sponge® Show | 11/24/25
1,054 watching -
19:15
Nikko Ortiz
21 hours agoOstrich Gets A Taste For Human Blood
61.1K17