prove what
banned-users
Phi Kappa Chi ΦΚΧ <a:yeah:589703000977571860><a:ppHop:536353159615086612>
Jump to date
Thursday, April 27, 2017
proove it's a hivemind
wrove phat
Dank memers
isnt that right @Phijkchu_Pikachu Kappa Keepo
1000 percent sociologically proven
DEUS VULT
also those layers don't make sense
Oh god
I did not even notice
what the fuck
That is so bad
except in this case, it is clear pikachu is angled
How do layers
are pikachu tails really that long for it to be in front of the word innocent though?
Jebaited
99.99% for the memes
Keepo is dead Keeper
"No reading from mic" reads just fine when unmuted
Umbreon Left us feelsbadman
Pika Died
again?
His Computer Exploded
@xBrox hm 🚬
and squid is offline
hm 🚬
It is all Coming Together PogChamp 🚬
this paper is going to be great
i wrote a python script to run like 10 Million iterations of a probability problem and i'll explain the results in a page
now i can go get food while it runs
Food lewd
i had some chocolate waffles while we were 🍵 🍵 🍵 ing, but now i need real food
@Phijkchu_Pikachu , see, python is really useful Kappa
google translate it also great at translating latin Kappa
some of it works out
but obviously some of it doesn't make any sense
i'm pretty sure this is a proper translation "Run through this world without
Any memory of the dead,"
"the end of the beginning" is almost a proper translation
it really should be "the beginning of the end"
since that's the name of the song
i don't know what mother of extinguishing is implying
i'm less sure about the "run red warriors" being a proper translation but it could be
and i'm pretty sure the whole "old gods delete legacy in order to advance towards a new world!" seems to be a close translation as well
i'd say that overall, it's translated enough to be a song
bad karp
too many lines
wow
rip
Jebaited
my python script resulted in a 6435 line .csv file
Keepo
274 pages
impressive
lmao
274 page essay coming right up Kappa
i keep saying random words in voice chat, then look over here and those words actually fit into what is happening here
impressive
drugs
but you're not in voice chat rem
i'm a ninja
ninja 🚬
literally being a genji main right now
SA SOO KE
is so cool
import random, itertools
count =[7]
accuracy = [a for a in range(1,10)]
num_its = 10000
random.seed()
#combination generator
def combinations7():
for d1 in range(1,10):
for d2 in range(d1,10):
for d3 in range(d2,10):
for d4 in range(d3,10):
for d5 in range(d4,10):
for d6 in range(d5,10):
for d7 in range(d6,10):
yield [d1,d2,d3,d4,d5,d6,d7]
with open("results.csv", "w") as file:
for c in count:
file.write("permutation,__,__,__,distributions,__,__,__,expected,result")
for permutation in combinations7():
#only sorted permutations will be done so no repeats will occur
if not all(permutation[i] <= permutation[i+1] for i in range(c-1)):
continue
print(permutation)
correct = [0]*(c+1)
correct_its_count = 0
for i in range(num_its):
num_correct = 0
for p in permutation:
if random.randint(1,10) < p:
num_correct += 1
correct[num_correct] += 1
if num_correct > float(c)/2:
correct_its_count += 1
expected = 1.0
for p in permutation:
file.write(str(p))
expected *= (10.0-p)/10.0
for cor in correct:
file.write(",%d" % cor)
file.write(",%f,%f\n" % (expected,(correct_its_count/num_its)))
file.write("\n")my turn
this is my algorithm
