The Framework Hypothesis—Another Compromised View| Biblical Authority Ministries
Most dating apps in India are solving for perfect matching. But is the real problem a lack of dating education? Dating is a new concept to most Indians. O...| inspired by rebels
Modern trans activists reframed transsexualism/transgenderism as a political problem rather than a clinical problem.| Quillette
I had a big revelation today about the fundamental difference between Indian and US consumers in the AI agents market, and it's surprisingly logical.| inspired by rebels
The p-value is the most commonly used statistic in scientific papers and applied statistical analyses. Learn what its definition is, how to interpret it and how to calculate statistical significance if you are performing statistical tests of hypotheses. The utility, interpretation, and common misinterpretations of observed p-values and significance levels are illustrated with examples.| GIGAcalculator Articles
A while back I was ranting about APLs and included this python code to get the mode of a list: def mode(l): max = None count = {} for x in l: if x not in count: count[x] = 0 count[x] += 1 if not max or count[x] > count[max]: max = x return max There’s a bug in it. Do you see it? If not, try running it on the list [0, 0, 1]:| Hillel Wayne
This was originally written as a tutorial for Hypothesis and will eventually be reproduced there, but it might still be useful for people using other property-testing libraries. This essay assumes some familiarity with Hypothesis. If you haven’t used it, a better introduction is here. Once you learn the basics, there are two hard parts to writing property-based tests: What are good properties to test? How do I generate complex inputs?| Hillel Wayne