spoiler

Hello world

  • 215 Posts
  • 35 Comments
Joined 2 years ago
cake
Cake day: July 8th, 2023

help-circle
  • Most mobile clients allow you to hide posts that contain a certain keyword in their title. Here’s a non-exhaustive list of clients that support keyword filtering off the top of my head:

    • Voyager (multiplatform; I believe you need to have the app because the option doesn’t show up on the website for me)
    • Mlem (iOS)
    • Arctic (iOS)
    • Thunder (Android)
    • Sync (Android)

    I don’t know of any that can hide posts with a keyword mentioned in any of the post’s comments; doing so would require the client to make a lot of extra API requests.
































  • Or do think there’s something special about the person that makes them flip tails more often?

    Yes, that’s the conclusion that the scientist has come to. The chance of getting 20 in a row is so extraordinarily unlikely that it’s reasonable to conclude that the chance is not 50/50 for that particular surgeon.


  • Sjmarf@sh.itjust.worksOPtoScience Memes@mander.xyz50% survival rate
    link
    fedilink
    English
    arrow-up
    208
    ·
    edit-2
    3 months ago

    The normal person thinks that because the last 20 people survived, the next patient is very likely to die.

    The mathematician considers that the probability of success for each surgery is independent, so in the mathematician’s eyes the next patient has a 50% chance of survival.

    The scientist thinks that the statistic is probably gathered across a large number of different hospitals. They see that this particular surgeon has an unusually high success rate, so they conclude that their own surgery has a >50% chance of success.





  • Sjmarf@sh.itjust.worksOPtoProgrammer Humor@programming.devSus
    link
    fedilink
    arrow-up
    102
    ·
    edit-2
    4 months ago

    not() is a base function that negates what’s inside (turning True to False and vice versa) giving it no parameter returns “True” (because no parameter counts as False)

    Actually, not is an operator. It makes more sense if you write not() as not () - the () is an empty tuple. An empty tuple is falsy in Python, so not () evaluates to True.